/* =====================================================================
   MiAmore – Nocturne Elegance
   Tek dosya, responsive, mobil öncelikli tasarım sistemi.
   Bölümler:
   1) Design Tokens (CSS değişkenleri)
   2) Reset & Base
   3) Yardımcı sınıflar (utilities)
   4) Bileşenler (components)
   5) Bölüm düzenleri (sections)
   6) Responsive breakpoint sistemi (768 / 1024 / 1440 / 375)
   ===================================================================== */

/* ============================ 1) TOKENS ============================ */
:root {
  /* Renkler – Nocturne Elegance */
  --bg:                 #060712;   /* True Midnight – sayfa zemini */
  --surface:            #111326;   /* kart yüzeyi (opak referans) */
  --surface-lowest:     #180a0d;
  --surface-low:        #27171a;
  --surface-container:  #2c1b1e;
  --surface-high:       #372528;
  --surface-input:      #0e1020;

  --on-surface:         #f9dbdf;   /* ana metin */
  --on-surface-variant: #e3bdc2;   /* ikincil metin */
  --outline:            #aa888d;
  --outline-variant:    #5b4044;

  --primary:            #ffb2be;   /* vurgu metin / ikon */
  --tertiary:           #eab2ff;   /* mor vurgu */

  /* Gradyanlar & efektler */
  --grad-primary: linear-gradient(135deg, #ff3d77 0%, #9d4dff 100%);
  --grad-text:    linear-gradient(135deg, #ffb2be 0%, #eab2ff 100%);
  --glass-fill:   rgba(17, 19, 38, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glow:         0 10px 40px rgba(255, 61, 119, 0.22);
  --glow-strong:  0 10px 30px rgba(255, 61, 119, 0.35);

  /* Tipografi ölçeği */
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --fs-display:    clamp(2.25rem, 1.4rem + 3.6vw, 3rem);   /* 36 → 48 */
  --fs-headline-md: clamp(1.6rem, 1.2rem + 1.6vw, 2rem);   /* 26 → 32 */
  --fs-headline-sm: 1.5rem;   /* 24 */
  --fs-body-lg:    1.125rem;  /* 18 */
  --fs-body-md:    1rem;      /* 16 */
  --fs-label-md:   0.875rem;  /* 14 */
  --fs-label-sm:   0.75rem;   /* 12 */

  /* Boşluk sistemi (8px grid) */
  --sp-xs: 4px;
  --sp-sm: 12px;
  --sp-md: 24px;
  --sp-lg: 48px;
  --sp-xl: 80px;

  /* Köşe yarıçapları */
  --r-sm: 0.5rem;
  --r:    1rem;
  --r-md: 1.5rem;
  --r-lg: 2rem;
  --r-xl: 3rem;
  --r-full: 9999px;

  /* Düzen */
  --container: 1280px;
  --gutter: 20px;                 /* mobil yan boşluk */
  --header-h: 72px;

  --transition: 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

/* ============================ 2) RESET ============================ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  max-width: 100%;
  overflow-x: hidden;            /* yatay scroll engeli */
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--on-surface);
  font-family: var(--font);
  font-size: var(--fs-body-md);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4, p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

::selection { background: rgba(255, 61, 119, 0.35); color: #fff; }

/* Özel scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-high); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--outline-variant); }

/* Material Symbols ikon fontu */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  user-select: none;
}
.icon-fill { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

/* ============================ 3) UTILITIES ============================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section { padding-block: var(--sp-xl); }
.section--tight { padding-block: var(--sp-lg); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto var(--sp-lg); }
.section-head h2 { font-size: var(--fs-headline-md); font-weight: 600; letter-spacing: -0.01em; }
.section-head p  { color: var(--on-surface-variant); margin-top: var(--sp-sm); }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-label-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: var(--r-full);
}

/* Glassmorphism kart */
.glass {
  background: var(--glass-fill);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
}

/* Scroll reveal animasyonu */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================ 4) COMPONENTS ============================ */
/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: var(--fs-body-md);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r-full);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }

.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--glow);
}
.btn--primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--glow-strong); }

