/* ==========================================================================
   numeroenergia.it — design system
   Palette: indigo #41436A · prugna #984063 · rosa #F64668 · pesca #FE9677
            su ardesia #2D384E
   ========================================================================== */

:root {
  /* Brand — indigo profondo */
  --brand: #41436A;
  --brand-dark: #333654;
  /* Usato solo come testo sui fondi accent: piu' scuro = piu' contrasto */
  --brand-deep: #14172A;
  --brand-tint: #edeef5;
  --brand-tint-2: #d6d9e6;

  /* Accent — rosa per i fondi chiari, pesca per i fondi scuri */
  --accent: #F64668;
  --accent-dark: #de2e52;
  --accent-soft: #FE9677;
  --accent-tint: #ffe7ec;
  /* Prugna: unico tono dell'accento leggibile come testo su fondo chiaro */
  --accent-ink: #984063;

  --brand-gradient: linear-gradient(135deg, #41436A 0%, #984063 100%);
  --accent-gradient: linear-gradient(135deg, #F64668 0%, #FE9677 100%);

  /* Neutrals */
  --ink: #171a2b;
  --ink-soft: #282c45;
  --text: #3e4460;
  --text-light: #4e5470;
  --text-muted: #666d8c;
  --bg: #ffffff;
  --bg-alt: #f5f6fa;
  --bg-deep: #2D384E;
  --border: #dcdfea;
  --border-light: #e8eaf2;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(23, 26, 43, .06);
  --shadow-sm: 0 2px 8px rgba(65, 67, 106, .08);
  --shadow-md: 0 8px 24px rgba(65, 67, 106, .12);
  --shadow-lg: 0 18px 48px rgba(65, 67, 106, .16);
  --ring: 0 0 0 3px rgba(246, 70, 104, .45);

  /* Shape & motion */
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius: 18px;
  --radius-lg: 26px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --transition: .25s var(--ease);

  /* Layout */
  --max-w: 1180px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --header-h: 76px;
  --section-y: clamp(3.5rem, 7vw, 6rem);
  --safe-bottom: env(safe-area-inset-bottom, 0px);

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }
ul, ol { list-style: none; }

a {
  color: var(--brand);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--brand-dark); }

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}

::selection { background: var(--brand); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-light);
  background: rgba(255, 255, 255, .94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
}

.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img {
  height: 34px;
  width: auto;
  max-width: 240px;
}

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav-links a {
  position: relative;
  font-size: .935rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 6px 2px;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--brand); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.is-active { color: var(--brand); }
.nav-links a.is-active::after { width: 100%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--brand);
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .01em;
  padding: 11px 22px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(65, 67, 106, .25);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.header-cta:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(65, 67, 106, .32);
}
.header-cta svg { width: 17px; height: 17px; flex-shrink: 0; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle span + span { margin-top: 6px; }
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── MOBILE NAV ─────────────────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #fff;
  z-index: 999;
  padding: 1.5rem var(--gutter) calc(2rem + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  gap: .25rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 16px 4px;
  border-bottom: 1px solid var(--border-light);
  min-height: 48px;
  display: flex;
  align-items: center;
}
.mobile-nav a:hover { color: var(--brand); }
.mobile-nav .header-cta {
  margin-top: 1.25rem;
  justify-content: center;
  padding: 15px 22px;
  font-size: 1rem;
  border-bottom: none;
  /* .mobile-nav a imporrebbe --ink-soft, illeggibile sul fondo brand */
  color: #fff;
}

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem)) 0 var(--section-y);
  background:
    radial-gradient(1000px 460px at 88% -8%, rgba(246, 70, 104, .14), transparent 62%),
    radial-gradient(900px 500px at 6% 0%, rgba(65, 67, 106, .1), transparent 60%),
    linear-gradient(180deg, var(--brand-tint) 0%, #fff 68%);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -140px; top: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 150, 119, .26) 0%, transparent 68%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid var(--brand-tint-2);
  color: var(--brand);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-xs);
}
.eyebrow svg { width: 15px; height: 15px; color: var(--accent); }

.hero h1 {
  font-size: clamp(2rem, 5.2vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.15rem;
}
.hero h1 span { color: var(--brand); position: relative; white-space: nowrap; }
.hero h1 span::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: .06em;
  height: .28em;
  background: rgba(246, 70, 104, .32);
  border-radius: 4px;
  z-index: -1;
}
.hero p {
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  color: var(--text-light);
  line-height: 1.75;
  max-width: 66ch;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .875rem; }
