/* =========================================================
   SITI DA INCUBO — Landing Page
   Material Design 3 inspired, brand: Max Valle
   ========================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--on-surface);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- DESIGN TOKENS (Material 3 inspired) ---------- */
:root {
  /* Brand */
  --primary: #1B4F8A;
  --primary-hover: #163E6E;
  --primary-container: #E3EDF8;
  --on-primary: #FFFFFF;
  --on-primary-container: #0B2A4D;

  --accent: #E63946;        /* red — incubo / urgency */
  --accent-hover: #C82A37;
  --accent-container: #FDE2E5;

  --success: #10B981;
  --success-container: #D1FAE5;
  --warning: #F4A261;
  --warning-container: #FDEEDC;
  --danger: #E63946;

  /* Surfaces */
  --surface: #FAF7F2;          /* warm ivory */
  --surface-2: #FFFFFF;
  --surface-3: #F1ECE3;
  --surface-dark: #0B1A2E;     /* deep navy */
  --surface-dark-2: #102845;

  --on-surface: #0F172A;
  --on-surface-2: #475569;
  --on-surface-3: #94A3B8;
  --on-dark: #F8FAFC;
  --on-dark-2: #CBD5E1;

  --outline: #E2E8F0;
  --outline-dark: rgba(255,255,255,0.12);

  /* Shadows (Material elevation) */
  --shadow-1: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-2: 0 4px 8px -2px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  --shadow-3: 0 12px 24px -8px rgba(15, 23, 42, 0.12), 0 6px 12px -6px rgba(15, 23, 42, 0.08);
  --shadow-4: 0 24px 48px -12px rgba(15, 23, 42, 0.18), 0 12px 24px -10px rgba(15, 23, 42, 0.10);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-full: 999px;

  /* Spacing */
  --gutter: clamp(1.25rem, 3vw, 2rem);
  --section-py: clamp(4rem, 9vw, 7rem);

  /* Typography */
  --font-display: 'Bricolage Grotesque', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--on-surface);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
p { color: var(--on-surface-2); }

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--gutter);
  margin: 0 auto;
}
.container-narrow { max-width: 820px; }

.section { padding: var(--section-py) 0; position: relative; }

