/* ============================================================
   RANDEVU RİTMİ — Kurucu kişisel marka sitesi
   Mürekkep siyahı + zümrüt aksan, sinematik scroll
   ============================================================ */

/* ---------- Fontlar: Montserrat (değişken, 100-900) ---------- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/montserrat-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/montserrat-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Değişkenler ---------- */
:root {
  --ink: #0A1019;
  --ink-2: #0D1520;
  --emerald: #10B981;
  --emerald-2: #34D399;
  --cream: #F4F1EA;
  --cream-dim: rgba(244, 241, 234, 0.62);
  --cream-faint: rgba(244, 241, 234, 0.5);
  --line: rgba(244, 241, 234, 0.10);
  --display: 'Montserrat', -apple-system, 'Segoe UI', sans-serif;
  --body: 'Montserrat', -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--emerald); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img, video, canvas { display: block; max-width: 100%; }

/* ---------- Yükleme ekranı ---------- */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px;
  transition: opacity .7s ease, visibility .7s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark {
  font-family: var(--display);
  font-size: 64px; letter-spacing: .04em;
  color: var(--emerald);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .45; } }
.loader-bar {
  width: min(260px, 60vw); height: 2px;
  background: var(--line); overflow: hidden; border-radius: 2px;
}
.loader-bar span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-2));
  transition: width .3s ease;
}
.loader-pct { font-size: 12px; letter-spacing: .3em; color: var(--cream-faint); }

/* ---------- Film greni ---------- */
.grain {
  position: fixed; inset: -100%; z-index: 900; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .05;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 10% { transform: translate(-5%,-8%); }
  20% { transform: translate(-13%,3%); } 30% { transform: translate(6%,-11%); }
  40% { transform: translate(-4%,13%); } 50% { transform: translate(-12%,7%); }
  60% { transform: translate(11%,4%); } 70% { transform: translate(-2%,9%); }
  80% { transform: translate(4%,-6%); } 90% { transform: translate(-8%,-3%); }
}

/* ---------- İlerleme çubuğu ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 950;
  background: transparent; pointer-events: none;
}
.progress span {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-2));
  transform-origin: left; transform: scaleX(0);
}

/* ---------- Üst bar ---------- */
:root { --nav-h: 88px; }
@media (max-width: 640px) { :root { --nav-h: 70px; } }
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(10, 16, 25, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: var(--display);
  font-size: 18px; letter-spacing: .06em; color: var(--cream);
}
.nav-logo span { color: var(--emerald); }
.nav-cta {
  font-size: 13px; font-weight: 600; letter-spacing: .06em;
  padding: 10px 20px; border: 1px solid var(--emerald);
  border-radius: 999px; color: var(--emerald-2);
  transition: background .3s, color .3s, box-shadow .3s;
}
.nav-cta:hover {
  background: var(--emerald); color: var(--ink);
  box-shadow: 0 0 28px rgba(16, 185, 129, .45);
}

/* ---------- Bölüm başlıkları ---------- */
.sec-head { margin-bottom: clamp(40px, 6vw, 72px); }
.sec-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 6.4vw, 88px);
  line-height: 1.04;
  letter-spacing: .01em;
  text-transform: none;
}
.sec-title .sl { display: block; overflow: hidden; }
.sec-title .sl > span { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; }
.hero-stage {
  position: relative; height: 100vh; height: 100svh;
  overflow: hidden;
  padding-top: var(--nav-h);
  display: flex; align-items: center; justify-content: center;
}
.hero-canvas {
  position: absolute; inset: var(--nav-h) 0 0 0; width: 100%; height: calc(100% - var(--nav-h));
  background: var(--ink);
}
.hero-vignette {
  position: absolute; inset: var(--nav-h) 0 0 0; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, transparent 55%, rgba(10,16,25,.82) 100%),
    linear-gradient(180deg, rgba(10,16,25,.55) 0%, transparent 22%, transparent 72%, var(--ink) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 20px;
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(14px, 2.2vh, 24px);
}
.hero-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--emerald-2);
}
.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(64px, 14.5vw, 210px);
  line-height: .94;
  letter-spacing: .015em;
  text-shadow: 0 10px 60px rgba(0,0,0,.55);
}
.hero-title .line { display: block; }
.hero-title .line-accent { color: var(--emerald); }
.hero-title .ch { display: inline-block; will-change: transform, opacity; }
.hero-sub {
  max-width: 560px;
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--cream);
}
.hero-assure {
  font-size: 13px; letter-spacing: .04em;
  color: var(--cream-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 22px;
  background: rgba(10, 16, 25, .45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* Hero 2. vuruş: vaat başlığı, dönen orbit'in üstünde belirir */
.hero-beat2 {
  position: absolute; inset: var(--nav-h) 0 0 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 20px;
  pointer-events: none;
  opacity: 0; visibility: hidden; /* yalnızca animasyon modunda GSAP açar */
}
.beat2-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1.02;
  letter-spacing: .01em;
  text-shadow: 0 10px 60px rgba(0,0,0,.65);
}
/* Animasyon modunda vaat bölümündeki başlık gizlenir (hero'da gösteriliyor) */
body.animated .vaat-title { display: none; }

.hero-scrollhint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  font-size: 15px; font-weight: 800; letter-spacing: .4em;
  color: var(--cream);
  text-shadow: 0 4px 20px rgba(0, 0, 0, .6);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scrollhint span {
  width: 2px; height: 52px; border-radius: 2px;
  background: linear-gradient(180deg, var(--emerald), transparent);
  animation: drop 1.8s ease-in-out infinite;
}
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 90% at 50% 0%, rgba(16,185,129,.07), transparent 60%),
    var(--ink);
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(28px, 3vw, 40px);
}
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: calc(-1 * clamp(14px, 1.5vw, 20px)); top: 12%;
  width: 1px; height: 76%;
  background: var(--line);
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(52px, 6.5vw, 96px);
  line-height: 1;
  color: var(--emerald);
  display: flex; align-items: baseline; justify-content: center;
}
.stat-num .pre { font-size: .6em; margin-right: 2px; color: var(--emerald-2); }
.stat-label {
  margin-top: 12px;
  font-size: 13px; line-height: 1.5;
  color: var(--cream-dim);
}
.stat-label em { font-style: normal; color: var(--cream-faint); display: block; font-size: 12px; }

