/* ============================================================
   SwitchPower — style.css
   Tasarım sistemi + ana sayfa bölüm stilleri
   ============================================================ */

/* ---------- 1. Tasarım tokenları (:root) ---------- */
:root {
  --bg-darkest: #0a0f1a;
  --bg-dark: #0d1524;
  --bg-section: #0f1a2e;
  --card-bg: rgba(28, 44, 74, 0.35);
  --card-bg-hover: rgba(40, 60, 96, 0.5);
  --card-border: rgba(120, 165, 225, 0.15);
  --card-border-hover: rgba(120, 165, 225, 0.35);
  --accent-blue: #5b91d6;
  --accent-blue-bright: #7fb2f0;
  --accent-blue-deep: #2f5a96;
  --text-light: #e7eef7;
  --text-muted: #a2b3cc;
  --text-dim: #7585a0;
  --accent-gold: #d4c896;
  --serif-blue: #a9cdf2;
  --white: #ffffff;

  --font-display: 'Archivo', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --maxw: 1240px;
  --radius: 20px;
  --radius-lg: 28px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--bg-darkest);
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: clip;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--accent-blue-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- İkonlar (SVG sprite, emoji yerine) ---------- */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--fill { fill: currentColor; stroke: none; }

/* ---------- Layout yardımcıları ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 110px 0; position: relative; }
.section--tight { padding: 70px 0; }

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-blue);
  font-family: var(--font-display);
}
.eyebrow.center { display: block; }

.section-head { max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { color: var(--text-muted); margin-top: 18px; font-size: 1.05rem; }

/* ---------- Scroll reveal (tekrar kullanılabilir) ----------
   .reveal              → tek eleman, görününce aşağıdan yukarı + fade
   .reveal-stagger      → çocukları sırayla (stagger) gelir
   JS, eleman görünür olunca .is-visible ekler. */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1),
              transform .8s cubic-bezier(.22, 1, .36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1),
              transform .8s cubic-bezier(.22, 1, .36, 1);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .55s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .65s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .75s; }

/* ---------- Tipografi ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--text-light);
}

h1 { font-size: clamp(3rem, 9vw, 7rem); font-weight: 900; line-height: 1.0; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: 1.35rem; }

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--serif-blue);
}
.accent { color: var(--accent-blue-bright); }
.text-white { color: var(--white); }
.muted { color: var(--text-muted); }
.dim { color: var(--text-dim); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, #5b91d6, #3a6bb0);
  color: #0a0f1a;
  box-shadow: 0 8px 30px rgba(120, 165, 225, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(120, 165, 225, 0.45);
  filter: brightness(1.06);
}

.btn-outline {
  background: rgba(120, 165, 225, 0.06);
  border: 1px solid var(--card-border-hover);
  color: var(--text-light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(120, 165, 225, 0.14);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-xl { padding: 20px 44px; font-size: 1.15rem; }

.text-link {
  color: var(--accent-blue-bright);
  font-family: var(--font-display);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.text-link .arrow { transition: transform .25s ease; }
.text-link:hover .arrow { transform: translateX(4px); }

/* ---------- Glassmorphism kart ---------- */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.glass-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--accent-blue-bright);
  background: rgba(120, 165, 225, 0.12);
  border: 1px solid var(--card-border);
  margin-bottom: 22px;
}
.icon-box .icon { width: 30px; height: 30px; }

