/* Swiss Lawmakers Modern Light Design System v2 */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&display=swap');

:root {
  --swiss-red: #E10600;
  --swiss-red-soft: #FEE2E2;
  --navy: #0B1D3A;
  --navy-mid: #16325C;
  --navy-light: #1E4D8C;
  --gold: #C9A84C;
  --gold-bright: #E4C76A;
  --gold-soft: #FBF6E8;
  --accent: #0EA5E9;
  --accent-soft: #E0F2FE;
  --teal: #0D9488;
  --green: #059669;
  --white: #FFFFFF;
  --surface: #FAFBFD;
  --surface-2: #F1F5F9;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --text: #0F172A;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 999px;
  --shadow-xs: 0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm: 0 2px 8px rgba(15,23,42,0.06);
  --shadow-md: 0 8px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 16px 48px rgba(15,23,42,0.12);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.28);
  --shadow-glow: 0 0 0 1px rgba(14,165,233,0.08), 0 8px 32px rgba(14,165,233,0.12);
  --gradient-hero: linear-gradient(160deg, #FAFBFD 0%, #EFF6FF 35%, #FFFBEB 70%, #F0FDFA 100%);
  --gradient-navy: linear-gradient(135deg, #0B1D3A 0%, #16325C 50%, #1E4D8C 100%);
  --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E4C76A 50%, #D4AF37 100%);
  --glass: rgba(255,255,255,0.72);
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01' on;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4.8vw, 3.25rem); margin-bottom: var(--spacing-md); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.35rem); margin-bottom: var(--spacing-md); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: var(--spacing-sm); }
p { margin-bottom: var(--spacing-md); color: var(--text-secondary); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); width: 100%; }
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--alt { background: var(--surface); }
.section--navy { background: var(--gradient-navy); color: var(--white); position: relative; overflow: hidden; }
.section--navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 20%, rgba(14,165,233,0.15), transparent 60%);
  pointer-events: none;
}
.section--navy > * { position: relative; z-index: 1; }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.82); }

/* Announcement */
.announcement-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.announcement-bar strong { color: var(--gold-bright); }

/* Header */
.header {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.75rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  text-decoration: none;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; color: var(--navy); }
.logo__img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: var(--shadow-sm);
}
.logo__text span {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}
nav { display: flex; align-items: center; gap: 0.15rem; flex-wrap: wrap; }
nav a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-full);
  transition: all 0.2s var(--ease);
}
nav a:hover { color: var(--navy); background: var(--surface-2); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s var(--ease); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.82rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  font-family: var(--sans);
  letter-spacing: -0.01em;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
  color: var(--navy);
}
.btn-navy { background: var(--navy); color: var(--white); box-shadow: var(--shadow-md); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--navy); background: var(--surface); }
.btn-block { width: 100%; }
.btn-lg { padding: 1rem 2rem; font-size: 0.95rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }

/* Hero */
.hero-lead {
  background: var(--gradient-hero);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.hero-lead::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(201,168,76,0.14), transparent),
    radial-gradient(ellipse 45% 40% at 4% 92%, rgba(14,165,233,0.1), transparent);
  pointer-events: none;
}
.hero-lead__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) {
  .hero-lead__grid { grid-template-columns: 1.08fr 0.92fr; }
}
.hero-lead__copy h1 { color: var(--navy); }
.hero-lead__copy h1 em { font-style: normal; color: var(--swiss-red); }
.hero-lead__sub {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  max-width: 34rem;
  line-height: 1.7;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: var(--spacing-lg); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-xs);
}
.badge--gold { background: var(--gold-soft); border-color: rgba(201,168,76,0.4); }
.badge--red { background: var(--swiss-red-soft); border-color: rgba(225,6,0,0.2); color: var(--swiss-red); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); }
.trust-strip span::before { content: '✓'; color: var(--teal); font-weight: 800; margin-right: 0.35rem; }