/* ============================================================
   Video arka planlı bölümler
   ============================================================ */
.media-bg { position: absolute; inset: 0; overflow: hidden; }
.media-bg video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}
.media-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--ink) 0%, rgba(10,16,25,.62) 18%, rgba(10,16,25,.55) 55%, var(--ink) 100%);
}
.media-shade-strong {
  background:
    linear-gradient(90deg, rgba(10,16,25,.88) 0%, rgba(10,16,25,.5) 60%, rgba(10,16,25,.72) 100%),
    linear-gradient(180deg, var(--ink) 0%, transparent 24%, transparent 70%, var(--ink) 100%);
}

/* ============================================================
   PILLARS — üç sütun
   ============================================================ */
.pillars {
  position: relative;
  padding: clamp(90px, 13vw, 170px) clamp(20px, 4vw, 56px);
}
.pillars-inner { position: relative; max-width: 1280px; margin: 0 auto; }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}
.pillar {
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 16, 25, .58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color .4s, transform .4s;
}
.pillar:hover { border-color: rgba(16,185,129,.45); transform: translateY(-4px); }
.pillar-no {
  font-family: var(--display);
  font-size: 15px; letter-spacing: .18em;
  color: var(--emerald);
  margin-bottom: 18px;
}
.pillar h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: .02em;
  margin-bottom: 14px;
  line-height: 1.25;
}
.pillar h3 span { color: var(--emerald-2); }
.pillar p { font-size: 14.5px; color: var(--cream-dim); }
.pillars-note {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
  font-size: 14px;
  color: var(--cream-faint);
}

/* ============================================================
   WORK — kartlar (3D tilt)
   ============================================================ */
.work {
  position: relative;
  padding: clamp(90px, 13vw, 170px) clamp(20px, 4vw, 56px);
}
.work-inner { position: relative; max-width: 1280px; margin: 0 auto; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  perspective: 1200px;
}
.card {
  position: relative;
  padding: clamp(30px, 3.2vw, 46px);
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(16,185,129,.10), rgba(10,16,25,.4) 45%),
    rgba(13, 21, 32, .72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color .35s, box-shadow .35s;
}
.card:hover {
  border-color: rgba(52, 211, 153, .55);
  box-shadow: 0 18px 60px rgba(0,0,0,.5), 0 0 42px rgba(16,185,129,.18);
}
.card-glare {
  position: absolute; inset: -40%;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(52,211,153,.22), transparent 42%);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.card:hover .card-glare { opacity: 1; }
.card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: .03em;
  color: var(--emerald-2);
  margin-bottom: 16px;
  transform: translateZ(30px);
}
.card p { font-size: 14.5px; color: var(--cream-dim); transform: translateZ(18px); }

/* ============================================================
   FARK — karşılaştırma
   ============================================================ */
.fark {
  position: relative;
  padding: clamp(90px, 13vw, 170px) clamp(20px, 4vw, 56px);
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(16,185,129,.06), transparent 60%),
    var(--ink);
}
.fark-inner { max-width: 1080px; margin: 0 auto; }
.fark-table { display: flex; flex-direction: column; gap: 12px; }
.fark-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fark-cell {
  padding: clamp(16px, 2vw, 24px) clamp(18px, 2.4vw, 30px);
  border-radius: 14px;
  font-size: clamp(13.5px, 1.4vw, 15.5px);
  display: flex; align-items: center;
}
.fark-left {
  background: rgba(244, 241, 234, .035);
  border: 1px solid var(--line);
  color: var(--cream-faint);
}
.fark-left::before { content: '✕'; margin-right: 12px; font-size: 12px; opacity: .5; flex-shrink: 0; }
.fark-right {
  background: linear-gradient(140deg, rgba(16,185,129,.16), rgba(16,185,129,.05));
  border: 1px solid rgba(16, 185, 129, .35);
  color: var(--cream);
}
.fark-right::before { content: '✓'; margin-right: 12px; font-size: 13px; color: var(--emerald-2); flex-shrink: 0; }
.fark-head .fark-cell {
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 21px);
  letter-spacing: .05em;
  background: transparent; border: none;
  padding-bottom: 4px;
}
.fark-head .fark-left::before, .fark-head .fark-right::before { content: none; }
.fark-head .fark-right { color: var(--emerald); }

/* ============================================================
   FİNALE
   ============================================================ */