/* Bileşene özel ikon boyut/renkleri */
.nav-home { display: inline-flex; align-items: center; gap: 7px; }
.nav-home .icon { width: 1.05em; height: 1.05em; }
.check-list .tick .icon { width: 14px; height: 14px; stroke-width: 3; }
.eyebrow .icon { width: .85em; height: .85em; vertical-align: -0.02em; }
.podium-bar .flag .icon { width: 26px; height: 26px; color: var(--accent-gold); }
.review-card .stars { display: inline-flex; gap: 4px; }
.review-card .stars .icon { width: 1.05rem; height: 1.05rem; }
.dyn-now .bolt .icon { width: 26px; height: 26px; color: var(--accent-blue-bright); }
.topic-pill .ic { display: inline-flex; color: var(--accent-blue-bright); }
.topic-pill .ic .icon { width: 22px; height: 22px; }
.voordeel-card .ic { display: inline-flex; justify-content: center; color: var(--accent-blue-bright); }
.voordeel-card .ic .icon { width: 30px; height: 30px; }
.form-success .check-circle .icon { width: 30px; height: 30px; stroke-width: 2.5; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo .mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--text-light);
  line-height: 1;
}
.logo .mark .slash { color: var(--accent-blue-bright); }
.logo .lockup { display: flex; flex-direction: column; line-height: 1.05; }
.logo .lockup .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text-light);
}
.logo .lockup .tag {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   §2.1 NAVBAR — fixed pill
   ============================================================ */
.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 36px);
  max-width: 1300px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(15, 24, 42, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 12px 14px 12px 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a { color: var(--text-light); transition: color .2s ease; }
.nav-links a:hover { color: var(--accent-blue-bright); }
.nav-links .has-caret::after { content: ' ▾'; color: var(--text-dim); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-menu { display: flex; align-items: center; gap: 26px; }

/* Animasyonlu hamburger (3 çizgi → X) */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(120, 165, 225, 0.08);
  border: 1px solid var(--card-border);
  transition: background .2s ease, border-color .2s ease;
}
.hamburger:hover { background: rgba(120, 165, 225, 0.16); border-color: var(--card-border-hover); }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-light);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), opacity .2s ease;
}
.navbar.open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.open .hamburger span:nth-child(2) { opacity: 0; }
.navbar.open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   §2.2 HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 160px 24px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: var(--bg-darkest);
  /* fallback gradient (image yoksa görünür) */
  background-image:
    radial-gradient(circle at 30% 20%, rgba(47, 90, 150, 0.35), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(120, 165, 225, 0.18), transparent 50%),
    linear-gradient(160deg, #0d1524, #0a0f1a);
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  /* ince grid doku */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 165, 225, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 165, 225, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.55) 0%, rgba(10, 15, 26, 0.7) 55%, var(--bg-darkest) 100%);
}
.hero-content { max-width: 920px; }
.hero h1 { margin-bottom: 28px; }

/* Hero açılış animasyonu — yazılar aşağıdan yukarı + fade (stagger) */
@keyframes heroRiseUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content h1,
.hero-content .hero-sub,
.hero-content .hero-actions,
.hero-stats .stat {
  opacity: 0;
  animation: heroRiseUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-content h1            { animation-delay: 0.10s; }
.hero-content .hero-sub     { animation-delay: 0.28s; }
.hero-content .hero-actions { animation-delay: 0.46s; }
.hero-stats .stat:nth-child(1) { animation-delay: 0.62s; }
.hero-stats .stat:nth-child(2) { animation-delay: 0.72s; }
.hero-stats .stat:nth-child(3) { animation-delay: 0.82s; }
.hero-stats .stat:nth-child(4) { animation-delay: 0.92s; }
.hero h1 .serif .dot { color: var(--white); font-style: normal; }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero istatistik şeridi */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 980px;
  margin: 80px auto 0;
  width: 100%;
}
.hero-stats .stat { text-align: center; }
.hero-stats .stat .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--serif-blue);
  line-height: 1;
}
.hero-stats .stat .label {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   §2.3 LEVERANCIERS — kayan logo şeridi
   ============================================================ */
.leveranciers { padding: 60px 0; }
.leveranciers .lead {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 34px;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-card {
  flex: 0 0 auto;
  width: 200px;
  height: 90px;
  background: #f4f4f0;
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 16px;
}
.logo-card span {
  font-family: var(--font-display);
  font-weight: 800;
  color: #14202f;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-align: center;
}
.logo-card img { max-height: 46px; width: auto; object-fit: contain; }

/* ============================================================
   §2.4 WAAROM SWITCHPOWER
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); }

/* ============================================================
   §2.5 PERSOONLIJK ENERGIEADVIES (2 sütun)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.map-card {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  padding: 40px;
}
.map-card .nl-map { width: 78%; filter: drop-shadow(0 0 30px rgba(120, 165, 225, 0.15)); }
.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(212, 200, 150, 0.18), 0 0 16px rgba(212, 200, 150, 0.9);
}
.float-card {
  position: absolute;
  background: rgba(15, 24, 42, 0.85);
  border: 1px solid var(--card-border-hover);
  border-radius: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.float-card .fc-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 2rem;
  color: var(--serif-blue);
  line-height: 1;
}
.float-card .fc-label {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
}
.float-card.tl { top: 28px; left: 28px; }
.float-card.br { bottom: 28px; right: 28px; }

.advies-text h2 { margin: 16px 0 22px; }
.advies-text > p { color: var(--text-muted); margin-bottom: 28px; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-light); }
.check-list .tick {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(120, 165, 225, 0.16);
  color: var(--accent-blue-bright);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ============================================================
   §2.6 IMPACT — dev pixel sayı
   ============================================================ */
.impact-card { text-align: center; padding: 70px 34px; }
.impact-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 15vw, 13rem);
  max-width: 100%;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: repeating-conic-gradient(
    from 0deg,
    #5b91d6 0deg 6deg,
    #2f5a96 6deg 12deg,
    #d4c896 12deg 18deg,
    #7fb2f0 18deg 24deg
  );
  background-size: 14px 14px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.impact-num .plus { -webkit-text-fill-color: var(--accent-blue-bright); color: var(--accent-blue-bright); }
.impact-card .impact-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 3vw, 2.2rem); margin-top: 18px; }
.impact-card .impact-note { color: var(--text-dim); margin-top: 12px; }

