/* ------------------------------------------------------
   SolarMist Website CSS — V4.3 (CLEANED & SECTIONED)
   ----------------------------------------------------
   Goals:
   • No fundamental layout changes
   • Remove duplication & dead rules
   • Group by sections (drop-in edits per block)
   • Keep your recent small fixes where clearly broken

   TABLE OF CONTENTS
   01) CSS VARIABLES & BASE
   02) HELPERS & GLOBAL ANIMATIONS
   03) HEADER & NAVIGATION (desktop + mobile overlay)
   04) HERO (incl. inline email form + responsive)
   05) CTA BUTTON & STICKY CTA BANNER
   06) HOW IT WORKS (cards grid → slider ≤1024px)
   07) FEATURES (4-up → slider ≤900px)
   08) ABOUT & FOUNDERS
   09) ENGAGE (Join + Survey cards) & FORM BASE
   10) SURVEY UX (questions, options, progress, buttons)
   11) FAQ
   12) FOOTER
   13) PRIVACY POPUP
   14) SHARE BLOCK
------------------------------------------------------- */

/* ==================================
   01) CSS VARIABLES & BASE
================================== */
:root {
  /* Brand palette */
  --blue: #0052cc;
  --blue-dark: #003d99;
  --yellow: #ffce3d;
  --yellow-dark: #e5b600;

  /* UI tones */
  --gray-bg: #f8f9fb;
  --text-color: #1c1c1c;
  --header-bg: #ffffff;
  --nav-text: #1c1c1c;
  --nav-hover: #0052cc;

  /* Typography */
  --font-main: "Inter", sans-serif;

  /* Component custom properties */
  --field-h: 56px;         /* email pill (desktop) */
  --field-h-md: 60px;      /* email pill (tablet/phone) */
  --nav-h: 65px;           /* header height */
  --hero-extra-top: 2rem;  /* hero text drop */
  --founders-desktop-nudge: -20px; /* align founders to CTA */
}

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

html, body { overflow-x: hidden; }

body {
  font-family: var(--font-main);
  background-color: #fff;
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--text-color);
}