.finale {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(90px, 12vw, 150px) clamp(20px, 4vw, 56px);
  overflow: hidden;
}
.finale-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 50% 58%, rgba(16,185,129,.13), transparent 65%);
}
.finale-inner { position: relative; text-align: center; max-width: 980px; }
.finale-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(52px, 9.5vw, 138px);
  line-height: .98;
  letter-spacing: .01em;
}
.finale-title .accent { color: var(--emerald); }
.finale-title .sl { display: block; overflow: hidden; }
.finale-title .sl > span { display: block; }
.finale-sub {
  margin: clamp(24px, 3.5vw, 40px) auto 0;
  max-width: 640px;
  font-size: clamp(14.5px, 1.5vw, 17px);
  color: var(--cream-dim);
}
.finale-actions {
  margin-top: clamp(32px, 4.5vw, 54px);
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}
.btn {
  font-size: 15px; font-weight: 600; letter-spacing: .03em;
  padding: 18px 38px;
  border-radius: 999px;
  transition: transform .3s, box-shadow .3s, background .3s, color .3s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn .arrow { transition: transform .3s; }
.btn:hover .arrow { transform: translateX(5px); }
.btn-primary {
  background: linear-gradient(120deg, var(--emerald), #0ea371);
  color: var(--ink);
  box-shadow: 0 8px 34px rgba(16, 185, 129, .35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 48px rgba(16, 185, 129, .5); }
.btn-outline {
  border: 1px solid rgba(244, 241, 234, .3);
  color: var(--cream);
}
.btn-outline:hover { border-color: var(--emerald-2); color: var(--emerald-2); transform: translateY(-3px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(56px, 7vw, 90px) clamp(20px, 4vw, 56px) 34px;
  background: var(--ink-2);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(36px, 5vw, 70px);
}
.footer-logo {
  font-family: var(--display);
  font-size: 26px; letter-spacing: .05em;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--emerald); }
.footer-brand p { font-size: 13.5px; color: var(--cream-faint); max-width: 300px; }
.footer-col h4 {
  font-size: 12px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--emerald-2);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px; color: var(--cream-dim);
  transition: color .3s;
}
.footer-col a:hover { color: var(--emerald-2); }
.footer-addr { font-size: 13px; color: var(--cream-faint); line-height: 1.6; }
.footer-copy {
  max-width: 1280px; margin: clamp(44px, 6vw, 70px) auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--cream-faint);
  text-align: center;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .stats-inner { grid-template-columns: repeat(3, 1fr); row-gap: 44px; }
  .stat:nth-child(4)::before, .stat:nth-child(1)::before { display: none; }
  .pillar-grid, .card-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat::before { display: none; }
  .stat:last-child { grid-column: 1 / -1; }
  .fark-row { grid-template-columns: 1fr; gap: 8px; }
  .fark-row + .fark-row { margin-top: 10px; }
  .fark-head { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .hero-assure { font-size: 11.5px; padding: 8px 16px; }
}

/* ============================================================
   prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .grain, .hero-scrollhint span { animation: none; }
  .loader-mark { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* ============================================================
   YENİ BÖLÜMLER — vaat, sorunlar, hesap, funnel, teslim,
   değer, garanti, manifesto, sss, başvuru, rehberler
   ============================================================ */

.sec-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--emerald-2);
  margin-bottom: 14px;
}
.sec-head-center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.sec-sub {
  margin-top: 18px;
  font-size: clamp(14.5px, 1.5vw, 16.5px);
  color: var(--cream-dim);
  max-width: 640px;
}
.sec-head-center .sec-sub { margin-left: auto; margin-right: auto; }
.accent { color: var(--emerald); }

/* Nav linkleri */
.nav-links { display: flex; gap: clamp(16px, 2.5vw, 32px); }
.nav-link {
  font-size: 13.5px; font-weight: 600; letter-spacing: .05em;
  color: var(--cream-dim);
  transition: color .3s;
}
.nav-link:hover { color: var(--emerald-2); }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ---------- VAAT ---------- */
.vaat {
  padding: clamp(90px, 12vw, 160px) clamp(20px, 4vw, 56px);
  background: radial-gradient(ellipse 55% 60% at 50% 30%, rgba(16,185,129,.08), transparent 65%), var(--ink);
}
.vaat-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.vaat-title { font-size: clamp(42px, 7vw, 96px); }
.vaat-lead { margin-top: clamp(24px, 3vw, 36px); font-size: clamp(15px, 1.7vw, 18px); color: var(--emerald-2); }
.vaat-text { margin: 16px auto 0; max-width: 640px; font-size: clamp(14.5px, 1.6vw, 17px); color: var(--cream-dim); }
.chip-row { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: center; }
.chip-label { font-size: 12.5px; color: var(--cream-faint); margin-right: 4px; }
.chip {
  font-size: 12.5px; font-weight: 600; color: var(--cream);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(244,241,234,.05); border: 1px solid var(--line);
}

