/* === Temel Sıfırlama ve Değişkenler === */
:root {
  /* Renkler */
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-bg: #f6f6f6;
  --color-surface: #ffffff;
  --color-text: #222222;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;

  /* Boyutlar */
  --nav-height: 110px;
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 9999px;

  /* Font */
  --font-main: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Geçişler */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Konteyner */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 640px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Ortak dalga animasyonu (Mobil & Masaüstü Uyumlu) */
@keyframes hero-wave {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
  }

  50% {
    transform: translateY(6px) scaleY(1.3);
  }
}

@supports (d: path("M0 0")) {
  @keyframes hero-wave {
    0%,
    100% {
      d: path("M0,40 C180,80 360,0 540,40 C720,80 900,0 1080,40 C1260,80 1440,0 1440,40 L1440,80 L0,80 Z");
    }

    50% {
      d: path("M0,20 C180,0 360,60 540,20 C720,0 900,60 1080,20 C1260,0 1440,60 1440,20 L1440,80 L0,80 Z");
    }
  }
}

.hero__wave-path,
.page-hero__wave-path,
.footer__wave-path {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: hero-wave 4s ease-in-out infinite;
}

/* Yardımcı sınıflar */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* === NAV Bileşeni === */

/* NAV dış sarmalayıcı: yuvarlak köşeli kart görünümü */
.nav-wrapper {
  position: sticky;
  top: 70px;
  z-index: 1000;
}

.nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  height: var(--nav-height);
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); /* yuvarlak / pill köşeler */
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.08);
}

/* Logo (sol üstte, PNG resim) */
.nav__logo {
  margin-left: 0;
  margin-right: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.nav__logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

/* Masaüstü menü */
.nav__menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav__menu-footer {
  display: none;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  transition: color var(--transition-fast);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: #111827;
}

.nav__link--active {
  color: #111827;
  font-weight: 500;
}

/* Açılır menü (Hizmetlerimiz) */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.nav__item--open > .nav__dropdown,
.nav__item:hover > .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hizmetlerimiz kart dropdown */
.nav__dropdown--services {
  top: calc(100% + 52px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 340px;
  padding: 26px 28px;
  background-color: #ffffff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  z-index: 1001;
}

.nav__item--open > .nav__dropdown--services,
.nav__item:hover > .nav__dropdown--services {
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown--services::before {
  content: '';
  position: absolute;
  top: -52px;
  left: 0;
  width: 100%;
  height: 52px;
}

.nav__dropdown-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #222222;
  transition: background-color var(--transition-fast);
}

.nav__dropdown-card:hover,
.nav__dropdown-card:focus-visible {
  background-color: #f3f4f6;
}

.nav__dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background-color: #ffffff;
  color: #222222;
  flex-shrink: 0;
}

.nav__dropdown-icon svg {
  width: 18px;
  height: 18px;
}

.nav__dropdown-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__dropdown-body strong {
  font-size: 14px;
  font-weight: 500;
  color: #222222;
}

.nav__dropdown-body span {
  font-size: 12px;
  color: #6b7280;
}

/* Sağ ikonlar (user, sepet, menü) */
.nav__actions {
  margin-left: 80px;
  margin-right: 50px;
  transform: translateX(0);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.nav__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--color-text);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav__icon:hover,
.nav__icon:focus-visible {
  background-color: transparent;
}

.nav__icon svg {
  width: 22px;
  height: 22px;
}

/* User ikonu: hover'da açık gri daire */
.nav__icon--user {
  border-radius: 50%;
  color: #222222;
}

.nav__icon--user:hover,
.nav__icon--user:focus-visible {
  background-color: #f3f4f6;
  color: #222222;
}

/* Sepet ikonu: hover'da açık gri daire */
.nav__icon--cart {
  border-radius: 50%;
  color: #222222;
}

.nav__icon--cart:hover,
.nav__icon--cart:focus-visible {
  background-color: #f3f4f6;
  color: #222222;
}

/* Tooltip */
.nav__tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  background-color: #1e293b;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 99999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Telefon ikonu: arka plan yok, tooltip göster */
.nav__icon--phone {
  border-radius: 50%;
  color: #222222;
  background: transparent !important;
}

/* Global Tooltip Override for Phone Icon */
.nav__icon--phone .nav__tooltip {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  padding: 6px 14px !important;
  background-color: #111827 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: 999999 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;
  transition: opacity 0.2s ease, visibility 0.2s ease !important;
}

.nav__icon--phone:hover .nav__tooltip {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Sepet dropdown */
.nav__icon--cart::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  width: 420px;
  height: 52px;
}

.nav__cart-dropdown {
  position: absolute;
  top: calc(100% + 52px);
  right: 0;
  width: 420px;
  padding: 20px;
  background-color: #ffffff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  pointer-events: none;
  z-index: 1001;
}

.nav__cart-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 18px;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  transform: rotate(45deg);
  border-radius: 2px;
}