/* Lead form */
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--swiss-red), var(--gold), var(--accent));
}
.lead-form-card__title {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}
.lead-form-card__sub { font-size: 0.84rem; color: var(--text-muted); margin-bottom: var(--spacing-md); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 480px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 0.75rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover { border-color: var(--border-strong); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: var(--shadow-glow);
}
.form-check { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.76rem; color: var(--text-secondary); margin: 0.85rem 0; line-height: 1.5; }
.form-check input { margin-top: 0.15rem; accent-color: var(--navy); }
.form-note { font-size: 0.72rem; color: var(--text-muted); text-align: center; margin-top: 0.85rem; }
.form-message { padding: 0.8rem 1rem; border-radius: var(--radius-md); font-size: 0.86rem; margin-top: 0.75rem; font-weight: 500; }
.form-message--success { background: #ECFDF5; color: var(--green); border: 1px solid #A7F3D0; }
.form-message--error { background: var(--swiss-red-soft); color: var(--swiss-red); border: 1px solid #FECACA; }

/* Stats */
.stats-bar {
  background: var(--white);
  border-block: 1px solid var(--border);
  padding: var(--spacing-lg) 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  text-align: center;
}
@media (min-width: 768px) { .stats-bar__grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item__num {
  font-family: var(--sans);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--navy-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-item__label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.4rem; }

/* Cards */
.grid { display: grid; gap: var(--spacing-lg); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-xs);
}
.card:hover {
  border-color: rgba(14,165,233,0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.card h3 { color: var(--navy); transition: color 0.2s; }
.card--accent { border-top: 3px solid var(--gold); }
.card--link { text-decoration: none; color: inherit; display: block; }
.card--link:hover h3 { color: var(--accent); }

/* Steps */
.step-card { text-align: center; }
.step-num {
  width: 54px; height: 54px;
  background: var(--gradient-navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; font-weight: 800;
  margin: 0 auto var(--spacing-md);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold-soft);
}

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.6rem;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s;
}
.faq-item.is-open { box-shadow: var(--shadow-sm); border-color: rgba(14,165,233,0.25); }
.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 1.05rem 1.3rem;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item__question::after {
  content: '';
  width: 22px; height: 22px;
  background: var(--accent-soft);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230EA5E9' d='M6 1v10M1 6h10' stroke='%230EA5E9' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s var(--ease);
}
.faq-item.is-open .faq-item__question::after { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-item.is-open .faq-item__answer { max-height: 500px; }
.faq-item__answer-inner { padding: 0 1.3rem 1.3rem; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* Page hero */
.page-hero {
  background: var(--gradient-hero);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--border);
}
.page-hero--compact { padding: clamp(2rem, 4vw, 3rem) 0; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--swiss-red);
  margin-bottom: 0.5rem;
}
.breadcrumb { font-size: 0.8rem; color: var(--text-muted); margin-bottom: var(--spacing-md); }
.breadcrumb a { color: var(--accent); }

/* Prose */
.prose { max-width: 760px; }
.prose h2 { margin-top: var(--spacing-xl); }
.prose ul, .prose ol { margin: 0 0 var(--spacing-md) 1.4rem; color: var(--text-secondary); }
.prose li { margin-bottom: 0.35rem; }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.4rem;
  background: var(--gold-soft);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--spacing-lg) 0;
  font-style: italic;
  color: var(--navy);
}

/* Images */
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: var(--spacing-lg) 0;
  border: 1px solid var(--border);
}
.feature-img img { width: 100%; max-height: 420px; object-fit: cover; }

/* Tables */
.case-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 0.86rem; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.case-table th, .case-table td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.case-table th { background: var(--surface-2); font-weight: 700; color: var(--navy); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.case-table tr:last-child td { border-bottom: none; }
.case-table tr:hover td { background: var(--surface); }
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.status-badge--active { background: var(--accent-soft); color: #0369A1; }
.status-badge--frozen { background: #D1FAE5; color: #065F46; }
.status-badge--litigation { background: var(--gold-soft); color: #92400E; }

/* Disclaimers */
.disclaimer-box {
  background: var(--gold-soft);
  border: 1px solid rgba(201,168,76,0.3);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin: var(--spacing-lg) 0;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.disclaimer-box--critical {
  background: var(--swiss-red-soft);
  border-color: rgba(225,6,0,0.15);
  border-left-color: var(--swiss-red);
}
.disclaimer-box strong { color: var(--navy); }

/* CTA */
.cta-strip {
  background: var(--gradient-navy);
  color: var(--white);
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2rem);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(201,168,76,0.12), transparent);
  pointer-events: none;
}
.cta-strip > .container { position: relative; z-index: 1; }
.cta-strip h2 { color: var(--white); }
.cta-strip p { color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto var(--spacing-lg); }

/* Footer */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  padding: var(--spacing-2xl) clamp(1rem, 4vw, 2rem) var(--spacing-lg);
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}
.footer-col h4 {
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-md);
}
.footer-col ul { list-style: none; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.84rem; display: block; margin-bottom: 0.45rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-col p { color: rgba(255,255,255,0.6); font-size: 0.84rem; line-height: 1.6; }
.footer-disclaimer {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.74rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}
.footer-bottom { text-align: center; margin-top: var(--spacing-md); font-size: 0.76rem; color: rgba(255,255,255,0.35); }
.partner-logos { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.85rem; }
.partner-logos a {
  font-size: 0.72rem;
  color: var(--gold-soft);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-full);
  transition: all 0.2s;
}
.partner-logos a:hover { background: rgba(255,255,255,0.06); color: var(--gold-bright); }

/* Sticky CTA */
.sticky-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 0.7rem clamp(1rem, 4vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  z-index: 150;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.sticky-cta-bar.is-visible { transform: translateY(0); }
.sticky-cta-bar__text { font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.sticky-cta-bar__btn { padding: 0.55rem 1.1rem; font-size: 0.8rem; }
@media (min-width: 769px) { .sticky-cta-bar { display: none; } }

/* Disclaimer banner */
.disclaimer-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  z-index: 140;
}
@media (max-width: 768px) { .disclaimer-banner { bottom: 54px; } }
.disclaimer-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.8rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.disclaimer-banner__text { flex: 1; font-size: 0.76rem; line-height: 1.55; color: rgba(255,255,255,0.78); }
.disclaimer-banner__text strong { color: var(--gold-bright); }
.disclaimer-banner__close {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  width: 28px; height: 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.disclaimer-banner__close:hover { background: rgba(255,255,255,0.12); }
.disclaimer-banner.is-hidden { display: none; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp 0.8s var(--ease) both; }
.fade-in-delay { animation: fadeInUp 0.8s var(--ease) 0.15s both; }
html.has-js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.has-js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Article */
.article-meta { font-size: 0.76rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Utilities */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--spacing-lg); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 199;
  }
  nav.active { display: flex; }
  nav a { width: 100%; border-radius: var(--radius-md); }
  .logo__text span { display: none; }
  .case-table { font-size: 0.76rem; }
  .case-table th, .case-table td { padding: 0.65rem 0.5rem; }
}

/* Page hero with lead form on inner pages */
.page-hero-form {
  background: var(--gradient-hero);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 100% 0%, rgba(201,168,76,0.1), transparent 55%);
  pointer-events: none;
}
.page-hero-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) {
  .page-hero-form__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: clamp(2rem, 4vw, 3rem);
  }
}
@media (min-width: 1100px) {
  .page-hero-form__grid {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
  }
}
.page-hero-form__copy {
  min-width: 0;
}
.page-hero-form__copy h1 { font-size: clamp(1.65rem, 3.5vw, 2.4rem); margin-bottom: 0.75rem; }
.page-hero-form__sub { font-size: 1rem; color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.6; max-width: 36rem; }
.trust-strip--compact { margin-top: 0.5rem; font-size: 0.78rem; }