.btn--ghost {
  border: 1px solid var(--outline-variant);
  color: var(--on-surface);
}
.btn--ghost:hover { background: var(--surface-container); }

.btn--glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.btn--glass:hover { background: rgba(255, 255, 255, 0.16); }

.btn--sm { padding: 9px 22px; font-size: var(--fs-label-md); }

/* Rozet / chip */
.chip {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-full);
  border: 1px solid;
}
.chip--primary  { background: rgba(255, 61, 119, 0.12); color: var(--primary);  border-color: rgba(255, 61, 119, 0.30); }
.chip--tertiary { background: rgba(199, 75, 255, 0.12); color: var(--tertiary); border-color: rgba(199, 75, 255, 0.30); }

/* Yumuşak glow lekeleri (dekoratif) */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}
.glow-orb--primary  { background: rgba(255, 61, 119, 0.18); }
.glow-orb--tertiary { background: rgba(199, 75, 255, 0.18); }

/* ============================ 5) SECTIONS ============================ */

/* ---- Header ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: rgba(6, 7, 18, 0.55);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition), padding var(--transition);
}
.site-header.is-scrolled { background: rgba(6, 7, 18, 0.9); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: var(--fs-headline-sm);
  letter-spacing: -0.01em;
  color: var(--primary);
}
.brand .material-symbols-outlined { font-size: 1.6rem; }

/* Header sadece Login + Register butonları içerir */
.header-actions { display: flex; align-items: center; gap: var(--sp-sm); }

/* ---- Hero ---- */
.hero {
  position: relative;
  padding-block: calc(var(--header-h) + var(--sp-lg)) var(--sp-xl);
  overflow: hidden;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--sp-xl);
  align-items: center;
}
.hero__glow-1 { top: -120px; left: -120px; width: 340px; height: 340px; }
.hero__glow-2 { bottom: -80px; right: -120px; width: 340px; height: 340px; }

.hero__copy { text-align: center; }
.hero h1 {
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-md);
}
.hero__lead {
  color: var(--on-surface-variant);
  font-size: var(--fs-body-lg);
  max-width: 34rem;
  margin: 0 auto var(--sp-lg);
}
/* Hero aksiyon alanı: 3 buton, glass kart içinde */
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  padding: var(--sp-md);
  max-width: 30rem;
  margin: 0 auto;
}
.cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 60px;
  padding: 14px 24px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.cta-btn:hover { transform: translateY(-2px); }
.cta-btn:active { transform: scale(0.98); }

/* 1) Kayıt (pembe gradient + ok) */
.cta-btn--register {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--glow);
}
.cta-btn--register:hover { box-shadow: var(--glow-strong); }
.cta-btn--register .material-symbols-outlined {
  position: absolute;
  right: 22px;
  font-size: 1.4rem;
}

/* 2) Google ile giriş (beyaz) */
.cta-btn--google {
  background: #fff;
  color: #17171a;
  letter-spacing: 0.04em;
}
.cta-btn--google img { width: 26px; height: 26px; object-fit: contain; }

/* 3) Google Play rozeti (siyah) */
.cta-btn--play {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-transform: none;
  letter-spacing: 0;
}
.cta-btn--play img { width: 34px; height: 34px; object-fit: contain; }
.cta-btn__playtext { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.cta-btn__playtext small {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.cta-btn__playtext strong { font-size: 1.15rem; font-weight: 600; }

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
  font-size: var(--fs-label-md);
  color: var(--on-surface-variant);
}
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--surface-high);
  margin-left: -12px;
}
.avatar-stack span:first-child { margin-left: 0; }

/* Telefon mockup */
.phone-wrap { position: relative; justify-self: center; }
.phone {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 9 / 19;
  border-radius: var(--r-xl);
  border: 8px solid var(--surface-high);
  background: var(--surface-input);
  overflow: hidden;
  box-shadow: var(--glow);
}
.phone__media { position: absolute; inset: 0; }
.phone__media img { width: 100%; height: 100%; object-fit: cover; }

