/* ============================================================
   MyVerdura — lower-section styles (v2 full page)
   ============================================================ */

/* ---------- HERO v2 (committed): photo + glass card + phone ---------- */
.hero2 {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  background-size: cover; background-position: center 55%;
  padding: 120px 0 64px;
  overflow: hidden;
}
.hero2::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(31,28,22,0.62) 0%, rgba(31,28,22,0.30) 46%, rgba(31,28,22,0.05) 72%),
    linear-gradient(to top, rgba(31,28,22,0.55), rgba(31,28,22,0) 40%);
}
.hero2 .wrap { position: relative; z-index: 2; }
.hero2-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1000px) { .hero2-grid { grid-template-columns: 1.04fr 0.96fr; gap: 56px; } }

/* frosted copy panel — liquid glass, kept legible */
.hero-col { display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: rgba(252,250,245,0.62);
  backdrop-filter: blur(26px) saturate(1.7);
  -webkit-backdrop-filter: blur(26px) saturate(1.7);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--r-2xl);
  padding: 34px 36px 36px;
  box-shadow: 0 20px 60px rgba(20,18,14,0.26), inset 0 1px 0 rgba(255,255,255,0.6);
  max-width: 600px;
}
@media (max-width: 560px) { .hero-card { padding: 28px 24px 30px; } }
.hero-card .hero-eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; color: var(--text-tertiary); }
.hero-card h1 {
  font-size: clamp(38px, 5.4vw, 62px); line-height: 1.04; letter-spacing: -0.02em;
}
.hero-card h1 .hl {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  color: var(--emerald-700);
  background: linear-gradient(180deg, transparent 62%, var(--emerald-200) 62%, var(--emerald-200) 92%, transparent 92%);
  padding: 0 0.06em;
}
.hero-card .hero-sub {
  margin-top: 22px; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.55;
  color: var(--text-secondary); max-width: 42ch;
}
.hero-card .hero-ctas { display: flex; flex-wrap: nowrap; gap: 10px; margin-top: 28px; }
.hero-card .hero-ctas .btn { flex: 1 1 auto; padding-left: 18px; padding-right: 18px; }
@media (max-width: 420px) { .hero-card .hero-ctas { flex-wrap: wrap; } }
/* trust badges — pulled OUTSIDE the card, highlighted over the photo, looping spotlight */
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; max-width: 600px; }
.hbadge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px; border-radius: var(--r-pill);
  background: rgba(31,28,22,0.34);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 6px 20px rgba(20,18,14,0.22), inset 0 1px 0 rgba(255,255,255,0.18);
  font-size: 11.5px; font-weight: 500; color: rgba(247,246,243,0.95);
  animation: hbadgeCycle 6s var(--ease) infinite;
}
.hero-badges .hbadge:nth-child(1) { animation-delay: 0s; }
.hero-badges .hbadge:nth-child(2) { animation-delay: 2s; }
.hero-badges .hbadge:nth-child(3) { animation-delay: 4s; }
.hbadge strong { color: var(--emerald-300, #6ee7b7); font-weight: 700; }
.hbadge .hb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald-400); flex: 0 0 auto; transition: background var(--dur) var(--ease); }
@keyframes hbadgeCycle {
  0%, 30% {
    background: rgba(16,108,80,0.52);
    border-color: rgba(110,231,183,0.85);
    box-shadow: 0 12px 30px rgba(5,150,105,0.42), inset 0 1px 0 rgba(255,255,255,0.35);
    transform: translateY(-2px);
  }
  36%, 100% {
    background: rgba(31,28,22,0.34);
    border-color: rgba(255,255,255,0.28);
    box-shadow: 0 6px 20px rgba(20,18,14,0.22), inset 0 1px 0 rgba(255,255,255,0.18);
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) { .hbadge { animation: none; } }

/* phone in hero — WebGL glTF body + projection-locked live screen + tracking chips */
.hero-phone-wrap { position: relative; display: flex; justify-content: center; align-items: center; overflow: visible; }
.phone3d-gl {
  position: relative; z-index: 2;
  width: clamp(240px, 28vw, 320px);
  height: clamp(440px, 56vh, 600px);
  margin-inline: auto;
}
.phone3d-gl canvas { display: block; }
/* live screen: native 393x852, warped onto the model's screen face via matrix3d */
.p3d-screen {
  position: absolute; top: 0; left: 0; z-index: 3;
  width: 393px; height: 852px;
  border: 0; border-radius: 30px; background: #0a0a0c;
  pointer-events: none; opacity: 0; will-change: transform;
}
/* looping highlighted border glow, warped onto the body's front outline */
.p3d-glow {
  position: absolute; top: 0; left: 0; z-index: 2;
  width: 400px; height: 868px;
  border-radius: 48px; transform-origin: 0 0;
  pointer-events: none; opacity: 0; will-change: transform;
  animation: phoneGlow 2.6s ease-in-out infinite;
}
@keyframes phoneGlow {
  0%, 100% { box-shadow: 0 0 0 1.5px rgba(150,220,175,0.30), 0 0 16px 1px rgba(70,170,110,0.28); }
  50%      { box-shadow: 0 0 0 2px   rgba(185,245,205,0.85), 0 0 38px 6px rgba(95,205,140,0.70); }
}
@media (prefers-reduced-motion: reduce) {
  .p3d-glow { animation: none; box-shadow: 0 0 0 1.5px rgba(150,220,175,0.4), 0 0 22px 2px rgba(90,180,120,0.4); }
}
/* fallback when WebGL/Three.js missing: show the screen plainly */
.phone3d-gl.no3d .p3d-screen { opacity: 1 !important; transform: none !important; width: 100%; height: 100%; }
.phone3d-gl.no3d .hero-float3d { display: none; }
/* info chips — JS positions them at projected anchors on the phone */
.hero-float3d {
  position: absolute; top: 0; left: 0; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: rgba(253,251,246,0.97);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 10px 13px; box-shadow: var(--shadow-lg);
  white-space: nowrap; font-family: var(--font-body);
  opacity: 0; will-change: transform;
}
.hero-float3d .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--emerald-50); color: var(--emerald-700); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.hero-float3d .ft-k { font-size: 11px; color: var(--text-tertiary); }
.hero-float3d .ft-v { font-family: var(--font-display); font-weight: 600; font-size: 14px; line-height: 1.1; color: var(--text-primary); }
.hero-motion-hint {
  position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%);
  z-index: 4; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(253,251,246,0.95); border: 1px solid var(--line);
  color: var(--text-secondary); border-radius: 999px; padding: 7px 13px;
  font-size: 12px; font-weight: 600; box-shadow: var(--shadow-lg); cursor: pointer;
}
.hero-float {
  position: absolute; z-index: 3;
  background: rgba(253,251,246,0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 11px 14px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
}
.hero-float.f-top { top: 6%; right: -2%; }
.hero-float.f-bot { bottom: 9%; left: -4%; }
@media (max-width: 999px) { .hero-float.f-top { right: 2%; } .hero-float.f-bot { left: 2%; } }
@media (max-width: 480px) { .hero-float { display: none; } }
.hero-float .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--emerald-50); color: var(--emerald-700); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.hero-float .ft-k { font-size: 11px; color: var(--text-tertiary); }
.hero-float .ft-v { font-family: var(--font-display); font-weight: 600; font-size: 14px; line-height: 1.1; }
.hero2 .scroll-hint { color: rgba(247,246,243,0.8); }