/* Inner-page form: match homepage weight and width */
.page-hero-form .lead-form-card {
  width: 100%;
  min-width: 0;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border: 2px solid rgba(201,168,76,0.3);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(201,168,76,0.08);
}
.page-hero-form .lead-form-card__title {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.page-hero-form .lead-form-card__sub {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.page-hero-form .form-group {
  margin-bottom: 0.9rem;
}
.page-hero-form .form-group label {
  font-size: 0.84rem;
}
.page-hero-form .form-group input,
.page-hero-form .form-group select,
.page-hero-form .form-group textarea {
  padding: 0.88rem 1.05rem;
  font-size: 0.95rem;
}
.page-hero-form .form-row--2 {
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
@media (min-width: 520px) {
  .page-hero-form .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}
.page-hero-form .btn-gold {
  font-size: 1.05rem;
  padding: 1.05rem 1.5rem;
}
.page-hero-form .form-note {
  font-size: 0.76rem;
  margin-top: 1rem;
}

/* Prominent lead form card */
.lead-form-card--prominent {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,168,76,0.2);
  border: 2px solid rgba(201,168,76,0.35);
  animation: formGlow 4s ease-in-out infinite;
}
@keyframes formGlow {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,168,76,0.2); }
  50% { box-shadow: var(--shadow-lg), 0 0 0 3px rgba(201,168,76,0.15), 0 0 40px rgba(201,168,76,0.12); }
}
.lead-form-card--prominent .btn-gold {
  font-size: 1rem;
  padding: 1rem 1.5rem;
  letter-spacing: -0.01em;
}
.lead-form-card--prominent .btn-gold:hover { transform: translateY(-3px) scale(1.01); }

/* Pulse CTA button */
.btn-pulse { animation: btnPulse 2.5s ease-in-out infinite; }
@keyframes btnPulse {
  0%, 100% { box-shadow: var(--shadow-gold); }
  50% { box-shadow: 0 8px 36px rgba(201,168,76,0.5), 0 0 0 6px rgba(201,168,76,0.1); }
}

/* Answer lead text on FAQ pages */
.answer-lead {
  font-size: 1.12rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.65;
  padding: 1.25rem 1.5rem;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1.5rem;
}

/* Header CTA more visible */
nav .btn-gold {
  box-shadow: var(--shadow-gold);
  font-weight: 800;
}

/* Scroll target offset for sticky header */
#lead-form, #lead-form-section, #assessment-form, #hero-lead-form {
  scroll-margin-top: 5.5rem;
}

/* Content layout */
.content-with-sidebar { max-width: 900px; margin: 0 auto; }

/* Improved hero lead on homepage */
.hero-lead .lead-form-card {
  border: 2px solid rgba(201,168,76,0.3);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(201,168,76,0.08);
}
.hero-lead .lead-form-card .btn-gold { font-size: 1.05rem; padding: 1.05rem 1.5rem; }

/* Sticky bar emphasis */
.sticky-cta-bar { border-top: 2px solid var(--gold); }
.sticky-cta-bar__btn { animation: btnPulse 2.5s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .lead-form-card--prominent, .btn-pulse, .sticky-cta-bar__btn { animation: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html.has-js .reveal { opacity: 1; transform: none; }
}
