@charset "UTF-8";
/* Base */
/* Colors */
/* Font */
/* Container */
/* Breakpoints */
/* Border Radius */
/* Transitions */
/* Dots (text ellipsis) */
/* Container */
/* Flex helpers */
/* Responsive */
/* From Bottom */
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&display=swap");
@keyframes fromBottom {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translate(0px);
  }
}
/* Geist Font - Google Fonts */
/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Geist", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  background-color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body a {
  color: inherit;
  text-decoration: none;
}
body a:hover {
  color: inherit;
  text-decoration: none;
}
body * {
  outline: none !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Scroll lock — JS lockScroll/unlockScroll ile uygulanır (body'e position:fixed verir) */
body.is-scroll-locked {
  overflow: hidden;
  touch-action: none;
}

/* Components */
.breadcrumb-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 48px;
}
@media (max-width: 767px) {
  .breadcrumb-inner {
    padding: 8px 20px;
  }
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  color: rgba(29, 27, 52, 0.45);
}
.breadcrumb-item a {
  color: rgba(29, 27, 52, 0.55);
  transition: color 0.2s ease;
}
.breadcrumb-item a:hover {
  color: #4B34F6;
}
.breadcrumb-item span {
  color: rgba(29, 27, 52, 0.75);
  font-weight: 500;
}
.breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 4px;
  color: rgba(29, 27, 52, 0.3);
}

/* Modal */
/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 25px;
  right: 95px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
  }
}

.cookie-banner-inner {
  background: #1D1B34;
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 477px;
}
@media (max-width: 767px) {
  .cookie-banner-inner {
    width: 100%;
    border-radius: 4px 4px 0 0;
  }
}

.cookie-banner-content {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cookie-banner-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
}

.cookie-banner-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #F0F3F8;
}

.cookie-banner-desc {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #F0F3F8;
}
.cookie-banner-desc a {
  color: #F0F3F8;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
}

.cookie-btn {
  height: 45px;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  transition: all 0.3s ease;
}
.cookie-btn--accept {
  background: #4B34F6;
  color: #FFFFFF;
}
.cookie-btn--accept:hover {
  opacity: 0.9;
}
.cookie-btn--reject {
  background: #F0F3F8;
  color: #1D1B34;
}
.cookie-btn--reject:hover {
  opacity: 0.9;
}
.cookie-btn--manage {
  background: transparent;
  border: 1px solid #F0F3F8;
  color: #F0F3F8;
}
.cookie-btn--manage:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(29, 27, 52, 0.8);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.cookie-modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 529px;
  background: #FFFFFF;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.cookie-modal.is-visible {
  transform: translateX(0);
}
@media (max-width: 767px) {
  .cookie-modal {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 90vh;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
  }
  .cookie-modal.is-visible {
    transform: translateY(0);
  }
}

.cookie-modal-handle {
  display: none;
}
@media (max-width: 767px) {
  .cookie-modal-handle {
    display: block;
    width: 62px;
    height: 4px;
    background: #1D1B34;
    opacity: 0.08;
    border-radius: 100px;
    margin: 16px auto 0;
  }
}

.cookie-modal-top {
  display: flex;
  justify-content: flex-end;
  padding: 16px 24px 0;
}
@media (max-width: 767px) {
  .cookie-modal-top {
    display: none;
  }
}

.cookie-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  background: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1D1B34;
  transition: all 0.3s ease;
}
.cookie-modal-close:hover {
  background: #F0F3F8;
}

.cookie-modal-body {
  flex: 1;
  overflow-y: auto;
  background: #FFFFFF;
  padding: 0 32px;
}
@media (max-width: 767px) {
  .cookie-modal-body {
    padding: 0 24px;
  }
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cookie-modal-header {
    margin-bottom: 0;
    padding: 16px 0;
  }
}

.cookie-modal-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-modal-header-left h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  color: #1D1B34;
}

.cookie-modal-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cookie-modal-icon {
    display: none;
  }
}

.cookie-modal-close--mobile {
  display: none;
}
@media (max-width: 767px) {
  .cookie-modal-close--mobile {
    display: flex;
  }
}

.cookie-modal-desc {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .cookie-modal-desc {
    margin-bottom: 24px;
  }
}
.cookie-modal-desc p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
}

.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cookie-category {
  padding-bottom: 24px;
}
@media (max-width: 767px) {
  .cookie-category {
    padding-bottom: 16px;
  }
}
.cookie-category--border {
  border-bottom: 1px solid rgba(29, 27, 52, 0.08);
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cookie-category-header {
    margin-bottom: 12px;
  }
}

.cookie-category-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #1D1B34;
}
@media (max-width: 767px) {
  .cookie-category-name {
    font-size: 16px;
  }
}

.cookie-category-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
}

.cookie-modal-footer {
  display: flex;
  gap: 8px;
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(29, 27, 52, 0.08);
}
.cookie-modal-footer .btn {
  flex: 1;
  padding: 15px 28px;
  font-size: 16px;
  height: auto;
  text-align: center;
  justify-content: center;
}
.cookie-modal-footer .btn--outline-blue {
  border: 1px solid #4B34F6;
  color: #4B34F6;
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cookie-modal-footer .btn--outline-blue::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #4B34F6;
  z-index: -1;
  transition: left 0.4s ease;
}
.cookie-modal-footer .btn--outline-blue:hover {
  color: #FFFFFF;
}
.cookie-modal-footer .btn--outline-blue:hover::before {
  left: 0;
}
.cookie-modal-footer .btn--blue::before {
  background: #1D1B34;
}
.cookie-modal-footer .btn--blue:hover {
  color: #FFFFFF;
}

/* Cookie Modal Toggle */
.cookie-modal .toggle-switch {
  width: 36px;
  height: 20px;
  border-radius: 100px;
  background: #F0F3F8;
  border: 1px solid #4B34F6;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-modal .toggle-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #4B34F6;
  transition: left 0.2s ease;
}
.cookie-modal .toggle-switch.is-active {
  background: #4B34F6;
  border-color: #4B34F6;
}
.cookie-modal .toggle-switch.is-active::after {
  left: 18px;
  background: #FFFFFF;
}
.cookie-modal .toggle-switch.is-locked {
  cursor: default;
  opacity: 0.3;
}

/* Forms */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-weight: 400;
  font-size: 14px;
  color: #1D1B34;
}
.form-group input,
.form-group textarea {
  border: 1px solid rgba(29, 27, 52, 0.16);
  border-radius: 4px;
  padding: 16px;
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1D1B34;
  background: rgba(29, 27, 52, 0.02);
  transition: border-color 0.2s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #1D1B34;
  opacity: 0.4;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #4B34F6;
  background: #FFFFFF;
}
.form-group textarea {
  resize: vertical;
}
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #E53935;
}
.form-group.has-error .form-error {
  display: block;
}

.form-error {
  display: none;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #E53935;
}

/* Checkboxes */
.form-checks {
  display: flex;
  gap: 16px 24px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-bottom: 12px;
}
.form-checks--vertical {
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  color: #1D1B34;
  position: relative;
}
.form-check input[type=checkbox],
.form-check input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}
.form-check input[type=checkbox]:checked + span::before,
.form-check input[type=radio]:checked + span::before {
  background: #4B34F6;
  border-color: #4B34F6;
}
.form-check input[type=checkbox]:checked + span::after,
.form-check input[type=radio]:checked + span::after {
  opacity: 1;
}
.form-check span {
  display: inline-block;
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
}
.form-check span::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 1px solid #4B34F6;
  border-radius: 2px;
  background: transparent;
}
.form-check span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 10px;
  height: 10px;
  background: #4B34F6;
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.form-check a {
  color: #4B34F6;
  text-decoration: underline;
}

/* Upload */
.form-upload {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.form-upload-btn {
  width: 94px;
  height: 94px;
  border: 1px solid #4B34F6;
  border-radius: 4px;
  background: rgba(75, 52, 246, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  color: #1D1B34;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}
.form-upload-btn:hover {
  background: rgba(75, 52, 246, 0.24);
}
.form-upload-btn img {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.form-upload-preview {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.form-upload-thumb {
  width: 94px;
  height: 94px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.form-upload-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-upload-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(29, 27, 52, 0.6);
  color: #FFFFFF;
  border: none;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Takas Selected Product */
.takas-selected {
  width: 100%;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.takas-selected-label {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: #1D1B34;
  text-align: center;
}

.takas-selected-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #4B34F6;
  border-radius: 4px;
  box-shadow: 0px 4px 0px 0px rgba(29, 27, 52, 0.1);
}

.takas-selected-image {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  background: #EFEFEF;
  border: 1px solid #F8F8F8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.takas-selected-image img {
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
}

.takas-selected-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 16px;
  min-width: 0;
}

.takas-selected-name {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
}

.takas-selected-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.takas-spec-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(12, 16, 22, 0.12);
  border-radius: 100px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #1D1B34;
}

.takas-section-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: #1D1B34;
  text-align: center;
  width: 100%;
  margin-bottom: 32px;
}

/* Sale Form Submit */
.sale-form {
  width: 100%;
}
.sale-form .form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-bottom: 32px;
}
.sale-form .form-actions {
  width: 100%;
}

/* Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(29, 27, 52, 0.5);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 529px;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  z-index: 910;
  display: flex;
  flex-direction: column;
  transition: right 0.4s ease;
}
.drawer.is-open {
  right: 0;
}
.drawer {
  /* Mobil / tablet: alttan bottom sheet (yan panel yerine) */
}
@media (max-width: 767px) {
  .drawer {
    top: auto;
    right: auto;
    left: 0;
    bottom: -100%;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 85vh;
    min-height: 0;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 32px rgba(29, 27, 52, 0.1);
    transition: bottom 0.4s ease;
  }
  .drawer.is-open {
    right: auto;
    bottom: 0;
  }
  .drawer::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(29, 27, 52, 0.12);
    border-radius: 100px;
    margin: 12px auto 0;
    flex-shrink: 0;
  }
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 32px 0;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .drawer-header {
    padding: 8px 24px 0;
  }
}
.drawer-header h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  color: #1D1B34;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 575px) {
  .drawer-header h2 {
    font-size: 20px;
  }
}
.drawer-header h2 img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.drawer-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  color: #1D1B34;
  background: none;
  border: none;
  margin-top: 4px;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding: 24px 32px 32px;
  padding-bottom: max(32px, env(safe-area-inset-bottom, 0px));
}
@media (max-width: 767px) {
  .drawer-body {
    padding: 16px 24px 24px;
    padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
  }
}
.drawer-body h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  margin-top: 24px;
  margin-bottom: 8px;
}
.drawer-body h3:first-child {
  margin-top: 0;
}
.drawer-body p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #1D1B34;
  margin-bottom: 16px;
}
.drawer-body p strong {
  font-weight: 600;
}
.drawer-body ul {
  margin-bottom: 16px;
  padding-left: 20px;
}
.drawer-body ul li {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #1D1B34;
  list-style: disc;
  margin-bottom: 4px;
}

/* Button modifiers */
.btn--full {
  width: 100%;
}

.btn--outline-gray {
  background: #FFFFFF;
  color: #1D1B34;
  border: 1px solid rgba(29, 27, 52, 0.12);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn--outline-gray::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1D1B34;
  z-index: -1;
  transition: left 0.4s ease;
}
.btn--outline-gray:hover {
  color: #FFFFFF;
  border-color: #1D1B34;
}
.btn--outline-gray:hover::before {
  left: 0;
}

.captcha-group .captcha-row {
  display: flex;
  align-items: stretch;
  gap: 16px;
}
.captcha-group .captcha-question {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #1D1B34;
  background: #F0F3F8;
  padding: 16px 18px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.captcha-group input[type=number] {
  flex: 1;
  -moz-appearance: textfield;
}
.captcha-group input[type=number]::-webkit-outer-spin-button, .captcha-group input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Dil seçici — minimal (Figma "Frame 2147227107") */
/* Kapalı: "TR" + chevron, Geist Light 16px, #1D1B34 @ %40 opacity, kutu YOK.    */
/* Açık:   diğer dil kodları ("EN") hemen altta, tam opaklıkta, kart/gölge YOK.   */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 16px;
}
@media (max-width: 991px) {
  .lang-switcher {
    margin-left: 8px;
  }
}
.lang-switcher .lang-switcher-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.lang-switcher .lang-switcher-toggle:hover {
  opacity: 0.7;
}
.lang-switcher .lang-switcher-toggle .icon-chevron {
  width: 16px;
  height: 16px;
  display: block;
}
.lang-switcher {
  /* Açık menü: şeffaf, kartsız — kodlar dikey, sağa hizalı, toggle'ın hemen altında */
}
.lang-switcher .lang-switcher-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 50;
}
.lang-switcher.is-open .lang-switcher-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switcher .lang-switcher-item {
  font-family: "Geist", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #1D1B34;
  text-decoration: none;
  transition: opacity 0.15s ease;
  opacity: 1;
}
.lang-switcher .lang-switcher-item:hover {
  opacity: 0.6;
}
.lang-switcher {
  /* Mobil: MENU/Kapat'ın yanına taşı; inline dropdown'ı gizle (bottom-sheet kullanılır) */
}
@media (max-width: 1024px) {
  .lang-switcher {
    margin-left: auto;
    margin-right: 20px;
  }
  .lang-switcher .lang-switcher-menu {
    display: none;
  }
}

/* Mobil dil seçici — bottom-sheet (Figma "Dil / Language") */
.lang-sheet {
  position: fixed;
  inset: 0;
  z-index: 1200;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
@media (min-width: 1025px) {
  .lang-sheet {
    display: none;
  }
}
.lang-sheet.is-open {
  visibility: visible;
  opacity: 1;
}
.lang-sheet .lang-sheet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 27, 52, 0.8);
}
.lang-sheet .lang-sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F0F3F8;
  border-radius: 24px 24px 0 0;
  padding: 16px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lang-sheet.is-open .lang-sheet-panel {
  transform: translateY(0);
}
.lang-sheet .lang-sheet-handle {
  width: 62px;
  height: 4px;
  border-radius: 100px;
  background: rgba(29, 27, 52, 0.08);
  margin-bottom: 4px;
}
.lang-sheet .lang-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  padding: 8px 24px 16px;
}
.lang-sheet .lang-sheet-title {
  font-family: "Geist", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: #1D1B34;
}
.lang-sheet .lang-sheet-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 0;
  border-radius: 100px;
  background: #fff;
  cursor: pointer;
}
.lang-sheet .lang-sheet-list {
  list-style: none;
  margin: 0;
  padding: 0 20px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lang-sheet .lang-sheet-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1D1B34;
  text-decoration: none;
}
.lang-sheet .lang-sheet-item.is-active {
  font-weight: 600;
}
.lang-sheet .lang-sheet-item .lang-sheet-name {
  text-align: left;
}
.lang-sheet .lang-sheet-item .lang-sheet-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Layouts */
/* Header */
#general-container {
  padding-top: 88px;
}
@media (max-width: 575px) {
  #general-container {
    padding-top: 72px;
  }
}

header#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #F0F3F8;
  transition: background-color 0.3s ease, transform 0.35s ease;
}
header#header.header--hidden {
  transform: translateY(-110%);
}
header#header.header--white {
  background-color: #FFFFFF;
}
header#header.mega-open, header#header.mobile-open {
  background-color: #FFFFFF;
  border-bottom: 1px solid #efefef;
}
header#header.mega-open .has-mega-menu .nav-link {
  opacity: 1;
}
header#header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 52px;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  header#header .header-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  header#header .header-inner {
    height: 72px;
    padding: 0 24px;
  }
}
header#header .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
header#header .logo img {
  height: 22px;
  width: auto;
}
header#header {
  /* Desktop Navigation */
}
header#header .nav-desktop {
  margin-left: auto;
}
header#header .nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
header#header .nav-desktop .nav-link {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.3s ease;
}
header#header .nav-desktop .nav-link:hover {
  opacity: 0.4;
}
header#header .nav-desktop .icon-chevron {
  transition: all 0.3s ease;
}
header#header .nav-desktop .has-mega-menu.is-open .icon-chevron {
  transform: rotate(180deg);
}
header#header .nav-desktop .has-dropdown {
  position: relative;
}
header#header .nav-desktop .has-dropdown:hover .icon-chevron {
  transform: rotate(180deg);
}
header#header .nav-desktop .has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
header#header .nav-desktop .nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #FFFFFF;
  border: 1px solid rgba(29, 27, 52, 0.08);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(29, 27, 52, 0.1);
  min-width: 180px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 300;
}
header#header .nav-desktop .nav-dropdown::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(29, 27, 52, 0.08);
}
header#header .nav-desktop .nav-dropdown::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -1px;
  border: 6px solid transparent;
  border-bottom-color: #FFFFFF;
}
@media (max-width: 1024px) {
  header#header .nav-desktop {
    display: none;
  }
}
header#header .nav-dropdown-link {
  display: block;
  padding: 10px 20px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: #1D1B34;
  white-space: nowrap;
  transition: all 0.3s ease;
}
header#header .nav-dropdown-link:hover {
  background: rgba(29, 27, 52, 0.04);
  opacity: 1;
}
header#header {
  /* Mobile Toggle */
}
header#header .nav-toggle {
  display: none;
  align-items: center;
  gap: 11px;
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #1D1B34;
}
@media (max-width: 1024px) {
  header#header .nav-toggle {
    display: flex;
  }
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid rgba(29, 27, 52, 0.08);
  z-index: 200;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.3s ease;
}
.mega-menu.is-open {
  clip-path: inset(0 0 0 0);
}

.mega-menu-content {
  max-width: 1440px;
  margin: 0 auto;
}

.mega-menu-body {
  display: flex;
  align-items: stretch;
  padding: 0 52px 56px;
}