/* ============================================================
   §2.7 VOOR WIE
   ============================================================ */
.who-card { display: flex; flex-direction: column; }
.who-card h3 { margin-bottom: 12px; }
.who-card p { color: var(--text-muted); flex: 1; margin-bottom: 22px; }

/* ============================================================
   §2.8 ZO WERKT HET (podyum + adımlar)
   ============================================================ */
.podium-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  min-height: 420px;
  padding: 20px;
}
.podium-bar {
  position: relative;
  width: 78px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(180deg, rgba(120, 165, 225, 0.28), rgba(120, 165, 225, 0.08));
  border: 1px solid var(--card-border-hover);
  border-bottom: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 14px;
}
.podium-bar .pnum {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--serif-blue);
}
.podium-bar .flag { position: absolute; top: -34px; font-size: 1.6rem; }

/* Basamakları tırmanan kişi — JS ile konumlanır, yumuşak geçişle taşınır */
.climber {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  pointer-events: none;
  transition: left .55s cubic-bezier(.34, 1.3, .5, 1),
              top .55s cubic-bezier(.34, 1.3, .5, 1);
}
.climber .head { width: 18px; height: 18px; border-radius: 50%; background: var(--accent-blue); }
.climber .body { width: 30px; height: 22px; border-radius: 16px 16px 8px 8px; background: var(--accent-blue-deep); margin-top: 3px; }
.podium-bar.h1b { height: 130px; }
.podium-bar.h2b { height: 200px; }
.podium-bar.h3b { height: 280px; }
.podium-bar.h4b { height: 350px; }

.steps { display: flex; flex-direction: column; gap: 16px; }
.step-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: background .3s ease, border-color .3s ease;
}
.step-card { cursor: pointer; }
.step-card:hover { border-color: var(--card-border-hover); }
.step-card.active { background: var(--card-bg-hover); border-color: var(--card-border-hover); }
.step-card .snum {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--serif-blue);
  line-height: 1;
  flex: 0 0 auto;
}
.step-card .stitle { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.step-card h3 { font-size: 1.2rem; }
.step-card p { color: var(--text-muted); font-size: 0.96rem; }
.finish-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  background: var(--accent-gold);
  color: #14202f;
  padding: 3px 9px;
  border-radius: 999px;
}

/* ============================================================
   §2.9 BEYAZ kontrat kartı
   ============================================================ */
.contract-card {
  background: var(--white);
  color: #14202f;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.contract-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e3e3dc;
}
.contract-top .logo .mark,
.contract-top .logo .lockup .name { color: #14202f; }
.contract-top .logo .lockup .tag { color: #8a948b; }
.contract-top .logo .mark .slash { color: var(--accent-blue-deep); }
.contract-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: #8a948b;
  text-align: right;
}
.contract-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #ededea;
}
.contract-row:last-child { border-bottom: none; }
.contract-row .key {
  flex: 0 0 auto;
  min-width: clamp(110px, 32%, 160px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 600;
  color: #8a948b;
}
.contract-row .key::after { content: ':'; margin-left: 2px; }
.contract-row .val {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: #14202f;
  text-align: left;
}
.contract-row .val.sign { font-family: var(--font-serif); font-style: italic; font-weight: 600; color: var(--accent-blue-deep); font-size: 1.4rem; }

/* Typewriter caret — sadece o an yazılan değerde görünür */
.contract-row .val.typing::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  vertical-align: -2px;
  background: var(--accent-blue-deep);
  animation: caretBlink .7s steps(1) infinite;
}
@keyframes caretBlink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