/* ---------- COMMON ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary-container);
  color: var(--on-primary-container);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  margin-bottom: 1.2rem;
}
.eyebrow .material-symbols-rounded { font-size: 16px; }
.eyebrow-alert { background: var(--accent-container); color: #8E1923; }
.eyebrow-gift { background: var(--success-container); color: #064E3B; }
.eyebrow-light { background: rgba(255,255,255,0.12); color: #F8FAFC; }

.word-highlight {
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}

.section-head { margin-bottom: 3.5rem; }
.section-head.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-title { margin-bottom: 1rem; }
.section-lead { font-size: 1.125rem; color: var(--on-surface-2); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--r-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn .material-symbols-rounded { font-size: 20px; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--shadow-2); }
.btn-primary:hover { background: var(--primary-hover); box-shadow: var(--shadow-3); transform: translateY(-2px); }

.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 24px -8px rgba(230, 57, 70, 0.5); }
.btn-accent:hover { background: var(--accent-hover); box-shadow: 0 14px 32px -10px rgba(230, 57, 70, 0.6); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--on-surface);
  border-color: var(--outline);
}
.btn-ghost:hover { background: var(--surface-3); }

.btn-sm { padding: 10px 18px; font-size: 0.875rem; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-xl { padding: 20px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.2s ease;
}
.btn-text:hover { gap: 10px; }
.btn-text .material-symbols-rounded { font-size: 18px; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--outline);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: 32px; width: auto; }
.brand-divider { width: 1px; height: 22px; background: var(--outline); }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--on-surface);
  letter-spacing: -0.02em;
}
.brand-name em { font-style: normal; color: var(--accent); }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--on-surface-2);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--primary); }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.hero-bg-decoration {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(27, 79, 138, 0.08), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(230, 57, 70, 0.07), transparent 55%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 960px) { .hero-inner { grid-template-columns: 1fr; gap: 3rem; } }

.hero-title { margin-bottom: 1.25rem; }
.hero-title-sub {
  display: block;
  font-size: 0.62em;
  font-weight: 700;
  color: var(--on-surface-2);
  margin-top: 0.6rem;
  letter-spacing: -0.01em;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--on-surface-2);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 2rem;
}
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--outline);
}
.trust-bar li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--on-surface-2);
  font-weight: 500;
}
.trust-bar .material-symbols-rounded { font-size: 18px; color: var(--success); }

/* Hero visual — report card mock */
.hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
.report-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-4);
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  transform: rotate(-1.2deg) translateY(-4px);
  border: 1px solid var(--outline);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: rotate(-1.2deg) translateY(-4px); }
  50% { transform: rotate(-1.2deg) translateY(6px); }
}
.report-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--surface-3);
  border-bottom: 1px solid var(--outline);
}
.dots { display: inline-flex; gap: 6px; }
.dots span { width: 11px; height: 11px; border-radius: 50%; background: var(--outline); }
.dots span:nth-child(1) { background: #FF5F57; }
.dots span:nth-child(2) { background: #FEBC2E; }
.dots span:nth-child(3) { background: #28C840; }
.report-url { font-size: 0.78rem; color: var(--on-surface-3); font-family: 'Inter', monospace; }

.report-card-body { padding: 1.5rem; }
.score-block {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--outline);
  margin-bottom: 1.25rem;
}
.score-ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  position: relative;
}
.score-ring-danger { background: conic-gradient(var(--danger) 42%, #FECDD3 0); }
.score-ring::after {
  content: '';
  position: absolute;
  inset: 6px;
  background: #fff;
  border-radius: 50%;
}
.score-ring span { position: relative; z-index: 1; color: var(--danger); }
.score-label { font-size: 0.85rem; color: var(--on-surface-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.score-status { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin-top: 4px; }
.status-danger { color: var(--danger); }

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 36px;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  font-size: 0.85rem;
}
.metric-name { color: var(--on-surface-2); font-weight: 500; }
.metric-value { text-align: right; font-weight: 700; color: var(--on-surface); }
.bar { display: block; height: 8px; background: var(--surface-3); border-radius: var(--r-full); overflow: hidden; }
.bar-fill { display: block; height: 100%; border-radius: var(--r-full); transition: width 1.2s ease; }
.bar-ok { background: var(--success); }
.bar-warn { background: var(--warning); }
.bar-danger { background: var(--danger); }

.report-card-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(230, 57, 70, 0.08);
  color: var(--danger);
  font-weight: 600;
  font-size: 0.9rem;
  border-top: 1px solid var(--outline);
}
.report-card-foot .material-symbols-rounded { font-size: 18px; }

/* ---------- URGENCY ---------- */
.section-urgency { background: var(--surface-2); }
.urgency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.urgency-card {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.urgency-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
  border-color: transparent;
}
.urgency-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.urgency-icon .material-symbols-rounded { font-size: 28px; color: #fff; }
.urgency-icon-1 { background: linear-gradient(135deg, #E63946, #B91C2C); }
.urgency-icon-2 { background: linear-gradient(135deg, #1B4F8A, #0F2F56); }
.urgency-icon-3 { background: linear-gradient(135deg, #F4A261, #D97706); }
.urgency-icon-4 { background: linear-gradient(135deg, #0F172A, #334155); }
.urgency-card h3 { margin-bottom: 0.5rem; }

.compare-visual {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: stretch;
  gap: 1rem;
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 2rem;
  border: 1px solid var(--outline);
}
@media (max-width: 720px) {
  .compare-visual { grid-template-columns: 1fr; }
  .compare-arrow { transform: rotate(90deg); margin: 0 auto; }
}
.compare-col { padding: 1.25rem; border-radius: var(--r-lg); background: var(--surface-2); }
.compare-old { border: 1px solid #FECDD3; }
.compare-new { border: 1px solid #A7F3D0; background: linear-gradient(135deg, #fff, #ECFDF5); }
.compare-col header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--on-surface);
}
.compare-old header { color: #B91C2C; }
.compare-new header { color: #047857; }
.compare-col li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--on-surface-2);
}
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-ok { background: var(--success); }
.dot-warn { background: var(--warning); }
.dot-danger { background: var(--danger); }
.compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.compare-arrow .material-symbols-rounded { font-size: 40px; }

/* ---------- ANALISI ---------- */
.section-analysis { background: var(--surface); }
.analysis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 760px) { .analysis-grid { grid-template-columns: 1fr; } }

.analysis-card {
  background: var(--surface-2);
  border-radius: var(--r-xl);
  padding: 2rem;
  border: 1px solid var(--outline);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.analysis-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.analysis-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-container);
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.analysis-icon .material-symbols-rounded { font-size: 32px; }
.analysis-icon-2 { background: var(--accent-container); color: var(--accent); }
.analysis-icon-3 { background: var(--success-container); color: #047857; }
.analysis-icon-4 { background: var(--warning-container); color: #B45309; }
.analysis-card h3 { margin-bottom: 0.5rem; }
.analysis-card p { margin-bottom: 1.25rem; }
.analysis-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 1rem;
  border-top: 1px dashed var(--outline);
}
.preview-tag {
  padding: 5px 10px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tag-ok { background: var(--success-container); color: #047857; }
.tag-warn { background: var(--warning-container); color: #B45309; }
.tag-danger { background: var(--accent-container); color: #B91C2C; }

/* ---------- GIFTS ---------- */
.section-gifts { background: var(--surface-2); }
.gifts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 860px) { .gifts-grid { grid-template-columns: 1fr; } }

.gift-card {
  background: var(--surface);
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--outline);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.gift-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-4); }

.gift-cover {
  position: relative;
  background: linear-gradient(135deg, #1B4F8A 0%, #0B1A2E 100%);
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.gift-cover::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.gift-cover img {
  max-height: 320px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 12px 24px -8px rgba(0,0,0,0.3);
  transform: rotate(-3deg) translateY(0);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}
.gift-card:hover .gift-cover img { transform: rotate(-3deg) translateY(-6px) scale(1.02); }
.gift-cover-claude { background: linear-gradient(135deg, #5B21B6 0%, #0F172A 100%); }
.gift-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--success);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px -4px rgba(16, 185, 129, 0.6);
  z-index: 2;
}

.gift-body { padding: 1.75rem 1.75rem 2rem; flex: 1; display: flex; flex-direction: column; }
.gift-body h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.gift-sub { font-style: italic; color: var(--on-surface-2); margin-bottom: 1.25rem; }
.gift-points { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; }
.gift-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--on-surface);
}
.gift-points .material-symbols-rounded {
  font-size: 18px;
  color: var(--success);
  background: var(--success-container);
  border-radius: 50%;
  padding: 2px;
  margin-top: 2px;
  flex-shrink: 0;
}
.gift-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--surface-3);
  border-radius: var(--r-md);
  font-size: 0.85rem;
  color: var(--on-surface-2);
  margin-top: auto;
  font-weight: 500;
}
.gift-meta .material-symbols-rounded { color: var(--accent); font-size: 20px; }

.gifts-cta { text-align: center; }

/* ---------- AUTHOR ---------- */
.section-author { background: var(--surface); }
.author-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) {
  .author-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .author-photo { max-width: 320px; margin: 0 auto; }
}
.author-photo { position: relative; }
.author-photo-frame {
  position: relative;
  aspect-ratio: 1 / 1.1;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, #FFF7E6 0%, #F4D4A8 45%, #E8B17A 100%);
  box-shadow: var(--shadow-4);
}
.author-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.author-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  gap: 8px;
}
.author-photo-placeholder .material-symbols-rounded { font-size: 80px; }
.placeholder-label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; }
.author-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--outline);
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: var(--shadow-2);
}
.author-badge .material-symbols-rounded { color: var(--primary); font-size: 18px; }

.author-tagline { font-size: 1.15rem; color: var(--on-surface-2); margin: 0.8rem 0 2rem; }
.author-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--surface-2);
  border-radius: var(--r-xl);
  border: 1px solid var(--outline);
}
@media (max-width: 540px) { .author-stats { grid-template-columns: 1fr; gap: 1.25rem; text-align: center; } }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num small { font-size: 0.55em; font-weight: 700; color: var(--accent); margin-left: 2px; }
.stat-label { font-size: 0.82rem; color: var(--on-surface-2); line-height: 1.4; }

.author-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 540px) { .author-creds { grid-template-columns: 1fr; } }
.author-creds li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--outline);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 500;
}
.author-creds .material-symbols-rounded { color: var(--primary); font-size: 20px; }

/* ---------- COME FUNZIONA ---------- */
.section-how { background: var(--surface-2); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  align-items: stretch;
  gap: 0;
}
@media (max-width: 880px) {
  .how-grid { grid-template-columns: 1fr; gap: 1rem; }
  .how-connector { display: none; }
}
.how-card {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.how-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.how-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--primary-container);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.how-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.how-icon .material-symbols-rounded { font-size: 26px; }
.how-card h3 { margin-bottom: 0.5rem; }
.how-connector {
  position: relative;
  align-self: center;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--outline) 0 6px, transparent 6px 12px);
}

