/* =========================================================
   ENERGIEBERATUNG DANNAPFEL — v2 (clean / personal)
   „Wenn Energie, dann Apfel."
   ========================================================= */

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

:root {
  /* Grün (Marke) */
  --green-900: #0b3d22;
  --green-800: #0f5c30;
  --green-700: #157040;
  --green-600: #1a8047;
  --green-500: #2fa45f;
  --green-100: #e6f4ea;
  --green-50:  #f3faf5;
  /* Neutral, leicht warm */
  --ink:       #16211b;
  --gray-700:  #3c4a42;
  --gray-600:  #5d6b62;
  --gray-400:  #94a39a;
  --line:      #e7ece8;
  --cream:     #f9f8f4;
  --white:     #ffffff;
  /* Akzent (Apfel-warm, sehr sparsam) */
  --amber:     #e0a23a;
  /* System */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(16,40,28,.05), 0 4px 14px rgba(16,40,28,.05);
  --shadow-md: 0 8px 30px rgba(16,40,28,.09);
  --shadow-lg: 0 24px 60px rgba(16,40,28,.14);
  --ease:      .3s cubic-bezier(.4,0,.2,1);
  --maxw:      1120px;
}

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ── Typo-Bausteine ───────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 18px;
}
.eyebrow--dark  { color: var(--green-700); }
.eyebrow--light { color: #8fe0ac; }

h1, h2, h3 { letter-spacing: -.02em; line-height: 1.12; }

h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.75rem);
  font-weight: 800;
  color: var(--ink);
}

.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub {
  font-size: 1.12rem;
  color: var(--gray-600);
  margin-top: 18px;
}
.section-sub--center { margin-left: auto; margin-right: auto; max-width: 600px; }

/* Grüner Akzent im Fließtext */
.leaf-accent { color: var(--green-500); white-space: nowrap; }

/* Apfel-Marke (Original-Logo, ohne Slogan) */
.apple-mark { display: inline-flex; vertical-align: middle; }
.apple-mark img { height: 46px; width: auto; display: block; }
.apple-mark--lg img { height: 68px; }
.apple-mark--inline { margin-left: .18em; vertical-align: -.16em; }
.apple-mark--inline img { height: 1.05em; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-size: .98rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(26,128,71,.28);
}
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,128,71,.34); }
.btn-quiet {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-quiet:hover { border-color: var(--green-500); color: var(--green-700); }
.btn-full { width: 100%; }

/* ── Aufbau-Hinweis ───────────────────────────────── */
.build-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-900);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 500;
  padding: 8px 16px;
  position: relative;
  z-index: 200;
}
.build-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(224,162,58,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(224,162,58,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(224,162,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,162,58,0); }
}
.build-banner button {
  position: absolute; right: 14px;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.5); font-size: .95rem; line-height: 1;
}
.build-banner button:hover { color: #fff; }

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  max-width: none;
  padding: 0 clamp(20px, 4vw, 40px) 0 clamp(14px, 2vw, 24px);
}
.nav-logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; display: block; }
.nav-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: .92rem; font-weight: 600; color: var(--ink);
  line-height: 1.1; white-space: nowrap; letter-spacing: -.01em;
}
.nav-logo-text .red { color: #d62828; }
.nav-logo-text .arrow { color: var(--gray-400); margin: 0 5px; }
@media (max-width: 520px) { .nav-logo-text { display: none; } }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: .94rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 999px;
  transition: var(--ease);
}
.nav-links a:hover { color: var(--green-700); background: var(--green-50); }
.nav-cta {
  background: var(--green-600); color: #fff !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--green-700) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--ease); }

/* ════════ 1 · HERO ════════ */
.hero {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, var(--green-50) 0%, transparent 60%),
    var(--cream);
  padding: clamp(64px, 9vw, 110px) 0 clamp(72px, 9vw, 120px);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -.025em;
  margin-bottom: 26px;
}
.hero-lead {
  font-size: 1.18rem;
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px;
}
.hero-trust li {
  position: relative;
  font-size: .88rem; font-weight: 600; color: var(--gray-700);
  padding-left: 22px;
}
.hero-trust li::before {
  content: '✓';
  position: absolute; left: 0; top: -1px;
  color: var(--green-500); font-weight: 800;
}