/* ---------- SORUNLAR ---------- */
.sorunlar { padding: clamp(80px, 11vw, 150px) clamp(20px, 4vw, 56px); border-top: 1px solid var(--line); }
.sorunlar-inner { max-width: 1180px; margin: 0 auto; }
.sorun-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.sorun {
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid var(--line); border-radius: 16px;
  background: rgba(244,241,234,.03);
  transition: border-color .35s, transform .35s;
}
.sorun:hover { border-color: rgba(16,185,129,.4); transform: translateY(-4px); }
.sorun h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(17px, 1.7vw, 21px); letter-spacing: .02em;
  margin-bottom: 10px; color: var(--cream);
}
.sorun p { font-size: 14px; color: var(--cream-dim); }
@media (max-width: 900px) { .sorun-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ---------- KAYIP HESAPLAYICI ---------- */
.hesap { padding: clamp(60px, 8vw, 110px) clamp(20px, 4vw, 56px); }
.hesap-inner { max-width: 860px; margin: 0 auto; }
.hesap-card {
  border: 1px solid rgba(16,185,129,.28); border-radius: 20px;
  background: linear-gradient(150deg, rgba(16,185,129,.08), rgba(13,21,32,.6));
  padding: clamp(26px, 3.5vw, 44px);
}
.hesap-fields { display: flex; flex-wrap: wrap; gap: 18px; align-items: flex-end; justify-content: center; }
.hesap-field { flex: 1 1 170px; max-width: 220px; }
.hesap-field label { display: block; font-size: 13px; font-weight: 600; color: var(--cream-dim); margin-bottom: 8px; }
.hesap-field input, .form-alan input {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1px solid rgba(244,241,234,.16);
  background: rgba(244,241,234,.06); color: var(--cream);
  font-size: 15px; font-family: var(--body); outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.hesap-field input:focus, .form-alan input:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(16,185,129,.18);
}
.hesap-sonuc {
  flex: 1 1 220px; max-width: 280px; text-align: center;
  background: rgba(16,185,129,.09); border: 1px solid rgba(16,185,129,.35);
  border-radius: 16px; padding: 14px 18px;
}
.hesap-sonuc-label { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; color: var(--emerald-2); margin-bottom: 4px; }
.hesap-sonuc-deger { font-family: var(--display); font-size: clamp(26px, 3vw, 34px); color: var(--emerald); white-space: nowrap; }
.hesap-not, .viz-not { font-size: 11.5px; color: var(--cream-faint); text-align: center; margin-top: 14px; }
.hesap-cta { text-align: center; margin-top: 20px; }

/* ---------- AKIŞ + ALTYAPI (pillars/work içi) ---------- */
.akis-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin: -20px 0 clamp(36px, 5vw, 56px); }
.akis-chip {
  padding: 8px 18px; border-radius: 999px;
  background: rgba(10,16,25,.6); border: 1px solid var(--line);
  font-size: 13px; font-weight: 700; color: var(--cream);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.akis-chip-son { background: linear-gradient(120deg, var(--emerald), #0ea371); color: var(--ink); border-color: transparent; }
.akis-ok { color: var(--emerald-2); font-weight: 700; }
.altyapi { margin-top: clamp(40px, 5vw, 64px); }
.altyapi-baslik { text-align: center; font-size: 14px; color: var(--cream-dim); max-width: 560px; margin: 0 auto 24px; }
.altyapi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.altyapi-item {
  padding: 16px 18px; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(10,16,25,.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: border-color .3s;
}
.altyapi-item:hover { border-color: rgba(16,185,129,.4); }
.altyapi-item strong { display: block; font-size: 14px; color: var(--emerald-2); margin-bottom: 4px; letter-spacing: .02em; }
.altyapi-item span { font-size: 12.5px; color: var(--cream-dim); line-height: 1.5; }
@media (max-width: 1024px) { .altyapi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .altyapi-grid { grid-template-columns: 1fr; } }

/* ---------- FUNNEL ---------- */
.funnel { padding: clamp(80px, 11vw, 150px) clamp(20px, 4vw, 56px); border-top: 1px solid var(--line); }
.funnel-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.check-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  position: relative; padding-left: 34px;
  font-size: 15px; font-weight: 600; color: var(--cream);
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), #0ea371);
  color: var(--ink); font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.funnel-viz {
  border: 1px solid var(--line); border-radius: 18px;
  background: rgba(13,21,32,.7); padding: clamp(22px, 2.6vw, 32px);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.funnel-viz-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; color: var(--emerald-2); }
.funnel-canli { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.funnel-canli i { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald-2); animation: pulse 1.6s ease-in-out infinite; }
.fbar { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.fbar-ad { width: 118px; flex-shrink: 0; font-size: 12.5px; font-weight: 600; color: var(--cream-dim); }
.fbar-son .fbar-ad { color: var(--cream); font-weight: 700; }
.fbar-track { flex: 1; height: 26px; border-radius: 7px; background: rgba(244,241,234,.06); overflow: hidden; display: block; }
.fbar-track i {
  display: block; height: 100%; width: var(--w); border-radius: 7px;
  background: linear-gradient(90deg, #0ea371, var(--emerald-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.funnel-viz.oynat .fbar-track i { transform: scaleX(1); }
.fbar-son .fbar-track i { box-shadow: 0 0 18px rgba(52,211,153,.5); }
.fbar-deger { width: 44px; flex-shrink: 0; text-align: right; font-size: 13.5px; font-weight: 800; color: var(--cream); }
.fbar-son .fbar-deger { color: var(--emerald-2); }
.kampanya { max-width: 1180px; margin: clamp(30px, 4vw, 48px) auto 0; }
.kampanya-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; color: var(--emerald-2); }
.kampanya-head .viz-not { margin: 0; }
.kampanya-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kampanya-kart {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border: 1px solid var(--line); border-radius: 14px;
  background: rgba(244,241,234,.03); padding: 16px 18px;
}
.kampanya-kart strong { display: block; font-size: 13.5px; color: var(--cream); }
.kampanya-durum { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--emerald-2); margin-top: 4px; }
.kampanya-durum i { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald-2); }
.roas { font-family: var(--display); font-size: 20px; color: var(--emerald); white-space: nowrap; }
@media (max-width: 900px) { .funnel-inner { grid-template-columns: 1fr; } .kampanya-grid { grid-template-columns: 1fr; } }

/* ---------- TESLİM LİSTESİ ---------- */
.teslim { padding: clamp(80px, 11vw, 150px) clamp(20px, 4vw, 56px); }
.teslim-inner { max-width: 1080px; margin: 0 auto; }
.teslim-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.teslim-item {
  position: relative; padding: 16px 18px 16px 48px;
  border: 1px solid var(--line); border-radius: 13px;
  background: rgba(244,241,234,.035);
  font-size: 14.5px; font-weight: 600; color: var(--cream);
}
.teslim-item::before {
  content: '✓'; position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), #0ea371);
  color: var(--ink); font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 760px) { .teslim-grid { grid-template-columns: 1fr; } }

/* ---------- CHECK-UP DEĞERİ ---------- */
.deger { padding: clamp(80px, 11vw, 150px) clamp(20px, 4vw, 56px); border-top: 1px solid var(--line); }
.deger-inner { max-width: 720px; margin: 0 auto; }
.deger-card {
  border: 1px solid var(--line); border-radius: 20px;
  background: rgba(13,21,32,.6); padding: clamp(26px, 3.5vw, 40px);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.deger-satir {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
  font-size: 14.5px; color: var(--cream);
}
.deger-fiyat { color: var(--cream-faint); font-weight: 700; white-space: nowrap; }
.deger-toplam { display: flex; justify-content: space-between; padding: 18px 0 6px; font-weight: 700; font-size: 15.5px; }
.deger-eski { color: var(--cream-faint); text-decoration: line-through; }
.deger-bugun { display: flex; justify-content: space-between; align-items: baseline; font-weight: 800; font-size: 17px; }
.deger-bedava { font-family: var(--display); font-size: 24px; color: var(--emerald); letter-spacing: .04em; }
.btn-block { width: 100%; justify-content: center; margin-top: 18px; }

/* ---------- GARANTİ ---------- */
.garanti {
  position: relative; overflow: hidden;
  padding: clamp(90px, 12vw, 160px) clamp(20px, 4vw, 56px);
  text-align: center;
}
.garanti-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 50% 45% at 50% 40%, rgba(16,185,129,.14), transparent 65%); }
.garanti-inner { position: relative; max-width: 820px; margin: 0 auto; }
.garanti-rozet {
  display: inline-block; padding: 9px 22px; border-radius: 999px;
  border: 1px solid var(--emerald); color: var(--emerald-2);
  font-size: 11.5px; font-weight: 800; letter-spacing: .24em;
  margin-bottom: 26px;
}
.garanti-title { font-size: clamp(38px, 6vw, 76px); }
.garanti-text { margin-top: clamp(22px, 3vw, 32px); font-size: clamp(15px, 1.7vw, 18px); line-height: 1.75; color: var(--cream-dim); }
.garanti-text strong { color: var(--emerald-2); }

/* ---------- MANİFESTO ---------- */
.manifesto { padding: clamp(80px, 11vw, 150px) clamp(20px, 4vw, 56px); border-top: 1px solid var(--line); }
.manifesto-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 340px 1fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.manifesto-foto img {
  width: 100%; height: auto;
  aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(16,185,129,.25);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 40px rgba(16,185,129,.12);
}
.manifesto-copy p { font-size: 15.5px; line-height: 1.75; color: var(--cream-dim); margin-top: 14px; }
.manifesto-copy p strong { color: var(--cream); }
.manifesto-copy .chip-row { justify-content: flex-start; margin-top: 22px; }
.manifesto-imza { font-family: var(--display); letter-spacing: .04em; color: var(--emerald-2) !important; margin-top: 22px !important; font-size: 16px !important; }
@media (max-width: 860px) { .manifesto-inner { grid-template-columns: 1fr; } .manifesto-foto { max-width: 320px; margin: 0 auto; } }

/* ---------- SSS ---------- */
.sss { padding: clamp(80px, 11vw, 150px) clamp(20px, 4vw, 56px); }
.sss-inner { max-width: 780px; margin: 0 auto; }
.sss-list { display: flex; flex-direction: column; gap: 12px; }
.sss-list details {
  border: 1px solid var(--line); border-radius: 15px;
  background: rgba(244,241,234,.03);
  overflow: hidden;
  transition: border-color .3s;
}
.sss-list details[open] { border-color: rgba(16,185,129,.35); }
.sss-list summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 19px 22px;
  font-size: 15.5px; font-weight: 700; color: var(--cream); line-height: 1.4;
}
.sss-list summary::-webkit-details-marker { display: none; }
.sss-ikon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(16,185,129,.14); position: relative;
}
.sss-ikon::before, .sss-ikon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 2px; background: var(--emerald-2);
  transform: translate(-50%,-50%);
  transition: transform .3s;
}
.sss-ikon::after { transform: translate(-50%,-50%) rotate(90deg); }
details[open] .sss-ikon::after { transform: translate(-50%,-50%) rotate(0deg); }
.sss-list details p { padding: 0 22px 20px; font-size: 14.5px; line-height: 1.7; color: var(--cream-dim); }