/* ---------- FORM (light surface) ---------- */
.section-form {
  background: var(--surface-2);
  color: var(--on-surface);
  position: relative;
  overflow: hidden;
}
.section-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(27, 79, 138, 0.06), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(230, 57, 70, 0.05), transparent 50%);
  pointer-events: none;
}
.form-container { position: relative; max-width: 760px; }
.mv-widget-wrap {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--r-2xl);
  padding: clamp(1rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-3);
}
.mv-widget-wrap [data-mvform] { min-height: 200px; }
.form-head { text-align: center; margin-bottom: 2.5rem; }
.form-head .eyebrow-light { background: var(--primary-container); color: var(--on-primary-container); }
.form-title {
  color: var(--on-surface);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.form-lead {
  color: var(--on-surface-2);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto;
}

.lead-form {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--r-2xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-3);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--on-surface);
}
.req { color: var(--accent); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--outline);
  background: #fff;
  color: var(--on-surface);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field input::placeholder { color: var(--on-surface-3); }
.field input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27, 79, 138, 0.15);
}
.field.has-error input { border-color: var(--accent); }
.field.has-error input:focus { box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.18); }

.input-prefix {
  display: flex;
  align-items: stretch;
  border-radius: var(--r-md);
  background: #fff;
  border: 1.5px solid var(--outline);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  overflow: hidden;
}
.input-prefix:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27, 79, 138, 0.15);
}
.input-prefix .prefix {
  padding: 14px 14px 14px 16px;
  background: var(--surface-3);
  color: var(--on-surface-2);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--outline);
}
.input-prefix input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 16px;
  color: var(--on-surface);
  font-size: 1rem;
}
.input-prefix input:focus { outline: none; box-shadow: none; }
.field.has-error .input-prefix { border-color: var(--accent); }