.nav__icon--cart:hover .nav__cart-dropdown,
.nav__icon--cart:focus-visible .nav__cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__cart-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 15px;
}

.nav__cart-header strong {
  font-weight: 600;
  color: #222222;
}

.nav__cart-header span {
  color: #6b7280;
}

.nav__cart-empty {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  padding: 20px 0;
}

.nav__cart-divider {
  height: 1px;
  background-color: #e5e7eb;
  margin: 16px 0;
}

.nav__cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 16px;
}

.nav__cart-footer span {
  color: #6b7280;
}

.nav__cart-footer strong {
  font-weight: 600;
  color: #222222;
}

.nav__cart-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Genel butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.btn--primary {
  background-color: #222222;
  color: #ffffff;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: #000000;
}

.btn--secondary {
  background-color: #f3f4f6;
  color: #222222;
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background-color: #e5e7eb;
}

/* Menü butonu (mobil) */
.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  color: #222222;
}

.nav__toggle:hover,
.nav__toggle:focus-visible {
  background-color: #f3f4f6;
}

.nav__toggle svg {
  width: 22px;
  height: 22px;
  transition: transform var(--transition-normal);
}

.nav--open .nav__toggle svg {
  transform: rotate(180deg);
}

/* === Tablet ve Mobil (1024px altı) === */
@media (max-width: 1023px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav__logo {
    margin-left: 0;
    margin-right: 0;
  }

  .nav__actions {
    margin-left: 0;
    margin-right: 60px;
    transform: none;
  }

  .nav__icon--phone {
    display: none !important;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    display: none;
    position: fixed;
    top: calc(70px + var(--nav-height) + 20px);
    left: 36px;
    right: 36px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background-color: #ffffff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-12px);
    transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
  }

  .nav--open .nav__menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__menu-list {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .nav__menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
  }

  .nav__socials {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .nav__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #222222;
    transition: background-color var(--transition-fast);
  }

  .nav__socials a:hover,
  .nav__socials a:focus-visible {
    background-color: #f3f4f6;
  }

  .nav__socials svg {
    width: 22px;
    height: 22px;
  }

  .nav__copyright {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
  }

  /* Mobilde açılır menü */
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--color-primary);
    border-radius: 0;
    margin-top: 4px;
    margin-left: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
  }

  .nav__item--open > .nav__dropdown {
    max-height: 300px;
  }

  /* Mobilde sepet dropdown */
  .nav__cart-dropdown {
    position: fixed;
    top: calc(70px + var(--nav-height) + 20px);
    left: 36px;
    right: 36px;
    width: auto;
    max-width: none;
    transform: translateY(-8px);
  }

  .nav__icon--cart:hover .nav__cart-dropdown,
  .nav__icon--cart:focus-visible .nav__cart-dropdown {
    transform: translateY(0);
  }
  .nav__cart-dropdown::before {
    right: 18px;
    margin-right: 0;
  }

  /* Mobilde Hizmetlerimiz kartı */
  .nav__dropdown--services {
    display: none;
    position: static;
    width: auto;
    padding: 0;
    background-color: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: none;
    margin-left: 0;
    transform: none;
    max-height: none;
    overflow: visible;
  }

  .nav__item--open > .nav__dropdown--services,
  .nav__item:hover > .nav__dropdown--services {
    width: 100%;
    transform: none;
  }

  .nav__item--open > .nav__dropdown--services {
    display: block;
    padding: 8px;
    margin-top: 8px;
  }

  .nav__dropdown-card {
    justify-content: center;
    padding: 10px;
  }

  .nav__dropdown-card:hover,
  .nav__dropdown-card:focus-visible {
    background-color: transparent;
  }

  .nav__dropdown-body {
    align-items: center;
  }

  .nav__dropdown-body span {
    display: none;
  }

  .nav__dropdown-icon {
    display: none;
  }
}