/* ---------- BENEFITS ---------- */
.benefit-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
@media (min-width: 640px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .benefit-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit {
  background: var(--raised); padding: 30px 28px 32px;
  transition: background var(--dur) var(--ease);
}
.benefit:hover { background: var(--paper); }
.benefit .ic {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: var(--emerald-50); color: var(--emerald-700);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.benefit h3 { font-size: 21px; line-height: 1.15; margin-bottom: 8px; }
.benefit p { font-size: 15px; line-height: 1.55; color: var(--text-secondary); }

/* ---------- AUDIENCE BLOCKS ---------- */
.aud { background: var(--paper); }
.aud-row { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 900px) { .aud-row { grid-template-columns: 1fr 1fr; gap: 64px; } .aud-row.flip .aud-media { order: 2; } }
.aud-row + .aud-row { margin-top: 88px; }
.aud-media { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.aud-media img { width: 100%; height: 100%; object-fit: cover; }
.aud-text .kicker { color: var(--emerald-700); margin-bottom: 16px; }
.aud-text h3 { font-size: clamp(26px, 3vw, 34px); line-height: 1.12; letter-spacing: -0.01em; max-width: 18ch; }
.aud-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.aud-list li { display: flex; gap: 12px; font-size: 16px; line-height: 1.5; color: var(--text-secondary); }
.aud-list .ck { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--emerald-50); color: var(--emerald-600); display: flex; align-items: center; justify-content: center; margin-top: 1px; }

/* ---------- HOW IT WORKS ---------- */
.how { background: var(--inverse); color: var(--text-inverse); }
.how .section-head h2 { color: var(--text-inverse); }
.how .section-head .eyebrow { color: rgba(247,246,243,0.6); }
.how .section-head p { color: rgba(247,246,243,0.78); }
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 700px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 0; } }
.step {
  position: relative; padding: 28px 26px 30px;
  border: 1px solid rgba(247,246,243,0.14);
  border-radius: var(--r-lg);
  background: rgba(247,246,243,0.03);
}
@media (min-width: 1080px) {
  .step { border-radius: 0; border-right: none; }
  .step:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
  .step:last-child { border-radius: 0 var(--r-lg) var(--r-lg) 0; border-right: 1px solid rgba(247,246,243,0.14); }
}
.step .n { font-family: var(--font-mono); font-size: 13px; color: var(--emerald-400); letter-spacing: 0.1em; }
.step .ic { margin: 16px 0 14px; color: var(--emerald-300); }
.step h3 { color: var(--text-inverse); font-size: 21px; margin-bottom: 8px; }
.step p { font-size: 14.5px; line-height: 1.55; color: rgba(247,246,243,0.74); }
.step .arrow { display: none; }
@media (min-width: 1080px) {
  .step .arrow { display: flex; position: absolute; right: -13px; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 26px; height: 26px; border-radius: 50%; background: var(--emerald-500); color: #fff; align-items: center; justify-content: center; }
  .step:last-child .arrow { display: none; }
}

/* ---------- PLANS ---------- */
.plan-grid { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: stretch; }
@media (min-width: 860px) { .plan-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.plan {
  position: relative; background: var(--raised);
  border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 30px 28px 32px; display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  cursor: pointer;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.plan.sel { border-color: var(--emerald-600); box-shadow: 0 0 0 2px var(--emerald-600), var(--shadow-lg); }
.plan.feat { border-color: var(--emerald-500); }
@media (min-width: 860px) { .plan.feat { transform: scale(1.03); } .plan.feat:hover { transform: scale(1.03) translateY(-4px); } }
.plan .plan-tag {
  position: absolute; top: -12px; left: 28px;
  height: 24px; padding: 0 12px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center;
}
.plan .plan-tag.emerald { background: var(--emerald-600); color: #fff; }
.plan .plan-tag.gold { background: var(--accent-gold); color: #5c3d05; }
.plan .pname { font-family: var(--font-display); font-size: 24px; font-weight: 600; }
.plan .pline { font-size: 14px; color: var(--text-tertiary); margin-top: 4px; min-height: 40px; }
.plan .price { display: flex; align-items: baseline; gap: 4px; margin: 18px 0 4px; }
.plan .price .cur { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--text-primary); }
.plan .price .amt { font-family: var(--font-display); font-size: 46px; font-weight: 600; line-height: 1; letter-spacing: -0.02em; }
.plan .price .per { font-size: 14px; color: var(--text-tertiary); }
.plan .camera-row {
  display: flex; align-items: center; gap: 8px; margin: 16px 0 18px;
  padding: 10px 12px; border-radius: var(--r-sm); background: var(--canvas);
  font-size: 13.5px; font-weight: 500; color: var(--text-secondary);
}
.plan .camera-row .ic { color: var(--emerald-600); flex: 0 0 auto; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan ul li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.45; color: var(--text-secondary); }
.plan ul li .ck { flex: 0 0 auto; color: var(--emerald-600); margin-top: 1px; }
.plan .btn { width: 100%; }

/* ---------- PAID EXTRAS ---------- */
.extras { background: var(--paper); }
.extras-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) { .extras-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .extras-grid { grid-template-columns: repeat(4, 1fr); } }
.extra {
  background: var(--raised); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px 20px 24px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.extra:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.extra .ic { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--accent-gold-soft); color: #92400e; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.extra h4 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.extra p { font-size: 13.5px; line-height: 1.5; color: var(--text-tertiary); }
.extras-note {
  margin-top: 28px; text-align: center; font-size: 14px; color: var(--text-tertiary);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* ---------- OPERATING NETWORK ---------- */
.network { position: relative; }
.network-row { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 920px) { .network-row { grid-template-columns: 0.92fr 1.08fr; gap: 60px; } }
.network-media { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.network-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.12); }
.network-media .coord {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(31,28,22,0.7); backdrop-filter: blur(6px); color: var(--text-inverse);
  font-family: var(--font-mono); font-size: 12px; padding: 7px 12px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 7px;
}
.network-text h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.1; letter-spacing: -0.015em; max-width: 16ch; }
.network-text p { margin-top: 20px; font-size: 17px; line-height: 1.6; color: var(--text-secondary); max-width: 50ch; }
.network-roles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.network-roles .role {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px; border-radius: var(--r-pill);
  background: var(--canvas); border: 1px solid var(--line);
  font-size: 14px; color: var(--text-secondary);
}
.network-roles .role .ic { color: var(--emerald-600); }

/* ---------- PROOF ---------- */
.proof { background: var(--inverse); color: var(--text-inverse); }
.proof .section-head h2 { color: var(--text-inverse); }
.proof .section-head .eyebrow { color: rgba(247,246,243,0.6); }
.proof-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(247,246,243,0.14); border: 1px solid rgba(247,246,243,0.14); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 48px; }
@media (min-width: 860px) { .proof-stats { grid-template-columns: repeat(4, 1fr); } }
.proof-stat { background: var(--inverse); padding: 30px 26px; }
.proof-stat .n { font-family: var(--font-display); font-size: 46px; font-weight: 600; line-height: 1; color: var(--emerald-400); letter-spacing: -0.02em; }
.proof-stat .t { margin-top: 12px; font-size: 14px; line-height: 1.45; color: rgba(247,246,243,0.74); }
.quote-carousel { max-width: 720px; margin: 0 auto; }
.qc-viewport { overflow: hidden; border-radius: var(--r-lg); }
.qc-track { display: flex; transition: transform 440ms var(--ease); will-change: transform; }
.qc-track > .quote { flex: 0 0 100%; width: 100%; min-width: 0; box-sizing: border-box; margin: 0; }
.qc-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
.qc-arrow {
  width: 46px; height: 46px; flex: 0 0 auto; border-radius: 50%;
  background: rgba(247,246,243,0.06); border: 1px solid rgba(247,246,243,0.22);
  color: var(--text-inverse); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.qc-arrow:hover { background: var(--emerald-600); border-color: var(--emerald-600); transform: translateY(-1px); }
.qc-dots { display: flex; align-items: center; gap: 9px; }
.qc-dot { width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%; background: rgba(247,246,243,0.28); cursor: pointer; transition: width var(--dur) var(--ease), background var(--dur) var(--ease); }
.qc-dot.on { width: 24px; border-radius: var(--r-pill); background: var(--emerald-400); }
.quote {
  background: rgba(247,246,243,0.04); border: 1px solid rgba(247,246,243,0.12);
  border-radius: var(--r-lg); padding: 28px 26px 24px; display: flex; flex-direction: column;
}
.quote .badge {
  align-self: flex-start; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--warning);
  background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.3);
  padding: 4px 9px; border-radius: var(--r-xs); margin-bottom: 18px;
}
.quote .q { font-family: var(--font-display); font-size: 19px; line-height: 1.42; color: var(--text-inverse); font-style: italic; font-weight: 400; flex: 1; }
.quote .by { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote .by img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; filter: grayscale(0.2); }
.quote .by .who { font-weight: 600; font-size: 14.5px; color: var(--text-inverse); }
.quote .by .note { font-size: 12.5px; color: rgba(247,246,243,0.62); margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; text-align: left;
  font-family: var(--font-display); font-size: clamp(18px, 2vw, 22px); font-weight: 600; color: var(--text-primary);
  transition: color var(--dur) var(--ease);
}
.faq-q:hover { color: var(--emerald-700); }
.faq-q .pm { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease); }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--emerald-600); color: #fff; border-color: var(--emerald-600); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 360ms var(--ease); }
.faq-a-inner { padding: 0 4px 26px; font-size: 16px; line-height: 1.6; color: var(--text-secondary); max-width: 64ch; }