/* ============================================================
   §2.10 VOOR VERENIGINGEN — gradient CTA
   ============================================================ */
.vereniging-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(47, 90, 150, 0.4), rgba(120, 165, 225, 0.14));
  border: 1px solid var(--card-border-hover);
  border-radius: var(--radius-lg);
  padding: 56px 50px;
}
.vereniging-cta .eyebrow { margin-bottom: 16px; }
.vereniging-cta h2 { margin-bottom: 18px; }
.vereniging-cta p { color: var(--text-light); opacity: 0.9; }
.vereniging-cta .cta-side { display: flex; justify-content: flex-end; }

/* ============================================================
   §2.11 KLANTBEOORDELINGEN
   ============================================================ */
.review-card .stars { color: var(--accent-gold); letter-spacing: 3px; margin-bottom: 18px; font-size: 1.1rem; }
.review-card .quote { color: var(--text-light); font-size: 1.05rem; margin-bottom: 20px; }
.review-card .name { color: var(--accent-blue-bright); font-family: var(--font-display); font-weight: 700; }

/* ============================================================
   §2.12 FINAL CTA
   ============================================================ */
.final-cta { text-align: center; padding: 130px 0; }
.final-cta h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--serif-blue);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  margin-bottom: 24px;
}
.final-cta p { color: var(--text-muted); max-width: 620px; margin: 0 auto 38px; font-size: 1.1rem; }

/* ============================================================
   §2.13 DYNAMISCHE STROOMPRIJS şeridi
   ============================================================ */
.dynamic-strip {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.dyn-now { display: flex; align-items: center; gap: 18px; }
.dyn-now .bolt {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.6rem;
  background: rgba(120, 165, 225, 0.12); border: 1px solid var(--card-border);
}
.dyn-now .dyn-label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); }
.dyn-now .dyn-price { font-family: var(--font-display); font-weight: 900; font-size: 2rem; color: var(--accent-blue-bright); }
.dyn-now .dyn-price small { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

.dyn-chart { text-align: center; }
.dyn-bars { display: flex; align-items: flex-end; justify-content: center; gap: 4px; height: 70px; }
.dyn-bars .bar { width: 8px; border-radius: 3px 3px 0 0; background: rgba(120, 165, 225, 0.4); }
.dyn-bars .bar.low { background: var(--accent-blue-bright); }
.dyn-bars .bar.high { background: var(--accent-gold); }
.dyn-chart .dyn-caption { font-size: 0.66rem; letter-spacing: 0.08em; color: var(--text-dim); margin-top: 12px; }

.dyn-info { text-align: right; }
.dyn-info .fine { font-size: 0.72rem; color: var(--text-dim); margin-top: 10px; }

/* ============================================================
   §2.14 FOOTER
   ============================================================ */
.footer { padding: 90px 0 40px; border-top: 1px solid var(--card-border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  text-align: center;
}
.footer-about { display: flex; flex-direction: column; align-items: center; }
.footer-about p { color: var(--text-muted); margin: 20px auto 0; font-size: 0.95rem; max-width: 360px; }
.footer-col ul { align-items: center; }
.footer-col h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent-blue);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-muted); font-size: 0.95rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--accent-blue-bright); }
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--card-border);
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ============================================================
   Sol-alt kWh batarya göstergesi
   ============================================================ */
.kwh-meter {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 24, 42, 0.82);
  border: 1px solid var(--card-border-hover);
  border-radius: 999px;
  padding: 10px 18px 10px 12px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  font-size: 0.85rem;
}
.battery {
  position: relative;
  width: 38px;
  height: 20px;
  border: 2px solid var(--accent-blue);
  border-radius: 5px;
}
.battery::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 5px;
  width: 3px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 0 2px 2px 0;
}
.battery .fill {
  position: absolute;
  inset: 2px;
  width: 5%;
  background: linear-gradient(90deg, var(--accent-blue-deep), var(--accent-blue-bright));
  border-radius: 2px;
  transition: width .15s linear;
}
.kwh-meter .kwh-text b { color: var(--accent-blue-bright); }