/* ---------- BAŞVURU FORMU ---------- */
.basvuru {
  padding: clamp(80px, 11vw, 150px) clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: radial-gradient(ellipse 60% 50% at 50% 20%, rgba(16,185,129,.07), transparent 60%), var(--ink);
}
.basvuru-inner { max-width: 1080px; margin: 0 auto; }
.form-wrap { position: relative; max-width: 560px; margin: 0 auto; }
.form-ribbon {
  position: absolute; top: -14px; right: 18px; z-index: 2;
  padding: 7px 16px; border-radius: 999px;
  background: var(--emerald); color: var(--ink);
  font-size: 11.5px; font-weight: 800; letter-spacing: .06em;
  box-shadow: 0 8px 24px rgba(16,185,129,.4);
}
.form-card {
  border: 1px solid var(--line); border-radius: 22px;
  background: rgba(13,21,32,.72); padding: clamp(26px, 3.5vw, 38px);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}
.form-title { font-family: var(--display); font-weight: 400; font-size: 24px; letter-spacing: .02em; margin-bottom: 6px; }
.form-sub { font-size: 13.5px; color: var(--cream-dim); margin-bottom: 16px; line-height: 1.55; }
.form-kontenjan { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: 12.5px; font-weight: 600; color: var(--cream-dim); }
.kota-bar { display: flex; gap: 5px; }
.kota-bar i { width: 30px; height: 8px; border-radius: 99px; background: rgba(244,241,234,.14); }
.kota-bar i.dolu { background: var(--emerald); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-step { display: flex; flex-direction: column; gap: 16px; }
.form-step[hidden], .form-hata[hidden] { display: none; }
.form-alan label { display: block; font-size: 13px; font-weight: 600; color: var(--cream-dim); margin-bottom: 8px; }
.form-alan label em { font-style: normal; color: var(--cream-faint); font-weight: 400; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 9px 15px; border-radius: 999px;
  font-family: var(--body); font-size: 13px; font-weight: 700; cursor: pointer;
  background: rgba(244,241,234,.06); border: 1px solid rgba(244,241,234,.16);
  color: var(--cream-dim);
  transition: all .25s;
}
.pill:hover { border-color: rgba(16,185,129,.5); color: var(--cream); }
.pill.secili {
  background: linear-gradient(120deg, var(--emerald), #0ea371);
  border-color: transparent; color: var(--ink);
  box-shadow: 0 6px 18px rgba(16,185,129,.35);
}
.form-hata { font-size: 12.5px; color: #ff9d9d; font-weight: 600; }
.form-mini { text-align: center; font-size: 12px; color: var(--cream-faint); }
.form-mini-sol { text-align: left; margin-top: -6px; }
.form-onay { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-onay input { margin-top: 3px; width: 17px; height: 17px; flex-shrink: 0; accent-color: var(--emerald); cursor: pointer; }
.form-onay span { font-size: 12.5px; color: var(--cream-dim); line-height: 1.55; }
.form-onay a { color: var(--emerald-2); text-decoration: underline; }
.form-geri { background: none; border: none; color: var(--cream-faint); font-size: 12px; font-family: var(--body); cursor: pointer; text-decoration: underline; align-self: center; }
.sonra { margin-top: clamp(48px, 6vw, 72px); }
.sonra-baslik { font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.6vw, 30px); text-align: center; letter-spacing: .02em; margin-bottom: 28px; }
.sonra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sonra-kart {
  text-align: center; padding: 26px 22px;
  border: 1px solid var(--line); border-radius: 16px;
  background: rgba(244,241,234,.03);
}
.sonra-no {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--emerald), #0ea371);
  color: var(--ink); font-family: var(--display); font-size: 19px;
  display: flex; align-items: center; justify-content: center;
}
.sonra-kart h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 8px; }
.sonra-kart p { font-size: 13.5px; color: var(--cream-dim); line-height: 1.55; }
@media (max-width: 760px) { .sonra-grid { grid-template-columns: 1fr; } }

/* ---------- REHBERLER ---------- */
.rehberler { padding: clamp(80px, 11vw, 150px) clamp(20px, 4vw, 56px); }
.rehberler-inner { max-width: 1080px; margin: 0 auto; }
.rehber-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rehber-kart {
  display: block; padding: 26px 22px; text-align: center;
  border: 1px solid var(--line); border-radius: 18px;
  background: rgba(244,241,234,.03);
  transition: border-color .35s, transform .35s;
}
.rehber-kart:hover { border-color: rgba(16,185,129,.45); transform: translateY(-5px); }
.rehber-no { display: block; font-size: 11px; font-weight: 800; letter-spacing: .18em; color: var(--emerald-2); margin-bottom: 12px; }
.rehber-kart h3 { font-size: 16px; font-weight: 800; line-height: 1.35; margin-bottom: 8px; color: var(--cream); }
.rehber-kart p { font-size: 13px; color: var(--cream-dim); line-height: 1.55; margin-bottom: 14px; }
.rehber-oku { font-size: 13px; font-weight: 700; color: var(--emerald); }
@media (max-width: 1024px) { .rehber-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rehber-grid { grid-template-columns: 1fr; } }

/* ---------- FİNALE ek ---------- */
.finale-guvence { margin-top: 20px; font-size: 13px; font-weight: 600; color: var(--cream-dim); }

/* ---------- FOOTER yasal ---------- */
.footer-yasal {
  max-width: 1280px; margin: 28px auto 0;
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
}
.footer-yasal a { font-size: 12.5px; color: var(--cream-faint); transition: color .3s; }
.footer-yasal a:hover { color: var(--emerald-2); }

/* ---------- WhatsApp balonu ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 22px; z-index: 850;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
  transition: transform .3s;
}
.wa-float:hover { transform: scale(1.08); }

/* ============================================================
   MOBİL İYİLEŞTİRMELERİ
   ============================================================ */

/* Mobil yapışkan CTA çubuğu (yalnızca mobil, scroll sonrası) */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 860;
  display: none;
  align-items: center; justify-content: space-between; gap: 14px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 16, 25, .94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(0,0,0,.45);
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.cta-bar.goster { transform: translateY(0); }
.cta-bar-metin { min-width: 0; }
.cta-bar-metin strong { display: block; font-size: 13.5px; color: var(--cream); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cta-bar-metin span { display: block; font-size: 11px; font-weight: 600; color: var(--emerald-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cta-bar-btn { flex-shrink: 0; padding: 12px 20px; font-size: 13.5px; }

@media (max-width: 820px) {

  /* Videolar: tam ekran arka plan yerine görünür, çerçeveli klip kartı.
     16:9 klip dikey ekranda cover ile kırpılınca kayboluyordu. */
  .pillars, .work { padding-top: clamp(56px, 9vw, 80px); }
  .media-bg {
    position: relative; inset: auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto clamp(26px, 5vw, 40px);
    max-width: 640px;
    border: 1px solid rgba(16,185,129,.25);
    box-shadow: 0 18px 50px rgba(0,0,0,.5), 0 0 30px rgba(16,185,129,.10);
  }
  .media-bg video { position: absolute; inset: 0; width: 100%; height: 100%; }
  .media-shade, .media-shade-strong {
    background: linear-gradient(180deg, transparent 55%, rgba(10,16,25,.55) 100%);
  }

  /* Mobil nav: CTA görünür kalsın (dönüşüm) */
  .nav-cta { display: inline-flex !important; padding: 8px 14px; font-size: 12px; }

  /* CTA çubuğu yalnızca mobilde */
  .cta-bar { display: flex; }

  /* WhatsApp balonu çubuğun üstüne */
  .wa-float { bottom: 88px; right: 14px; width: 50px; height: 50px; }

  /* iOS: input odaklanınca zoom yapmasın (16px altı tetikliyor) */
  .hesap-field input, .form-alan input { font-size: 16px; }

  /* Hero içeriği dar ekranda biraz nefes alsın */
  .hero-title { font-size: clamp(56px, 17vw, 96px); }
  .hero-sub { font-size: 14.5px; padding: 0 6px; }

  /* Bölüm içi yoğunluk */
  .sec-head { margin-bottom: clamp(28px, 6vw, 44px); }
  .akis-row { margin-top: 0; }
  .funnel-viz { overflow-x: hidden; }
  .fbar-ad { width: 96px; font-size: 11.5px; }
}

/* ============================================================
   MONTSERRAT TİPOGRAFİ + İKONLAR + MANİFESTO DÜZENİ
   (Anton -> Montserrat geçişi: ağırlık/aralık/boyut ayarları)
   ============================================================ */

/* Display başlıklar: Montserrat kalın, sıkı aralık */
.hero-title, .beat2-title, .finale-title, .stat-num, .loader-mark {
  font-weight: 900; letter-spacing: -0.03em;
}
.sec-title, .vaat-title, .garanti-title, .manifesto-title, .form-title,
.sonra-baslik, .footer-logo, .nav-logo, .roas, .deger-bedava,
.hesap-sonuc-deger, .sorun h3, .pillar h3, .card h3, .sonra-no {
  font-weight: 800; letter-spacing: -0.015em;
}
.manifesto-imza, .akis-chip, .pillar-no, .rehber-no { font-weight: 700; }

/* Montserrat Anton'dan geniş: boyutlar yeniden ölçeklendi */
.hero-title { font-size: clamp(38px, 8.6vw, 124px); line-height: 1.02; }
.sec-title { font-size: clamp(27px, 4.1vw, 54px); line-height: 1.14; }
.vaat-title { font-size: clamp(30px, 4.8vw, 68px); }
.beat2-title { font-size: clamp(28px, 4.6vw, 64px); line-height: 1.08; }
.garanti-title { font-size: clamp(28px, 4.2vw, 58px); }
.finale-title { font-size: clamp(32px, 5.4vw, 78px); line-height: 1.05; }
.stat-num { font-size: clamp(34px, 4.4vw, 60px); }
.pillar h3 { font-size: clamp(16px, 1.6vw, 20px); letter-spacing: 0; }
.card h3 { font-size: clamp(17px, 1.8vw, 22px); letter-spacing: 0; }
.sorun h3 { font-size: clamp(16px, 1.6vw, 18.5px); }
.form-title { font-size: 21px; }
.sonra-baslik { font-size: clamp(19px, 2.2vw, 26px); }
.deger-bedava { font-size: 21px; letter-spacing: .02em; }
.hesap-sonuc-deger { font-size: clamp(22px, 2.6vw, 30px); }
.roas { font-size: 18px; }
.loader-mark { font-size: 52px; }
.nav-logo { font-size: 17px; letter-spacing: -0.01em; }
.footer-logo { font-size: 22px; letter-spacing: -0.01em; }
.manifesto-imza { font-size: 14.5px !important; letter-spacing: 0; }
.sonra-no { font-size: 17px; }
.hero-label, .sec-eyebrow { letter-spacing: .26em; }

/* ---------- İkon çipleri ---------- */
.ikon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(16, 185, 129, .12);
  border: 1px solid rgba(16, 185, 129, .3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  flex-shrink: 0;
}
.ikon svg {
  width: 24px; height: 24px;
  fill: none; stroke: var(--emerald-2);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.ikon-mini { width: 38px; height: 38px; border-radius: 11px; margin-bottom: 12px; }
.ikon-mini svg { width: 19px; height: 19px; }

/* ---------- Kart içi ortalama ---------- */
.sorun, .pillar, .card, .altyapi-item { text-align: center; }
.altyapi-item strong { margin-bottom: 6px; }
.pillar-no { margin-bottom: 12px; }
.pillar .ikon { margin-bottom: 14px; }

/* ---------- MANİFESTO: foto + başlık üstte, açıklama altta ---------- */
.manifesto-inner { display: block; max-width: 1080px; margin: 0 auto; }
.manifesto-ust {
  display: grid;
  grid-template-columns: minmax(230px, 300px) 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
.manifesto-baslik {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 22px;
}
.manifesto-title {
  font-family: var(--display);
  font-size: clamp(26px, 3.6vw, 54px);
  line-height: 1.16;
  margin-top: 14px;
  color: var(--cream);
}
.manifesto-baslik .chip-row { justify-content: flex-start; margin-top: 0; }
.manifesto-baslik .manifesto-imza { margin-top: 14px !important; }
.manifesto-alt { margin-top: clamp(26px, 3.2vw, 40px); }
.manifesto-alt p { font-size: 15.5px; line-height: 1.75; color: var(--cream-dim); }
.manifesto-alt p + p { margin-top: 13px; }
.manifesto-alt p strong { color: var(--cream); }
@media (max-width: 820px) {
  .manifesto-ust { grid-template-columns: 1fr; }
  .manifesto-foto { max-width: 300px; margin: 0 auto; }
  .manifesto-baslik { text-align: center; gap: 16px; }
  .manifesto-baslik .chip-row { justify-content: center; }
}

/* ---------- Çerez onay bandı ---------- */
.cerez {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 990;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px;
  padding: 16px clamp(16px, 5vw, 40px) calc(16px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 16, 25, .97);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(16, 185, 129, .3);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, .5);
}
.cerez[hidden] { display: none; }
.cerez p { flex: 1 1 360px; min-width: 260px; font-size: 13.5px; color: var(--cream-dim); line-height: 1.55; margin: 0; }
.cerez a { color: var(--emerald-2); text-decoration: underline; }
.cerez-btnler { display: flex; gap: 10px; flex-shrink: 0; }
.cerez-btnler button {
  font-family: var(--body); font-weight: 700; font-size: 14px;
  padding: 11px 22px; border-radius: 999px; cursor: pointer;
}
#cerezRed {
  background: rgba(244, 241, 234, .06);
  border: 1px solid rgba(244, 241, 234, .18);
  color: var(--cream-dim);
}
#cerezKabul {
  background: linear-gradient(120deg, var(--emerald), #0ea371);
  border: none; color: var(--ink);
  box-shadow: 0 8px 22px rgba(16, 185, 129, .45);
}

/* ---------- Başlık ahenk düzeltmeleri ---------- */
/* Vaat lead: ilk satır meslekler, alt satır biraz daha büyük */
.vaat-lead { font-size: clamp(16px, 1.8vw, 20px); line-height: 1.5; }
.vaat-lead-alt { display: inline-block; font-size: 1.18em; margin-top: 6px; }

/* Tek satırda kalması istenen başlıklar: punto küçültülür, satır kırılmaz.
   JS (tekSatirSigdir) taşma olursa puntoyu kutuya sığana dek düşürür. */
.tek-satir { font-size: clamp(20px, 2.8vw, 34px); }
@media (min-width: 821px) {
  .tek-satir { white-space: nowrap; }
}

/* ---------- Takvim Ritmi Skoru özeti (form 2. adım) ---------- */
.skor-ozet {
  padding: 14px 18px; border-radius: 13px;
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .35);
  font-size: 14px; line-height: 1.6; color: var(--cream);
}
.skor-ozet strong { color: var(--emerald-2); }
.skor-ozet[hidden] { display: none; }

/* ---------- Çıkış anı teklifi ---------- */
.cikis {
  position: fixed; inset: 0; z-index: 995;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(4, 8, 13, .7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.cikis[hidden] { display: none; }
.cikis-kart {
  position: relative; max-width: 460px; width: 100%;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 20px;
  background: var(--ink-2);
  border: 1px solid rgba(16, 185, 129, .35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 0 40px rgba(16, 185, 129, .12);
  text-align: center;
}
.cikis-kart h3 {
  font-family: var(--display); font-weight: 800; letter-spacing: -0.015em;
  font-size: clamp(20px, 2.4vw, 26px); line-height: 1.25;
  margin-bottom: 10px;
}
.cikis-metin { font-size: 14px; color: var(--cream-dim); margin-bottom: 18px; }
.cikis-kart form { display: flex; gap: 10px; }
.cikis-kart input {
  flex: 1; min-width: 0;
  padding: 13px 15px; border-radius: 12px;
  border: 1px solid rgba(244, 241, 234, .16);
  background: rgba(244, 241, 234, .06); color: var(--cream);
  font-size: 16px; font-family: var(--body); outline: none;
}
.cikis-kart input:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(16,185,129,.18); }
.cikis-kart .btn { padding: 13px 22px; font-size: 14px; }
.cikis-kapat {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; cursor: pointer;
  color: var(--cream-faint); font-size: 16px; padding: 6px;
}
.cikis-kapat:hover { color: var(--cream); }

/* ============================================================
   MOBİL KAYDIRMA PERFORMANSI
   Titremenin kaynakları: dev grain katmanının sürekli animasyonu
   ve iOS'ta her karede yeniden hesaplanan backdrop-filter blur'ları.
   Mobilde ikisi de kapatılır — görsel fark minimal, akıcılık ciddi artar.
   ============================================================ */
@media (max-width: 820px) {
  .grain {
    animation: none;
    inset: 0;            /* 3x ekran yerine tek ekran boyutu */
    opacity: .04;
  }
  .nav, .hero-assure, .pillar, .card, .form-card, .cta-bar, .cerez,
  .funnel-viz, .altyapi-item, .deger-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  /* Blur kalkınca zeminler hafif koyulaştırılır ki okunurluk düşmesin */
  .nav { background: rgba(10, 16, 25, .97); }
  .cta-bar, .cerez { background: rgba(10, 16, 25, .98); }
  .form-card { background: rgba(13, 21, 32, .95); }
}