.field-error, .field-warn {
  font-size: 0.8rem;
  margin-top: 6px;
  color: var(--accent);
  min-height: 1rem;
  font-weight: 500;
}
.field-warn { color: #B45309; }

.checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 1.5rem; }
.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--on-surface-2);
  line-height: 1.5;
}
.check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--outline);
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-top: 2px;
}
.check-mark::after {
  content: '';
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
}
.check input:checked ~ .check-mark { background: var(--primary); border-color: var(--primary); }
.check input:checked ~ .check-mark::after { transform: rotate(45deg) scale(1); }
.check input:focus-visible ~ .check-mark { box-shadow: 0 0 0 3px rgba(27, 79, 138, 0.3); }
.check-text { color: var(--on-surface); }
.check-text a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

/* Submit button */
#submit-btn {
  position: relative;
  font-size: 1.05rem;
  font-weight: 700;
}
#submit-btn .btn-loading {
  display: none;
  align-items: center;
  gap: 10px;
}
#submit-btn.loading .btn-label { display: none; }
#submit-btn.loading .btn-loading { display: inline-flex; }
#submit-btn .btn-label { display: inline-flex; align-items: center; gap: 10px; }
.spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-foot {
  text-align: center;
  font-size: 0.85rem;
  color: var(--on-surface-2);
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
}
.form-foot .material-symbols-rounded { font-size: 16px; color: var(--success); }

/* Success state */
.form-success {
  background: var(--success-container);
  border: 1px solid var(--success);
  border-radius: var(--r-2xl);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--on-surface);
  animation: pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px -8px rgba(16, 185, 129, 0.5);
}
.success-icon .material-symbols-rounded { font-size: 48px; color: #fff; }
.form-success h3 { color: var(--on-surface); font-size: 1.8rem; margin-bottom: 0.75rem; }
.form-success p { color: var(--on-surface-2); margin-bottom: 0.5rem; }
.success-foot { font-size: 0.85rem; margin-top: 1.25rem; }
.success-foot a { color: #047857; text-decoration: underline; font-weight: 600; }

/* ---------- FAQ ---------- */
.section-faq { background: var(--surface); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--outline);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-2); border-color: transparent; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--on-surface);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }
.faq-arrow { transition: transform 0.3s ease; flex-shrink: 0; color: var(--on-surface-3); }
.faq-item[open] .faq-arrow { transform: rotate(180deg); color: var(--primary); }
.faq-body { padding: 0 1.5rem 1.5rem; color: var(--on-surface-2); }

/* ---------- FINAL CTA STRIP ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--surface-dark) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--on-dark);
}
.final-cta h2 {
  color: var(--on-dark);
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--surface-dark);
  color: var(--on-dark-2);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-logo {
  display: inline-block;
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
  padding: 8px 14px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.footer-claim { color: var(--on-dark); font-size: 0.95rem; margin-bottom: 1rem; }
.footer-legal { font-size: 0.8rem; line-height: 1.6; }
.footer-col h4 {
  color: var(--on-dark);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--on-dark-2);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--on-dark); }
.footer-bottom {
  border-top: 1px solid var(--outline-dark);
  padding: 1.5rem 0;
  font-size: 0.82rem;
}
.footer-bottom .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 200;
  background: #fff;
  border: 1px solid var(--outline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-4);
  padding: 1.25rem 1.5rem;
  max-width: 760px;
  margin: 0 auto;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.88rem; color: var(--on-surface-2); flex: 1; min-width: 240px; }
.cookie-inner a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- ACCESSIBILITY ---------- */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .report-card { animation: none; }
}