.mega-menu-categories {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 24px;
  padding-right: 24px;
  border-right: 1px solid #efefef;
  flex-shrink: 0;
  min-width: 220px;
  align-self: stretch;
}

.mega-menu-categories:hover .mega-cat:not(:hover),
.mega-menu-categories:has(.mega-cat.is-active) .mega-cat:not(.is-active) {
  opacity: 0.4;
}

.mega-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  transition: opacity 0.2s ease;
}
.mega-cat:hover, .mega-cat.is-active {
  opacity: 1 !important;
  color: #1D1B34;
}
.mega-cat .mega-cat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-cat .mega-cat-icon img {
  max-width: 30px;
  max-height: 30px;
}

.mega-menu-panels {
  flex: 1;
  align-self: stretch;
  position: relative;
}

.mega-panel-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 24px 32px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.4;
  text-align: center;
}
.mega-panel-placeholder p {
  margin: 0;
}

.mega-menu-panels--idle .mega-panel-placeholder {
  display: flex;
}
.mega-menu-panels--idle .mega-panel {
  display: none !important;
}

.mega-panel {
  display: none;
}
.mega-panel.is-active {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: stretch;
}

.mega-panel-cols {
  display: flex;
  flex: 1;
  align-items: stretch;
  align-self: stretch;
  min-width: 0;
}

.mega-menu-col.mega-col-l2,
.mega-menu-col.mega-col-l3,
.mega-menu-col.mega-col-l4 {
  display: none;
}
.mega-menu-col.mega-col-l2.is-active,
.mega-menu-col.mega-col-l3.is-active,
.mega-menu-col.mega-col-l4.is-active {
  display: flex;
}

.mega-subcat.is-active {
  color: #1D1B34 !important;
  opacity: 1 !important;
  font-weight: 500;
}

.mega-menu-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px 16px 24px 24px;
  border-right: 1px solid #efefef;
  align-self: stretch;
}
.mega-menu-col a {
  padding: 8px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  transition: opacity 0.2s ease;
}
.mega-menu-col a.is-dim {
  opacity: 0.4;
}

.mega-menu-col:hover a:not(:hover),
.mega-menu-col:has(a.is-active) a:not(.is-active) {
  opacity: 0.4;
}

.mega-menu-cta {
  flex-shrink: 0;
  width: 440px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 24px;
  padding-top: 24px;
}

.mega-menu-card {
  border-radius: 4px;
  padding: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mega-menu-card .mega-menu-card-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.mega-menu-card .mega-menu-card-text,
.mega-menu-card .btn {
  position: relative;
  z-index: 1;
}
.mega-menu-card .btn {
  align-self: flex-start;
}
.mega-menu-card .mega-menu-card-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mega-menu-card .mega-menu-card-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}
.mega-menu-card .mega-menu-card-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
.mega-menu-card--dark {
  background: #1D1B34;
  color: #F0F3F8;
}
.mega-menu-card--dark .btn {
  border: none;
}
.mega-menu-card--dark .btn::before {
  background: #4B34F6;
}
@media (hover: hover) {
  .mega-menu-card--dark .btn:hover {
    border-color: transparent;
    color: #FFFFFF;
  }
  .mega-menu-card--dark .btn:hover::before {
    left: 0;
  }
}
.mega-menu-card--blue {
  background: #4B34F6;
  color: #F0F3F8;
}
.mega-menu-card--blue .btn {
  border: none;
}
.mega-menu-card--blue .btn::before {
  background: #1D1B34;
}
@media (hover: hover) {
  .mega-menu-card--blue .btn:hover {
    border-color: transparent;
    color: #FFFFFF;
  }
  .mega-menu-card--blue .btn:hover::before {
    left: 0;
  }
}

/* Mega Overlay */
.mega-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 27, 52, 0.8);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mega-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 12px 20px;
  border-radius: 4px;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--blue {
  background: #4B34F6;
  color: #FFFFFF;
  border: 1px solid #4B34F6;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn--blue::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1D1B34;
  z-index: -1;
  transition: left 0.4s ease;
}
@media (hover: hover) {
  .btn--blue:hover {
    color: #FFFFFF;
    border-color: #1D1B34;
  }
  .btn--blue:hover::before {
    left: 0;
  }
}
.btn--dark {
  background: #1D1B34;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn--dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #4B34F6;
  z-index: -1;
  transition: left 0.4s ease;
}
@media (hover: hover) {
  .btn--dark:hover::before {
    left: 0;
  }
}
.btn--white {
  background: #FFFFFF;
  color: #4B34F6;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn--white::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #4B34F6;
  z-index: -1;
  transition: left 0.4s ease;
}
@media (hover: hover) {
  .btn--white:hover {
    color: #FFFFFF;
  }
  .btn--white:hover::before {
    left: 0;
  }
}
.btn--outline {
  background: transparent;
  color: #4B34F6;
  border: 1px solid #4B34F6;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn--outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #4B34F6;
  z-index: -1;
  transition: left 0.4s ease;
}
@media (hover: hover) {
  .btn--outline:hover {
    color: #FFFFFF;
  }
  .btn--outline:hover::before {
    left: 0;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  z-index: 99;
  overflow-y: auto;
  max-height: 0;
  transition: max-height 0.4s ease;
}
@media (max-width: 575px) {
  .mobile-menu {
    top: 72px;
  }
}
.mobile-menu.is-open {
  max-height: calc(100vh - 88px);
  max-height: calc(100dvh - 88px);
}
@media (max-width: 575px) {
  .mobile-menu.is-open {
    max-height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);
  }
}
.mobile-menu .mobile-menu-body {
  display: flex;
  flex-direction: column;
  padding: 16px 24px 32px;
  border-top: 1px solid #efefef;
}
@media (max-width: 575px) {
  .mobile-menu .mobile-menu-body {
    padding: 16px 24px 24px;
  }
}
.mobile-menu .mobile-menu-nav {
  margin-bottom: 32px;
}
.mobile-menu .mobile-menu-nav ul {
  display: flex;
  flex-direction: column;
}
.mobile-menu .mobile-menu-nav a {
  display: block;
  padding: 10px 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
}
.mobile-menu .mobile-menu-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu .mobile-menu-card {
  border-radius: 4px;
  padding: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu .mobile-menu-card .btn {
  align-self: flex-start;
}
.mobile-menu .mobile-menu-card .mobile-menu-card-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.mobile-menu .mobile-menu-card .mobile-menu-card-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}
.mobile-menu .mobile-menu-card .mobile-menu-card-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
.mobile-menu .mobile-menu-card .btn {
  position: relative;
  z-index: 1;
}
.mobile-menu .mobile-menu-card .mobile-menu-card-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.mobile-menu .mobile-menu-card--dark {
  background: #1D1B34;
  color: #F0F3F8;
}
.mobile-menu .mobile-menu-card--blue {
  background: #4B34F6;
  color: #F0F3F8;
}

/* Sidebar */
/* Footer */
footer#footer {
  color: #FFFFFF;
  /* CTA Banner */
}
footer#footer .footer-cta-banner {
  background: #A5D5CF;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 575px) {
  footer#footer .footer-cta-banner {
    padding: 160px 0;
  }
}
footer#footer .footer-cta-content {
  position: relative;
  z-index: 1;
  max-width: 738px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
footer#footer .footer-cta-content h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.4;
  color: #1D1B34;
}
@media (max-width: 1024px) {
  footer#footer .footer-cta-content h2 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  footer#footer .footer-cta-content h2 {
    font-size: 28px;
  }
}
footer#footer .footer-cta-content p {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  max-width: 616px;
}
@media (max-width: 575px) {
  footer#footer .footer-cta-content p {
    font-size: 16px;
  }
}
footer#footer .footer-cta-content .btn {
  padding: 16px 28px;
  font-size: 16px;
}
footer#footer .footer-cta-content .btn::before {
  background: #1D1B34;
}
footer#footer .footer-cta-content .btn:hover {
  color: #FFFFFF;
}
footer#footer .footer-cta-deco {
  position: absolute;
  z-index: 0;
  width: 173px;
  height: 85px;
}
@media (max-width: 575px) {
  footer#footer .footer-cta-deco {
    width: 130px;
    height: 64px;
  }
}
footer#footer .footer-cta-deco--left {
  top: 0;
  left: 0;
}
footer#footer .footer-cta-deco--right {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
footer#footer .footer-cta-deco img {
  display: block;
  width: 100%;
  height: 100%;
}
footer#footer {
  /* Footer Main */
}
footer#footer .footer-main {
  background: #1d1b34;
  padding-top: 52px;
}
@media (max-width: 767px) {
  footer#footer .footer-main {
    padding-top: 42px;
  }
}
footer#footer .footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  footer#footer .footer-inner {
    flex-direction: column;
    gap: 48px;
  }
}
@media (max-width: 767px) {
  footer#footer .footer-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  footer#footer .footer-inner {
    gap: 50px;
  }
}
footer#footer .footer-left {
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  footer#footer .footer-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
footer#footer .footer-left .logo img {
  height: 22px;
  width: auto;
}
footer#footer .footer-right {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 1199px) {
  footer#footer .footer-right {
    gap: 50px;
  }
}
@media (max-width: 1024px) {
  footer#footer .footer-right {
    width: 100%;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  footer#footer .footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 0;
  }
}
footer#footer .footer-col-title {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.32;
  margin-bottom: 24px;
}
footer#footer .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer#footer .footer-col a {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
  transition: all 0.3s ease;
}
footer#footer .footer-col a:hover {
  opacity: 1;
}
@media (max-width: 575px) {
  footer#footer .footer-col--iletisim {
    order: -1;
    grid-column: 1/-1;
  }
  footer#footer .footer-col--iletisim .footer-col-title {
    display: none;
  }
}
@media (max-width: 575px) {
  footer#footer .footer-col--kurumsal,
  footer#footer .footer-col--yasal {
    display: flex;
    flex-direction: column;
  }
}
footer#footer {
  /* İletişim bölümü - mobilde en üstte */
}
footer#footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}
footer#footer .footer-email {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.9;
}
footer#footer .footer-email strong {
  font-weight: 600;
}
footer#footer .footer-phone {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.9;
}
footer#footer .footer-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
footer#footer .footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border-radius: 4px;
  padding: 4px 24px 4px 4px;
  transition: all 0.3s ease;
}
footer#footer .footer-cta-btn:hover {
  opacity: 0.9;
}
footer#footer .footer-cta-btn span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #1D1B34;
}
footer#footer .footer-cta-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
footer#footer .footer-scroll-top {
  width: 56px;
  height: 56px;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #FFFFFF;
  opacity: 0.9;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, opacity 0.3s ease;
  z-index: 1;
}
footer#footer .footer-scroll-top--mobile {
  display: none;
}
@media (max-width: 1024px) {
  footer#footer .footer-scroll-top--mobile {
    display: flex;
  }
}
@media (max-width: 1024px) {
  footer#footer .footer-scroll-top--desktop {
    display: none;
  }
}
footer#footer .footer-scroll-top--desktop svg {
  position: relative;
  z-index: 2;
}
footer#footer .footer-scroll-top--desktop::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: #FFFFFF;
  transition: height 0.4s ease;
  z-index: 1;
}
footer#footer .footer-scroll-top--desktop:hover {
  color: #1D1B34;
  opacity: 1;
}
footer#footer .footer-scroll-top--desktop:hover::before {
  height: 100%;
}
@media (max-width: 767px) {
  footer#footer .footer-scroll-top--desktop {
    position: absolute;
    top: 52px;
    right: 24px;
  }
}
@media (max-width: 575px) {
  footer#footer .footer-scroll-top--desktop {
    right: 16px;
    width: 48px;
    height: 48px;
  }
}
footer#footer {
  /* Footer Bottom */
}
footer#footer .footer-bottom {
  background: #1d1b34;
}
footer#footer .footer-bottom-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 52px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1024px) {
  footer#footer .footer-bottom-inner {
    padding-top: 225px;
  }
}
@media (max-width: 1024px) {
  footer#footer .footer-bottom-inner {
    padding-top: 60px !important;
  }
}
@media (max-width: 767px) {
  footer#footer .footer-bottom-inner {
    padding: 24px 24px 32px;
  }
}
@media (max-width: 575px) {
  footer#footer .footer-bottom-inner {
    padding: 24px 16px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
footer#footer .footer-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}
footer#footer .footer-socials a {
  opacity: 0.72;
  transition: all 0.3s ease;
}
footer#footer .footer-socials a:hover {
  opacity: 1;
}
footer#footer .footer-socials img {
  width: 20px;
  height: 20px;
}
footer#footer .footer-copy {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.72;
}
footer#footer {
  /* Mobilde Kurumsal ve Yasal yan yana */
}
@media (max-width: 575px) {
  footer#footer .footer-right .footer-col--kurumsal,
  footer#footer .footer-right .footer-col--yasal {
    width: auto;
    display: flex;
  }
  footer#footer .footer-inner {
    position: relative;
  }
}

/* Pages */
/* Home */
/* Hero */
#hero {
  background-color: #F0F3F8;
}
#hero .hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 767px) {
  #hero .hero-inner {
    padding: 0 24px;
  }
}
#hero .hero-title {
  padding: 72px 0;
  text-align: center;
}
@media (max-width: 1024px) {
  #hero .hero-title {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  #hero .hero-title {
    padding: 40px 0;
  }
}
#hero .hero-title h1 {
  font-weight: 600;
  font-size: 56px;
  line-height: 1.4;
  color: #1D1B34;
  max-width: 740px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  #hero .hero-title h1 {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  #hero .hero-title h1 {
    font-size: 40px;
    max-width: 544px;
  }
}
@media (max-width: 575px) {
  #hero .hero-title h1 {
    font-size: 32px;
    max-width: 100%;
  }
}
#hero {
  /* Category Cards */
}
#hero .hero-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 32px;
}
@media (max-width: 1024px) {
  #hero .hero-categories {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-right: -52px;
    margin-left: -52px;
  }
  #hero .hero-categories::after {
    content: "";
    flex-shrink: 0;
    width: 52px;
  }
  #hero .hero-categories {
    padding-left: 52px;
    scroll-padding-left: 52px;
  }
  #hero .hero-categories::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 767px) {
  #hero .hero-categories {
    margin-right: -24px;
    margin-left: -24px;
  }
  #hero .hero-categories::after {
    content: "";
    flex-shrink: 0;
    width: 24px;
  }
  #hero .hero-categories {
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
}
@media (max-width: 575px) {
  #hero .hero-categories {
    gap: 8px;
    margin-right: -24px;
    margin-left: -24px;
  }
  #hero .hero-categories::after {
    content: "";
    flex-shrink: 0;
    width: 24px;
  }
  #hero .hero-categories {
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
}
#hero .category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
  height: 365px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  #hero .category-card {
    height: 270px;
    min-width: 240px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}