.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 0; }
.hero-portrait {
  width: 100%; max-width: 340px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--green-100);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-signature {
  margin-top: -28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 26px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative; z-index: 2;
}
.hero-signature strong { display: block; font-size: .98rem; color: var(--ink); }
.hero-signature span { font-size: .8rem; color: var(--gray-400); }

/* ════════ 2 · ÜBER MICH ════════ */
.about { background: var(--white); padding: clamp(80px, 11vw, 140px) 0; }
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
}
.apple-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.about-claim { font-size: 1.15rem; color: var(--gray-600); }
.about-lead { position: sticky; top: 110px; align-self: start; }

.about-body p { color: var(--gray-700); margin-bottom: 20px; font-size: 1.06rem; }
.about-body strong { color: var(--ink); font-weight: 600; }
.pull-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 600;
  font-style: italic;
  color: var(--green-700);
  line-height: 1.4;
  padding: 8px 0 8px 26px;
  border-left: 3px solid var(--green-500);
  margin: 34px 0;
}
.value-row {
  display: grid; gap: 18px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.value { display: flex; gap: 16px; align-items: flex-start; }
.value-ico {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
}
.value-ico svg { width: 23px; height: 23px; fill: none; stroke: var(--green-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value strong { display: block; font-size: 1.02rem; color: var(--ink); }
.value span { font-size: .94rem; color: var(--gray-600); }

/* ════════ 2 · CO₂-KOSTEN ════════ */
.co2 { background: var(--white); padding: clamp(80px, 11vw, 140px) 0; }
.co2 h2 { white-space: nowrap; }
@media (max-width: 700px) { .co2 h2 { white-space: normal; } }
.co2-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.co2-stat {
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green-500);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.co2-stat--warn { border-top-color: var(--amber); }
.co2-stat--good { border-top-color: var(--green-600); }
.co2-stat-val {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 12px;
}
.co2-stat--warn .co2-stat-val { color: #c2761b; }
.co2-stat--good .co2-stat-val { color: var(--green-700); }
.co2-stat-lbl { font-size: .94rem; color: var(--gray-600); }
.co2-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 760px) { .co2-stats { grid-template-columns: 1fr; } }

/* ════════ 3 · LEISTUNGEN ════════ */
.services { background: var(--cream); padding: clamp(80px, 11vw, 140px) 0; }
.services h2 { line-height: 1.15; }

.combo {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 20px;
}
.combo-card, .combo-result {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.combo-result {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}
.combo-num {
  position: absolute; top: 22px; right: 24px;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem; color: var(--gray-400); font-weight: 600;
}
.combo-ico {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.combo-ico svg { width: 26px; height: 26px; fill: none; stroke: var(--green-600); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.combo-ico--light { background: rgba(255,255,255,.14); }
.combo-ico--light svg { stroke: #fff; }
.combo-card h3, .combo-result h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.combo-card p { color: var(--gray-600); font-size: .98rem; }
.combo-result p { color: rgba(255,255,255,.85); font-size: .98rem; }
.combo-plus, .combo-equals {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 300; color: var(--green-500);
}

.services-note {
  display: flex; gap: 20px; align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-top: 28px;
  box-shadow: var(--shadow-sm);
}
.services-note-ico { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--green-50); display: flex; align-items: center; justify-content: center; }
.services-note-ico svg { width: 24px; height: 24px; fill: none; stroke: var(--green-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.services-note p { font-size: .98rem; color: var(--gray-600); }
.services-note strong { color: var(--ink); font-weight: 600; }

.services-soon {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 26px;
  font-style: italic;
  font-size: .98rem;
  color: var(--gray-400);
}
.services-soon span { color: var(--green-600); font-weight: 600; font-style: italic; }
.services-soon-ico { display: inline-flex; }
.services-soon-ico svg { width: 19px; height: 19px; fill: none; stroke: var(--gray-400); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ════════ 4 · DIRECTPOOL ════════ */
.directpool {
  background: linear-gradient(150deg, #0a2417 0%, #0f5c30 100%);
  color: #fff;
  padding: clamp(80px, 11vw, 130px) 0;
}
.dp-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 64px; align-items: center; }
.directpool h2 { color: #fff; margin-bottom: 20px; }
.dp-text > p { color: rgba(255,255,255,.8); font-size: 1.08rem; max-width: 560px; }
.dp-text strong { color: #fff; }
.dp-points { list-style: none; margin: 28px 0 32px; display: grid; gap: 12px; }
.dp-points li { position: relative; padding-left: 30px; color: rgba(255,255,255,.85); font-size: 1rem; }
.dp-points li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-500); color: #0a2417;
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.dp-badges { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.dp-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 10px 20px;
  text-decoration: none;
  transition: var(--ease);
}
.dp-badge:hover { background: rgba(255,255,255,.15); }
.dp-badge img { height: 26px; width: auto; filter: brightness(0) invert(1); }
.dp-badge--bwp span { font-size: .85rem; color: rgba(255,255,255,.85); }
.dp-badge--bwp strong { color: #fff; }

.dp-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.dp-trusted {
  width: 190px; height: 190px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
  border: 4px solid rgba(255,255,255,.12);
}
.dp-trusted-cap { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.7); text-align: center; letter-spacing: .03em; }

/* ════════ 5 · LEAD-FUNNEL ════════ */
.analyse { background: var(--white); padding: clamp(80px, 11vw, 140px) 0; }
.funnel {
  max-width: 640px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 44px);
}
.funnel-progress { height: 6px; border-radius: 999px; background: var(--green-50); overflow: hidden; }
.funnel-progress-bar { height: 100%; width: 25%; border-radius: 999px; background: linear-gradient(90deg, var(--green-500), var(--green-700)); transition: width .4s var(--ease); }
.funnel-step-label { font-size: .8rem; font-weight: 600; color: var(--gray-400); margin: 14px 0 26px; letter-spacing: .04em; }

.funnel-step { display: none; animation: stepIn .35s var(--ease); }
.funnel-step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }

.funnel-q { font-size: 1.4rem; font-weight: 700; color: var(--ink); margin-bottom: 24px; letter-spacing: -.01em; }
.funnel-lead { font-size: .92rem; color: var(--gray-600); margin: -14px 0 22px; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--gray-700);
  cursor: pointer; text-align: left;
  transition: var(--ease);
}
.choice--wide { grid-column: 1 / -1; }
.choice:hover { border-color: var(--green-500); background: var(--green-50); }
.choice.is-selected { border-color: var(--green-600); background: var(--green-50); color: var(--green-800); box-shadow: 0 0 0 3px rgba(47,164,95,.16); }
.choice-ico { width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px; background: var(--green-50); display: flex; align-items: center; justify-content: center; }
.choice-ico svg { width: 19px; height: 19px; fill: none; stroke: var(--green-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.choice.is-selected .choice-ico { background: rgba(255,255,255,.7); }
.choice-emoji { font-size: 1.25rem; flex-shrink: 0; }

.funnel-input-wrap {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 6px 18px; transition: var(--ease);
}
.funnel-input-wrap:focus-within { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(47,164,95,.16); }
.funnel-input-wrap input {
  flex: 1; border: none; outline: none;
  font-family: inherit; font-size: 1.3rem; font-weight: 600; color: var(--ink);
  padding: 12px 0; background: none;
}
.funnel-input-wrap input.error { color: #b91c1c; }
.funnel-unit { font-weight: 600; color: var(--gray-400); }
.funnel-hint { font-size: .86rem; color: var(--gray-400); margin-top: 12px; }
.funnel-skip {
  margin-top: 18px; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: .9rem; font-weight: 600; color: var(--green-600);
  text-decoration: underline; text-underline-offset: 3px; padding: 0;
}
.funnel-skip:hover { color: var(--green-800); }

.funnel-result {
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius);
  padding: 24px; text-align: center; margin-bottom: 28px;
}
.fr-label { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-700); margin-bottom: 8px; }
.fr-value { display: block; font-family: 'Fraunces', serif; font-size: clamp(2.2rem, 6vw, 3rem); font-weight: 600; color: var(--green-700); line-height: 1; }
.fr-sub { display: block; font-size: .86rem; color: var(--gray-600); margin-top: 8px; }
.funnel-result.is-empty .fr-label,
.funnel-result.is-empty .fr-value { color: var(--gray-400); }

.funnel-form { display: grid; gap: 12px; }
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.funnel-form input, .funnel-form textarea {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 16px; font-family: inherit; font-size: .98rem; color: var(--ink);
  outline: none; transition: var(--ease); background: var(--white); width: 100%;
  resize: vertical;
}
.funnel-form input:focus, .funnel-form textarea:focus { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(47,164,95,.16); }
.funnel-form .btn { margin-top: 6px; }
.funnel-note { font-size: .76rem; color: var(--gray-400); text-align: center; line-height: 1.5; }

.funnel-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.funnel-back, .funnel-next {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: .96rem; font-weight: 600;
  padding: 10px 6px; transition: var(--ease);
}
.funnel-back { color: var(--gray-400); }
.funnel-back:hover { color: var(--gray-700); }
.funnel-back[hidden] { visibility: hidden; }
.funnel-next {
  color: #fff; background: var(--green-600);
  padding: 12px 28px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(26,128,71,.26);
}
.funnel-next:hover:not(:disabled) { background: var(--green-700); }
.funnel-next:disabled { background: var(--line); color: var(--gray-400); cursor: not-allowed; box-shadow: none; }
.funnel-next[hidden] { display: none; }

.funnel-success { text-align: center; padding: 30px 10px; }
.funnel-success .fs-ico { font-size: 3rem; margin-bottom: 14px; }
.funnel-success h3 { font-size: 1.4rem; color: var(--green-700); margin-bottom: 10px; }
.funnel-success p { color: var(--gray-600); }
.funnel-success a { color: var(--green-700); font-weight: 600; }

/* ════════ 6 · KONTAKT ════════ */
.contact { background: var(--cream); padding: clamp(40px, 5vw, 64px) 0; }
.contact-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.contact h2 { margin-bottom: 16px; }
.contact-text > p { color: var(--gray-600); font-size: 1.05rem; max-width: 440px; margin-bottom: 22px; }
.contact-eta { display: block; margin-top: 6px; font-style: italic; font-size: .9rem; color: var(--gray-400); }
.contact .eyebrow--light { color: var(--green-600); }
.contact-mail {
  display: inline-block;
  font-family: 'Fraunces', serif; font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 600;
  color: var(--green-700); text-decoration: none;
  border-bottom: 2px solid var(--green-100);
  transition: var(--ease); margin-bottom: 30px;
}
.contact-mail:hover { border-color: var(--green-500); }
.contact-quick { display: flex; }

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.contact-card .apple-mark { margin-bottom: 20px; }
.contact-quote {
  font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; font-style: italic;
  color: var(--ink); line-height: 1.5; margin-bottom: 18px;
}
.contact-card strong { color: var(--green-700); font-size: .98rem; }

/* ════════ FOOTER ════════ */
.footer { background: var(--green-900); color: rgba(255,255,255,.6); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; padding: 44px 28px;
}
.footer-brand img { height: 56px; width: auto; display: block; opacity: .95; }
.footer-links, .footer-legal { display: flex; flex-wrap: wrap; gap: 4px; }
.footer-links a, .footer-legal a {
  color: rgba(255,255,255,.6); text-decoration: none; font-size: .9rem;
  padding: 6px 12px; border-radius: 999px; transition: var(--ease);
}
.footer-links a:hover, .footer-legal a:hover { color: #fff; background: rgba(255,255,255,.08); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center; padding: 16px 28px;
  font-size: .8rem; color: rgba(255,255,255,.4);
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-lead { position: static; }
  .dp-grid { grid-template-columns: 1fr; gap: 44px; }
  .dp-visual { order: -1; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .combo { grid-template-columns: 1fr; }
  .combo-plus, .combo-equals { transform: rotate(90deg); }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 16px 20px 22px; gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-cta { margin-left: 0; text-align: center; }
  .choice-grid { grid-template-columns: 1fr; }
  .ff-row { grid-template-columns: 1fr; }
  .hero-trust { gap: 8px 18px; }
}

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