/* Durum çubuğu */
.phone__status {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.phone__status-icons { display: flex; gap: 5px; }
.phone__status-icons .material-symbols-outlined { font-size: 16px; }

/* Profil + aksiyon paneli */
.phone__panel {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 40px 16px 18px;
  background: linear-gradient(to top,
              rgba(6, 7, 18, 0.95) 22%,
              rgba(6, 7, 18, 0.55) 58%,
              transparent);
}
.phone__name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.phone__name .material-symbols-outlined { font-size: 1.15rem; color: #58b8ff; }
.phone__loc {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}
.phone__loc .material-symbols-outlined { font-size: 15px; }
.phone__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }

.phone__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}
.phone__act {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
}
.phone__act:hover { transform: scale(1.08); }
.phone__act .material-symbols-outlined { font-size: 1.4rem; }
.phone__act--like {
  width: 62px; height: 62px;
  background: var(--grad-primary);
  border: none;
  box-shadow: 0 8px 26px rgba(255, 61, 119, 0.55);
}
.phone__act--like .material-symbols-outlined { font-size: 1.8rem; }

/* Chip: cam varyantı (telefon etiketleri için) */
.chip--glass { background: rgba(255, 255, 255, 0.14); color: #fff; border-color: rgba(255, 255, 255, 0.28); }

.float-card {
  position: absolute;
  top: 18%;
  right: -8px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  animation: float 3.4s ease-in-out infinite;
}
.float-card__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: #fff;
}
.float-card__icon .material-symbols-outlined { font-size: 1.1rem; }
.float-card strong { font-size: var(--fs-label-md); display: block; }
.float-card small  { font-size: 10px; color: var(--on-surface-variant); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ---- İstatistik / güven barı ---- */
.stats {
  background: var(--surface-lowest);
  border-block: 1px solid var(--outline-variant);
  padding-block: var(--sp-lg);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
  text-align: center;
}
.stat__value {
  font-size: var(--fs-headline-md);
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  display: block;
  margin-top: 4px;
  font-size: var(--fs-label-sm);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--on-surface-variant);
}
.stat__stars { color: var(--tertiary); display: inline-flex; }
.stat__stars .material-symbols-outlined { font-size: 1.1rem; }

/* ---- Adımlar (How it works) ---- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}
.step { padding: var(--sp-md); }
.step__icon {
  width: 48px; height: 48px;
  border-radius: var(--r);
  display: grid; place-items: center;
  margin-bottom: var(--sp-md);
  transition: transform var(--transition);
}
.step:hover .step__icon { transform: scale(1.08); }
.step__icon--primary  { background: rgba(255, 61, 119, 0.12); color: var(--primary); }
.step__icon--tertiary { background: rgba(199, 75, 255, 0.12); color: var(--tertiary); }
.step h3 { font-size: var(--fs-headline-sm); margin-bottom: 8px; }
.step p  { color: var(--on-surface-variant); }

/* ---- Özellikler (bento) ---- */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}
.feature { position: relative; overflow: hidden; padding: var(--sp-md); }
.feature h3 { font-size: var(--fs-headline-sm); margin-bottom: 8px; }
.feature p  { color: var(--on-surface-variant); }

/* Görselli büyük kart */
.feature--media { min-height: 320px; padding: 0; }
.feature--media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1s ease;
}
.feature--media:hover img { transform: scale(1); }
.feature--media .feature__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-md);
  max-width: 26rem;
}
.feature--media h3, .feature--media p { color: #fff; }
.feature--media::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.15));
}
.feature--media.is-right .feature__content { margin-left: auto; text-align: right; align-items: flex-end; }
.feature--media.is-right::before { background: linear-gradient(to left, rgba(0,0,0,0.8), transparent); }

/* İkonlu küçük kart */
.feature--icon { display: flex; flex-direction: column; }
.feature__badge {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--glow);
  margin-bottom: var(--sp-md);
}
.feature--icon .material-symbols-outlined.lead-icon { font-size: 2rem; color: var(--tertiary); margin-bottom: var(--sp-sm); }