@media (max-width: 767px) {
  #hero .category-card {
    min-width: 220px;
    height: 280px;
  }
}
@media (hover: hover) and (min-width: 1025px) {
  #hero .category-card:hover .category-card-hover {
    opacity: 1;
  }
  #hero .category-card:hover .category-card-image {
    visibility: hidden;
  }
  #hero .category-card:hover .category-card-label .category-name {
    color: #FFFFFF;
  }
  #hero .category-card:hover .category-card-label .category-dot {
    --dot-color: #F0F3F8;
  }
  #hero .category-card:hover::before {
    opacity: 1;
  }
}
#hero .category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1D1B34;
  border-radius: 4px;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
}
#hero .category-card-label {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 32px;
}
#hero .category-card-label .category-name {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #1D1B34;
  transition: all 0.3s ease;
}
#hero .category-dot {
  width: 14px;
  height: 27px;
  border-radius: 0 14px 14px 0;
  flex-shrink: 0;
  background: var(--dot-color, #4B34F6);
  transition: all 0.3s ease;
}
#hero .category-card-hover {
  position: absolute;
  z-index: 3;
  top: 70px;
  left: 32px;
  right: 32px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: all 0.3s ease;
  padding-top: 15px;
}
#hero .category-card-hover .category-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.64);
}
#hero .category-card-hover .category-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
}
#hero .category-card-hover .category-link svg {
  margin-left: auto;
  transition: transform 0.3s ease;
}
#hero .category-card-hover .category-link:hover svg {
  transform: translateX(4px);
}
#hero .category-card-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
#hero .category-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Promo Slider */
#promo-slider {
  padding: 32px 0;
}
#promo-slider .promo-slider-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 767px) {
  #promo-slider .promo-slider-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  #promo-slider .promo-slider-inner {
    padding: 0 24px;
  }
}
#promo-slider .promo-slider-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 4px;
  overflow: hidden;
  min-height: 484px;
}
@media (max-width: 1024px) {
  #promo-slider .promo-slider-wrap {
    min-height: 380px;
  }
}
@media (max-width: 767px) {
  #promo-slider .promo-slider-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
#promo-slider .promo-slider-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 55px;
  overflow: hidden;
  background: #A5D5CF;
}
@media (max-width: 767px) {
  #promo-slider .promo-slider-left {
    padding: 24px;
    order: 2;
    min-height: 230px;
    gap: 24px;
    flex-direction: column-reverse;
  }
}
#promo-slider .promo-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 496px;
  height: 244px;
  z-index: 0;
}
@media (max-width: 767px) {
  #promo-slider .promo-deco {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 80px;
    transform: rotate(180deg);
  }
}
#promo-slider .promo-deco img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  #promo-slider .promo-dots--inside {
    display: none;
  }
}
#promo-slider .promo-dots.promo-dots--outside {
  display: none;
}
@media (max-width: 767px) {
  #promo-slider .promo-dots.promo-dots--outside {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 42px 0 8px;
  }
  #promo-slider .promo-dots.promo-dots--outside .promo-dot {
    width: 40px;
    height: 40px;
  }
  #promo-slider .promo-dots.promo-dots--outside .dot-inner {
    background: #4B34F6;
    opacity: 1;
  }
  #promo-slider .promo-dots.promo-dots--outside .dot-progress-bg {
    stroke: rgba(29, 27, 52, 0.16);
  }
  #promo-slider .promo-dots.promo-dots--outside .dot-progress-fill {
    stroke: #4B34F6;
  }
}
#promo-slider .promo-slider-controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #promo-slider .promo-slider-controls {
    justify-content: space-between;
  }
}
#promo-slider .promo-dots {
  display: flex;
  align-items: center;
  height: 40px;
}
@media (max-width: 767px) {
  #promo-slider .promo-dots.promo-dots--inside {
    display: none;
  }
}
#promo-slider .promo-dot {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  padding: 0;
  background: transparent;
  position: relative;
}
#promo-slider .promo-dot .dot-progress {
  display: none;
}
#promo-slider .promo-dot .dot-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFFFFF;
  opacity: 0.5;
  display: block;
}
#promo-slider .promo-dot.is-active .dot-progress {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}
#promo-slider .promo-dot.is-active .dot-progress-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 2;
}
#promo-slider .promo-dot.is-active .dot-progress-fill {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
  stroke-dasharray: 113.1;
  stroke-dashoffset: 113.1;
  stroke-linecap: round;
  animation: dotProgress 5s linear forwards;
}
#promo-slider .promo-dot.is-active .dot-inner {
  width: 6px;
  height: 6px;
  opacity: 1;
  position: relative;
  z-index: 1;
}
#promo-slider .promo-dots--outside .promo-dot .dot-inner {
  background: #4B34F6;
  opacity: 1;
}
#promo-slider .promo-dots--outside .promo-dot.is-active .dot-progress-bg {
  stroke: rgba(75, 52, 246, 0.16);
}
#promo-slider .promo-dots--outside .promo-dot.is-active .dot-progress-fill {
  stroke: #4B34F6;
}
#promo-slider .promo-arrow {
  width: 56px;
  height: 40px;
  border: 1px solid #4B34F6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  color: #4B34F6;
  transition: all 0.3s ease;
}
#promo-slider .promo-arrow:hover {
  background: #4B34F6;
  color: #FFFFFF;
}
#promo-slider .promo-arrow:hover img {
  filter: brightness(0) invert(1);
}
#promo-slider .promo-texts {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#promo-slider .promo-text {
  display: none;
}
#promo-slider .promo-text.is-active {
  display: block;
  animation: slideUp 0.4s ease;
}
#promo-slider .promo-text p {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.4;
  color: #1D1B34;
  max-width: 420px;
}
@media (max-width: 1024px) {
  #promo-slider .promo-text p {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  #promo-slider .promo-text p {
    font-size: 20px;
  }
}
#promo-slider .promo-slider-right {
  position: relative;
  overflow: hidden;
  min-height: 484px;
  background: #e5e4ec;
}
@media (max-width: 1024px) {
  #promo-slider .promo-slider-right {
    min-height: 380px;
  }
}
@media (max-width: 767px) {
  #promo-slider .promo-slider-right {
    min-height: 230px;
    order: 1;
  }
}
#promo-slider .promo-slides-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
#promo-slider .promo-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
#promo-slider .promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dotProgress {
  0% {
    stroke-dashoffset: 113.1;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* Güven / Testimonials */
#experience {
  padding: 88px 0;
}
@media (max-width: 1024px) {
  #experience {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  #experience {
    padding: 48px 0 56px;
  }
}
#experience .experience-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 767px) {
  #experience .experience-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  #experience .experience-inner {
    padding: 0 24px;
  }
}
#experience .experience-header {
  text-align: center;
  max-width: 776px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#experience .experience-desc {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
}
@media (max-width: 575px) {
  #experience .experience-desc {
    font-size: 16px;
  }
}
#experience .testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  #experience .testimonials {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-right: -52px;
    margin-left: -52px;
  }
  #experience .testimonials::after {
    content: "";
    flex-shrink: 0;
    width: 52px;
  }
  #experience .testimonials {
    padding-left: 52px;
    scroll-padding-left: 52px;
  }
  #experience .testimonials::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 767px) {
  #experience .testimonials {
    margin-right: -24px;
    margin-left: -24px;
  }
  #experience .testimonials::after {
    content: "";
    flex-shrink: 0;
    width: 24px;
  }
  #experience .testimonials {
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
}
@media (max-width: 575px) {
  #experience .testimonials {
    margin-right: -24px;
    margin-left: -24px;
  }
  #experience .testimonials::after {
    content: "";
    flex-shrink: 0;
    width: 24px;
  }
  #experience .testimonials {
    padding-left: 24px;
    scroll-padding-left: 24px;
    gap: 8px;
  }
}
#experience .testimonial-card {
  background: #F0F3F8;
  border-radius: 4px;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  #experience .testimonial-card {
    flex: 0 0 45%;
    min-width: 300px;
    scroll-snap-align: start;
  }
}
@media (max-width: 767px) {
  #experience .testimonial-card {
    flex: 0 0 80%;
    min-width: 280px;
    padding: 32px;
    min-height: 349px;
  }
}
#experience .testimonial-quote {
  width: 56px;
  height: 56px;
}
@media (max-width: 575px) {
  #experience .testimonial-quote {
    transform: rotate(180deg);
    width: 48px;
    height: 48px;
  }
}
#experience .testimonial-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  min-height: 140px;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  #experience .testimonial-text {
    font-weight: 300;
  }
}
#experience .testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#experience .testimonial-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
}
#experience .testimonial-role {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.32;
}

/* Akıllı Yazılımlar */
#smart-software {
  padding: 104px 0;
}
@media (max-width: 1024px) {
  #smart-software {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  #smart-software {
    padding: 48px 0;
  }
}
#smart-software .smart-software-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 767px) {
  #smart-software .smart-software-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  #smart-software .smart-software-inner {
    padding: 0 24px;
  }
}
#smart-software .smart-software-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 575px) {
  #smart-software .smart-software-header {
    margin-bottom: 32px;
  }
}
#smart-software .smart-software-desc {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
}
@media (max-width: 575px) {
  #smart-software .smart-software-desc {
    font-size: 16px;
  }
}
#smart-software .software-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  #smart-software .software-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    margin-right: -52px;
    margin-left: -52px;
  }
  #smart-software .software-cards::after {
    content: "";
    flex-shrink: 0;
    width: 52px;
  }
  #smart-software .software-cards {
    padding-left: 52px;
    scroll-padding-left: 52px;
  }
  #smart-software .software-cards::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 767px) {
  #smart-software .software-cards {
    margin-right: -24px;
    margin-left: -24px;
  }
  #smart-software .software-cards::after {
    content: "";
    flex-shrink: 0;
    width: 24px;
  }
  #smart-software .software-cards {
    padding-left: 24px;
    scroll-padding-left: 24px;
    gap: 8px;
  }
}
@media (max-width: 575px) {
  #smart-software .software-cards {
    margin-right: -24px;
    margin-left: -24px;
  }
  #smart-software .software-cards::after {
    content: "";
    flex-shrink: 0;
    width: 24px;
  }
  #smart-software .software-cards {
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
}
#smart-software .software-card {
  background: #F0F3F8;
  border-radius: 4px;
  padding: 32px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  transition: all 0.3s ease;
  flex: 0 0 calc(33.333% - 11px);
}
@media (max-width: 1024px) {
  #smart-software .software-card {
    flex: 0 0 calc(33.333% - 8px);
    min-width: 280px;
    scroll-snap-align: start;
  }
}
@media (max-width: 767px) {
  #smart-software .software-card {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 575px) {
  #smart-software .software-card {
    flex: 0 0 78%;
  }
}
#smart-software .software-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #A5D5CF;
  color: #4B34F6;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 16px;
  border-radius: 100px;
}
#smart-software .software-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#smart-software .software-card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#smart-software .software-card-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
}
#smart-software .software-card-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
}
#smart-software .software-card-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #4B34F6;
}
#smart-software .software-card-link svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}
#smart-software .software-card-link:hover svg {
  transform: translateX(4px);
}
#smart-software .software-card-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Güvende */
#trust {
  padding: 56px 0 72px;
}
@media (max-width: 1024px) {
  #trust {
    padding: 60px 0 48px;
    overflow: hidden;
  }
}
@media (max-width: 575px) {
  #trust {
    padding: 56px 0 40px;
  }
}
#trust .trust-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 767px) {
  #trust .trust-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  #trust .trust-inner {
    padding: 0 24px;
  }
}
#trust .trust-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 24px;
}
@media (max-width: 1024px) {
  #trust .trust-header {
    margin-bottom: 32px;
  }
}
#trust .trust-title {
  max-width: 700px;
  text-align: left;
}
@media (max-width: 1024px) {
  #trust .trust-title {
    text-align: center;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  #trust .trust-title {
    font-size: 28px;
  }
}
#trust .trust-arrows {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  #trust .trust-arrows {
    display: none;
  }
}
#trust .trust-slider {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
#trust .trust-slider::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1024px) {
  #trust .trust-slider {
    margin-right: -52px;
    margin-left: -52px;
    padding-left: 52px;
    scroll-padding-left: 52px;
  }
}
@media (max-width: 767px) {
  #trust .trust-slider {
    margin-right: -24px;
    margin-left: -24px;
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
}
@media (max-width: 575px) {
  #trust .trust-slider {
    margin-right: -24px;
    margin-left: -24px;
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
}
#trust .trust-track {
  display: flex;
  gap: 16px;
}
@media (max-width: 1024px) {
  #trust .trust-track::after {
    content: "";
    flex-shrink: 0;
    width: 52px;
  }
}
@media (max-width: 767px) {
  #trust .trust-track::after {
    width: 24px;
  }
}
@media (max-width: 575px) {
  #trust .trust-track {
    gap: 8px;
  }
  #trust .trust-track::after {
    width: 24px;
  }
}
#trust .trust-card {
  flex: 0 0 calc(25% - 12px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
@media (max-width: 1024px) {
  #trust .trust-card {
    flex: 0 0 42%;
  }
}
@media (max-width: 767px) {
  #trust .trust-card {
    flex: 0 0 46%;
  }
}
@media (max-width: 575px) {
  #trust .trust-card {
    flex: 0 0 80%;
  }
}
#trust .trust-card-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 322/423;
}
#trust .trust-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#trust .trust-card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#trust .trust-card-text::after {
  content: "";
  flex-shrink: 0;
  width: 24px;
}
#trust .trust-card-text h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: #1D1B34;
}
#trust .trust-card-text p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
}

/* Yenilenmiş Garantili Teraziler */
#renewed {
  padding: 72px 0;
}
@media (max-width: 1024px) {
  #renewed {
    padding: 48px 0;
    overflow: hidden;
  }
}
@media (max-width: 575px) {
  #renewed {
    padding: 40px 0;
  }
}
#renewed .renewed-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 767px) {
  #renewed .renewed-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  #renewed .renewed-inner {
    padding: 0 24px;
  }
}
#renewed .renewed-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
#renewed .renewed-title {
  text-align: left;
}
@media (max-width: 575px) {
  #renewed .renewed-title {
    text-align: center;
  }
}
#renewed .renewed-desc {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  max-width: 586px;
  opacity: 0.64;
}
@media (max-width: 575px) {
  #renewed .renewed-desc {
    font-size: 16px;
    text-align: center;
    max-width: 100%;
  }
}

/* Product Listing Blocks — mirrors #renewed */
[id^=product-listing-] {
  padding: 72px 0;
}
@media (max-width: 1024px) {
  [id^=product-listing-] {
    padding: 48px 0;
    overflow: hidden;
  }
}
@media (max-width: 575px) {
  [id^=product-listing-] {
    padding: 40px 0;
  }
}
[id^=product-listing-] .renewed-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 767px) {
  [id^=product-listing-] .renewed-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  [id^=product-listing-] .renewed-inner {
    padding: 0 24px;
  }
}
[id^=product-listing-] .renewed-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
[id^=product-listing-] .renewed-title {
  text-align: left;
}
@media (max-width: 575px) {
  [id^=product-listing-] .renewed-title {
    text-align: center;
  }
}
[id^=product-listing-] .renewed-desc {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  max-width: 586px;
  opacity: 0.64;
}
@media (max-width: 575px) {
  [id^=product-listing-] .renewed-desc {
    font-size: 16px;
    text-align: center;
    max-width: 100%;
  }
}

/* Takas / Satış */
#trade {
  padding: 64px 0 104px;
}
@media (max-width: 1024px) {
  #trade {
    padding: 48px 0 64px;
  }
}
@media (max-width: 575px) {
  #trade {
    padding: 40px 0 48px;
  }
}
#trade .trade-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
@media (max-width: 767px) {
  #trade .trade-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  #trade .trade-inner {
    padding: 0 24px;
    gap: 32px;
  }
}
#trade .trade-inner > .section-title {
  max-width: 676px;
  text-align: center;
}
#trade .trade-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  #trade .trade-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    margin-right: -24px;
    margin-left: -24px;
  }
  #trade .trade-cards::after {
    content: "";
    flex-shrink: 0;
    width: 24px;
  }
  #trade .trade-cards {
    padding-left: 24px;
    scroll-padding-left: 24px;
    width: calc(100% + 48px);
  }
  #trade .trade-cards::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 575px) {
  #trade .trade-cards {
    margin-right: -24px;
    margin-left: -24px;
  }
  #trade .trade-cards::after {
    content: "";
    flex-shrink: 0;
    width: 24px;
  }
  #trade .trade-cards {
    padding-left: 24px;
    scroll-padding-left: 24px;
    width: calc(100% + 48px);
  }
}
#trade .trade-card {
  border-radius: 4px;
  padding: 40px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 422px;
}
@media (max-width: 767px) {
  #trade .trade-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }
}
@media (max-width: 575px) {
  #trade .trade-card {
    padding: 24px;
    min-height: 360px;
  }
}
#trade .trade-card--blue {
  background: #4B34F6;
  color: #FFFFFF;
}
#trade .trade-card--green {
  background: #A5D5CF;
  color: #1D1B34;
}
#trade .trade-card-deco {
  position: absolute;
  z-index: 0;
  width: 372px;
  height: 264px;
  pointer-events: none;
}
#trade .trade-card-deco--left {
  left: -279px;
  top: 0;
}
#trade .trade-card-deco--right {
  top: -1px;
}
#trade .trade-card-deco img {
  width: 100%;
  height: 100%;
}
#trade .trade-card-deco--right {
  right: 0;
  left: auto;
}
#trade .trade-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
  justify-content: space-between;
}
#trade .trade-card-content .btn {
  height: 56px;
}
#trade .trade-card-content .btn::before {
  background: #1D1B34;
}
#trade .trade-card-content .btn:hover {
  color: #FFFFFF;
}
#trade .trade-card-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 32px;
}
#trade .trade-card-icon {
  align-self: flex-start;
}
#trade .trade-card h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.5;
  max-width: 501px;
}
@media (max-width: 1024px) {
  #trade .trade-card h3 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  #trade .trade-card h3 {
    font-size: 24px;
  }
}
#trade .trade-card p {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 575px) {
  #trade .trade-card p {
    font-size: 16px;
  }
}
#trade .trade-card .btn {
  align-self: flex-start;
  padding: 16px 28px;
  font-size: 16px;
}

/* Bekletmeyen Servis */
#service {
  background: #1D1B34;
  padding: 104px 0;
}
@media (max-width: 1024px) {
  #service {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  #service {
    padding: 48px 0;
  }
}
#service .service-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1024px) {
  #service .service-inner {
    padding-right: 0;
    padding-left: 24px;
  }
}
@media (max-width: 575px) {
  #service .service-inner {
    gap: 32px;
  }
}
#service .service-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 754px;
  margin: 0 auto;
}
#service .service-title {
  color: #FFFFFF;
}
@media (max-width: 575px) {
  #service .service-title {
    padding-right: 20px;
  }
}
#service .service-desc {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
  opacity: 0.64;
}
@media (max-width: 575px) {
  #service .service-desc {
    font-size: 16px;
  }
}
#service .service-header .btn {
  padding: 16px 28px;
  font-size: 16px;
  height: 56px;
}
#service.service--light {
  background: #F0F3F8;
}
#service.service--light .service-title {
  color: #1D1B34;
}
#service.service--light .service-desc {
  color: #1D1B34;
}
#service.service--light .service-header .btn {
  display: none;
}
#service.service--light .service-card {
  background: #FFFFFF;
}
#service .service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  #service .service-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 8px;
    margin-left: -24px;
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
  #service .service-grid::after {
    content: "";
    flex-shrink: 0;
    width: 24px;
  }
  #service .service-grid::-webkit-scrollbar {
    display: none;
  }
}
#service .service-card {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 326px;
}
@media (max-width: 1024px) {
  #service .service-card {
    flex: 0 0 42%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: auto;
  }
}
@media (max-width: 767px) {
  #service .service-card {
    flex: 0 0 46%;
  }
}
@media (max-width: 575px) {
  #service .service-card {
    flex: 0 0 72%;
  }
}
#service .service-card-icon {
  width: 48px;
  height: 48px;
  display: block;
  flex-shrink: 0;
  color: #4B34F6;
  fill: #4B34F6;
}
#service .service-card-icon[src] {
  object-fit: contain;
}
#service .service-card-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#service .service-card-text h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
}
#service .service-card-text p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
}

/* Section Title */
.section-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.4;
  color: #1D1B34;
}
@media (max-width: 1024px) {
  .section-title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .section-title {
    font-size: 28px;
    text-align: center;
  }
}