.hero-micro {
  margin-top: 1.25rem;
  font-size: .875rem;
  color: var(--text-muted);
  max-width: 60ch;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--brand-tint-2);
  position: relative;
  z-index: 1;
}
.hero-stat strong {
  display: block;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.2;
}
.hero-stat span { font-size: .86rem; color: var(--text-muted); font-weight: 500; }

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: inherit;
  font-size: .975rem;
  font-weight: 700;
  padding: 15px 30px;
  min-height: 52px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 22px rgba(65, 67, 106, .28);
}
.btn-primary:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(65, 67, 106, .34);
}
.btn-accent {
  background: var(--accent-gradient);
  color: var(--brand-deep);
  box-shadow: 0 8px 22px rgba(246, 70, 104, .34);
}
.btn-accent:hover {
  color: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(246, 70, 104, .44);
}
.btn-outline {
  background: #fff;
  color: var(--brand);
  border-color: var(--brand-tint-2);
  box-shadow: var(--shadow-xs);
}
.btn-outline:hover {
  color: var(--brand-dark);
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ── SECTIONS ───────────────────────────────────────────────────────────── */
section { padding: var(--section-y) 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  max-width: 720px;
  margin: 0 auto clamp(2.25rem, 4vw, 3.25rem);
  text-align: center;
}
.section-header .kicker {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: .75rem;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3.6vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: .875rem;
}
.section-header p {
  font-size: clamp(.975rem, 1.4vw, 1.06rem);
  color: var(--text-light);
  line-height: 1.75;
}
.section-header.align-left { text-align: left; margin-inline: 0; }

/* ── TRANSPARENCY NOTICE ────────────────────────────────────────────────── */
.notice {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.notice h3 {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .75rem;
}
.notice h3 svg { width: 21px; height: 21px; color: var(--brand); flex-shrink: 0; }
.notice p { font-size: .96rem; color: var(--text-light); line-height: 1.78; }
.notice-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .625rem;
  margin-top: 1.125rem;
}
.tag {
  background: var(--brand-tint);
  color: var(--brand-dark);
  font-size: .83rem;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 999px;
}
.tag-accent { background: var(--accent-tint); color: var(--accent-ink); }
.notice-tags a { font-size: .89rem; font-weight: 600; text-decoration: underline; }

/* ── CARD GRIDS ─────────────────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.6vw, 2rem);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--brand-gradient);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-tint-2);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-xs);
  background: var(--brand-tint);
  margin-bottom: 1.125rem;
  transition: background var(--transition);
}
.card-icon svg { width: 27px; height: 27px; color: var(--brand); }
.card:hover .card-icon { background: var(--accent-tint); }
.card:hover .card-icon svg { color: var(--accent-ink); }

.card h3 {
  font-size: 1.13rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: .625rem;
}
.card p { font-size: .945rem; color: var(--text-light); line-height: 1.72; }
.card .card-note {
  display: block;
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--text-muted);
}
.card-centered { text-align: center; }
.card-centered .card-icon { margin-inline: auto; }

/* ── STEPS ──────────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.4vw, 1.875rem);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-number {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.125rem;
  box-shadow: 0 6px 16px rgba(65, 67, 106, .26);
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .5rem;
}
.step p { font-size: .91rem; color: var(--text-light); line-height: 1.7; }

/* ── PROSE BLOCK ────────────────────────────────────────────────────────── */
.prose {
  max-width: 800px;
  margin-inline: auto;
}
.prose p {
  font-size: clamp(1rem, 1.4vw, 1.06rem);
  color: var(--text);
  line-height: 1.85;
}
.prose p + p { margin-top: 1.125rem; }
.prose-centered { text-align: center; }

/* ── COMPARE ────────────────────────────────────────────────────────────── */
.compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.75rem);
  max-width: 940px;
  margin-inline: auto;
}
.compare-col {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  overflow: hidden;
}
.compare-col::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--brand-gradient);
}
.compare-col.is-accent::before { background: var(--accent-gradient); }
.compare-col h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .75rem;
}
.compare-col p { font-size: .95rem; color: var(--text-light); line-height: 1.75; }
.check-list { margin-top: 1.125rem; display: grid; gap: .625rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .91rem;
  color: var(--text);
}
.check-list li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: .2rem;
  border-radius: 50%;
  background: var(--accent-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23984063' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.conclusion {
  max-width: 760px;
  margin: clamp(1.75rem, 3vw, 2.5rem) auto 0;
  text-align: center;
  font-size: 1rem;
  color: var(--text);
  background: var(--brand-tint);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
}