/* ---- Testimonial ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}
.quote { padding: var(--sp-md); display: flex; flex-direction: column; }
.quote__stars { color: var(--primary); display: flex; gap: 2px; margin-bottom: var(--sp-md); }
.quote__stars .material-symbols-outlined { font-size: 1.15rem; }
.quote__text { font-style: italic; color: var(--on-surface); margin-bottom: var(--sp-md); }
.quote__person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--outline-variant);
  flex-shrink: 0;
}
.quote__name { font-weight: 700; }
.quote__meta { font-size: var(--fs-label-sm); color: var(--tertiary); }

/* ---- FAQ ---- */
.faq-list { display: grid; gap: var(--sp-sm); max-width: 720px; margin: 0 auto; }
.faq {
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding: var(--sp-md);
  font-weight: 600;
  font-size: var(--fs-body-lg);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .material-symbols-outlined { transition: transform var(--transition); color: var(--primary); }
.faq[open] summary .material-symbols-outlined { transform: rotate(180deg); }
.faq__body { padding: 0 var(--sp-md) var(--sp-md); color: var(--on-surface-variant); }

/* ---- CTA ---- */
.cta__panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--sp-xl) var(--sp-md);
}
.cta__glow-1 { top: -80px; left: -80px; width: 260px; height: 260px; }
.cta__glow-2 { bottom: -80px; right: -80px; width: 260px; height: 260px; }
.cta h2 { position: relative; z-index: 1; font-size: var(--fs-display); font-weight: 700; letter-spacing: -0.02em; }
.cta p  { position: relative; z-index: 1; color: var(--on-surface-variant); font-size: var(--fs-body-lg); margin: var(--sp-md) auto var(--sp-lg); max-width: 34rem; }
.cta__actions {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  max-width: 22rem;
  margin: 0 auto;
}
.cta__actions .btn { width: 100%; }

/* ---- Footer (minimal, tek satır) ---- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--glass-border);
  padding-block: 30px;
}
.footer__inner {
  display: flex;
  flex-direction: column;      /* mobil: alt alta */
  align-items: flex-start;
  gap: var(--sp-md);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-lg);
}
.footer__links a {
  font-size: var(--fs-label-md);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-surface-variant);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--primary); }
.footer__copy {
  font-size: var(--fs-label-md);
  color: var(--on-surface-variant);
}

/* ==================================================================
   6) RESPONSIVE – 768 / 1024 / 1440 + 375 küçük mobil
   ================================================================== */

/* ---- Küçük mobil (≤375px) ---- */
@media (max-width: 375px) {
  :root { --gutter: 16px; }
  .hero h1 { font-size: 1.9rem; }
  .float-card { right: 0; padding: 10px 12px; }
  .hero__cta { padding: var(--sp-sm); }
}

/* ---- Tablet (≥768px) ---- */
@media (min-width: 768px) {
  :root { --gutter: 40px; }

  .stats__grid,
  .steps,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .bento { grid-template-columns: repeat(2, 1fr); }

  .cta__actions { flex-direction: row; justify-content: center; max-width: none; }
  .cta__actions .btn { width: auto; }

  .footer__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---- Laptop / geniş tablet (≥1024px) ---- */
@media (min-width: 1024px) {
  :root { --gutter: 64px; }

  /* Hero iki kolon */
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-xl); }
  .hero__copy { text-align: left; }
  .hero__lead { margin-inline: 0; }
  .hero__cta { margin-inline: 0; }
  .social-proof { justify-content: flex-start; }

  /* 4'lü grid'ler */
  .stats__grid,
  .steps { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  /* Bento: 12 kolon düzen */
  .bento {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(300px, auto);
  }
  .feature--wide { grid-column: span 8; }
  .feature--narrow { grid-column: span 4; }
}

/* ---- Geniş masaüstü (≥1440px) ---- */
@media (min-width: 1440px) {
  :root { --gutter: 120px; }              /* margin-desktop token */
  .hero { padding-block: calc(var(--header-h) + var(--sp-xl)) var(--sp-xl); }
}

/* ---- Erişilebilirlik: hareket azaltma ---- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