/* En Çok Satanlar */
#best-sellers {
  padding: 72px 0;
  background-color: #fff;
}
@media (max-width: 1024px) {
  #best-sellers {
    padding: 72px 0 40px;
  }
}
@media (max-width: 575px) {
  #best-sellers {
    padding: 56px 0 40px;
  }
}
#best-sellers .best-sellers-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 767px) {
  #best-sellers .best-sellers-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  #best-sellers .best-sellers-inner {
    padding: 0 24px;
  }
}

/* Product Slider Shared Styles */
.best-sellers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 16px;
}
@media (max-width: 1024px) {
  .best-sellers-header {
    margin-right: -52px;
    margin-left: -52px;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .best-sellers-header {
    margin-right: -24px;
    margin-left: -24px;
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .best-sellers-header {
    margin-top: 24px;
    margin-right: -24px;
    margin-left: -24px;
    padding-left: 0;
  }
}

.best-sellers-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.best-sellers-tabs::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1024px) {
  .best-sellers-tabs::before {
    content: "";
    flex-shrink: 0;
    width: calc(52px - 6px);
  }
  .best-sellers-tabs::after {
    content: "";
    flex-shrink: 0;
    width: 52px;
  }
}
@media (max-width: 767px) {
  .best-sellers-tabs::before {
    width: 18px;
  }
  .best-sellers-tabs::after {
    content: "";
    flex-shrink: 0;
    width: 24px;
  }
}
@media (max-width: 575px) {
  .best-sellers-tabs {
    flex-wrap: nowrap;
  }
  .best-sellers-tabs::before {
    width: 18px;
  }
  .best-sellers-tabs::after {
    content: "";
    flex-shrink: 0;
    width: 24px;
  }
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 4px;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(29, 27, 52, 0.08);
  color: #1D1B34;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-btn.is-active {
  background: #1D1B34;
  color: #FFFFFF;
  font-weight: 500;
  opacity: 1;
}
@media (hover: hover) {
  .tab-btn:hover:not(.is-active) {
    background: rgba(29, 27, 52, 0.16) !important;
    color: rgba(29, 27, 52, 0.84) !important;
  }
}
@media (max-width: 575px) {
  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
    height: 44px;
  }
}

.best-sellers-arrows {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .best-sellers-arrows {
    display: none;
  }
}

.slider-arrow {
  width: 56px;
  height: 40px;
  border: 1px solid #1D1B34;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: #1D1B34;
}
.slider-arrow:hover {
  background: #4B34F6;
  border-color: #4B34F6;
  color: #FFFFFF;
}
.slider-arrow.is-disabled {
  opacity: 0.32;
  pointer-events: none;
}

.best-sellers-slider {
  margin-top: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.best-sellers-slider::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1024px) {
  .best-sellers-slider {
    margin-right: -52px;
    margin-left: -52px;
    padding-left: 52px;
    scroll-padding-left: 52px;
  }
}
@media (max-width: 767px) {
  .best-sellers-slider {
    margin-right: -24px;
    margin-left: -24px;
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
}
@media (max-width: 575px) {
  .best-sellers-slider {
    margin-top: 16px;
    margin-right: -24px;
    margin-left: -24px;
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
}

.best-sellers-track,
.renewed-track {
  display: flex;
  gap: 16px;
}
@media (max-width: 1024px) {
  .best-sellers-track::after,
  .renewed-track::after {
    content: "";
    flex-shrink: 0;
    width: 52px;
  }
}
@media (max-width: 767px) {
  .best-sellers-track,
  .renewed-track {
    gap: 8px;
  }
  .best-sellers-track::after,
  .renewed-track::after {
    width: 24px;
  }
}
@media (max-width: 575px) {
  .best-sellers-track::after,
  .renewed-track::after {
    width: 24px;
  }
}

/* Product Card */
.product-card {
  flex: 0 0 calc(25% - 12px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1024px) {
  .product-card {
    flex: 0 0 42%;
  }
}
@media (max-width: 767px) {
  .product-card {
    flex: 0 0 46%;
  }
}
@media (max-width: 575px) {
  .product-card {
    flex: 0 0 72%;
  }
}

.product-card-image {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
}
.product-card-image img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img:first-child {
  transform: scale(1.06);
}

.product-badges {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 4px;
  z-index: 5;
}

.product-card--empty .product-card-image {
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: default;
}
.product-card--empty .product-card-image img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.product-card--empty .product-card-empty-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(29, 27, 52, 0.64);
  text-align: center;
  padding: 0 16px;
  margin: 0;
}

.product-badge {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: block;
  flex-shrink: 0;
}
.product-badge img {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.badge-tooltip {
  position: fixed;
  background: #1D1B34;
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  transform: translateX(-50%);
}
.badge-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1D1B34;
}
.badge-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .badge-tooltip {
    display: none;
  }
}

.product-card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 16px;
}
@media (max-width: 575px) {
  .product-card-info {
    gap: 8px;
  }
}

.product-specs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.spec-tag {
  display: inline-flex;
  align-items: center;
  height: 44px;
  background: #F0F0F0;
  padding: 0 24px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
  white-space: nowrap;
}

.product-card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-name {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
}
@media (max-width: 575px) {
  .product-name {
    font-weight: 300;
  }
}

.product-brand {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.48;
  letter-spacing: 1.12px;
}
@media (max-width: 575px) {
  .product-brand {
    display: none;
  }
}

/* Sticky WhatsApp Floating Action Button */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 700;
  box-shadow: 0 8px 24px rgba(29, 27, 52, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(29, 27, 52, 0.24);
}
.whatsapp-fab img {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 575px) {
  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

/* Referanslar — anasayfa logo şeridi (servis "markalar" listing görünümü) */
/* Yorum kartları (#experience alt padding 88px) ile "Alırken..." başlığı   */
/* (#trust üst padding 56px) arasında; net boşluk üstte ~72px, altta ~104px. */
#references {
  margin-top: -16px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  #references {
    margin-top: 0;
    margin-bottom: 24px;
  }
}
#references .references-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 767px) {
  #references .references-inner {
    padding: 0 24px;
  }
}
#references .references-title {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  #references .references-title {
    font-size: 16px;
  }
}
#references .references-grid {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
@media (max-width: 1024px) {
  #references .references-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 8px;
  }
  #references .references-grid::-webkit-scrollbar {
    display: none;
  }
}
#references .reference-item {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 74px;
  width: 140px;
  flex-shrink: 0;
}
#references .reference-item img {
  max-height: 74px;
  max-width: 100%;
  object-fit: contain;
}

/* Servis Hero */
#servis-hero .servis-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 52px 64px;
  display: grid;
  grid-template-columns: 1fr 637px;
  gap: 52px;
  align-items: start;
}
@media (max-width: 1024px) {
  #servis-hero .servis-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  #servis-hero .servis-hero-inner {
    padding: 24px 24px 48px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 575px) {
  #servis-hero .servis-hero-inner {
    padding: 24px 16px 32px;
  }
}
#servis-hero .servis-hero-left {
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
@media (max-width: 767px) {
  #servis-hero .servis-hero-left {
    order: 2;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 575px) {
  #servis-hero .servis-hero-left {
    padding-top: 0;
    gap: 16px;
  }
}
#servis-hero .servis-hero-left h1 {
  font-weight: 600;
  font-size: 56px;
  line-height: 1.1;
  color: #1D1B34;
}
@media (max-width: 1024px) {
  #servis-hero .servis-hero-left h1 {
    font-size: 44px;
  }
}
@media (max-width: 575px) {
  #servis-hero .servis-hero-left h1 {
    font-size: 28px;
  }
}
#servis-hero .servis-hero-desc {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  max-width: 557px;
  opacity: 0.64;
}
@media (max-width: 575px) {
  #servis-hero .servis-hero-desc {
    font-size: 16px;
  }
}
#servis-hero .servis-hero-buttons {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  align-self: flex-start;
}
@media (max-width: 767px) {
  #servis-hero .servis-hero-buttons {
    align-self: center;
  }
}
@media (max-width: 575px) {
  #servis-hero .servis-hero-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
}
#servis-hero .servis-hero-buttons .btn {
  height: 56px;
  padding: 16px 28px;
  font-size: 16px;
}
@media (max-width: 575px) {
  #servis-hero .servis-hero-buttons .btn {
    width: 100%;
    height: auto;
    padding: 14px 16px;
  }
}
#servis-hero .btn--outline {
  background: transparent;
  color: #4B34F6;
  border: 1px solid #4B34F6;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#servis-hero .btn--outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #4B34F6;
  z-index: -1;
  transition: left 0.4s ease;
}
#servis-hero .btn--outline:hover {
  color: #FFFFFF;
}
#servis-hero .btn--outline:hover::before {
  left: 0;
}
#servis-hero .servis-hero-right {
  position: relative;
  width: 637px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 767px) {
  #servis-hero .servis-hero-right {
    order: 1;
  }
}
@media (max-width: 1024px) {
  #servis-hero .servis-hero-right {
    width: 100%;
  }
}
#servis-hero .hero-img-cover {
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
#servis-hero .sh-visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 324px;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 575px) {
  #servis-hero .sh-visual {
    height: 260px;
  }
}
#servis-hero .sh-bg {
  position: absolute;
  inset: 0;
}
#servis-hero .sh-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#servis-hero .sh-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 289px;
  height: 284px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.24);
  z-index: 1;
}
@media (max-width: 1024px) {
  #servis-hero .sh-photo {
    width: 50%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  #servis-hero .sh-photo {
    width: 55%;
  }
}
#servis-hero .sh-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#servis-hero .sh-tool-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 92px;
  height: 92px;
  z-index: 2;
}
@media (max-width: 575px) {
  #servis-hero .sh-tool-icon {
    width: 64px;
    height: 64px;
    left: 14px;
    top: 14px;
  }
}
#servis-hero .sh-tool-icon img {
  width: 100%;
  height: 100%;
}
#servis-hero .sh-glass-card {
  position: absolute;
  top: 132px;
  left: 20px;
  width: 288px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}
@media (max-width: 575px) {
  #servis-hero .sh-glass-card {
    top: 100px;
    left: 12px;
    width: 240px;
    padding: 20px;
  }
}
#servis-hero .sh-glass-card p {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
}
@media (max-width: 575px) {
  #servis-hero .sh-glass-card p {
    font-size: 16px;
  }
}
#servis-hero .sh-badge {
  position: absolute;
  top: 312px;
  left: 210px;
  width: 127px;
  height: 127px;
  z-index: 3;
}
@media (max-width: 575px) {
  #servis-hero .sh-badge {
    top: 240px;
    left: 160px;
    width: 100px;
    height: 100px;
  }
}
#servis-hero .sh-badge img {
  width: 100%;
  height: 100%;
}
#servis-hero .sh-card {
  position: absolute;
  padding: 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 575px) {
  #servis-hero .sh-card {
    padding: 16px;
  }
}
#servis-hero .sh-card p {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
}
@media (max-width: 575px) {
  #servis-hero .sh-card p {
    font-size: 10px;
  }
}
#servis-hero .sh-card--dark {
  left: 0;
  top: 344px;
  width: 308px;
  background: #1D1B34;
}
@media (max-width: 1024px) {
  #servis-hero .sh-card--dark {
    width: 48.5%;
  }
}
@media (max-width: 575px) {
  #servis-hero .sh-card--dark {
    top: 280px;
  }
}
#servis-hero .sh-card--dark .sh-card-icon {
  filter: brightness(0) invert(1);
}
#servis-hero .sh-card--blue {
  right: 0;
  top: 344px;
  width: 309px;
  background: #4B34F6;
}
@media (max-width: 1024px) {
  #servis-hero .sh-card--blue {
    width: 50%;
  }
}
@media (max-width: 575px) {
  #servis-hero .sh-card--blue {
    top: 280px;
  }
}
#servis-hero .sh-card--blue .sh-card-icon {
  filter: brightness(0) invert(1);
}
#servis-hero .sh-card-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  #servis-hero .sh-card-icon {
    width: 17px;
    height: 17px;
  }
}

/* Sticky CTA */
.sticky-cta {
  display: none;
}
@media (max-width: 1024px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
  }
  .sticky-cta .btn {
    width: 100%;
    height: auto;
    padding: 20px 28px 24px;
    font-size: 16px;
    border-radius: 0;
  }
}

/* Bekletmeyen servis — yalnızca servis.html (#service.service--light); masaüstü üst boşluk */
#service.service--light {
  padding: 88px 0 24px;
}
@media (max-width: 1024px) {
  #service.service--light {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  #service.service--light {
    padding: 56px 0 48px;
  }
}

/* Servis Süreci */
#service-process {
  background: #1D1B34;
  padding: 88px 0 104px;
}
@media (max-width: 1024px) {
  #service-process {
    padding: 64px 0 80px;
  }
}
@media (max-width: 575px) {
  #service-process {
    padding: 48px 0 56px;
  }
}
#service-process .process-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (max-width: 767px) {
  #service-process .process-inner {
    padding: 0 24px;
  }
}
#service-process .process-title {
  color: #F0F3F8;
  text-align: center;
}
#service-process .process-steps {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  #service-process .process-steps {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  #service-process .process-steps {
    flex-direction: column;
  }
}
#service-process .process-step {
  position: relative;
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  padding: 32px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
#service-process .process-step:last-child .process-step-arrow {
  display: none;
}
@media (max-width: 767px) {
  #service-process .process-step {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 575px) {
  #service-process .process-step {
    flex: 1 1 100%;
  }
}
#service-process .process-step h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #F0F3F8;
}
#service-process .process-step p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #F0F3F8;
  opacity: 0.64;
}
#service-process .process-step-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#service-process .process-step-icon {
  width: 82px;
  height: 82px;
  background: #4B34F6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#service-process .process-step-icon img {
  width: 40px;
  height: 40px;
}
#service-process {
  /* Arrow — Desktop: top-right of step | Mobile: bottom-left */
}
#service-process .process-step-arrow {
  position: absolute;
  top: 50px;
  right: -30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1D1B34;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
#service-process .process-step-arrow img {
  display: none;
}
#service-process .process-step-arrow::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'><path d='M3 8h9M9 4l4 4-4 4' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  #service-process .process-steps {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 16px;
  }
  #service-process .process-step {
    flex: 1 1 auto;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 24px;
  }
  #service-process .process-step-icon {
    width: 64px;
    height: 64px;
  }
  #service-process .process-step-icon img {
    width: 32px;
    height: 32px;
  }
  #service-process .process-step-text {
    flex: 1;
    gap: 8px;
  }
  #service-process .process-step-text h3 {
    font-size: 18px;
  }
  #service-process .process-step-text p {
    font-size: 14px;
  }
  #service-process {
    /* Mobile: arrow bottom-left, half overflowing */
  }
  #service-process .process-step-arrow {
    top: auto;
    right: auto;
    bottom: -24px;
    left: 34px;
  }
  #service-process .process-step-arrow::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'><path d='M8 3v9M4 9l4 4 4-4' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  }
}

/* Markalar */
#markalar {
  background: #F0F3F8;
  padding: 90px 0 16px;
}
@media (max-width: 1024px) {
  #markalar {
    padding: 72px 0 16px;
  }
}
@media (max-width: 575px) {
  #markalar {
    padding: 56px 0 0;
  }
}
#markalar .markalar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 1024px) {
  #markalar .markalar-inner {
    padding: 0 0 0 24px;
  }
}
@media (max-width: 575px) {
  #markalar .markalar-inner {
    padding: 0 0 0 16px;
  }
}
#markalar .markalar-title {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  #markalar .markalar-title {
    padding-right: 24px;
  }
}
@media (max-width: 575px) {
  #markalar .markalar-title {
    font-size: 16px;
    padding-right: 16px;
  }
}
#markalar .markalar-grid {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
@media (max-width: 1024px) {
  #markalar .markalar-grid {
    max-width: none;
    margin-left: -52px;
    margin-right: -52px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 52px;
    justify-content: flex-start;
    padding-bottom: 16px;
    padding-left: 52px;
  }
  #markalar .markalar-grid::after {
    content: "";
    flex-shrink: 0;
    width: 52px;
  }
  #markalar .markalar-grid::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 767px) {
  #markalar .markalar-grid {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
  #markalar .markalar-grid::after {
    width: 24px;
  }
}
#markalar .marka-item {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 74px;
  flex-shrink: 0;
  width: 140px;
}
@media (max-width: 1024px) {
  #markalar .marka-item {
    width: 140px;
    scroll-snap-align: start;
  }
}
#markalar .marka-item img {
  max-height: 74px;
  max-width: 100%;
  object-fit: contain;
}