/* ============================================================
   Cookie bar (AVG)
   ============================================================ */
.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 200;
  width: calc(100% - 36px);
  max-width: 940px;
  padding: 18px 22px;
  background: rgba(13, 21, 36, 0.94);
  border: 1px solid var(--card-border-hover);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(20px);
  transition: opacity .35s ease,
              transform .4s cubic-bezier(.22, 1, .36, 1),
              visibility .4s;
}
.cookie-bar.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.cookie-text { display: flex; align-items: flex-start; gap: 14px; }
.cookie-text .icon { width: 26px; height: 26px; color: var(--accent-blue-bright); flex: none; margin-top: 1px; }
.cookie-text p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }
.cookie-text a { color: var(--accent-blue-bright); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex: none; }
.cookie-actions .btn { padding: 11px 22px; font-size: 0.95rem; }

/* Cookie bar açıkken kWh göstergesi gizlensin (çakışmasın) */
.kwh-meter { transition: opacity .3s ease, transform .3s ease; }
body.cookie-active .kwh-meter { opacity: 0; visibility: hidden; pointer-events: none; }

@media (max-width: 700px) {
  .cookie-bar { bottom: 12px; width: calc(100% - 24px); padding: 16px; }
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hamburger { display: flex; }

  /* Kayarak açılan cam panel */
  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(13, 21, 36, 0.92);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(.98);
    transform-origin: top center;
    transition: opacity .28s ease,
                transform .3s cubic-bezier(.22, 1, .36, 1),
                visibility .3s;
  }
  .navbar.open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav-menu .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
  }
  .nav-menu .nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 1.02rem;
    transition: background .2s ease, color .2s ease, padding-left .25s ease;
  }
  .nav-menu .nav-links a:hover,
  .nav-menu .nav-links a:focus-visible {
    background: rgba(120, 165, 225, 0.1);
    color: var(--accent-blue-bright);
    padding-left: 22px;
  }
  .nav-menu .nav-links .has-caret::after { color: var(--accent-blue); }

  .nav-menu .nav-cta {
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--card-border);
  }
  .nav-menu .nav-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .vereniging-cta { grid-template-columns: 1fr; }
  .vereniging-cta .cta-side { justify-content: flex-start; }
  .dynamic-strip { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .dyn-now, .dyn-info { justify-content: center; text-align: center; }
  .dyn-info { text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

/* Podyum: tablet/telefonda sığacak şekilde küçült (climber JS ile yeniden hizalanır) */
@media (max-width: 600px) {
  .podium-wrap { gap: 10px; min-height: 320px; padding: 12px; }
  .podium-bar { width: 46px; }
  .podium-bar.h1b { height: 100px; }
  .podium-bar.h2b { height: 150px; }
  .podium-bar.h3b { height: 210px; }
  .podium-bar.h4b { height: 268px; }
  .podium-bar .pnum { font-size: 1.2rem; }
  .step-card { padding: 18px 18px; gap: 16px; }
  .step-card .snum { font-size: 2.1rem; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }

  /* Uzun butonlar tek satıra sığmayıp taşmasın → sarmalarına izin ver */
  .btn { white-space: normal; text-align: center; }
  .btn-lg { padding: 15px 24px; font-size: 1rem; }
  .btn-xl { padding: 17px 28px; font-size: 1.05rem; }

  .hero { padding: 130px 18px 50px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn,
  .final-cta .btn { width: 100%; justify-content: center; }

  .glass-card { padding: 26px 20px; }
  .vereniging-cta { padding: 32px 22px; }
  .contract-card { padding: 26px 18px; }
  .contract-row { gap: 8px; }
  .contract-row .val { font-size: 0.92rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .kwh-meter { font-size: 0.74rem; padding: 7px 12px 7px 9px; }
  .kwh-meter .battery { width: 32px; }
}

/* ---------- Erişilebilirlik: reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
  /* Animasyonla görünür hale gelen elemanlar gizli kalmasın */
  .hero-content h1,
  .hero-content .hero-sub,
  .hero-content .hero-actions,
  .hero-stats .stat,
  .reveal,
  .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}