/* ── PILLS / DOC ITEMS ──────────────────────────────────────────────────── */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .875rem;
  max-width: 940px;
  margin: 0 auto 1.75rem;
}
.doc-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  padding: 15px 17px;
  font-size: .91rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.doc-item:hover { border-color: var(--brand-tint-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.doc-item svg { width: 20px; height: 20px; color: var(--accent-ink); flex-shrink: 0; }

.pills { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.pill {
  background: #fff;
  border: 1px solid var(--brand-tint-2);
  color: var(--brand-dark);
  font-size: .88rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  transition: all var(--transition);
}
.pill:hover { background: var(--brand-tint); transform: translateY(-2px); }

.note-small {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
  font-size: .93rem;
  color: var(--text-muted);
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: .75rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.active { border-color: var(--brand-tint-2); box-shadow: var(--shadow-sm); }
.faq-question {
  position: relative;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  line-height: 1.5;
  padding: 19px 58px 19px 20px;
  min-height: 60px;
  cursor: pointer;
}
.faq-question::after {
  content: '';
  position: absolute;
  right: 18px; top: 50%;
  width: 28px; height: 28px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--brand-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2341436A' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / 16px no-repeat;
  transition: transform var(--transition), background-color var(--transition);
}
.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
  background-color: var(--accent-tint);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s var(--ease);
}
.faq-answer p {
  padding: 0 20px 20px;
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.78;
}

/* ── AUTHORITY LINKS ────────────────────────────────────────────────────── */
.link-row { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2rem; }
.ext-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: .91rem;
  font-weight: 700;
  color: var(--ink-soft);
  min-height: 46px;
  transition: all var(--transition);
}
.ext-link:hover {
  color: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.ext-link svg { width: 17px; height: 17px; }

/* ── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--brand-gradient);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 82% 12%, rgba(254, 150, 119, .30), transparent 62%),
    radial-gradient(520px 280px at 12% 92%, rgba(255, 255, 255, .14), transparent 60%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.015em;
  margin-bottom: .875rem;
}
.cta-banner p {
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: clamp(.975rem, 1.4vw, 1.08rem);
  color: rgba(255, 255, 255, .94);
  line-height: 1.7;
}
.cta-banner .btn-accent { box-shadow: 0 10px 30px rgba(0, 0, 0, .22); }
.cta-note { margin-top: 1.25rem; font-size: .86rem; color: rgba(255, 255, 255, .84); }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, .8);
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 1.75rem;
  font-size: .89rem;
  line-height: 1.72;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.footer-brand img {
  height: 32px;
  width: auto;
  max-width: 230px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-brand p { max-width: 42ch; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.125rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-soft);
}
.footer-phone:hover { color: #fff; }
.footer-phone svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: .89rem;
  padding: 6px 0;
}
.footer-col a:hover { color: var(--accent-soft); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 1.5rem;
}
.footer-disclaimer {
  font-size: .81rem;
  color: rgba(255, 255, 255, .74);
  line-height: 1.75;
}
.footer-disclaimer + .footer-disclaimer { margin-top: .75rem; }
.footer-disclaimer a { color: rgba(255, 255, 255, .88); text-decoration: underline; }
.footer-disclaimer a:hover { color: var(--accent-soft); }
.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .82rem;
  color: rgba(255, 255, 255, .76);
}
.footer-copy a { color: rgba(255, 255, 255, .82); }
.footer-copy a:hover { color: var(--accent-soft); }

/* ── STICKY MOBILE CTA ──────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(23, 26, 43, .14);
  z-index: 8888;
  padding: 12px var(--gutter) calc(12px + var(--safe-bottom));
  transform: translateY(120%);
  transition: transform .35s var(--ease);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-cta-text { display: flex; align-items: center; gap: .75rem; min-width: 0; }
.sticky-cta-text svg {
  width: 38px; height: 38px;
  flex-shrink: 0;
  color: var(--brand);
}
.sticky-cta-text h4 {
  font-size: .93rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}
.sticky-cta-text p { font-size: .79rem; color: var(--text-muted); }
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent-gradient);
  color: var(--brand-deep);
  font-size: .9rem;
  font-weight: 800;
  padding: 13px 22px;
  min-height: 48px;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(246, 70, 104, .36);
  transition: transform var(--transition), box-shadow var(--transition);
}
.sticky-cta-btn:hover { color: var(--brand-deep); transform: translateY(-2px); }
.sticky-cta-btn svg { width: 16px; height: 16px; }
.sticky-cta-close {
  position: absolute;
  top: 6px; right: 8px;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  background: none;
  border: none;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}
.sticky-cta-close:hover { color: var(--ink); background: var(--bg-alt); }

/* ── COOKIE BANNER ──────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  background: var(--bg-deep);
  color: rgba(255, 255, 255, .92);
  padding: 1.125rem var(--gutter) calc(1.125rem + var(--safe-bottom));
  z-index: 9999;
  font-size: .89rem;
  transform: translateY(120%);
  transition: transform .4s var(--ease);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.125rem;
}
.cookie-inner p { flex: 1 1 300px; line-height: 1.65; }
.cookie-inner a { color: var(--accent-soft); text-decoration: underline; }
.cookie-btns { display: flex; gap: .625rem; flex-shrink: 0; }
.cookie-btn {
  font-family: inherit;
  font-size: .875rem;
  font-weight: 700;
  padding: 11px 24px;
  min-height: 44px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.cookie-accept { background: var(--accent); color: var(--brand-deep); }
.cookie-accept:hover { background: var(--accent-dark); transform: translateY(-1px); }
.cookie-reject { background: rgba(255, 255, 255, .12); color: #fff; }
.cookie-reject:hover { background: rgba(255, 255, 255, .2); }

/* ── LEGAL / CONTENT PAGES ──────────────────────────────────────────────── */
.legal-page { padding: calc(var(--header-h) + 3rem) 0 var(--section-y); }
.legal-page .container { max-width: 820px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); font-weight: 500; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span[aria-current] { color: var(--ink-soft); font-weight: 600; }

.legal-page h1 {
  font-size: clamp(1.6rem, 3.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 1rem;
}
.legal-page .lede {
  font-size: 1.06rem;
  color: var(--text-light);
  line-height: 1.78;
  margin-bottom: 2rem;
}
.legal-page h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 800;
  color: var(--ink);
  margin: 2.25rem 0 .75rem;
  line-height: 1.35;
}
.legal-page h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink-soft);
  margin: 1.5rem 0 .5rem;
}
.legal-page p,
.legal-page li {
  font-size: .965rem;
  color: var(--text);
  line-height: 1.82;
}
.legal-page p { margin-bottom: .875rem; }
.legal-page ul,
.legal-page ol { padding-left: 1.35rem; margin-bottom: 1.125rem; }
.legal-page ul { list-style: disc; }
.legal-page ol { list-style: decimal; }
.legal-page li { margin-bottom: .5rem; }
.legal-page em { color: var(--text-muted); }

.inline-cta {
  background: var(--brand-tint);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  margin: 2.5rem 0;
}
.inline-cta h3 { font-size: 1.15rem; font-weight: 800; color: var(--ink); margin-bottom: .625rem; }
.inline-cta p { color: var(--text-light); margin-bottom: 1.5rem; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .doc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav-links, .header-cta-desktop { display: none; }
  .menu-toggle { display: grid; place-items: center; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .hero { padding-top: calc(var(--header-h) + 2rem); }
  .hero h1 span { white-space: normal; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats { gap: 1.25rem 2rem; margin-top: 2rem; }
  .hero-stat { flex: 1 1 40%; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-copy { flex-direction: column; text-align: center; }

  .cookie-banner {
    padding: .7rem var(--gutter) calc(.7rem + var(--safe-bottom));
    font-size: .8rem;
  }
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: .625rem;
  }
  .cookie-inner p {
    flex: 0 1 auto;
    line-height: 1.45;
    margin: 0;
  }
  .cookie-btns { justify-content: center; gap: .5rem; }
  .cookie-btn {
    flex: 1;
    min-height: 38px;
    padding: 8px 14px;
    font-size: .8125rem;
  }

  .sticky-cta-text p { display: none; }
}

@media (max-width: 560px) {
  .logo img { height: 28px; max-width: 190px; }
  .doc-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: .95rem; padding: 17px 52px 17px 16px; }
  .faq-answer p { padding: 0 16px 18px; }
  .sticky-cta-text svg { width: 32px; height: 32px; }
  .sticky-cta-text h4 { font-size: .86rem; }
  .sticky-cta-btn { padding: 12px 18px; font-size: .85rem; }
}

/* Sticky CTA only on small screens */
@media (min-width: 1025px) {
  .sticky-cta { display: none; }
}