/* Servis Talebi Form */
#servis-form {
  padding: 48px 0 120px;
}
@media (max-width: 575px) {
  #servis-form {
    padding: 32px 0;
  }
}
#servis-form .btn {
  height: 56px;
  min-height: 56px;
}
#servis-form .form-check input[type=checkbox]:checked + span,
#servis-form .form-check input[type=radio]:checked + span {
  font-weight: 600;
}
#servis-form .servis-form-inner {
  max-width: 754px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#servis-form .servis-form-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 32px;
}
#servis-form .servis-form-icon img {
  width: 100%;
  height: 100%;
}
#servis-form .servis-form-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
  color: #1D1B34;
  text-align: center;
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  #servis-form .servis-form-title {
    font-size: 28px;
  }
}
#servis-form .servis-form-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
  text-align: center;
  margin-bottom: 40px;
}
#servis-form {
  /* Stepper */
}
#servis-form .stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 88px;
  width: 100%;
  max-width: 560px;
}
@media (max-width: 575px) {
  #servis-form .stepper {
    margin-bottom: 72px;
    padding: 0px 12.5px;
  }
}
#servis-form .stepper-step {
  position: relative;
  flex: 0 0 52px;
  display: flex;
  justify-content: center;
}
@media (max-width: 575px) {
  #servis-form .stepper-step {
    flex-basis: 44px;
  }
}
#servis-form .stepper-circle {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  background: rgba(29, 27, 52, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  #servis-form .stepper-circle {
    width: 44px;
    height: 44px;
  }
}
#servis-form .stepper-number {
  font-weight: 500;
  font-size: 18px;
  color: rgba(29, 27, 52, 0.48);
  text-align: center;
  color: #fff;
}
@media (max-width: 575px) {
  #servis-form .stepper-number {
    font-size: 16px;
  }
}
#servis-form .stepper-label {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 500;
  font-size: 14px;
  color: #1D1B34;
  opacity: 0.48;
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 575px) {
  #servis-form .stepper-label {
    top: 54px;
    font-size: 12px;
  }
}
#servis-form .stepper-line {
  flex: 1 1 auto;
  height: 2px;
  background: rgba(29, 27, 52, 0.16);
  margin: 25px 10px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 575px) {
  #servis-form .stepper-line {
    margin: 21px 10px 0;
  }
}
#servis-form .stepper-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #4B34F6;
  transition: width 0.4s ease;
}
#servis-form .stepper-line.is-half::after {
  width: 50%;
}
#servis-form .stepper-line.is-full::after {
  width: 100%;
}
#servis-form .stepper-step.is-active .stepper-circle {
  background: rgba(75, 52, 246, 0.08);
  box-shadow: inset 0 0 0 2px #4B34F6;
}
#servis-form .stepper-step.is-active .stepper-number {
  display: none;
}
#servis-form .stepper-step.is-active .stepper-circle::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #4B34F6;
}
#servis-form .stepper-step.is-active .stepper-label {
  color: #1D1B34;
  opacity: 1;
}
#servis-form .stepper-step.is-done .stepper-circle {
  background: #4B34F6;
}
#servis-form .stepper-step.is-done .stepper-number {
  display: none;
}
#servis-form .stepper-step.is-done .stepper-check {
  display: block !important;
  color: #FFFFFF;
}
#servis-form .stepper-step.is-done .stepper-label {
  color: #1D1B34;
  opacity: 1;
}
#servis-form {
  /* Form Steps */
}
#servis-form .form-step {
  display: none;
  width: 100%;
}
#servis-form .form-step.is-active {
  display: flex;
  flex-direction: column;
}
#servis-form .form-step-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  #servis-form .form-step-title {
    display: none;
  }
}
#servis-form .form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-bottom: 32px;
}
#servis-form {
  /* Actions */
}
#servis-form .form-actions {
  width: 100%;
  display: flex;
  gap: 16px;
}
#servis-form .form-actions--dual .btn {
  flex: 1;
}
@media (max-width: 767px) {
  #servis-form .form-actions--dual {
    flex-direction: column-reverse;
    gap: 12px;
  }
  #servis-form .form-actions--dual .btn {
    flex: none;
    width: 100%;
  }
}
#servis-form {
  /* Result */
}
#servis-form .form-result {
  align-items: center;
  text-align: center;
  padding: 80px 0;
}
#servis-form .form-result.is-active {
  display: flex;
}
@media (max-width: 767px) {
  #servis-form .form-result {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  #servis-form .form-result {
    padding: 48px 0;
  }
}
@media (max-width: 767px) {
  #servis-form .form-result > .btn.btn--blue {
    align-self: stretch;
    width: 100%;
  }
}
#servis-form .form-result-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 32px;
}
#servis-form .form-result-icon img {
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  #servis-form .form-result-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 35px;
  }
}
#servis-form .form-result-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
  color: #1D1B34;
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  #servis-form .form-result-title {
    font-size: 28px;
  }
}
#servis-form .form-result-tracking {
  width: 100%;
  max-width: 480px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  margin-bottom: 24px;
}
#servis-form .form-result-tracking-label {
  font-size: 0.875rem;
  color: #15803d;
  margin-bottom: 8px;
}
#servis-form .form-result-tracking-code {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: #166534;
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  #servis-form .form-result-tracking-code {
    font-size: 1.625rem;
  }
}
#servis-form .form-result-tracking-note {
  font-size: 0.8125rem;
  color: #166534;
}
#servis-form .form-result-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 1;
}
#servis-form .form-result-desc .btn {
  min-width: 160px;
}
@media (max-width: 575px) {
  #servis-form .form-result-desc {
    flex-direction: column;
    width: 100%;
  }
  #servis-form .form-result-desc .btn {
    width: 100%;
  }
}
#servis-form {
  /* Onayla / gönder: hover arka plan siyah | Geri dön: hover ana mavi */
}
#servis-form .btn--blue::before {
  background: #1D1B34;
}
#servis-form .btn--blue:hover {
  color: #FFFFFF;
}
#servis-form .btn--outline-blue {
  background: transparent;
  color: #4B34F6;
  border: 1px solid #4B34F6;
}
#servis-form .btn--outline-blue::before {
  background: #1D1B34;
}
@media (hover: hover) {
  #servis-form .btn--outline-blue:hover {
    color: #FFFFFF;
    border-color: #1D1B34;
  }
}
#servis-form .btn--outline-gray.form-prev {
  color: #4B34F6;
  border-color: #4B34F6;
}
#servis-form .btn--outline-gray.form-prev::before {
  background: #4B34F6;
}
#servis-form .btn--outline-gray.form-prev:hover {
  color: #FFFFFF;
  border-color: #4B34F6;
}
#servis-form {
  /* Başarı ekranı: mobilde CTA viewport altında (sticky değil — flex + min-height) */
}
@media (max-width: 767px) {
  #servis-form:has(.form-result.is-active) {
    min-height: calc(100dvh - 88px);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 24px 0 max(16px, env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 575px) {
  #servis-form:has(.form-result.is-active) {
    min-height: calc(100dvh - 72px);
    padding: 16px 0 max(16px, env(safe-area-inset-bottom, 0px));
  }
}
#servis-form:has(.form-result.is-active) .servis-form-inner {
  flex: 1;
  align-items: stretch;
  min-height: 0;
}
#servis-form:has(.form-result.is-active) .form-result.is-active {
  flex: 1;
  min-height: 0;
  padding-top: 48px;
  padding-bottom: 0;
}
@media (max-width: 575px) {
  #servis-form:has(.form-result.is-active) .form-result.is-active {
    padding-top: 40px;
  }
}
#servis-form:has(.form-result.is-active) .form-result.is-active > .btn.btn--blue {
  margin-top: auto;
}

/* SSS */
#sss {
  padding: 88px 0;
  background: #F0F3F8;
}
@media (max-width: 1024px) {
  #sss {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  #sss {
    padding: 48px 0;
  }
}
#sss .sss-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 767px) {
  #sss .sss-inner {
    padding: 0 24px;
  }
}
#sss .sss-title {
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  #sss .sss-title {
    margin-bottom: 32px;
  }
}
#sss .sss-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
#sss .sss-item {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(29, 27, 52, 0.06);
  margin-bottom: 6px;
}
#sss .sss-item:first-child {
  border-radius: 4px 4px 0 0;
}
#sss .sss-item:last-child {
  border-radius: 0 0 4px 4px;
  border-bottom: none;
  margin-bottom: 0;
}
#sss .sss-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  text-align: left;
}
@media (max-width: 575px) {
  #sss .sss-question {
    padding: 20px 16px;
    font-size: 14px;
  }
}
#sss .sss-question .sss-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #1D1B34;
}
#sss .sss-item.is-open .sss-chevron {
  transform: rotate(180deg);
}
#sss .sss-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}
#sss .sss-answer > p {
  overflow: hidden;
  padding: 0 32px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
}
@media (max-width: 575px) {
  #sss .sss-answer > p {
    padding: 0 16px;
    font-size: 14px;
  }
}
#sss .sss-item.is-open .sss-answer {
  grid-template-rows: 1fr;
}
#sss .sss-item.is-open .sss-answer > p {
  padding-bottom: 24px;
}
@media (max-width: 575px) {
  #sss .sss-item.is-open .sss-answer > p {
    padding-bottom: 20px;
  }
}

/* Yenilenmiş Hero: 2×2 bento (sol üst ürün görseli + ikon; sağ üst mavi; sol alt koyu; sağ alt foto) */
#yenilenmis-hero .yenilenmis-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 52px 64px;
  display: grid;
  grid-template-columns: 1fr 637px;
  gap: 52px;
  align-items: center;
}
@media (max-width: 1024px) {
  #yenilenmis-hero .yenilenmis-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  #yenilenmis-hero .yenilenmis-hero-inner {
    padding: 24px 24px 48px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 575px) {
  #yenilenmis-hero .yenilenmis-hero-inner {
    padding: 24px 24px 32px;
  }
}
#yenilenmis-hero .yenilenmis-hero-left {
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
@media (max-width: 767px) {
  #yenilenmis-hero .yenilenmis-hero-left {
    order: 2;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 575px) {
  #yenilenmis-hero .yenilenmis-hero-left {
    padding-top: 0;
    gap: 16px;
  }
}
#yenilenmis-hero .yenilenmis-hero-left h1 {
  font-weight: 600;
  font-size: 56px;
  line-height: 1.1;
  color: #1D1B34;
}
@media (max-width: 1024px) {
  #yenilenmis-hero .yenilenmis-hero-left h1 {
    font-size: 44px;
  }
}
@media (max-width: 575px) {
  #yenilenmis-hero .yenilenmis-hero-left h1 {
    font-size: 28px;
    line-height: 1.4;
  }
}
#yenilenmis-hero .yenilenmis-hero-desc {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  max-width: 557px;
  opacity: 0.64;
}
@media (max-width: 575px) {
  #yenilenmis-hero .yenilenmis-hero-desc {
    font-size: 16px;
  }
}
#yenilenmis-hero .yenilenmis-hero-left .btn {
  align-self: flex-start;
  height: 56px;
  padding: 16px 28px;
  font-size: 16px;
  margin-top: 6px;
}
@media (max-width: 767px) {
  #yenilenmis-hero .yenilenmis-hero-left .btn {
    align-self: center;
  }
}
@media (max-width: 575px) {
  #yenilenmis-hero .yenilenmis-hero-left .btn {
    margin-top: 8px;
  }
}
#yenilenmis-hero .yenilenmis-hero-right {
  display: grid;
  grid-template-columns: 332px 285px;
  grid-template-rows: 172px 20px 162px 20px 142px;
  column-gap: 20px;
  row-gap: 0;
  width: 637px;
  height: 516px;
  flex-shrink: 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 767px) {
  #yenilenmis-hero .yenilenmis-hero-right {
    order: 1;
  }
}
@media (max-width: 1024px) {
  #yenilenmis-hero .yenilenmis-hero-right {
    grid-template-columns: 332fr 285fr;
    grid-template-rows: 172fr 20fr 162fr 20fr 142fr;
    width: 100%;
    max-width: 637px;
    margin: 0 auto;
    height: 480px;
  }
}
@media (max-width: 575px) {
  #yenilenmis-hero .yenilenmis-hero-right {
    grid-template-columns: 332fr 285fr;
    grid-template-rows: 172fr 20fr 162fr 20fr 142fr;
    column-gap: 11px;
    width: 100%;
    height: auto;
    aspect-ratio: 637/516;
    max-width: none;
  }
}
#yenilenmis-hero .hero-img-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#yenilenmis-hero .yh-panel {
  position: relative;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 575px) {
  #yenilenmis-hero .yh-panel {
    border-radius: 13px;
  }
}
#yenilenmis-hero .yh-panel--product {
  background: #F0F3F8;
  grid-column: 1;
  grid-row: 1/4;
}
#yenilenmis-hero .yh-panel--photo {
  grid-column: 2;
  grid-row: 3/6;
}
#yenilenmis-hero .yh-panel--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#yenilenmis-hero .yh-panel-media {
  position: absolute;
  inset: 0;
}
#yenilenmis-hero .yh-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#yenilenmis-hero .yh-panel-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}
#yenilenmis-hero .yh-tool-icon {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  width: 72px;
  height: 72px;
  background: #4B34F6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  box-shadow: 0 8px 24px rgba(29, 27, 52, 0.12);
}
@media (max-width: 575px) {
  #yenilenmis-hero .yh-tool-icon {
    width: 64px;
    height: 64px;
    bottom: 16px;
    left: 16px;
  }
}
#yenilenmis-hero .yh-tool-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
#yenilenmis-hero .yh-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: 16px;
  min-height: 0;
}
@media (max-width: 575px) {
  #yenilenmis-hero .yh-card {
    padding: 17px;
    gap: 9px;
    border-radius: 4px;
  }
}
#yenilenmis-hero .yh-card p {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.45;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 575px) {
  #yenilenmis-hero .yh-card p {
    font-size: 10px;
    line-height: 1.4;
  }
}
#yenilenmis-hero .yh-card--blue {
  background: #4B34F6;
  overflow: visible;
  grid-column: 2;
  grid-row: 1;
}
#yenilenmis-hero .yh-card--blue .yh-card-icon {
  filter: brightness(0) invert(1);
}
#yenilenmis-hero .yh-card--dark {
  background: #1D1B34;
  grid-column: 1;
  grid-row: 5;
}
#yenilenmis-hero .yh-card--dark .yh-card-icon {
  filter: brightness(0) invert(1);
}
#yenilenmis-hero .yh-card--blue .yh-badge {
  position: absolute;
  top: -36px;
  right: -36px;
  width: 120px;
  height: 120px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 575px) {
  #yenilenmis-hero .yh-card--blue .yh-badge {
    top: -28px;
    right: -20px;
    width: 96px;
    height: 96px;
  }
}
#yenilenmis-hero .yh-card--blue .yh-badge img {
  width: 100%;
  height: 100%;
  display: block;
}
#yenilenmis-hero .yh-card-icon {
  width: 32px;
  height: 32px;
}
@media (max-width: 575px) {
  #yenilenmis-hero .yh-card-icon {
    width: 17px;
    height: 17px;
  }
}
#yenilenmis-hero .yh-card-icon {
  flex-shrink: 0;
}

/* Yenileme Sürecimiz (Figma: process-*.svg 322×423, 16px kolon aralığı, başlık gövde 40px) */
#renewal-process {
  padding: 104px 0;
}
@media (max-width: 1024px) {
  #renewal-process {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  #renewal-process {
    padding: 48px 0;
  }
}
#renewal-process .renewal-process-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  #renewal-process .renewal-process-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  #renewal-process .renewal-process-inner {
    gap: 32px;
  }
}
#renewal-process .renewal-process-title {
  text-align: left;
  margin: 0;
}
@media (max-width: 1024px) {
  #renewal-process .renewal-process-title {
    text-align: center;
  }
}
#renewal-process .renewal-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  #renewal-process .renewal-cards {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    margin-right: -52px;
    margin-left: -52px;
    padding-left: 52px;
    scroll-padding-left: 52px;
  }
  #renewal-process .renewal-cards::after {
    content: "";
    flex-shrink: 0;
    width: 52px;
  }
  #renewal-process .renewal-cards::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 767px) {
  #renewal-process .renewal-cards {
    margin-right: -24px;
    margin-left: -24px;
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
  #renewal-process .renewal-cards::after {
    width: 24px;
  }
}
@media (max-width: 575px) {
  #renewal-process .renewal-cards {
    gap: 8px;
    margin-right: -24px;
    margin-left: -24px;
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
  #renewal-process .renewal-cards::after {
    width: 24px;
  }
}
#renewal-process .renewal-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
@media (max-width: 1024px) {
  #renewal-process .renewal-card {
    flex: 0 0 min(322px, 42%);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}
@media (max-width: 767px) {
  #renewal-process .renewal-card {
    flex: 0 0 min(322px, 46%);
  }
}
@media (max-width: 575px) {
  #renewal-process .renewal-card {
    flex: 0 0 72%;
  }
}
#renewal-process .renewal-card-image {
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 322/423;
}
#renewal-process .renewal-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#renewal-process .renewal-card-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#renewal-process .renewal-card-text h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  margin: 0;
}
@media (max-width: 575px) {
  #renewal-process .renewal-card-text h3 {
    font-size: 18px;
  }
}
#renewal-process .renewal-card-text p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
  margin: 0;
}

/* Faydaları (Figma: benefit-*.svg 400×316, iki kolon 16px gap) */
#benefits {
  padding: 78px 0 112px;
}
@media (max-width: 1024px) {
  #benefits {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  #benefits {
    padding: 56px 0;
  }
}
#benefits .benefits-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 767px) {
  #benefits .benefits-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  #benefits .benefits-inner {
    gap: 32px;
  }
}
#benefits .benefits-inner .section-title {
  text-align: center;
  margin: 0;
  align-self: center;
  max-width: 900px;
}
#benefits .benefits-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  gap: 30px;
  justify-content: center;
  width: 100%;
}
@media (max-width: 575px) {
  #benefits .benefits-cards {
    grid-template-columns: minmax(0, 400px);
    gap: 40px;
    text-align: center;
  }
}
#benefits .benefit-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
#benefits .benefit-card-image {
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
  max-width: 400px;
}
#benefits .benefit-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-width: 400px;
  margin: 0 auto;
}
#benefits .benefit-card-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#benefits .benefit-card-text h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  margin: 0;
}
@media (max-width: 575px) {
  #benefits .benefit-card-text h3 {
    font-size: 18px;
  }
}
#benefits .benefit-card-text p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
  margin: 0;
}

/* Fiyat */
.product-price {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
}
@media (max-width: 575px) {
  .product-price {
    font-size: 18px;
  }
}