@media (min-width: 768px) and (max-width: 1023px) {
  .nav__cart-dropdown {
    position: absolute;
    top: calc(100% + 52px);
    left: auto;
    right: 0;
    width: 420px;
    max-width: none;
    transform: translateY(-8px);
  }

  .nav__icon--cart:hover .nav__cart-dropdown,
  .nav__icon--cart:focus-visible .nav__cart-dropdown {
    transform: translateY(0);
  }
  .nav__cart-dropdown::before {
    right: 18px;
    margin-right: 0;
  }
}

/* === Küçük telefonlar === */
@media (max-width: 480px) {
  .nav {
    padding: 0 14px;
  }

  .nav__logo-img {
    width: 40px;
    height: 40px;
  }

  .services__container {
    width: calc(100% - 48px);
    max-width: 1400px;
    margin: 0 auto;
  }
}
/* === Footer (tüm sayfalar için ortak) === */
.site-footer {
  position: relative;
  background-color: #f5f5f5;
  color: #222222;
}

.footer__wave {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  line-height: 0;
  background-color: #ffffff;
}

.footer__wave svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 80;
}

.footer__wave-path {
  fill: #f5f5f5;
  animation: hero-wave 4s ease-in-out infinite;
  transform-origin: center bottom;
}

/* Newsletter */
.newsletter {
  padding: 48px 12px 80px;
  text-align: center;
}

.newsletter__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.newsletter__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  color: #6b7280;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.newsletter__icon svg {
  width: 28px;
  height: 28px;
  transform-origin: top center;
  animation: bell-swing 3s ease-in-out infinite;
}

@keyframes bell-swing {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(10deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(6deg); }
  40% { transform: rotate(-6deg); }
  50% { transform: rotate(0); }
}

.newsletter__title {
  font-size: 22px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 20px;
}

.newsletter__desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 40px;
  text-align: center;
}

.newsletter__desc-line {
  white-space: nowrap;
}

.newsletter__desc-line2 {
  display: block;
}