/* ---------- FINAL CTA ---------- */
.final {
  position: relative; background-size: cover; background-position: center;
  color: var(--text-inverse); text-align: center;
  padding: 128px 0;
}
.final::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(31,28,22,0.66), rgba(31,28,22,0.78)); }
.final .wrap { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.final .eyebrow { color: rgba(247,246,243,0.7); margin-bottom: 20px; }
.final h2 { font-size: clamp(34px, 5vw, 60px); line-height: 1.05; letter-spacing: -0.02em; color: var(--text-inverse); max-width: 18ch; }
.final h2 .italic { color: var(--emerald-300); }
.final p { margin-top: 22px; font-size: 19px; color: rgba(247,246,243,0.86); max-width: 46ch; }
.final .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
.final .btn-secondary { background: rgba(247,246,243,0.10); color: var(--text-inverse); border-color: rgba(247,246,243,0.45); }
.final .btn-secondary:hover { background: rgba(247,246,243,0.2); color: #fff; }
.final .risk { margin-top: 26px; font-size: 13.5px; color: rgba(247,246,243,0.66); display: inline-flex; align-items: center; gap: 8px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--canvas); border-top: 1px solid var(--line); padding: 56px 0 40px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.footer .wordmark { font-size: 21px; }
.footer-tag { font-size: 14px; color: var(--text-tertiary); margin-top: 12px; max-width: 34ch; line-height: 1.5; }
.footer-cols { display: flex; flex-wrap: wrap; gap: 48px; }
.footer-col h5 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 14px; font-weight: 600; }
.footer-col a { display: block; font-size: 14.5px; color: var(--text-secondary); padding: 5px 0; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--emerald-700); }
.footer-bot { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; color: var(--text-tertiary); }
.footer-bot .preview-tag { display: inline-flex; align-items: center; gap: 7px; }