/* İletişim */
#contact {
  padding: 64px 0 120px;
}
@media (max-width: 1024px) {
  #contact {
    padding: 48px 0 80px;
  }
}
@media (max-width: 575px) {
  #contact {
    padding: 56px 0 88px;
  }
}
#contact .contact-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  #contact .contact-inner {
    gap: 48px;
  }
}
@media (max-width: 767px) {
  #contact .contact-inner {
    padding: 0 24px;
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
@media (max-width: 575px) {
  #contact .contact-inner {
    padding: 0 24px;
    gap: 64px;
  }
}
#contact .contact-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 767px) {
  #contact .contact-left {
    align-items: center;
    text-align: center;
  }
}
#contact .contact-left h1 {
  font-weight: 600;
  font-size: 48px;
  line-height: 1.1;
  color: #1D1B34;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  #contact .contact-left h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  #contact .contact-left h1 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  #contact .contact-left h1 br {
    display: none;
  }
}
#contact .contact-icon {
  width: 136px;
  height: 136px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  #contact .contact-icon {
    width: 104px;
    height: 86px;
    margin-bottom: 32px;
  }
}
#contact .contact-icon img {
  width: 100%;
  height: 100%;
}
#contact .contact-desc {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  max-width: 530px;
  margin-bottom: 24px;
  opacity: 0.64;
}
@media (max-width: 767px) {
  #contact .contact-desc {
    max-width: 400px;
    font-size: 16px;
    margin-bottom: 24px;
  }
}
#contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#contact .contact-email {
  font-size: 24px;
  line-height: 1.5;
  color: #1D1B34;
}
#contact .contact-email strong {
  font-weight: 600;
}
@media (max-width: 767px) {
  #contact .contact-email {
    font-weight: 400;
  }
}
#contact .contact-phone {
  font-size: 24px;
  line-height: 1.5;
  color: #1D1B34;
}
@media (max-width: 767px) {
  #contact .contact-phone {
    font-weight: 400;
  }
}
#contact .contact-address {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
}
#contact .contact-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}
@media (min-width: 1024px) {
  #contact .contact-form-success {
    max-width: 540px;
    margin-left: auto;
  }
}
#contact .contact-form-success img {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
}
#contact .contact-form-success p {
  font-size: 18px;
  line-height: 1.6;
  color: #1D1B34;
  opacity: 0.8;
}
#contact {
  /* Form */
}
#contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  #contact .contact-form {
    max-width: 540px;
    margin-left: auto;
  }
}
#contact .contact-form .form-checks {
  margin-top: 4px;
}
#contact .contact-form .btn {
  margin-top: 4px;
}

/* Yazılımlar Page */
#yazilimlar-page {
  padding: 0;
}

.yazilim-item:last-child .yazilim-item-inner {
  padding-bottom: 132px;
}
@media (max-width: 767px) {
  .yazilim-item:last-child .yazilim-item-inner {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .yazilim-item:last-child .yazilim-item-inner {
    padding-bottom: 56px;
  }
}

.yazilim-item-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 52px;
  display: grid;
  grid-template-columns: 640px 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .yazilim-item-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .yazilim-item-inner {
    padding: 40px 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 575px) {
  .yazilim-item-inner {
    padding: 32px 24px;
  }
}

.yazilim-item--reverse .yazilim-item-inner {
  grid-template-columns: 1fr 640px;
}
@media (max-width: 1024px) {
  .yazilim-item--reverse .yazilim-item-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .yazilim-item--reverse .yazilim-item-inner {
    grid-template-columns: 1fr;
  }
}

.yazilim-item--reverse .yazilim-image {
  order: 2;
}
@media (max-width: 767px) {
  .yazilim-item--reverse .yazilim-image {
    order: -1;
  }
}

.yazilim-item--reverse .yazilim-content {
  padding-left: 52px;
  padding-right: 0;
}
@media (max-width: 767px) {
  .yazilim-item--reverse .yazilim-content {
    padding-left: 0;
  }
}

.yazilim-image {
  background: #F0F3F8;
  border-radius: 4px;
  overflow: hidden;
  height: 516px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .yazilim-image {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .yazilim-image {
    height: 320px;
  }
}
@media (max-width: 575px) {
  .yazilim-image {
    height: 240px;
  }
}
.yazilim-image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.yazilim-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 52px;
}
@media (max-width: 767px) {
  .yazilim-content {
    padding-right: 0;
  }
}
.yazilim-content h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.5;
  color: #1D1B34;
}
@media (max-width: 1024px) {
  .yazilim-content h2 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .yazilim-content h2 {
    font-size: 24px;
    text-align: center;
  }
}

.yazilim-desc {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
}
@media (max-width: 575px) {
  .yazilim-desc {
    font-size: 16px;
    text-align: center;
  }
}

.yazilim-action {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 575px) {
  .yazilim-action {
    justify-content: center;
  }
}

.yazilim-price {
  font-weight: 600;
  font-size: 20px;
  color: #1D1B34;
}

.yazilim-free {
  font-weight: 600;
  font-size: 20px;
  color: #1D1B34;
}

.yazilim-action .btn {
  padding: 16px 28px;
  font-size: 16px;
}

/* Hakkımızda Hero */
#about-hero .about-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 52px;
}
@media (max-width: 767px) {
  #about-hero .about-hero-inner {
    padding: 16px 24px;
  }
}
@media (max-width: 575px) {
  #about-hero .about-hero-inner {
    padding: 0;
  }
}
#about-hero .about-hero-image {
  background: #F0F3F8;
  border-radius: 4px;
  overflow: hidden;
  height: 240px;
}
@media (max-width: 575px) {
  #about-hero .about-hero-image {
    height: 200px;
    border-radius: 0;
  }
}
#about-hero .about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hakkımızda İçerik */
#about-content .about-content-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 52px 104px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  #about-content .about-content-inner {
    padding: 40px 24px 80px;
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 575px) {
  #about-content .about-content-inner {
    padding: 32px 16px 56px;
  }
}
#about-content .about-left {
  flex: 1;
}
#about-content .about-left h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.4;
  color: #1D1B34;
}
@media (max-width: 1024px) {
  #about-content .about-left h1 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  #about-content .about-left h1 {
    font-size: 28px;
  }
}
#about-content .about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
#about-content .about-right p {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  margin-bottom: 24px;
}
#about-content .about-right p:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  #about-content .about-right p {
    font-size: 16px;
  }
}

/* Yasal */
#legal .legal-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 52px 104px;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  #legal .legal-inner {
    padding: 40px 24px 80px;
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 1024px) {
  #legal .legal-inner {
    display: block;
  }
}
@media (max-width: 575px) {
  #legal .legal-inner {
    padding: 40px 16px 64px;
  }
}
#legal .legal-left {
  flex-shrink: 0;
  width: 50%;
  position: sticky;
  top: 120px;
}
@media (max-width: 1024px) {
  #legal .legal-left {
    position: static;
    width: 100%;
    margin-bottom: 40px;
  }
}
#legal .legal-left h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.4;
  color: #1D1B34;
}
@media (max-width: 1024px) {
  #legal .legal-left h1 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  #legal .legal-left h1 {
    font-size: 28px;
  }
}
#legal .legal-right {
  flex: 1;
  width: 50%;
}
@media (max-width: 1024px) {
  #legal .legal-right {
    width: 100%;
  }
}
#legal .legal-right h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  margin-top: 32px;
  margin-bottom: 16px;
}
#legal .legal-right h3:first-of-type {
  margin-top: 0;
}
#legal .legal-right p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  margin-bottom: 20px;
}
#legal .legal-right p:has(br:only-child), #legal .legal-right p:empty {
  margin-bottom: 0;
  line-height: 0;
}
#legal .legal-right a {
  color: #4B34F6;
  font-weight: 500;
  text-decoration: none;
}
#legal .legal-right a:hover {
  opacity: 0.7;
}
#legal .legal-right strong {
  font-weight: 600;
  font-size: 16px;
  color: #1D1B34;
}
#legal .legal-right ul {
  margin-bottom: 16px;
  padding-left: 20px;
}
#legal .legal-right ul li {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #1D1B34;
  list-style: disc;
  margin-bottom: 4px;
}
#legal .legal-section-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 48px;
  margin-bottom: 24px;
}
#legal .legal-section-title:first-child {
  margin-top: 0;
}
#legal .legal-section-title--blue {
  color: #4B34F6;
}

/* Blog — Header rengi */
body:has(#blog) header#header,
body:has(#blog-detail) header#header,
body:has(#related-posts) header#header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #efefef;
}

/* Blog Liste */
#blog {
  padding: 56px 0 88px;
}
@media (max-width: 1024px) {
  #blog {
    padding: 40px 0 64px;
  }
}
@media (max-width: 575px) {
  #blog {
    padding: 32px 0 48px;
  }
}
#blog .blog-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 767px) {
  #blog .blog-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  #blog .blog-inner {
    padding: 0 16px;
  }
}
#blog .blog-header {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 575px) {
  #blog .blog-header {
    margin-bottom: 32px;
  }
}
#blog .blog-header h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.4;
  color: #1D1B34;
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  #blog .blog-header h1 {
    font-size: 28px;
  }
}
#blog .blog-header p {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
}
@media (max-width: 575px) {
  #blog .blog-header p {
    font-size: 16px;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 24px;
}
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
}
@media (max-width: 575px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.blog-card h3 {
  font-weight: 300;
  font-size: 24px;
  line-height: 1.5;
  color: #1D1B34;
}
@media (max-width: 575px) {
  .blog-card h3 {
    font-size: 18px;
  }
}

.blog-card-image {
  border-radius: 4px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media (max-width: 575px) {
  .blog-more {
    margin-top: 32px;
  }
}

.btn--outline-dark {
  background: transparent;
  color: #1D1B34;
  border: 1px solid #1D1B34;
  padding: 16px 28px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn--outline-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1D1B34;
  z-index: -1;
  transition: left 0.4s ease;
}
@media (hover: hover) {
  .btn--outline-dark:hover {
    color: #FFFFFF;
  }
  .btn--outline-dark:hover::before {
    left: 0;
  }
}

/* Blog Detay */
#blog-detail .blog-detail-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 52px 152px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1024px) {
  #blog-detail .blog-detail-inner {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  #blog-detail .blog-detail-inner {
    padding: 24px 24px 104px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 575px) {
  #blog-detail .blog-detail-inner {
    padding: 16px 16px 104px;
  }
}
#blog-detail .blog-detail-image {
  border-radius: 4px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}
@media (max-width: 767px) {
  #blog-detail .blog-detail-image {
    position: static;
  }
}
#blog-detail .blog-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}
#blog-detail .blog-detail-content h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.4;
  color: #1D1B34;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  #blog-detail .blog-detail-content h1 {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 575px) {
  #blog-detail .blog-detail-content h1 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
#blog-detail .blog-detail-content .blog-detail-body h2, #blog-detail .blog-detail-content .blog-detail-body h3, #blog-detail .blog-detail-content .blog-detail-body h4, #blog-detail .blog-detail-content .blog-detail-body h5, #blog-detail .blog-detail-content .blog-detail-body h6 {
  font-weight: 600;
  color: #1D1B34;
  line-height: 1.3;
  margin-top: 40px;
  margin-bottom: 16px;
}
#blog-detail .blog-detail-content .blog-detail-body h2:first-child, #blog-detail .blog-detail-content .blog-detail-body h3:first-child, #blog-detail .blog-detail-content .blog-detail-body h4:first-child, #blog-detail .blog-detail-content .blog-detail-body h5:first-child, #blog-detail .blog-detail-content .blog-detail-body h6:first-child {
  margin-top: 0;
}
#blog-detail .blog-detail-content .blog-detail-body h2 {
  font-size: 28px;
}
@media (max-width: 575px) {
  #blog-detail .blog-detail-content .blog-detail-body h2 {
    font-size: 22px;
  }
}
#blog-detail .blog-detail-content .blog-detail-body h3 {
  font-size: 22px;
}
@media (max-width: 575px) {
  #blog-detail .blog-detail-content .blog-detail-body h3 {
    font-size: 18px;
  }
}
#blog-detail .blog-detail-content .blog-detail-body h4 {
  font-size: 18px;
}
#blog-detail .blog-detail-content p {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  margin-bottom: 24px;
}
#blog-detail .blog-detail-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  #blog-detail .blog-detail-content p {
    font-size: 16px;
  }
}

/* Related Posts */
#related-posts {
  padding: 0 0 104px;
}
#related-posts .related-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 767px) {
  #related-posts .related-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  #related-posts .related-inner {
    padding: 0 16px;
  }
}
#related-posts .section-title {
  margin-bottom: 48px;
  text-align: center;
}
@media (max-width: 1024px) {
  #related-posts .blog-grid--4 {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: calc(21% + 24px);
    margin-left: -52px;
    margin-right: -52px;
  }
  #related-posts .blog-grid--4::-webkit-scrollbar {
    display: none;
  }
  #related-posts .blog-grid--4::before {
    content: "";
    flex-shrink: 0;
    width: calc(52px - 24px);
  }
  #related-posts .blog-grid--4::after {
    content: "";
    flex-shrink: 0;
    width: 52px;
  }
}
@media (max-width: 767px) {
  #related-posts .blog-grid--4 {
    scroll-padding-left: calc(23% + 16px);
    margin-left: -24px;
    margin-right: -24px;
  }
  #related-posts .blog-grid--4::before {
    width: 8px;
  }
  #related-posts .blog-grid--4::after {
    width: 24px;
  }
}
@media (max-width: 575px) {
  #related-posts .blog-grid--4 {
    scroll-padding-left: calc(35% + 16px);
    margin-left: -16px;
    margin-right: -16px;
  }
  #related-posts .blog-grid--4::before {
    width: 0px;
  }
  #related-posts .blog-grid--4::after {
    width: 16px;
  }
}
@media (max-width: 1024px) {
  #related-posts .blog-grid--4 .blog-card {
    flex: 0 0 42%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}
@media (max-width: 767px) {
  #related-posts .blog-grid--4 .blog-card {
    flex: 0 0 46%;
  }
}
@media (max-width: 575px) {
  #related-posts .blog-grid--4 .blog-card {
    flex: 0 0 70%;
  }
}

/* Ürünler */
#products .products-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 991px) {
  #products .products-inner {
    padding: 0 20px;
  }
}
#products .products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 24px;
  gap: 24px;
}
@media (max-width: 991px) {
  #products .products-header {
    padding: 24px 0 16px;
    gap: 16px;
  }
}
#products .products-header h1, #products .products-header__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
  color: #1D1B34;
}
@media (max-width: 991px) {
  #products .products-header h1, #products .products-header__title {
    display: none;
  }
}
#products .products-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(9, 5, 56, 0.02);
  border: 1px solid rgba(29, 27, 52, 0.08);
  border-radius: 4px;
  padding: 0 16px;
  height: 56px;
  width: 380px;
}
@media (max-width: 991px) {
  #products .products-search {
    width: 100%;
  }
}
#products .products-search svg {
  flex-shrink: 0;
  color: #1D1B34;
  opacity: 0.4;
}
#products .products-search input {
  border: none;
  background: transparent;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  color: #1D1B34;
  width: 100%;
  height: 100%;
}
#products .products-search input::placeholder {
  color: #1D1B34;
  opacity: 0.4;
}
#products .products-search input:focus {
  outline: none;
}
#products .products-search .search-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 100px;
  background: rgba(9, 5, 56, 0.08);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