.newsletter__form {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.newsletter__input {
  width: 300px;
  padding: 20px 28px;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  background-color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter__input::placeholder {
  color: #9ca3af;
}

.newsletter__input:focus {
  border-color: #d1d5db;
}

.newsletter__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 28px;
  background-color: #222222;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.newsletter__button:hover,
.newsletter__button:focus-visible {
  background-color: #000000;
}

.newsletter__button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Footer main */
.footer__main {
  padding: 0 12px 104px;
}

.footer__container {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 100px;
  align-items: start;
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 96px 20px 0;
  border-top: 1px solid #e5e7eb;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__logo {
  display: inline-flex;
}

.footer__logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.footer__description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 320px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #222222;
  transition: opacity 0.2s ease;
}

.footer__socials a:hover,
.footer__socials a:focus-visible {
  opacity: 0.7;
}

.footer__socials svg {
  width: 20px;
  height: 20px;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(max-content, 1fr));
  gap: 60px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__heading {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links a {
  font-size: 14px;
  color: #6b7280;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: #111827;
}

/* Footer bottom */
.footer__bottom {
  padding: 0 12px 32px;
}

.footer__bottom-container {
  text-align: center;
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 20px 0;
  border-top: 1px solid #e5e7eb;
}

.footer__bottom p {
  font-size: 13px;
  color: #9ca3af;
}

/* Scroll-to-top button */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top__label {
  background: #ffffff;
  color: #444444;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 22px;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.scroll-top:hover .scroll-top__label,
.scroll-top:focus-within .scroll-top__label {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top__icon {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.scroll-top:hover .scroll-top__icon,
.scroll-top:focus-within .scroll-top__icon {
  transform: scale(1.08);
}

.scroll-top__icon svg {
  color: #444444;
  stroke: #444444;
}

/* WhatsApp button */
.wp-btn {
  position: fixed;
  left: 24px;
  bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 999;
  text-decoration: none;
}

.wp-btn__label {
  background: #ffffff;
  color: #444444;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 22px;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.wp-btn:hover .wp-btn__label,
.wp-btn:focus-visible .wp-btn__label {
  opacity: 1;
  transform: translateY(0);
}

.wp-btn__icon {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.wp-btn__icon svg {
  color: #25d366;
  fill: #25d366;
}

.wp-btn:hover .wp-btn__icon,
.wp-btn:focus-visible .wp-btn__icon {
  transform: scale(1.08);
}

/* Footer responsive */
@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__columns {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .footer__column {
    align-items: center;
  }

  .footer__links {
    align-items: center;
  }

  .footer__brand {
    align-items: flex-start;
    text-align: left;
  }

  .footer__description {
    margin-right: 0;
    margin-left: 0;
  }

  .footer__socials {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .newsletter {
    padding: 40px 12px 56px;
  }

  .newsletter__container,
  .footer__container,
  .footer__bottom-container {
    width: 100%;
    padding: 0 16px;
  }

  .newsletter__desc-line {
    white-space: normal;
  }

  .footer__container {
    padding-top: 64px;
  }

  .footer__bottom-container {
    padding-top: 24px;
  }

  .newsletter__form {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .newsletter__input {
    width: 100%;
  }

  .newsletter__button {
    width: 100%;
  }

  .footer__main {
    padding: 40px 12px 72px;
  }

  .footer__columns {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer__column {
    align-items: center;
  }

  .footer__links {
    align-items: center;
  }

  .footer__brand {
    align-items: center;
    text-align: center;
  }

  .footer__description {
    margin-right: auto;
    margin-left: auto;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__bottom {
    padding: 0 12px 48px;
  }

  .wp-btn {
    left: 16px;
    bottom: 32px;
  }

  .scroll-top {
    right: 16px;
    bottom: 32px;
  }
}

@media (max-width: 480px) {
  .footer__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__column {
    gap: 14px;
  }
}
/* === Ana Sayfa Özel Stilleri === */

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 180px);
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
}

.hero__wave {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  line-height: 0;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 640px) {
  .hero__wave,
  .page-hero__wave {
    bottom: -1px !important;
  }
  .hero__wave svg,
  .page-hero__wave svg {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    transform: none !important;
    transform-origin: center bottom !important;
  }
}

@media (max-width: 1024px) {
  .footer__wave svg {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    transform: none !important;
  }
  .footer__wave {
    bottom: 0 !important;
    transform: none !important;
    overflow: hidden !important;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hero__wave svg,
  .page-hero__wave svg {
    height: 60px !important;
    min-height: 60px !important;
  }
}

.hero__wave-path {
  fill: #ffffff;
  animation: hero-wave 4s ease-in-out infinite;
  transform-origin: center bottom;
}

.hero__container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  margin-bottom: 44px;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero__title {
  font-size: 38px;
  font-weight: 500;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 36px;
  white-space: nowrap;
}

.hero__subtitle {
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0 auto 48px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
  white-space: nowrap;
}

.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn--pill {
  border-radius: 9999px;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 500;
  width: 180px;
  min-height: 48px;
}

.btn--outline {
  background-color: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: #f3f4f6;
}

/* Services */
.services {
  padding-top: 140px;
  padding-bottom: 100px;
  background-color: #ffffff;
  scroll-margin-top: 140px;
}

.services__divider {
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 140px auto 0;
  border-bottom: 1px solid #e5e7eb;
}

/* Device Feature (Her Cihazda Mükemmel Görünüm) */
.device-feature {
  padding: 100px 0 0;
  background-color: #ffffff;
}

.device-feature__divider {
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 140px auto 0;
  border-bottom: 1px solid #e5e7eb;
}

.device-feature__container {
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: center;
  justify-content: center;
  gap: 70px;
  width: calc(100% - 48px);
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Mockup Görselleri - Ultra-Thin Bezels & Balanced Size */
.device-feature__visual {
  position: relative;
  width: 370px;
  height: 330px;
  margin: 0;
}

.device-mockup {
  position: absolute;
  background: #0f172a;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.device-mockup--tablet {
  top: 0;
  left: 0;
  width: 290px;
  height: 300px;
  padding: 5px;
  border-radius: 18px;
  border: 1px solid #1e293b;
  z-index: 1;
}

.device-mockup__camera {
  position: absolute;
  top: 3px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #334155;
  transform: translateX(-50%);
}

.device-mockup--phone {
  bottom: 0;
  right: 0;
  width: 135px;
  height: 255px;
  padding: 4px;
  border-radius: 22px;
  border: 1px solid #1e293b;
  z-index: 2;
  box-shadow: -8px 18px 40px rgba(0, 0, 0, 0.25);
}

.device-mockup__speaker {
  position: absolute;
  top: 3px;
  left: 50%;
  width: 24px;
  height: 3px;
  border-radius: 9999px;
  background: #0f172a;
  transform: translateX(-50%);
  z-index: 3;
}

.device-mockup__screen {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.device-mockup--phone .device-mockup__screen {
  border-radius: 18px;
}

.device-mockup__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* İçerik Metinleri */
.device-feature__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 480px;
  margin: 0;
}

.device-feature__title {
  font-size: 30px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 18px;
}

.device-feature__desc {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 28px;
}

.device-feature__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 0 auto;
}

.device-feature__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: #1f2937;
}

.device-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.12);
  color: #10b981;
  flex-shrink: 0;
}

.device-feature__icon svg {
  width: 13px;
  height: 13px;
}

/* Responsive */
@media (min-width: 641px) and (max-width: 1024px) {
  .services {
    padding-top: 140px;
  }

  .services__container {
    width: calc(100% - 48px) !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  .services__card {
    max-width: 100% !important;
    border-radius: 24px !important;
    box-sizing: border-box !important;
  }

  .device-feature__container {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
    justify-items: center;
  }

  .device-feature__visual {
    margin: 0 auto;
  }

  .device-feature__content {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .device-feature__list {
    align-items: flex-start;
    text-align: left;
  }

  .faq-section__container {
    width: calc(100% - 48px) !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 640px) {
  .device-feature {
    padding: 60px 0;
  }

  .device-feature__container {
    width: calc(100% - 48px) !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center !important;
    justify-items: center !important;
    box-sizing: border-box !important;
  }

  .device-feature__content {
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .device-feature__list {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .device-feature__title {
    font-size: 28px;
  }

  .device-feature__visual {
    height: 300px;
    max-width: 320px;
  }

  .device-mockup--tablet {
    width: 240px;
    height: 240px;
  }

  .device-mockup--phone {
    width: 120px;
    height: 220px;
    right: 0;
  }

  .faq-section__container {
    width: calc(100% - 48px) !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }
}

/* FAQ Section */
.faq-section {
  padding: 120px 0 160px;
  background-color: #ffffff;
  scroll-margin-top: 200px;
}

.faq-section__header {
  text-align: center;
  margin-bottom: 44px;
}

.faq-section__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  margin-bottom: 34px;
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  color: #4b5563;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.faq-section__desc {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 0;
}

.faq-section__container {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  align-items: center;
  gap: 50px;
  width: calc(100% - 48px);
  max-width: 1320px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: none;
  background: transparent;
  overflow: visible;
}

.faq-item__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__header:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-item.is-open .faq-item__header {
  border-color: #e5e7eb;
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-item__question {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.4;
  transition: color 0.2s ease;
}


.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f3f4f6;
  color: #4b5563;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, color 0.3s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
  background-color: #111827;
  color: #ffffff;
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__body {
  padding: 14px 20px 4px 20px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.7;
}

.faq-section__right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.faq-section__images-grid {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 340px;
  margin: 0 auto;
}

.faq-section__image-wrapper {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  background-color: #ffffff;
  transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0.3s ease;
}

.faq-section__image-wrapper--primary {
  top: 0;
  left: 0;
  width: 76%;
  height: 80%;
  z-index: 1;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.faq-section__image-wrapper--secondary {
  bottom: 0;
  right: 0;
  width: 60%;
  height: 65%;
  z-index: 2;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  border: 4px solid #ffffff;
}

.faq-section__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.faq-section__image-wrapper--primary:hover {
  z-index: 3;
  transform: scale(1.02);
}

.faq-section__image-wrapper--secondary:hover {
  z-index: 3;
  transform: scale(1.03) translateY(-4px);
}

@media (max-width: 992px) {
  .faq-section__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .faq-section__right {
    order: -1;
  }

  .faq-section__images-grid {
    max-width: 440px;
    height: 320px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-section__images-grid {
    height: 280px;
    max-width: 100%;
  }

  .faq-section__image-wrapper--secondary {
    border-width: 3px;
  }

  .faq-item__header {
    padding: 14px 16px;
  }

  .faq-item__question {
    font-size: 14px;
  }

  .faq-item__body {
    padding: 12px 16px 14px 16px;
    font-size: 13px;
  }
}

.services__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.services__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.services__card:hover,
.services__card:focus-within {
  transform: translateY(-4px);
  border-color: #d1d5db;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.services__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background-color: #ffffff;
  color: #1e293b;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.services__icon svg {
  width: 26px;
  height: 26px;
}

.services__title {
  font-size: 17px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 10px;
}

.services__desc {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 100%;
}

.services__card .btn {
  margin-top: auto;
}

@media (max-width: 1024px) {
  .services__container {
    grid-template-columns: 1fr;
    width: calc(100% + 24px);
    max-width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
    gap: 48px;
    padding: 0;
  }
  .services__card {
    width: 100%;
    padding: 56px 40px;
    border-radius: 20px;
  }
}

@media (max-width: 767px) {
  .services {
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }
  .services__container {
    width: calc(100% - 48px) !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 52px;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .services__card {
    width: 100% !important;
    padding: 48px 24px;
    border: 1px solid #e5e7eb;
    border-radius: 24px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    box-sizing: border-box !important;
  }

  .hero {
    min-height: calc(100vh - 160px);
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero__title {
    font-size: 30px;
    white-space: normal;
  }

  .hero__subtitle {
    width: auto;
    font-size: 14px;
    white-space: normal;
  }

  .btn--pill {
    padding: 12px 22px;
    font-size: 12px;
    width: 160px;
  }

  .services {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}



/* FAQ (Sıkça Sorulan Sorular - 2 Kolonlu Modern Tasarım) */
.faq {
  padding: 100px 0 120px;
  background-color: #ffffff;
}

.faq__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq__top {
  text-align: center;
  margin-bottom: 56px;
  max-width: 640px;
}

.faq__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 9999px;
  background-color: #f3f4f6;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}

.faq__title {
  font-size: 34px;
  font-weight: 600;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 12px;
}

.faq__subtitle {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}

.faq__subtitle {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}

/* Modern Bento Grid SSS Tasarımı */
.faq__bento-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.faq__bento-card--feature {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border: 1px solid #dbeafe;
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 35px -10px rgba(59, 130, 246, 0.08);
  position: sticky;
  top: 100px;
}

.faq__bento-img-box {
  width: 140px;
  height: 140px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__bento-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(59, 130, 246, 0.15));
}

.faq__bento-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 12px;
}

.faq__bento-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.faq__bento-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.faq__bento-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__card-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 22px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__card-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq__card-summary::-webkit-details-marker {
  display: none;
}

.faq__card-title-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq__card-num {
  font-size: 16px;
  font-weight: 800;
  color: #3b82f6;
  background: #eff6ff;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq__card-question {
  font-size: 17px;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.3s ease;
}

.faq__card-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq__card-answer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #f1f5f9;
  padding-left: 52px;
}

.faq__card-answer p {
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Hover & Open States */
.faq__card-item:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.04);
}

.faq__card-item[open] {
  border-color: #93c5fd;
  background: #ffffff;
  box-shadow: 0 16px 32px -8px rgba(59, 130, 246, 0.1);
}

.faq__card-item[open] .faq__card-num {
  background: #3b82f6;
  color: #ffffff;
}


.faq__card-item[open] .faq__card-chevron {
  transform: rotate(180deg);
  color: #3b82f6;
}

@media (max-width: 992px) {
  .faq__bento-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq__bento-card--feature {
    position: static;
    max-width: 100%;
  }
  .faq__card-answer {
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .faq__card-answer {
    margin-top: 16px;
    padding-top: 16px;
  }
  .faq__card-question {
    font-size: 14px;
  }
  .faq__card-answer p {
    font-size: 13px;
  }
}

/* Testimonials (Müşteri Yorumları - Dark Hero Box Tasarımı) */
.testimonials {
  padding: 100px 0 120px;
  background-color: #ffffff;
}

.testimonials__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials__hero-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  width: 100%;
  border-radius: 32px;
  padding: 56px 60px;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  align-items: center;
}

.testimonials__hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonials__badge--dark {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

.testimonials__title--white {
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}

.testimonials__subtitle--white {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.testimonials__stats-row {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
}

.testimonials__stat strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.testimonials__stat span {
  font-size: 12.5px;
  color: #9ca3af;
}

.testimonials__stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.12);
}

.testimonials__hero-right {
  display: flex;
  justify-content: center;
}

.testimonials__quote-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 40px 36px;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonials__quote-icon {
  font-size: 64px;
  line-height: 1;
  font-family: Georgia, serif;
  color: #38bdf8;
  opacity: 0.8;
  margin-bottom: -20px;
}

.testimonials__quote-text {
  font-size: 16px;
  line-height: 1.7;
  color: #e5e7eb;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonials__quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.testimonials__quote-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonials__quote-author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.testimonials__quote-author span {
  font-size: 13px;
  color: #9ca3af;
}

@media (max-width: 1024px) {
  .testimonials__hero-box {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 40px;
  }

  .testimonials__title--white {
    font-size: 28px;
  }

  .testimonials__stats-row {
    flex-wrap: wrap;
    gap: 20px;
  }

  .testimonials__stat-divider {
    display: none;
  }
}

@media (max-width: 767px) {
  .faq {
    padding: 60px 0;
  }

  .faq__title {
    font-size: 26px;
  }

  .faq__card-item {
    padding: 20px;
  }

  .faq__card-content {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .faq__container {
    padding: 0 14px;
  }
}


.device-showcase__tablet,
.device-showcase__phone {
  background: transparent;
  box-shadow: none;
}

.device-showcase__tablet,
.device-showcase__phone {
  padding: 0;
  border: 0;
  border-radius: 0;
}

.device-showcase__tablet-camera,
.device-showcase__phone-speaker {
  display: none;
}

.device-showcase__screen,
.device-showcase__screen--phone {
  border-radius: 0;
  background: transparent;
}

.device-showcase__visual {
  width: 380px;
  height: 390px;
  transform: translate(10px, -24px);
}

.device-showcase__tablet {
  top: 0;
  left: -16px;
  width: 270px;
  height: 330px;
}

.device-showcase__phone {
  top: 106px;
  left: 184px;
  width: 135px;
  height: 270px;
}

.device-showcase__image {
  object-fit: fill;
}

@media (max-width: 900px) {
  .device-showcase__visual {
    width: 280px;
    height: 300px;
    transform: none;
  }

  .device-showcase__tablet {
    top: 0;
    left: 0;
    width: 200px;
    height: 245px;
  }

  .device-showcase__phone {
    top: 76px;
    left: 140px;
    width: 100px;
    height: 200px;
  }
}

.nav__dropdown--services {
  width: 380px;
}

.nav__dropdown-body span {
  white-space: nowrap;
}

/* === Animasyonlar === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero giriş animasyonu */
.hero__badge {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.hero__title {
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.12s forwards;
}

.hero__subtitle {
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.24s forwards;
}

.hero__buttons {
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.36s forwards;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
}

.reveal.is-visible {
  animation: fadeInUp 0.7s ease forwards;
}

.services__card.reveal.is-visible:nth-child(1) {
  animation-delay: 0s;
}

.services__card.reveal.is-visible:nth-child(2) {
  animation-delay: 0.12s;
}

.services__card.reveal.is-visible:nth-child(3) {
  animation-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .hero__badge,
  .hero__title,
  .hero__subtitle,
  .hero__buttons,
  .reveal {
    opacity: 1 !important;
    animation: none !important;
  }
}