p { margin-bottom: 1.5em; color: #3a3a3a; }

a { text-decoration: none; color: var(--blue); transition: 0.3s; }

a:hover { color: var(--blue-dark); text-decoration: underline; }

/* anchor scroll offset for fixed header */
[id] { scroll-margin-top: 100px; }

/* entrance animation hook */
[data-animate] {
  opacity: 0;
  margin-top: -24px;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
[data-animate].visible { opacity: 1; transform: translateY(0); margin-top: 0; }

/* accessibility */
:focus-visible { outline: 2px solid #0052cc; outline-offset: 2px; }

/* ---- Section 15 fixes merged here (Base) ---- */
html { scroll-padding-top: calc(var(--nav-h) + 12px); }
[id] { scroll-margin-top: calc(var(--nav-h) + 12px) !important; }

/* Global sr-only helper (used by #form-status, etc.) */
.sr-only{
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0 0 0 0) !important;
  white-space: nowrap !important; border: 0 !important;
}


/* ==================================
   02) HELPERS & GLOBAL ANIMATIONS
================================== */
.desktop-only { display: none !important; }
.mobile-only  { display: block !important; }
@media (min-width: 769px){
  .desktop-only { display: block !important; }
  .mobile-only  { display: none !important; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* button ripple utility (used in CTA) */
.ripple { position: absolute; border-radius: 50%; transform: scale(0); animation: ripple-animation 0.6s linear; background-color: rgba(255,255,255,0.4); pointer-events: none; z-index: 1; }
@keyframes ripple-animation { to { transform: scale(4); opacity: 0; } }

/* ---- Section 15 fixes merged here (Animations / motion) ---- */
/* Kill animate-on-scroll layout shift (no margin tween) + promote layer */
[data-animate]{
  margin-top: 0 !important;
  transform: translate3d(0,30px,0);
  opacity: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
[data-animate].visible{
  transform: translate3d(0,0,0);
  opacity: 1;
}

/* Respect reduced motion everywhere */
@media (prefers-reduced-motion: reduce){
  * { scroll-behavior: auto !important; }
  [data-animate], .progress-bar, .mobile-nav-overlay, .sticky-cta-banner {
    transition: none !important; animation: none !important;
  }
}


/* ==================================
   03) HEADER & NAVIGATION
================================== */
.site-header {
  background: rgba(255,255,255,.64);
  border-bottom: none;
  padding: 0;
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  min-height: 65px; max-height: 65px;
  display: flex; align-items: center;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* keep identical so the JS toggle changes nothing visually */
.site-header.scrolled {
  background: rgba(255,255,255,.64);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

/* Slightly less transparent so the logo & nav read better */
.site-header,
.site-header.scrolled{
  background: rgba(255, 255, 255, 0.79) !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  backdrop-filter: blur(22px) saturate(112%);
  -webkit-backdrop-filter: blur(22px) saturate(112%);
}

.header-content {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 0rem;
  flex-wrap: nowrap; width: 100%;
  padding: 0.5rem 2rem; min-height: 65px;
}

.logo { margin-left: 0; margin-right: auto; display: flex; align-items: center; }
.logo-img {
  height: 45px; max-height: 45px; width: auto; display: block;
  position: static; left: 0; top: 0;
  object-fit: contain; object-position: left center;
  border-radius: 6px; transition: height 0.3s; margin-top: 8px;
}
.logo-link { display: inline-block; position: relative; }
.logo-hitbox { position: absolute; width: 100%; height: 100%; cursor: pointer; background: transparent; z-index: 2; pointer-events: none; }

@media (max-width: 768px){
  .header-content { justify-content: flex-start !important; }
  .logo { margin-right: auto; margin-left: -2rem; }
}

.site-nav {
  position: relative; height: 48px;
  display: flex; align-items: center; justify-content: flex-end;
  flex: 1; max-width: 60%; margin: 0;
}
.site-nav ul {
  display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.6rem);
  list-style: none; margin: 0; padding: 0; height: 48px; white-space: nowrap;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: clamp(0.85rem, 1.3vw, 1.4rem); color: #475467;
  margin-right: 3rem;
}
.site-nav ul li:last-child { margin-left: auto; }
.site-nav a {
  display: flex; align-items: center; text-decoration: none; color: #535151;
  transition: transform 0.2s ease, font-weight 0.2s ease 0.02s;
  padding: 0 0.5rem; margin-top: 12px;
}
.site-nav a:hover, .site-nav a:focus, .site-nav a:active {
  transform: scale(1.1); font-weight: 700; color: var(--nav-text); outline: none;
}

/* Hamburger (and X) — stays in the exact same spot when menu opens */
.mobile-nav-toggle {
  position: absolute;
  right: 1.5rem;
  top: calc(50% + 6px);
  transform: translateY(-50%);
  background: none; border: none; cursor: pointer; padding: 0; margin: 0;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  z-index: 10001;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
body.nav-open { overflow: hidden; }

/* When menu is open, keep button fixed at same coordinates (seamless morph) */
body.nav-open .mobile-nav-toggle{
  position: fixed;
  right: 1.5rem;
  top: calc(env(safe-area-inset-top, 0px) + (var(--nav-h) / 2) + 6px);
  transform: translateY(-50%);
  z-index: 20020 !important;
}

.mobile-nav-toggle .hamburger,
.mobile-nav-toggle .hamburger::before,
.mobile-nav-toggle .hamburger::after {
  background-color: var(--text-color);
  height: 2.45px; width: 100%; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s; display: block; position: absolute;
}
.mobile-nav-toggle .hamburger::before { content: ""; top: -10px; }
.mobile-nav-toggle .hamburger::after  { content: ""; top: 10px; }
.mobile-nav-toggle.open .hamburger { background-color: transparent; }
.mobile-nav-toggle.open .hamburger::before { transform: rotate(45deg) translate(6.9px, 6px); }
.mobile-nav-toggle.open .hamburger::after  { transform: rotate(-45deg) translate(6.9px, -6.9px); }

/* Mobile overlay */
.mobile-nav-overlay {
  display: flex;
  position: fixed; inset: 0;
  background: #fff;
  z-index: 20010; /* below the fixed toggle; above page chrome */
  flex-direction: column; justify-content: flex-start; align-items: stretch;
  gap: 0.5rem;
  transform: translateY(-20px); opacity: 0;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
  pointer-events: none; overflow-y: auto; visibility: hidden;
  height: auto !important;
  min-height: 100dvh !important;
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-nav-overlay.open {
  transform: translateY(0); opacity: 1; pointer-events: auto; visibility: visible;
}

.mobile-nav-bg {
  position: absolute; inset: 0 0 auto 0; width: 100%; height: 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fb 100%);
  transition: height 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s ease, opacity 0.6s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.mobile-nav-overlay.open .mobile-nav-bg { height: 100%; opacity: 1; }

.mobile-nav-logo {
  width: 100%; display: flex; align-items: center; justify-content: flex-start;
  padding: 1.2rem 1.5rem 0.5rem; box-sizing: border-box;
  border-bottom: 1px dashed #e0e0e0; background: transparent; margin-bottom: 0.5rem;
}
.mobile-nav-logo img { height: 40px; max-width: 160px; object-fit: contain; display: block; }
@media (min-width: 800px){ .mobile-nav-logo { display: none !important; } }

/* Menu list spacing: leaves room for the X but doesn't push bottom off-screen */
.mobile-nav-overlay ul{
  list-style: none; width: 100%; margin: 0; text-align: left;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
  gap: 1.25rem; z-index: 1; position: relative;
  padding: calc(var(--nav-h) + 10px + env(safe-area-inset-top, 0px)) 0 1rem 0 !important;
}
@media (max-height: 700px){
  .mobile-nav-overlay ul{
    padding-top: calc(var(--nav-h) + 4px) !important;
    gap: 1rem !important;
  }
}

.mobile-nav-overlay .nav-arrow {
  flex: 0 0 auto; font-size: 1.4rem; color: #475467;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  margin-left: 1rem; margin-right: 1.5rem; transition: color 0.2s;
}

.mobile-nav-overlay li {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 0; border-bottom: 1px dashed #f0f0f0;
  opacity: 0; transform: translateY(20px) scale(0.98);
}
.mobile-nav-overlay.open li { animation: fadeInUp 0.6s cubic-bezier(0.22,1,0.36,1) forwards; }
.mobile-nav-overlay.open li:nth-child(1){ animation-delay: 0.4s; }
.mobile-nav-overlay.open li:nth-child(2){ animation-delay: 0.5s; }
.mobile-nav-overlay.open li:nth-child(3){ animation-delay: 0.6s; }
.mobile-nav-overlay.open li:nth-child(4){ animation-delay: 0.7s; }
.mobile-nav-overlay.open li:nth-child(5){ animation-delay: 0.8s; }

/* Links: base, hover, focus (first item shouldn’t look different on open) */
.mobile-nav-overlay a{
  flex: 1 1 auto; display: flex; align-items: center; justify-content: space-between;
  color: #475467;                      /* base colour for all items */
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 1.15rem;
  background: none; border: none; text-align: left;
  padding: 0 1.5rem; text-decoration: none !important;
  transition: color 0.2s, background 0.2s; cursor: pointer; min-height: 48px; width: 100%;
}
.mobile-nav-overlay a:visited { color: #475467; }
.mobile-nav-overlay a:focus { color: #475467 !important; }
.mobile-nav-overlay a:hover,
.mobile-nav-overlay a:focus:hover { color: #b0b0b0 !important; }
.mobile-nav-overlay a:focus-visible{ outline: 2px solid #003d80; outline-offset: 3px; }

/* Arrow matches link state */
.mobile-nav-overlay a:hover .nav-arrow,
.mobile-nav-overlay a:focus:hover .nav-arrow { color:#b0b0b0; }

/* responsive visibility */
@media (max-width: 800px){ .site-nav { display: none; } }
@media (min-width: 800px){ .mobile-nav-toggle { display: none !important; } }

/* Ensure overlay scrolls smoothly */
.mobile-nav-overlay { -webkit-overflow-scrolling: touch; }

/* animate both ways */
.mobile-nav-overlay{
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
  transform: translateY(-20px);
  opacity: 0;
}
.mobile-nav-overlay.open{
  transform: translateY(0);
  opacity: 1;
}

/* reverse animation on close */
.mobile-nav-overlay.closing{
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;          /* avoid clicks while animating out */
  visibility: visible;           /* <-- keep visible so it can fade/slide */
}

/* ==================================
   04) HERO (incl. inline email form)
================================== */
.hero {
  position: relative; width: 100vw; min-height: clamp(560px, 70vh, 820px);
  background: url('../images/backgroundv10.png') center 48% / cover no-repeat;
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 2rem; padding-bottom: 6.5rem; overflow: hidden;
}
.hero > * { position: relative; z-index: 1; }

/* ---- Section 15 fix merged here (Hero background path) ---- */
.hero { background: url('/images/backgroundv10.png') center 48% / cover no-repeat !important; }

/* grid */
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem); max-width: 1200px; margin: 0 auto; width: 100%;
  padding: clamp(1rem, 3vw, 2.5rem); padding-bottom: 1.5rem;
}

/* left */
.hero-left { display: flex; justify-content: flex-start; }
.text-panel {
  background: rgba(255,255,255,.78); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border-radius: 18px; box-shadow: 0 14px 36px rgba(0,0,0,.10);
  padding: clamp(1rem,2.4vw,2rem) clamp(1rem,2.8vw,2.25rem);
  max-width: 640px; margin-right: 0;
}

/* headline */
.hero-title { font-family: "Inter", sans-serif; font-weight: 750; font-size: clamp(2.4rem, 6vw, 5rem); line-height: 0.98; letter-spacing: -0.035em; color: #191818; margin: 0 0 clamp(.6rem, 1.4vw, .9rem); }
.hero-title span { display: inline-block; }

/* subtitle */
.hero-subtitle { font-family: "Inter", sans-serif; font-weight: 500; font-size: clamp(1rem, 1.1vw, 1.15rem); color: #111; line-height: 1.5; max-width: 560px; margin: 0 0 clamp(1rem, 2vw, 1.4rem); }

/* right (model) */
.hero-image { position: relative; display: flex; justify-content: center; align-items: flex-end; padding-bottom: clamp(10px, 1.5vw, 18px); }
.hero-image img { width: clamp(260px, 30vw, 420px); height: auto; transform: translateX(4%); filter: drop-shadow(0 14px 28px rgba(0,0,0,.18)); pointer-events: none; position: relative; z-index: 3; }

/* navy pill */
.hero-divider {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: clamp(80px, 4vh, 36px);
  width: min(1200px, calc(100% - 2rem)); height: 32px; background: #082447; color: #fff;
  display: flex; align-items: center; justify-content: center; border-radius: 10px; font: 600 0.95rem/1 "Inter", sans-serif; letter-spacing: .02em; z-index: 1; box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

/* Inline email form */
.inline-email-form {
  display: grid; grid-template-columns: 1fr auto; align-items: center; max-width: 520px; width: 100%;
  margin: 2rem 0 0; border-radius: 9999px; background: #f9fbfc; border: 1px solid #dce3ec; box-shadow: inset 0 1px 2px rgba(0,0,0,.03); overflow: hidden; height: var(--field-h); padding: 0;
}
.input-wrapper { position: relative; height: 100%; display: flex; align-items: center; padding-left: 1.25rem; }
.input-wrapper input[type="email"] { width: 100%; border: 0; background: transparent; font-size: 1rem; line-height: 1; height: 100%; padding: 0; outline: none; color: #1f1f1f; }
.input-wrapper label { position: absolute; left: 1.25rem; top: 50%; transform: translateY(-52%); font-size: 1rem; color: #888; pointer-events: none; transition: all .18s ease; }
.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label { top: .6rem; font-size: .75rem; color: #999; }
.inline-email-form button { height: 100%; padding: 0 1.5rem; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; background: linear-gradient(90deg,#05264e,#003d80); color: #fff; font-weight: 600; font-size: 1rem; border: 0; border-radius: 9999px; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .3s ease; }
.inline-email-form button:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.12); }

/* HERO — RESPONSIVE */
@media (max-width: 1200px){
  .hero-grid { grid-template-columns: 1fr 1fr; gap: clamp(1rem,2.2vw,2rem); }
  .hero-title { font-size: clamp(2.2rem, 5.2vw, 4.6rem); }
  .hero-image img { width: clamp(300px, 34vw, 520px); }
}
@media (max-width: 1100px){
  .text-panel { max-width: 560px; }
  .hero-image img { width: clamp(340px, 38vw, 560px); }
}
@media (max-width: 900px){
  .hero { width: 100%; padding-top: calc(var(--nav-h) + var(--hero-extra-top) + env(safe-area-inset-top)); padding-bottom: 4.5rem; padding-left: 1rem; padding-right: 1rem; min-height: 88vh; background-position: center top; }
  .hero-grid { grid-template-columns: 1fr; gap: 1.25rem; padding-left: 0 !important; padding-right: 0 !important; padding-top: clamp(.75rem, 3vw, 1.5rem); padding-bottom: 1.5rem; place-items: center; width: 100%; margin-inline: auto; justify-items: center; max-width: 680px; }
  .hero-left { display: flex; justify-content: center; width: 100%; }
  .text-panel { width: 100%; max-width: 680px; margin-inline: auto; text-align: center; border-radius: 14px; padding: 1.1rem 1.2rem; }
  .hero-title { font-size: clamp(2rem, 8.2vw, 3.2rem); line-height: 1.05; letter-spacing: -.03em; margin-bottom: .75rem; }
  .hero-subtitle { font-size: .98rem; margin-bottom: .6rem; }
  .hero-image { order: 2; display: flex; justify-content: center; padding-bottom: .5rem; }
  .hero-image img { width: min(90vw, 560px) !important; height: auto; transform: none !important; }
  .inline-email-form { display: none; }
  .hero-divider { position: static; transform: none; display: inline-flex; align-items: center; justify-content: center; padding: .55rem .9rem; font: 600 .92rem/1.15 "Inter", sans-serif; width: fit-content; max-width: calc(100% - 2rem); margin: 1.5rem auto 0; border-radius: 999px; background: #082447; color: #fff; text-align: center; box-shadow: 0 6px 18px rgba(0,0,0,.12); white-space: normal; height: auto; }
}
@supports(padding-top: constant(safe-area-inset-top)){
  @media (max-width: 900px){ .hero { padding-top: calc(var(--nav-h) + var(--hero-extra-top) + constant(safe-area-inset-top)); } }
}
@media (max-width: 768px){ .hero-divider { font-size: .92rem; } .logo { margin-left: 0 !important; } }
@media (max-width: 480px){
  .hero { padding: calc(var(--nav-h) + var(--hero-extra-top) + env(safe-area-inset-top)) 1rem 4rem; min-height: 92vh; }
  .hero-title { font-size: clamp(1.9rem, 9.6vw, 2.8rem); }
  .hero-subtitle { font-size: .96rem; }
  .hero-divider { width: fit-content; max-width: calc(100% - 2rem); margin-top: 1.25rem; padding: .5rem .85rem; }
}
@supports (width: 100dvw){ .hero { width: 100dvw; } }

/* ---- Section 15 fixes merged here (spacing trims) ---- */
@media (min-width: 1025px){
  .hero { padding-bottom: 5rem; } /* was 6.5rem */
}
@media (max-width: 768px){
  .hero { padding-bottom: 3rem !important; }
}


/* ==================================
   05) CTA BUTTON & STICKY BANNER
================================== */
.cta-button { background: linear-gradient(90deg, #05264e, #003d80); color: #fff; padding: 0.75rem 1.75rem; border: none; border-radius: 999px; font-weight: 600; font-size: 1rem; cursor: pointer; display: inline-block; transition: transform 0.2s ease, box-shadow 0.3s ease, 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.08); text-decoration: none; }
.cta-button:hover { transform: scale(1.05); box-shadow: 0 10px 22px rgba(0,0,0,0.15); background: linear-gradient(90deg, #001e3b, #003066); color: #fff; text-decoration: none; }

.sticky-cta-banner {
  position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255,255,255,0.88); text-align: center; padding: 12px 16px; z-index: 9990; box-shadow: 0 -2px 8px rgba(0,0,0,0.08); backdrop-filter: blur(5px); transition: transform 0.4s cubic-bezier(.4,1.4,.6,1), opacity 0.4s; transform: translateY(100%); opacity: 0; pointer-events: none;
}
.sticky-cta-banner.visible { transform: translateY(0); opacity: 1; pointer-events: auto; animation: slideUpFadeIn 0.5s ease-out; }
@keyframes slideUpFadeIn { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0%); opacity: 1; } }
@media (max-width: 480px){ .sticky-cta-banner { padding: 10px; } .sticky-cta-banner .cta-button { padding: 10px 20px; font-size: 0.95rem; } }

/* ---- Section 15 fixes merged here (CTA/sticky) ---- */
/* Sticky CTA layering (menu uses 10000+) */
.sticky-cta-banner { z-index: 9990 !important; }

/* Safe-area padding + prevent anchors being hidden behind it */
.sticky-cta-banner{ padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
@supports(selector(:has(*))){
  body:has(.sticky-cta-banner.visible){ scroll-padding-bottom: 72px; }
}


/* ==================================
   06) HOW IT WORKS
================================== */
.how-it-works-section { background: var(--gray-bg); padding: clamp(3rem, 6vw, 5rem) 2rem !important; position: relative; z-index: 1; }
.hiw-wrapper { max-width: 1200px; margin: 0 auto; padding: 0; }
.how-it-works-section .hiw-heading { font-family: "Inter", sans-serif; font-weight: 800; font-size: clamp(1.9rem, 3.8vw, 2.6rem); line-height: 1.2; letter-spacing: -.02em; text-align: center !important; margin: 0 0 1.25rem 0 !important; }
@media (max-width: 768px){ .how-it-works-section .hiw-heading { text-align: left !important; } }

/* Desktop ≥1025px */
@media (min-width: 1025px){
  .hiw-cards { display: grid !important; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(1rem, 2vw, 1.5rem); margin: 1rem 0 0 0 !important; padding: 0 !important; overflow: visible !important; justify-items: center; }
  .hiw-card { width: 100%; max-width: 370px; height: 520px; }
  .hiw-nav-arrows { display: none !important; }
}

/* Tablet & Mobile ≤1024px */
@media (max-width: 1024px){
  .how-it-works-section { padding-bottom: clamp(4rem, 8vh, 5.5rem) !important; }
  .how-it-works-section .hiw-heading { margin-bottom: 1.5rem !important; }
  .hiw-cards { width: 100vw; display: flex !important; gap: 1.25rem !important; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 0 !important; margin: 0 !important; position: relative; left: 50%; right: 50%; margin-left: -50vw !important; margin-right: -50vw !important; --hiw-gutter: clamp(12px, 4vw, 20px); scroll-padding-inline: var(--hiw-gutter) !important; scrollbar-width: none; }
  .hiw-cards::-webkit-scrollbar { display: none; }
  .hiw-cards::before, .hiw-cards::after { content: ""; flex: 0 0 var(--hiw-gutter); }
  .hiw-card { flex: 0 0 300px; height: 460px; scroll-snap-align: start; }
  .hiw-nav-arrows { position: static !important; transform: none !important; display: flex; justify-content: center; gap: .5rem; margin: .5rem auto 0 !important; z-index: 1; }
}

/* Cards */
.hiw-card { position: relative; border-radius: 20px; background: #000; color: #fff; box-shadow: 0 10px 22px rgba(0,0,0,.12); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; background-size: cover; background-position: center; transition: transform .16s cubic-bezier(.23,1,.32,1), box-shadow .16s ease; }
@media (hover: hover) and (pointer: fine){ .hiw-card:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(0,0,0,.14); } }
.hiw-card::before { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(0,0,0,.62) 0%, rgba(0,0,0,.40) 35%, rgba(0,0,0,.15) 60%, rgba(0,0,0,0) 100%); z-index: 0; }
.how-it-works-section .hiw-card h3, .how-it-works-section .hiw-card p { position: relative; z-index: 1; color: #fff !important; text-shadow: 0 2px 10px rgba(0,0,0,.45); margin-left: .25rem; margin-right: .25rem; }
.how-it-works-section .hiw-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .25rem; }
.hiw-card:nth-child(1){ background-image: url("/images/step1.png"); }
.hiw-card:nth-child(2){ background-image: url("/images/step2.png"); }
.hiw-card:nth-child(3){ background-image: url("/images/step3.png"); }
.hiw-arrow-btn { width: 38px; height: 38px; border-radius: 50%; background: #f4f4f4; border: none; font-size: 1.2rem; color:#444; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,.1); transition: transform .2s, background .2s; }
.hiw-arrow-btn:hover { transform: scale(1.05); background: var(--yellow); }
@media (max-width: 1024px){ .hiw-card { box-shadow: none !important; background-color: transparent; } }

/* ---- Section 15 fixes merged here (HIW) ---- */
@media (min-width: 1025px){
  .how-it-works-section { padding-block: 3.5rem !important; }
  .how-it-works-section .hiw-heading { margin-bottom: 1rem !important; }
}
@media (max-width: 768px){
  .how-it-works-section { padding: 1.5rem 1rem !important; }
  .how-it-works-section .hiw-heading { margin-bottom: 2rem !important; }
}
/* Horizontal scrollers: snap stability + stop rubber-banding */
.hiw-cards{ overscroll-behavior-x: contain; scroll-snap-stop: always; }
@media (max-width: 1024px){ .hiw-cards{ scroll-snap-type: x mandatory; } }


/* FEATURES — centered content, natural height */
.features-section,
.survey-section{
  font-family:"Inter",sans-serif;
  background-color:var(--gray-bg);
  padding:2rem 2rem 1rem 5.9rem;
  scroll-margin-top:48px;
}
.features-section h2{
  font:700 2.25rem/1 "Inter",sans-serif;
  margin-bottom:.1rem; text-align:left;
}

/* Desktop grid */
.features-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem; padding-top:2rem;
  justify-content:center; align-items:stretch;
}

/* Card — centered, auto height */
.feature{
  background:#fff; border-radius:20px; padding:2rem;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
  transition:transform .3s ease;
  display:flex; flex-direction:column; align-items:center; text-align:center;
}
@media (hover:hover){ .feature:hover{ transform:translateY(-4px); } }

.feature-image{ width:64px; height:64px; margin-bottom:1rem; display:flex; align-items:center; justify-content:center; }
.feature-image img{ width:100%; height:auto; object-fit:contain; }
.feature-content h3{ font-size:1.125rem; font-weight:700; margin:0 0 .5rem; color:#1c1c1c; }
.feature-content p{ font-size:1rem; color:#444; line-height:1.5; max-width:44ch; margin:0 auto; }

/* Tablet */
@media (max-width:1024px){
  .features-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}

/* Mobile slider (centered cards, still auto height) */
@media (max-width:900px){
  .features-grid{
    --card-w: clamp(280px, 88vw, 520px);
    --gutter: 16px;
    display:flex; gap:12px; overflow-x:auto;
    padding:12px max(var(--gutter), calc((100vw - var(--card-w))/2)) 18px;
    margin:0;
    scroll-snap-type:x mandatory;
    scroll-padding-inline:max(var(--gutter), calc((100vw - var(--card-w))/2));
    -webkit-overflow-scrolling:touch;
    transform:translateZ(0);
  }
  .features-grid::-webkit-scrollbar{ display:none; }
  .feature{
    flex:0 0 var(--card-w);
    scroll-snap-align:center;
    padding:1.6rem; border-radius:18px;
    box-shadow:0 10px 22px rgba(0,0,0,.08);
  }
  .feature-image{ width:56px; height:56px; margin-bottom:.9rem; }
}

/* Pagination dots */
.features-dots{ display:none; }
.features-dots .features-dot{
  --size:6px; --ring:2px; width:var(--size); height:var(--size);
  border-radius:999px; border:var(--ring) solid #cfd6e3; background:transparent;
  transform:scale(1); transition:transform .22s cubic-bezier(.22,.9,.24,1), background-color .22s, border-color .22s;
  padding:0; cursor:pointer; outline:none; touch-action:manipulation;
}
.features-dots .features-dot.active{ background:var(--yellow); border-color:var(--yellow); transform:scale(1.9); }
.features-dots .features-dot:focus-visible{ outline:2px solid #003d80; outline-offset:3px; }
@media (max-width:900px){
  .features-dots{
    display:flex !important; justify-content:center; align-items:center; gap:10px;
    width:100vw; margin-left:calc(50% - 50vw); margin-top:0; padding:0 0 10px;
    position:relative; z-index:2; background:var(--gray-bg);
  }
}

/* Spacing / stability (unchanged) */
@media (max-width:768px){
  .features-section, .how-it-works-section, .survey-section{ padding:2rem 1.5rem 1rem; }
}
@media (min-width:1025px){
  .features-section{ padding-top:4rem; padding-bottom:4rem; }
  .features-grid{ padding-top:1rem; }
}
.features-section, .survey-section{ padding-left:2rem !important; }
@media (max-width:768px){
  .features-section{ padding:1.5rem 1rem 0 !important; }
  .features-grid{ margin-bottom:1rem !important; }
}
.features-grid{ overscroll-behavior-x:contain; scroll-snap-stop:always; }
@media (max-width:900px){ .features-grid{ scroll-snap-type:x mandatory; } }
@media (min-width:1025px){ .parallax-mist{ background-attachment:fixed; } }
.features-section{ position:relative; background-color:var(--gray-bg); }


/* ==================================
   08) ABOUT & FOUNDERS
================================== */
.about-section { font-family: "Inter", sans-serif; background: var(--gray-bg); padding: 2rem 2rem 3rem 5.9rem; scroll-margin-top: 48px; }
.about-section h2 { font-size: 2.25rem; font-weight: 700; margin: 0 0 1rem; text-align: left; }
.about-top { margin: 0 0 1.25rem; }
.about-lede { font-size: clamp(1rem, 1.05rem + 0.2vw, 1.25rem); line-height: 1.6; color: #333; margin: 0; }
.lede-mobile { display: none; }
@media (max-width: 768px){ .about-section { padding: 2rem 1.5rem 2rem; } .lede-desktop { display: none; } .lede-mobile { display: block; } }

/* Founders grid */
.founders { display: grid; grid-template-columns: 1fr; gap: 2rem; width: 100%; margin: 1.25rem 0 3rem; padding: 0; }
@media (min-width: 769px){ .founders { grid-template-columns: repeat(2, minmax(0, 1fr)); transform: translateX(var(--founders-desktop-nudge)); } }

/* Card */
.founder-card { display: flex; flex-direction: column; background: #fff; border-radius: 22px; padding: 1.5rem; border: 1px solid #eef2f7; box-shadow: 0 10px 28px rgba(10,22,50,.06); transition: transform .2s ease; }
.founder-card:hover { transform: translateY(-4px); }
.image-wrapper { width: 100%; aspect-ratio: 16/9; overflow: hidden; border-radius: 20px; margin-bottom: .9rem; position: relative; }
.profile-img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.cormac-img { object-position: center 25%; }
.hannah-img { object-position: center 38%; }
.founder-name { font-size: clamp(1.35rem, 1.1rem + 0.7vw, 1.85rem); font-weight: 700; margin: .2rem 0 .1rem; color: #1c1c1c; letter-spacing: -.01em; }
.founder-role { font-size: clamp(.95rem, .9rem + 0.2vw, 1.05rem); color: #5b6470; margin: 0 0 .6rem; }
.quote-with-bar { position: relative; padding-left: .9rem; }
.quote-with-bar::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--yellow, #ffce3d); border-radius: 2px; }
.founder-quote { margin: 0; color: #2f3338; line-height: 1.55; font-size: 1.05rem; }
@media (max-width: 768px){ .founders { gap: 1rem; transform: none; margin-bottom: 2.5rem; } .founder-card { padding: 1.1rem; border-radius: 20px; } .image-wrapper, .profile-img { border-radius: 18px; } .founder-quote { font-size: 1rem; line-height: 1.5; } .founder-card:last-child { margin-bottom: 2rem; } }
.about-section, .founders, .founder-card { max-width: 100%; overflow-x: hidden; }

/* ---- Section 15 fixes merged here (About spacing) ---- */
@media (min-width: 1025px){
  .about-section { padding: 2rem 2rem 2rem 5.9rem; }
  .founders { margin-bottom: 2rem; }
}
@media (max-width: 768px){
  .about-section { padding: 1.5rem 1rem 1rem !important; }
}


/* ==================================
   09) ENGAGE (Join + Survey) & FORM BASE
================================== */
.engage-section { padding: 4rem 1.5rem; background: var(--gray-bg); }
.engage-container { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; max-width: 1280px; margin: 0 auto; }
.engage-box { flex: 1 1 480px; background: #ffffff; border-radius: 2rem; padding: 2.5rem 3rem; box-shadow: 0 8px 24px rgba(0,0,0,0.06); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.engage-box:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(0,0,0,0.08); z-index: 1; }
.join-box { border: 2px solid var(--yellow); }
.survey-box { border: 2px solid var(--blue); justify-content: flex-start; }

/* Headings */
.signup-heading { font-size: 2rem; font-weight: 750; margin-bottom: 0.75rem; text-align: left; }
.signup-sub { font-size: 1rem; color: #444; margin-bottom: 1.5rem; text-align: left; line-height: 1.6; }
.survey-box .signup-sub { margin-bottom: 1rem; }

/* Floating-form base */
.floating-form, .survey-form { display: flex; flex-direction: column; gap: 1.5rem; width: 100%; font-family: inherit; font-size: 1rem; }
.form-group { position: relative; width: 100%; }
.floating-form input, .floating-form textarea { width: 100%; padding: 1.25rem 1rem 0.75rem; font-size: 1rem; background: #f9fbfc; border: 1px solid #dce3ec; border-radius: 9999px; outline: none; color: #1f1f1f; transition: all 0.2s ease; font-family: inherit; }
.floating-form textarea { min-height: 80px; resize: vertical; border-radius: 24px; }
.floating-form label { position: absolute; left: 1.25rem; top: 1.1rem; font-size: 0.95rem; color: #888; pointer-events: none; transition: 0.2s ease all; }

/* ===== Floating form: labels disappear instead of floating ===== */
.floating-form .form-group { position: relative; }

/* keep the label sitting inside the field like a placeholder */
.floating-form .form-group label{
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-52%);
  font-size: 1rem;
  color: #888;
  pointer-events: none;
  background: transparent;
  padding: 0;
  transition: opacity .18s ease; /* only fade, no movement */
}

/* hide label when user focuses or field has any content (incl. autofill) */
.floating-form .form-group input:focus + label,
.floating-form .form-group input:not(:placeholder-shown) + label,
.floating-form .form-group textarea:focus + label,
.floating-form .form-group textarea:not(:placeholder-shown) + label{
  opacity: 0;
  visibility: hidden;
}

/* --- Footer launch form: use placeholders, no floating labels --- */
#launchForm .form-group label.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* soften vertical padding now that label isn't inside the field */
#launchForm input,
#launchForm textarea {
  padding: 1rem 1rem !important;
}

/* placeholder look (like the hero form) */
#launchForm input::placeholder,
#launchForm textarea::placeholder {
  color: #888;
  opacity: 1; /* ensure consistent across browsers */
}

/* kill any float/shrink rules that might still target labels in this form */
#launchForm input:focus + label,
#launchForm input:not(:placeholder-shown) + label,
#launchForm textarea:focus + label,
#launchForm textarea:not(:placeholder-shown) + label {
  all: unset !important; /* nothing happens to the label */
}


/* Safari/Chrome autofill safety */
.floating-form .form-group input:-webkit-autofill + label{
  opacity: 0;
  visibility: hidden;
}


@media (max-width: 768px){ .engage-container { flex-direction: column; } }
@media (max-width: 600px){ .engage-section { padding: 2rem 1rem; } .engage-container { gap: 1rem; } .engage-box { padding: 1.25rem 1rem !important; border-radius: 1.25rem; } .signup-heading { margin-bottom: .6rem; } .signup-sub { margin-bottom: 1rem; } }
@media (max-width: 380px){ .engage-box { padding: 1rem .75rem !important; } }

/* ---- Section 15 fixes merged here (Engage spacing) ---- */
@media (min-width: 1025px){
  .engage-section { padding: 3rem 1.5rem; }
}
@media (max-width: 768px){
  .engage-section { padding: 1.5rem 1rem !important; }
  .engage-container { gap: 1rem !important; }
}


/* ==================================
   10) SURVEY UX (questions, options, progress, buttons)
================================== */
.survey-form { max-width: 100%; margin-top: 0; font-family: "Inter", sans-serif; font-size: 18px; }
.question { display: none; flex-direction: column; gap: 16px; margin-bottom: 20px; opacity: 0; transform: translateY(10px); transition: opacity 0.3s ease, transform 0.3s ease; }
.question.active { display: flex; opacity: 1; transform: translateY(0); }
.question p { font-size: 18px; font-weight: 600; margin: 0 0 0.2rem; line-height: 1.6; }
.option { display: flex; align-items: center; gap: 10px; }
.option input[type="radio"], .option input[type="checkbox"] { appearance: none; width: 20px; height: 20px; border: 2px solid #ccc; border-radius: 50%; background-color: white; cursor: pointer; margin-right: 10px; transition: background-color 0.3s ease, border-color 0.3s ease; }
.option input[type="radio"]:checked, .option input[type="checkbox"]:checked { background-color: var(--yellow); border-color: var(--yellow); }
.option label:hover { font-weight: 600; background: #fffbe6; box-shadow: 0 0 0 4px #fffbe6; border-radius: 999px; padding: 6px 12px; transition: all 0.4s ease; }

/* Progress */
/* Survey / page progress (fixed at very top) */
.progress-container {
  position: fixed;
  top: env(safe-area-inset-top, 0);
  left: 0;
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  z-index: 20001;           /* above header z-index 100 */
  margin: 0;                /* <-- remove negative margin */
  padding: 0;
  pointer-events: none;
}

.progress-bar {
  height: 100%;
  width: 0%;
  transition: width 0.3s ease;
  background: linear-gradient(90deg, #ffce3d, #f8b600);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Progress bar visibility */
.progress-container{ opacity:0; pointer-events:none; transition:opacity .25s }
.progress-container.survey-active{ opacity:1; pointer-events:auto }

/* Buttons */
.button-group { display: flex; justify-content: space-between; margin-top: 20px; }
.back-btn, .next-btn, [type="submit"] { padding: 10px 20px; background: #082447; border: none; border-radius: 999px; cursor: pointer; font-weight: 600; color: white; transition: transform 0.2s ease, background-color 0.3s ease; }
.back-btn:hover, .next-btn:hover, [type="submit"]:hover { background-color: #001e3b; transform: scale(1.05); }
.back-btn.hidden { visibility: hidden; }
.form-trust-note { font-size: 0.85rem; color: #888; margin-top: 1rem; text-align: center; }
.survey-form textarea { width: 100%; padding: 1.25rem 1rem 0.75rem; font-size: 1rem; background: #f9fbfc; border: 1px solid #dce3ec; border-radius: 24px; outline: none; color: #1f1f1f; transition: all 0.2s ease; font-family: inherit; resize: vertical; min-height: 100px; }

/* ---- Section 15 fixes merged here (Survey) ---- */
/* Custom radios/checkboxes: visible keyboard focus ring */
.option input[type="radio"]:focus-visible,
.option input[type="checkbox"]:focus-visible{
  outline: 2px solid #003d80;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #eaf0ff;
}
/* Progress bar perf hint */
.progress-bar{ will-change: width; }


/* ==================================
   11) FAQ
================================== */
.faq-section { background-color: var(--gray-bg); padding: 6rem 1.5rem 3rem; }
.faq-section .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.faq-section h2 { font-family: "Inter", sans-serif; font-size: 2.25rem; font-weight: 700; margin-bottom: 2rem; text-align: left; }
@media (max-width: 768px){ .faq-section { padding: 4.5rem 1rem 1.5rem !important; } .faq-section .container { padding: 0 1rem !important; } }
.faq-container { background: #ffffff; max-width: 1150px; margin: 0 auto; border-radius: 16px; padding: 2rem; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.faq-item { border-top: 1px solid #e0e0e0; overflow: hidden; }
.faq-item:last-of-type { border-bottom: 1px solid #e0e0e0; }
.faq-question { background: none; border: none; width: 100%; padding: 1.5rem 0; font-size: 1.125rem; font-weight: 550; color: #1c1c1c; text-align: left; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: 0.2s ease; }
.faq-question:hover { background-color: #f6f6f667; }
.faq-question::after { content: ""; display: inline-block; width: 1.5rem; height: 1.5rem; background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%231c1c1c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><polyline points="6 9 12 15 18 9"/></svg>'); background-size: contain; background-repeat: no-repeat; transition: transform 0.4s ease; transform: rotate(0deg); }
.faq-item.active .faq-question::after { transform: rotate(-180deg); }
.faq-answer { max-height: 0; overflow: hidden; padding: 0; transform-origin: top; transition: max-height 0.4s ease, padding 0.4s ease; font-size: 1rem; line-height: 1.6; color: #444; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0.5rem 0 0.8rem; }

/* ---- Section 15 fixes merged here (FAQ spacing) ---- */
@media (min-width: 1025px){
  .faq-section { padding: 4rem 1.5rem 2.5rem; }
  .faq-section h2 { margin-bottom: 1.25rem; }
}
@media (max-width: 768px){
  .faq-section { padding: 4.5rem 1rem 1.5rem !important; }
  .faq-section h2 { margin-bottom: 1rem !important; }
}


/* ==================================
   12) FOOTER
================================== */
.site-footer { background-color: #f4f4f4; border-top: 1px solid #e0e0e0; font-family: var(--font-main); padding: 3rem 1rem 1.5rem; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; align-items: start; }
.footer-column { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-column h4 { font-size: 1rem; font-weight: 600; color: var(--text-color); margin-bottom: 0.5rem; }
.footer-column a { font-size: 0.9rem; color: #555; text-decoration: none; line-height: 1.6; transition: color 0.3s ease; }
.footer-column a:hover { color: var(--blue); }
.footer-logo { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-color); }
.footer-tagline { font-size: 0.95rem; color: #555; line-height: 1.4; margin: 0; }
.footer-bottom { text-align: center; font-size: 0.75rem; color: #888; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #e0e0e0; }
@media (max-width: 768px){ .footer-container { grid-template-columns: 1fr; gap: 2rem; } .footer-bottom { text-align: left; padding-left: 1rem; } }

/* ---- Section 15 fixes merged here (Footer spacing) ---- */
@media (min-width: 1025px){
  .site-footer { padding-top: 2.5rem; }
}
@media (max-width: 768px){
  .site-footer { padding-top: 1.5rem !important; }
}


/* ==================================
   13) PRIVACY POPUP
================================== */
.privacy-popup-wrapper { display: none; position: fixed; inset: 0; z-index: 9998; background: rgba(0, 0, 0, 0.2); justify-content: center; align-items: center; }
.privacy-popup { background: #fff; color: #333; padding: 1.5rem 2rem; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); font-size: 0.9rem; line-height: 1.5; max-width: 480px; width: fit-content; max-height: 90vh; overflow-y: auto; position: relative; z-index: 9999; display: block; }
.privacy-popup h3 { font-size: 1.05rem; margin-bottom: 0.75rem; font-weight: 700; }
.privacy-popup .close-btn { position: absolute; top: 10px; right: 14px; font-size: 1.25rem; cursor: pointer; color: #777; }
.privacy-link { cursor: pointer; text-decoration: underline; color: #444; transition: color 0.2s ease; }
.privacy-link:hover { color: #000; }


/* ==================================
   14) SHARE BLOCK
================================== */
.share-block { text-align:center; margin: 2.5rem auto 0; max-width: 680px; }
.share-heading { font-size: 1.25rem; margin-bottom: .75rem; }
.share-primary { margin-bottom: .75rem; }
.share-links { display: none; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.share-links.open { display: flex; }
.share-link { display: inline-block; padding: .55rem .9rem; border-radius: 999px; border: 1px solid #d7dee8; background: #fff; font-weight: 600; text-decoration: none; color: #082447; }
.share-link:hover { background:#f5f8fd; }