#products .products-search .search-clear svg {
  width: 16px;
  height: 16px;
  opacity: 0.4;
}
#products .brand-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: #f8f9fc;
  border-radius: 16px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  #products .brand-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    gap: 16px;
  }
}
#products .brand-banner__logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
}
@media (max-width: 767px) {
  #products .brand-banner__logo {
    width: 64px;
    height: 64px;
  }
}
#products .brand-banner__info {
  flex: 1;
  min-width: 0;
}
#products .brand-banner__name {
  font-size: 22px;
  font-weight: 700;
  color: #1D1B34;
  margin: 0 0 6px;
}
@media (max-width: 767px) {
  #products .brand-banner__name {
    font-size: 18px;
  }
}
#products .brand-banner__desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(29, 27, 52, 0.6);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#products .products-tabs {
  display: flex;
  gap: 6px;
  padding-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#products .products-tabs::-webkit-scrollbar {
  display: none;
}
@media (max-width: 991px) {
  #products .products-tabs {
    padding-bottom: 0;
    margin-right: -16px;
    margin-left: -16px;
    padding-left: 0;
    scroll-padding-left: 16px;
  }
  #products .products-tabs::before {
    content: "";
    flex-shrink: 0;
    width: 10px;
  }
  #products .products-tabs::after {
    content: "";
    flex-shrink: 0;
    width: 10px;
  }
}
#products .products-body {
  display: flex;
  gap: 32px;
  padding-bottom: 64px;
}
@media (max-width: 1024px) {
  #products .products-body {
    gap: 16px;
    margin-top: -16px !important;
  }
}
@media (max-width: 991px) {
  #products .products-body {
    flex-direction: column;
    margin-top: 0;
    padding-top: 0;
  }
}
#products {
  /* Sol Kolon (Subcat dropdown + Filter sidebar) */
}
#products .products-left-col {
  width: 304px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 991px) {
  #products .products-left-col {
    width: 100%;
    margin-top: 16px;
    padding-top: 16px;
  }
}
#products {
  /* Alt Kategori Dropdown */
}
#products .products-subcat {
  display: none;
  position: relative;
}
#products .products-subcat.is-active {
  display: block;
}
#products .subcat-trigger {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid rgba(29, 27, 52, 0.12);
  border-radius: 4px;
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1D1B34;
  cursor: pointer;
  transition: all 0.3s ease;
}
#products .subcat-trigger:hover {
  border-color: rgba(29, 27, 52, 0.16);
}
#products .subcat-trigger .subcat-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
#products .subcat-trigger.is-open .subcat-chevron {
  transform: rotate(180deg);
}
#products .subcat-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid rgba(29, 27, 52, 0.08);
  border-radius: 4px;
  padding: 8px 0;
  z-index: 100;
  display: none;
  box-shadow: 0 8px 24px rgba(29, 27, 52, 0.08);
}
#products .subcat-panel.is-open {
  display: block;
}
#products .subcat-panel-header {
  display: none;
}
#products .subcat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
#products .subcat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 24px;
  font-size: 16px;
  color: #1D1B34;
  cursor: pointer;
  transition: background 0.15s ease;
  font-weight: 400;
}
#products .subcat-item:hover {
  background: rgba(29, 27, 52, 0.03);
}
#products .subcat-item .subcat-check {
  display: none;
  flex-shrink: 0;
  color: #4B34F6;
}
#products .subcat-item.is-selected {
  color: rgba(29, 27, 52, 0.4);
}
#products {
  /* Overlay (Mobile bottom sheet) */
}
#products .subcat-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(29, 27, 52, 0.8);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
#products .subcat-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  #products .subcat-overlay {
    display: block;
  }
  #products .subcat-panel {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: -100%;
    max-height: 85vh;
    background: #F0F3F8;
    border: none;
    border-radius: 0;
    padding: 0;
    transition: bottom 0.4s ease;
    z-index: 810;
    box-shadow: 0 -8px 24px rgba(29, 27, 52, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  #products .subcat-panel.is-open {
    bottom: 0;
  }
  #products .subcat-panel::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 100px;
    background: rgba(29, 27, 52, 0.16);
    margin: 12px auto;
  }
  #products .subcat-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 16px;
  }
  #products .subcat-panel-header h3 {
    font-weight: 600;
    font-size: 24px;
    color: #1D1B34;
    margin: 0;
  }
  #products .subcat-panel-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(29, 27, 52, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1D1B34;
    flex-shrink: 0;
  }
  #products .subcat-list {
    padding: 0 16px 16px;
    gap: 8px;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  #products .subcat-item {
    padding: 18px 16px;
    background: #FFFFFF;
    border-radius: 4px;
    border: none;
    font-weight: 500;
  }
  #products .subcat-item.is-selected {
    color: rgba(29, 27, 52, 0.4);
  }
  #products .subcat-item.is-selected .subcat-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #4B34F6;
    color: #FFFFFF;
    padding: 5px;
  }
}
#products {
  /* Toggle List (tag checkboxes) */
}
#products .toggle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#products .toggle-list .form-check {
  margin-bottom: 0;
}
#products {
  /* Product Grid */
}
#products .products-grid {
  flex: 1;
  position: relative;
}
#products .products-loader {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  backdrop-filter: blur(1px);
}
#products .products-loader.is-visible {
  display: flex;
}
#products .products-loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(75, 52, 246, 0.15);
  border-top-color: #4B34F6;
  border-radius: 50%;
  animation: spin-loader 0.65s linear infinite;
  flex-shrink: 0;
}
@keyframes spin-loader {
  to {
    transform: rotate(360deg);
  }
}
#products .products-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 16px;
}
@media (max-width: 1024px) {
  #products .products-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  #products .products-list {
    grid-template-columns: 1fr;
  }
}
#products .products-list .product-card {
  flex: none;
}
#products {
  /* Not Found Card — inside grid (tek parça gri blok) */
}
#products .product-card--notfound {
  background: #F0F3F8;
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 434px;
}
#products .product-card--notfound .notfound-icon {
  width: 80px;
  height: 38px;
  margin-bottom: 32px;
}
#products .product-card--notfound .notfound-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#products .product-card--notfound .notfound-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: #1D1B34;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  #products .product-card--notfound .notfound-title br {
    display: none;
  }
}
#products .product-card--notfound .notfound-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
}
#products .product-card--notfound .notfound-cta {
  margin-top: auto;
  align-self: flex-start;
  width: auto;
  padding: 16px 20px;
  font-size: 14px;
}
@media (max-width: 575px) {
  #products .product-card--notfound .notfound-cta {
    width: 100%;
  }
}
#products .product-card--notfound .notfound-cta::before {
  background: #1D1B34;
}
#products .product-card--notfound .notfound-cta:hover {
  color: #FFFFFF;
}
#products .product-card--notfound .notfound-cta:hover::before {
  left: 0;
}
#products {
  /* Search Empty State */
}
#products .products-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 104px;
  width: 100%;
}
@media (max-width: 767px) {
  #products .products-empty {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
#products .products-empty .products-empty-icon {
  width: 80px;
  height: auto;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  #products .products-empty .products-empty-icon {
    margin-bottom: 32px;
  }
}
#products .products-empty .products-empty-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  color: #1D1B34;
  margin-bottom: 32px;
}
#products .products-empty .products-empty-text h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 8px;
}
#products .products-empty .products-empty-text p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}
#products .products-empty .products-empty-actions {
  display: flex;
}
@media (max-width: 767px) {
  #products .products-empty .products-empty-actions {
    flex-direction: column;
    width: 100%;
  }
}
#products .products-empty .products-empty-actions .btn {
  padding: 16px 28px;
  font-size: 16px;
  height: auto;
}
#products .products-empty .products-empty-actions .btn + .btn {
  margin-left: 8px;
}
@media (max-width: 767px) {
  #products .products-empty .products-empty-actions .btn + .btn {
    margin-left: 0;
    margin-top: 8px;
  }
}
#products .products-empty .products-empty-actions .btn--blue::before {
  background: #1D1B34;
}
#products .products-empty .products-empty-actions .btn--blue:hover {
  color: #FFFFFF;
}
#products .products-empty .products-empty-actions .btn--outline-blue {
  border: 1px solid #4B34F6;
  color: #4B34F6;
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#products .products-empty .products-empty-actions .btn--outline-blue::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1D1B34;
  z-index: -1;
  transition: left 0.4s ease;
}
#products .products-empty .products-empty-actions .btn--outline-blue:hover {
  color: #FFFFFF;
  border-color: #1D1B34;
}
#products .products-empty .products-empty-actions .btn--outline-blue:hover::before {
  left: 0;
}
#products .products-more {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  #products .products-more {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  #products .products-more {
    margin-top: 35px;
  }
}
#products .products-more .btn--outline-dark {
  background: #1D1B34;
  color: #FFFFFF;
  border-color: #1D1B34;
}
#products .products-more .btn--outline-dark::before {
  background: #4B34F6;
}
#products .products-more .btn--outline-dark:hover {
  color: #FFFFFF;
  border-color: #4B34F6;
}
#products {
  /* Tüm Teraziler Açıklama — inside grid */
}
#products .products-desc {
  padding: 125px 0 60px 0;
}
@media (min-width: 1024px) {
  #products .products-desc {
    padding: 125px 200px 60px 0;
  }
}
@media (max-width: 991px) {
  #products .products-desc {
    padding: 60px 0 0 0;
  }
}
#products .products-desc h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  color: #1D1B34;
  margin-bottom: 8px;
}
#products .products-desc p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: #1D1B34;
}
#products {
  /* Mobil Filtre Butonu */
}
#products .products-filter-btn {
  display: none;
}
@media (max-width: 991px) {
  #products .products-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    font-family: "Geist", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1D1B34;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
  }
  #products .products-filter-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* Filtreler — Desktop: sidebar | Mobile: bottom-sheet drawer */
.filter-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(29, 27, 52, 0.8);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.filter-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .filter-drawer-overlay {
    display: block;
  }
}

.filter-drawer {
  /* Desktop sidebar mode (default) */
  display: flex;
  flex-direction: column;
  background: transparent;
  width: 100%;
}

.filter-drawer-handle {
  display: none;
}

.filter-drawer-header {
  display: none;
}

.filter-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(29, 27, 52, 0.08);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1D1B34;
  flex-shrink: 0;
}

.filter-drawer-body {
  display: flex;
  flex-direction: column;
}
.filter-drawer-body .filter-group {
  border-bottom: 1px solid rgba(29, 27, 52, 0.06);
}
.filter-drawer-body .filter-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1D1B34;
  background: none;
  border: none;
  cursor: pointer;
}
.filter-drawer-body .filter-title svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.filter-drawer-body .filter-content {
  display: none;
  padding-bottom: 16px;
}
.filter-drawer-body .filter-content .form-check {
  margin-bottom: 12px;
}
.filter-drawer-body .filter-content .form-check:last-child {
  margin-bottom: 0;
}
.filter-drawer-body .filter-content.is-open {
  display: block;
}
.filter-drawer-body .filter-group--static .filter-content {
  display: block;
}
.filter-drawer-body .filter-badges {
  padding-top: 24px;
}
.filter-drawer-body .filter-badges h4 {
  font-weight: 500;
  font-size: 16px;
  color: #1D1B34;
  margin-bottom: 16px;
}

.filter-drawer-footer {
  display: flex;
  margin-top: 24px;
}
.filter-drawer-footer .filter-apply {
  display: none;
}
.filter-drawer-footer .filter-clear {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  color: #4B34F6;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.filter-drawer-footer .filter-clear:hover {
  opacity: 0.72;
}
.filter-drawer-footer .filter-clear svg {
  flex-shrink: 0;
}

/* Mobile: convert filter-drawer into bottom-sheet */
@media (max-width: 991px) {
  .filter-drawer {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    max-height: 85vh;
    background: #F0F3F8;
    z-index: 810;
    border-radius: 0;
    transition: bottom 0.4s ease;
    overflow: hidden;
  }
  .filter-drawer.is-open {
    bottom: 0;
  }
  .filter-drawer-handle {
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(29, 27, 52, 0.16);
    border-radius: 100px;
    margin: 12px auto;
    flex-shrink: 0;
  }
  .filter-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 16px;
    flex-shrink: 0;
  }
  .filter-drawer-header h3 {
    font-weight: 600;
    font-size: 24px;
    color: #1D1B34;
    margin: 0;
  }
  .filter-drawer-close {
    display: flex;
  }
  .filter-drawer-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 16px;
    gap: 8px;
  }
  .filter-drawer-body .filter-group {
    background: #FFFFFF;
    border-radius: 4px;
    border-bottom: none;
    padding: 0 16px;
  }
  .filter-drawer-body .filter-title {
    padding: 18px 0;
    font-weight: 600;
  }
  .filter-drawer-body .filter-badges {
    background: #FFFFFF;
    border-radius: 4px;
    padding: 16px;
    margin-top: 0;
  }
  .filter-drawer-footer {
    display: flex;
    gap: 12px;
    padding: 16px;
    margin-top: 0;
    background: #FFFFFF;
    border-top: 1px solid rgba(29, 27, 52, 0.06);
    flex-shrink: 0;
  }
  .filter-drawer-footer .filter-apply {
    display: flex;
    flex: 1;
  }
  .filter-drawer-footer .filter-clear {
    flex: 1;
    height: 56px;
    border-radius: 4px;
    justify-content: center;
    padding: 0 16px;
    background: #FFFFFF;
    border: 1px solid #4B34F6;
  }
  .filter-drawer-footer .filter-clear:hover {
    opacity: 1;
    background: rgba(75, 52, 246, 0.06);
  }
}
/* Ürün Detay */
#product-detail .pd-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 52px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1024px) {
  #product-detail .pd-inner {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  #product-detail .pd-inner {
    padding: 0 0 48px;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 575px) {
  #product-detail .pd-inner {
    padding: 0 0 32px;
  }
}
#product-detail {
  /* Gallery */
}
#product-detail .pd-gallery {
  display: flex;
  flex-direction: column;
}
#product-detail .pd-slider {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 991px) {
  #product-detail .pd-slider {
    border-radius: 0;
  }
}
#product-detail .pd-slides {
  display: flex;
  transition: transform 0.4s ease;
}
#product-detail .pd-slide {
  flex: 0 0 100%;
  aspect-ratio: 1/1;
}
@media (max-width: 991px) {
  #product-detail .pd-slide {
    aspect-ratio: 4/3;
  }
}
#product-detail .pd-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#product-detail .pd-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
@media (max-width: 991px) {
  #product-detail .pd-nav {
    justify-content: center;
    padding-bottom: 12px;
  }
}
#product-detail .pd-nav-prev,
#product-detail .pd-nav-next {
  width: 56px;
  height: 40px;
  border: none;
  background: #FFFFFF;
  border-radius: 4px;
  cursor: pointer;
  color: #1D1B34;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
#product-detail .pd-nav-prev:hover,
#product-detail .pd-nav-next:hover {
  color: #4B34F6;
}
@media (max-width: 991px) {
  #product-detail .pd-nav-prev,
  #product-detail .pd-nav-next {
    display: none;
  }
}
#product-detail .pd-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
#product-detail .pd-dot {
  width: 32px;
  height: 2px;
  border-radius: 100px;
  background: rgba(29, 27, 52, 0.12);
  transition: all 0.3s ease;
}
#product-detail .pd-dot.is-active {
  background: #1D1B34;
}
#product-detail {
  /* Info — her child kendi margin-bottom'ını taşır, pd-info'da gap yok */
}
#product-detail .pd-info {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  #product-detail .pd-info {
    padding: 24px 52px 0;
  }
}
@media (max-width: 575px) {
  #product-detail .pd-info {
    padding: 24px 24px 0;
  }
}
#product-detail .pd-brand {
  font-weight: 300;
  font-size: 16px;
  color: #1D1B34;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
#product-detail .pd-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
  color: #1D1B34;
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  #product-detail .pd-title {
    font-size: 24px;
  }
}
#product-detail .pd-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}
#product-detail .pd-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: rgba(29, 27, 52, 0.64);
  background: #FFFFFF;
  border: 1px solid rgba(29, 27, 52, 0.16);
  border-radius: 100px;
  padding: 0 14px 0 10px;
  min-height: 44px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#product-detail .pd-badge:hover {
  border-color: rgba(29, 27, 52, 0.32);
  background: rgba(29, 27, 52, 0.02);
}
#product-detail .pd-badge img {
  width: 24px;
  height: 24px;
  pointer-events: none;
}
#product-detail .pd-features {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
#product-detail .pd-features li {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
  list-style: disc;
}
#product-detail .pd-short-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(29, 27, 52, 0.64);
  margin-bottom: 24px;
}
#product-detail .pd-price-stock {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
#product-detail .pd-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 0;
}
#product-detail .pd-price-main {
  font-size: 20px;
  font-weight: 600;
  color: #1D1B34;
}
#product-detail .pd-price-sale {
  font-size: 20px;
  font-weight: 600;
  color: #4B34F6;
}
#product-detail .pd-price-original {
  font-size: 14px;
  font-weight: 400;
  color: rgba(29, 27, 52, 0.4);
  text-decoration: line-through;
}
#product-detail .pd-stock {
  margin-bottom: 0;
}
#product-detail .stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
#product-detail .stock-badge--in {
  border-color: #00B306;
  color: #1D1B34;
}
#product-detail .stock-badge--in .stock-dot {
  background: #00B306;
}
#product-detail .stock-badge--out {
  border-color: #C8C8C8;
  color: rgba(29, 27, 52, 0.48);
}
#product-detail .stock-badge--out .stock-dot {
  background: #C8C8C8;
}
#product-detail .stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 100px;
  flex-shrink: 0;
}
#product-detail .pd-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 24px;
}
#product-detail .pd-actions .btn {
  height: 56px;
  padding: 16px 28px;
  font-size: 16px;
}
#product-detail .pd-actions .btn--blue::before {
  background: #1D1B34;
}
#product-detail .pd-actions .btn--blue:hover {
  color: #FFFFFF;
}
@media (max-width: 575px) {
  #product-detail .pd-actions {
    flex-direction: column;
  }
  #product-detail .pd-actions .btn {
    width: 100%;
  }
}
#product-detail {
  /* Accordion */
}
#product-detail .pd-accordion {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  #product-detail .pd-accordion {
    margin-bottom: 40px;
  }
}
#product-detail .pd-acc-item {
  background: #FFFFFF;
  border-bottom: 1px solid #efefef;
}
#product-detail .pd-acc-item:last-child {
  border-bottom: none;
}
#product-detail .pd-acc-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Geist", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  text-align: left;
}
@media (max-width: 575px) {
  #product-detail .pd-acc-title {
    padding: 20px 0;
    font-size: 16px;
  }
}
#product-detail .pd-acc-title .pd-acc-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #1D1B34;
}
#product-detail .pd-acc-item.is-open .pd-acc-chevron {
  transform: rotate(180deg);
}
#product-detail .pd-acc-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}
#product-detail .pd-acc-content > p,
#product-detail .pd-acc-content > div {
  overflow: hidden;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
}
#product-detail .pd-acc-item.is-open .pd-acc-content {
  grid-template-rows: 1fr;
}
#product-detail .pd-acc-item.is-open .pd-acc-content > p,
#product-detail .pd-acc-item.is-open .pd-acc-content > div {
  padding-bottom: 24px;
}
@media (max-width: 575px) {
  #product-detail .pd-acc-item.is-open .pd-acc-content > p,
  #product-detail .pd-acc-item.is-open .pd-acc-content > div {
    padding-bottom: 20px;
  }
}
#product-detail {
  /* Rich Text (açıklama içeriği) */
}
#product-detail .pd-rich-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: #1D1B34;
}
#product-detail .pd-rich-text p {
  margin-bottom: 20px;
}
#product-detail .pd-rich-text p:last-child {
  margin-bottom: 0;
}
#product-detail .pd-rich-text ul, #product-detail .pd-rich-text ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
#product-detail .pd-rich-text ul:last-child, #product-detail .pd-rich-text ol:last-child {
  margin-bottom: 0;
}
#product-detail .pd-rich-text ul {
  list-style: disc;
}
#product-detail .pd-rich-text ol {
  list-style: decimal;
}
#product-detail .pd-rich-text li {
  margin-bottom: 6px;
}
#product-detail .pd-rich-text li:last-child {
  margin-bottom: 0;
}
#product-detail .pd-rich-text strong, #product-detail .pd-rich-text b {
  font-weight: 600;
}
#product-detail .pd-rich-text em, #product-detail .pd-rich-text i {
  font-style: italic;
}
#product-detail .pd-rich-text h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 20px;
}
#product-detail .pd-rich-text h2:first-child {
  margin-top: 0;
}
#product-detail .pd-rich-text h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 16px;
}
#product-detail .pd-rich-text h3:first-child {
  margin-top: 0;
}
#product-detail .pd-rich-text a {
  color: #4B34F6;
  text-decoration: underline;
}
#product-detail {
  /* Spec Table */
}
#product-detail .pd-specs-table {
  display: flex;
  flex-direction: column;
}
#product-detail .pd-spec-row {
  display: flex;
  align-items: center;
  padding: 6px 0;
}
#product-detail .pd-spec-label {
  font-weight: 600;
  font-size: 16px;
  color: #1D1B34;
  flex: 0 0 50%;
}
#product-detail .pd-spec-value {
  font-weight: 300;
  font-size: 16px;
  color: #1D1B34;
  flex: 1;
}
#product-detail {
  /* Takas CTA */
}
#product-detail .pd-swap {
  background: #4B34F6;
  border-radius: 4px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background-image: url("../../images/swap-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 575px) {
  #product-detail .pd-swap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
#product-detail .pd-swap p {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
}
@media (max-width: 575px) {
  #product-detail .pd-swap p {
    font-size: 16px;
    font-weight: 400;
  }
}
#product-detail .pd-swap .btn {
  flex-shrink: 0;
  background: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}
#product-detail .pd-swap .btn::before {
  background: #FFFFFF;
}
#product-detail .pd-swap .btn:hover {
  color: #4B34F6;
}
@media (hover: none) {
  #product-detail .pd-swap .btn, #product-detail .pd-swap .btn:hover {
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
  }
}

/* Video */
#pd-video {
  padding: 110px 0 165px;
}
@media (max-width: 1024px) {
  #pd-video {
    padding: 80px 0 120px;
  }
}
@media (max-width: 575px) {
  #pd-video {
    padding: 30px 0 80px;
  }
}
#pd-video .pd-video-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 767px) {
  #pd-video .pd-video-inner {
    max-width: 100%;
    padding: 0;
  }
}
#pd-video .pd-video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #1D1B34;
}
@media (max-width: 767px) {
  #pd-video .pd-video-wrap {
    border-radius: 0;
  }
}
#pd-video .pd-video-wrap img,
#pd-video .pd-video-wrap video,
#pd-video .pd-video-wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
#pd-video .pd-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
}

/* Benzer Ürünler */
#related-products {
  padding: 0 0 88px;
}
@media (max-width: 575px) {
  #related-products {
    padding: 0 0 48px;
  }
}
#related-products .related-products-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 767px) {
  #related-products .related-products-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  #related-products .related-products-inner {
    padding: 0 16px;
  }
}
#related-products .section-title {
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  #related-products .section-title {
    font-size: 28px;
  }
}
#related-products .best-sellers-slider {
  margin-top: 0;
  padding-top: 0;
}

/* Özel Proje Hero */
#project-hero .project-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 52px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
@media (max-width: 767px) {
  #project-hero .project-hero-inner {
    padding: 24px 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 575px) {
  #project-hero .project-hero-inner {
    padding: 24px;
  }
}
#project-hero .project-hero-left {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
@media (max-width: 767px) {
  #project-hero .project-hero-left {
    order: 2;
    align-items: center;
    text-align: center;
  }
}
#project-hero .project-hero-left h1 {
  font-weight: 600;
  font-size: 64px;
  line-height: 1.2;
  color: #1D1B34;
}
@media (max-width: 1024px) {
  #project-hero .project-hero-left h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  #project-hero .project-hero-left h1 {
    font-size: 32px;
  }
}
#project-hero .project-hero-desc {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #1D1B34;
  max-width: 500px;
  opacity: 0.64;
}
@media (max-width: 575px) {
  #project-hero .project-hero-desc {
    font-size: 16px;
  }
}
#project-hero .project-hero-btns {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
@media (max-width: 767px) {
  #project-hero .project-hero-btns {
    justify-content: center;
  }
}
#project-hero .project-hero-btns .btn {
  height: 56px;
  padding: 16px 28px;
  font-size: 16px;
}
#project-hero .project-hero-right {
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 767px) {
  #project-hero .project-hero-right {
    order: 1;
  }
}
#project-hero .project-hero-right img {
  width: 100%;
  height: auto;
  display: block;
}

/* Proje Yaklaşımımız */
#project-approach {
  background: #1D1B34;
  padding: 104px 0;
}
@media (max-width: 1024px) {
  #project-approach {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  #project-approach {
    padding: 56px 0;
  }
}
#project-approach .project-approach-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  #project-approach .project-approach-inner {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  #project-approach .project-approach-inner {
    gap: 35px;
  }
}
#project-approach .project-approach-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#project-approach .project-approach-header .section-title {
  color: #FFFFFF;
}
#project-approach .project-approach-header p {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
  opacity: 0.72;
}
@media (max-width: 575px) {
  #project-approach .project-approach-header p {
    font-size: 16px;
  }
}
#project-approach .project-approach-slider {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
#project-approach .project-approach-slider::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  #project-approach .project-approach-slider {
    margin-right: -24px;
    margin-left: -24px;
    padding-right: 24px;
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
}
@media (max-width: 575px) {
  #project-approach .project-approach-slider {
    margin-right: -24px;
    margin-left: -24px;
    padding-right: 24px;
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
}
#project-approach .project-approach-track {
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  #project-approach .project-approach-track {
    gap: 8px;
  }
}
#project-approach .project-approach-card {
  flex: 0 0 calc(25% - 12px);
  background: #26243C;
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 252px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
@media (max-width: 1024px) {
  #project-approach .project-approach-card {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 767px) {
  #project-approach .project-approach-card {
    flex: 0 0 60%;
  }
}
@media (max-width: 575px) {
  #project-approach .project-approach-card {
    flex: 0 0 78%;
    min-height: auto;
  }
}
#project-approach .project-approach-card h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
  margin-top: auto;
}
@media (max-width: 575px) {
  #project-approach .project-approach-card h3 {
    font-size: 18px;
  }
}
#project-approach .project-approach-card p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #FFFFFF;
  opacity: 0.64;
  margin: 0;
}
#project-approach .project-approach-icon {
  width: 56px;
  height: 56px;
  background: #4B34F6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
}
#project-approach .project-approach-icon img {
  width: 28px;
  height: 28px;
}

/* Çözüm Sunduğumuz Alanlar */
#solution-areas {
  padding: 88px 0 72px;
  background: #fff;
}
@media (max-width: 1024px) {
  #solution-areas {
    padding: 64px 0 72px;
  }
}
@media (max-width: 575px) {
  #solution-areas {
    padding: 48px 0 56px;
  }
}
#solution-areas .solution-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 767px) {
  #solution-areas .solution-inner {
    padding: 0 24px;
  }
}
#solution-areas .solution-inner > .section-title {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 575px) {
  #solution-areas .solution-inner > .section-title {
    margin-bottom: 32px;
  }
}
#solution-areas .solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px 24px;
}
@media (max-width: 1024px) {
  #solution-areas .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  #solution-areas .solution-grid {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-right: -24px;
    margin-left: -24px;
    padding-right: 24px;
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
  #solution-areas .solution-grid::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 575px) {
  #solution-areas .solution-grid {
    margin-right: -24px;
    margin-left: -24px;
    padding-right: 24px;
    padding-left: 24px;
    scroll-padding-left: 24px;
  }
}
#solution-areas .solution-card {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  #solution-areas .solution-card {
    flex: 0 0 80%;
    min-width: 280px;
    scroll-snap-align: start;
  }
}
#solution-areas .solution-card {
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#solution-areas .solution-card:hover .solution-card-image img {
  transform: scale(1.04);
}
#solution-areas .solution-card-image {
  border-radius: 4px;
  overflow: hidden;
  height: 338px;
}
@media (max-width: 1024px) {
  #solution-areas .solution-card-image {
    height: 280px;
  }
}
@media (max-width: 575px) {
  #solution-areas .solution-card-image {
    height: 220px;
  }
}
#solution-areas .solution-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
#solution-areas .solution-card h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  color: #1D1B34;
}
#solution-areas .solution-card p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
}

/* Proje Form */
#project-form {
  background: #FFFFFF;
  padding: 88px 0;
}
@media (max-width: 1024px) {
  #project-form {
    padding: 64px 0;
  }
}
@media (max-width: 575px) {
  #project-form {
    padding: 48px 0;
  }
}
#project-form .project-form-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px 0 calc(52px + 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1024px) {
  #project-form .project-form-inner {
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  #project-form .project-form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
#project-form .project-form-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  #project-form .project-form-left {
    text-align: center;
  }
}
#project-form .project-form-left h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.4;
  color: #1D1B34;
}
@media (max-width: 1024px) {
  #project-form .project-form-left h2 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  #project-form .project-form-left h2 {
    font-size: 28px;
  }
}
#project-form .project-form-icon {
  width: 136px;
  height: 113px;
}
@media (max-width: 1024px) {
  #project-form .project-form-icon {
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  #project-form .project-form-icon {
    width: 137px;
    height: 86px;
  }
}
#project-form .project-form-icon img {
  width: 100%;
  height: 100%;
}
#project-form .project-form-right {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 0 40px 40px;
}
@media (max-width: 1024px) {
  #project-form .project-form-right {
    padding: 0;
  }
}
#project-form .project-form-right .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 540px;
}
@media (max-width: 1024px) {
  #project-form .project-form-right .contact-form {
    max-width: 100%;
  }
}
#project-form .project-form-right .btn {
  margin-top: 4px;
}
#project-form .project-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 32px;
  gap: 24px;
  min-height: 420px;
}
#project-form .project-form-success .project-form-success-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #F0FDF4;
  display: flex;
  align-items: center;
  justify-content: center;
}
#project-form .project-form-success .project-form-success-icon img {
  width: 52px;
  height: 52px;
}
#project-form .project-form-success h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  color: #1D1B34;
}
@media (max-width: 575px) {
  #project-form .project-form-success h3 {
    font-size: 20px;
  }
}
#project-form .project-form-success p {
  font-size: 16px;
  line-height: 1.6;
  color: #1D1B34;
  opacity: 0.64;
  max-width: 380px;
}

/* Single */
/* Servis Takibi */
#servis-takibi {
  display: flex;
  align-items: center;
}
#servis-takibi .st-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 52px;
  width: 100%;
}
@media (max-width: 767px) {
  #servis-takibi .st-inner {
    padding: 56px 24px;
  }
}
@media (max-width: 575px) {
  #servis-takibi .st-inner {
    padding: 40px 16px;
  }
}

/* ── Arama Formu ── */
.st-search-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.st-search-icon {
  width: 64px;
  height: 64px;
  background: #F0F3F8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4B34F6;
  margin-bottom: 8px;
}

.st-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: #1D1B34;
  margin: 0;
}
@media (max-width: 575px) {
  .st-title {
    font-size: 28px;
  }
}

.st-desc {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
  max-width: 440px;
  margin: 0;
}
@media (max-width: 575px) {
  .st-desc {
    font-size: 15px;
  }
}

.st-form {
  width: 100%;
  margin-top: 8px;
}

.st-input-wrap {
  display: flex;
  gap: 8px;
}
@media (max-width: 575px) {
  .st-input-wrap {
    flex-direction: column;
  }
}

.st-input {
  flex: 1;
  height: 56px;
}
@media (max-width: 575px) {
  .st-input {
    flex: none;
    width: 100%;
  }
}
.st-input {
  border: 1.5px solid rgba(29, 27, 52, 0.16);
  border-radius: 4px;
  padding: 0 20px;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1D1B34;
  background: #FFFFFF;
  outline: none;
  letter-spacing: 0.04em;
  transition: border-color 0.2s ease;
}
.st-input::placeholder {
  color: #1D1B34;
  opacity: 0.32;
}
.st-input:focus {
  border-color: #4B34F6;
}

.st-input-wrap .btn {
  height: 56px;
  padding: 0 28px;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .st-input-wrap .btn {
    width: 100%;
  }
}

.st-error {
  margin-top: 8px;
  font-size: 14px;
  color: #e53e3e;
  text-align: left;
}

/* ── Sonuç ── */
.st-result-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.st-result-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.st-result-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.st-meta-label {
  font-size: 12px;
  font-weight: 400;
  color: #1D1B34;
  opacity: 0.48;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.st-meta-code {
  font-size: 22px;
  font-weight: 600;
  color: #1D1B34;
  letter-spacing: 0.04em;
}

.st-new-query {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(29, 27, 52, 0.16);
  border-radius: 4px;
  padding: 8px 16px;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1D1B34;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.st-new-query:hover {
  border-color: rgba(29, 27, 52, 0.4);
}

.st-device-card {
  background: #F0F3F8;
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.st-device-name {
  font-weight: 600;
  font-size: 16px;
  color: #1D1B34;
  margin: 0 0 2px;
}

.st-device-serial {
  font-weight: 300;
  font-size: 14px;
  color: #1D1B34;
  opacity: 0.64;
  margin: 0;
}

.st-device-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(75, 52, 246, 0.1);
  color: #4B34F6;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}
.st-device-badge svg {
  flex-shrink: 0;
}

/* ── Stepper ── */
.st-stepper {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 0;
}

.st-step {
  display: grid;
  grid-template-columns: 40px 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 16px;
  position: relative;
}
.st-step .st-step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(29, 27, 52, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  position: relative;
}
.st-step .st-step-icon {
  width: 40px;
  height: 40px;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  position: relative;
  flex-shrink: 0;
}
.st-step .st-step-icon img {
  width: 40px;
  height: 40px;
  display: block;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}
.st-step .st-step-badge {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1D1B34;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.st-step .st-step-badge svg {
  width: 10px;
  height: 10px;
}
.st-step .st-step-badge--active {
  background: #4B34F6;
}
.st-step .st-step-line {
  position: absolute;
  left: 19px;
  top: 40px;
  width: 2px;
  height: calc(100% - 8px);
  background: rgba(29, 27, 52, 0.08);
  grid-column: 1;
  grid-row: 2;
}
.st-step .st-step-label {
  font-weight: 500;
  font-size: 15px;
  color: #1D1B34;
  opacity: 0.4;
  margin: 0;
  padding-top: 10px;
  grid-column: 2;
  grid-row: 1;
}
.st-step .st-step-date {
  font-weight: 300;
  font-size: 13px;
  color: #1D1B34;
  opacity: 0.4;
  margin: 0;
  padding-top: 10px;
  text-align: right;
  grid-column: 3;
  grid-row: 1;
}
.st-step:not(:last-child) {
  padding-bottom: 24px;
}
.st-step {
  /* Tamamlandı */
}
.st-step--done .st-step-dot {
  background: #1D1B34;
  color: #FFFFFF;
}
.st-step--done .st-step-icon img {
  opacity: 1;
}
.st-step--done .st-step-label,
.st-step--done .st-step-date {
  opacity: 1;
}
.st-step {
  /* Aktif */
}
.st-step--active .st-step-dot {
  background: #4B34F6;
  color: #FFFFFF;
}
.st-step--active .st-step-icon img {
  opacity: 1;
}
.st-step--active .st-step-label {
  opacity: 1;
  color: #4B34F6;
}
.st-step--active .st-step-date {
  opacity: 0.64;
}

/* Pulse animasyonu */
.st-step-pulse {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFFFFF;
  animation: st-pulse 1.6s ease-in-out infinite;
}

@keyframes st-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}
/* ── Not ── */
.st-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(29, 27, 52, 0.03);
  border-radius: 4px;
}
.st-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #1D1B34;
  opacity: 0.4;
}
.st-note p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: #1D1B34;
  opacity: 0.64;
  margin: 0;
}
.st-note a {
  color: #4B34F6;
  font-weight: 400;
  opacity: 1;
}
.st-note a:hover {
  opacity: 0.7;
}

/* Vendors */
/* Responsive */
/* Max Width: 1199px */
/* Min Width: 1200px */
/* Max Width: 991px */
/* Min Width: 992px */
/* Max Width: 767px */
/* Min Width: 768px */
/* Max Width: 575px */
/* Min Width: 576px */
/* Max Width: 480px */
/* Touch / No-hover: buton ve link hover efektleri devre dışı */
@media (hover: none) {
  a:hover, button:hover, .btn:hover, [class*=btn--]:hover {
    color: inherit !important;
    border-color: inherit !important;
  }
  .tab-btn:hover {
    color: #1D1B34 !important;
  }
  .tab-btn.is-active, .tab-btn.is-active:hover {
    color: #fff !important;
    background: #1D1B34 !important;
  }
  .btn::before, [class*=btn--]::before {
    display: none !important;
  }
  .btn:active, [class*=btn--]:active {
    opacity: 0.78;
  }
  .btn--blue, .btn--blue:hover {
    color: #fff !important;
    border-color: #4B34F6 !important;
    background: #4B34F6 !important;
  }
  .btn--dark, .btn--dark:hover {
    color: #fff !important;
    background: #1D1B34 !important;
  }
  .btn--white, .btn--white:hover {
    color: #4B34F6 !important;
    background: #fff !important;
  }
  .btn--outline, .btn--outline:hover {
    color: #4B34F6 !important;
    border-color: #4B34F6 !important;
    background: transparent !important;
  }
  .btn--outline-dark, .btn--outline-dark:hover {
    color: #1D1B34 !important;
    border-color: #1D1B34 !important;
    background: transparent !important;
  }
}
