/* =========================================================
   Omniwise AI Assessment — Global Styles
   ========================================================= */

/* --- Design tokens --- */
:root {
  /* Brand colours */
  --color-navy:       #0A2240;
  --color-navy-dark:  #061729;
  --color-teal:       #2EAFA0;
  --color-teal-dark:  #259589;
  --color-teal-light: #E8F7F6;
  --color-amber:      #C9A227;
  --color-amber-bg:   #FDF8EC;

  /* Neutrals */
  --color-white:      #FFFFFF;
  --color-gray-50:    #F9FAFB;
  --color-gray-100:   #F3F4F6;
  --color-gray-200:   #E5E7EB;
  --color-gray-300:   #D1D5DB;
  --color-gray-400:   #9CA3AF;
  --color-gray-600:   #4B5563;
  --color-gray-800:   #1F2937;

  /* Semantic */
  --color-error:      #DC2626;
  --color-error-bg:   #FEF2F2;
  --color-success:    #16A34A;
  --color-success-bg: #F0FDF4;
  --color-warn:       #D97706;
  --color-warn-bg:    #FFFBEB;

  /* Typography */
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.12);

  --transition: 200ms ease;
  --max-width: 1160px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-800);
  background: var(--color-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-teal); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.25; color: var(--color-navy); }

/* --- Typography --- */
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; }
h2 { font-size: clamp(1.25rem, 3vw, 1.875rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { color: var(--color-gray-600); }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn:hover { text-decoration: none; }
.btn--primary {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}
.btn--primary:hover { background: #259589; border-color: #259589; }
.btn--secondary {
  background: var(--color-amber);
  color: var(--color-navy-dark);
  border-color: var(--color-amber);
}
.btn--secondary:hover { background: #b38e20; border-color: #b38e20; }
.btn--outline {
  background: transparent;
  color: var(--color-teal);
  border-color: var(--color-teal);
}
.btn--outline:hover { background: var(--color-teal-light); }
.btn--ghost {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-gray-200);
}
.btn--ghost:hover { background: var(--color-gray-100); }
.btn--navy {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
.btn--navy:hover { background: var(--color-navy-dark); border-color: var(--color-navy-dark); }
.btn--sm  { padding: 8px 18px; font-size: 0.875rem; }
.btn--lg  { padding: 16px 36px; font-size: 1.125rem; }
.btn--full { width: 100%; }
.btn:disabled, .btn[disabled] { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.btn[hidden] { display: none !important; }

/* =========================================================
   Forms
   ========================================================= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
}
.form-control {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--color-gray-800);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(46,175,160,.15);
}
.form-control.is-invalid { border-color: var(--color-error); }
.form-control.is-invalid:focus { box-shadow: 0 0 0 3px rgba(220,38,38,.12); }
.form-control--select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.form-hint { font-size: 0.8125rem; color: var(--color-gray-400); margin-top: 4px; }
.form-error { font-size: 0.8125rem; color: var(--color-error); margin-top: 4px; display: none; }
.form-error.visible { display: block; }

/* Checkbox */
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-item  { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--color-teal); cursor: pointer; flex-shrink: 0; }

/* Honeypot */
.field-website-url { display: none !important; }

/* =========================================================
   Alerts
   ========================================================= */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.alert--success { background: var(--color-success-bg); color: #166534; border-color: #bbf7d0; }
.alert--error   { background: var(--color-error-bg);   color: #991b1b; border-color: #fecaca; }
.alert--warn    { background: var(--color-warn-bg);    color: #92400e; border-color: #fde68a; }
.alert--info    { background: var(--color-teal-light); color: #0f5c55; border-color: #b2e8e4; }

/* =========================================================
   Navbar
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  transition: box-shadow 200ms ease;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  width: 100%;
}
.navbar__logo,
.navbar__logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
}
.navbar__logo span { color: var(--color-teal); }
.navbar__actions { display: flex; align-items: center; gap: 16px; }
.navbar__lang button {
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-600);
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
  cursor: pointer;
}

/* =========================================================
   Resume Banner
   ========================================================= */
.resume-banner {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 12px 24px;
  text-align: center;
  font-size: 0.9375rem;
}
.resume-banner a, .resume-banner button { color: var(--color-amber); font-weight: 600; text-decoration: underline; margin-left: 12px; background: none; border: none; cursor: pointer; }

/* =========================================================
   Landing Page Sections
   ========================================================= */

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, #163d6b 100%);
  color: var(--color-white);
  padding: 80px 24px 100px;
  text-align: center;
}
.hero h1 { color: var(--color-white); max-width: 720px; margin: 0 auto 16px; }
.hero p  { color: rgba(255,255,255,.8); font-size: 1.125rem; max-width: 580px; margin: 0 auto 36px; }
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* How it works */
.how-it-works { padding: 80px 24px; background: var(--color-gray-50); }
.how-it-works h2 { text-align: center; margin-bottom: 48px; }
.how-it-works__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 32px; max-width: var(--max-width); margin: 0 auto; }
.step { text-align: center; padding: 24px; }
.step__number { width: 48px; height: 48px; border-radius: 50%; background: var(--color-teal); color: var(--color-white); font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h3 { margin-bottom: 8px; }
.step p  { font-size: 0.9375rem; }

/* Dimensions */
.dimensions { padding: 80px 24px; }
.dimensions h2 { text-align: center; margin-bottom: 8px; }
.dimensions__sub { text-align: center; margin-bottom: 48px; }
.dimensions__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 24px; max-width: var(--max-width); margin: 0 auto; }
.dimension-card { background: var(--color-white); border: 1.5px solid var(--color-gray-200); border-radius: var(--radius-md); padding: 28px 20px; text-align: center; transition: box-shadow var(--transition), border-color var(--transition); }
.dimension-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-teal); }
.dimension-card__icon { font-size: 2rem; margin-bottom: 12px; }
.dimension-card h3 { font-size: 1rem; margin-bottom: 8px; }
.dimension-card p { font-size: 0.875rem; }

/* What you receive */
.what-you-receive { padding: 80px 24px; background: var(--color-teal-light); }
.what-you-receive h2 { text-align: center; margin-bottom: 48px; }
.deliverables { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; max-width: var(--max-width); margin: 0 auto; }
.deliverable { background: var(--color-white); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); }
.deliverable h3 { margin-bottom: 10px; }
.deliverable p  { font-size: 0.9375rem; }

/* Methodology */
.methodology { padding: 80px 24px; }
.methodology__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.methodology p  { margin-top: 16px; font-size: 0.9375rem; }

/* FAQ */
.faq { padding: 80px 24px; background: var(--color-gray-50); }
.faq h2 { text-align: center; margin-bottom: 48px; }
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1.5px solid var(--color-gray-200); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item__q { width: 100%; padding: 16px 20px; text-align: left; font-weight: 600; font-size: 0.9375rem; background: var(--color-white); display: flex; justify-content: space-between; align-items: center; }
.faq-item__q::after { content: '+'; font-size: 1.25rem; color: var(--color-teal); }
.faq-item.open .faq-item__q::after { content: '−'; }
.faq-item__a { display: none; padding: 0 20px 16px; font-size: 0.9375rem; color: var(--color-gray-600); }
.faq-item.open .faq-item__a { display: block; }

/* Lead Capture Form */
.lead-capture { padding: 80px 24px; background: var(--color-navy); }
.lead-capture__inner { max-width: 600px; margin: 0 auto; text-align: center; }
.lead-capture h2  { color: var(--color-white); margin-bottom: 8px; }
.lead-capture > .lead-capture__inner > p { color: rgba(255,255,255,.75); margin-bottom: 40px; }
.lead-form { background: var(--color-white); border-radius: var(--radius-lg); padding: 40px; text-align: left; }
.lead-form .form-group label { color: var(--color-navy); }
.lead-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Phone input */
.phone-input-wrap { display: flex; gap: 8px; }
.phone-input-wrap select { width: 120px; flex-shrink: 0; }
.phone-input-wrap input  { flex: 1; }

/* Footer */
.site-footer { background: var(--color-navy-dark); color: rgba(255,255,255,.6); text-align: center; padding: 32px 24px; font-size: 0.875rem; }
.site-footer a { color: rgba(255,255,255,.6); }
.site-footer a:hover { color: var(--color-white); }

/* =========================================================
   Badges
   ========================================================= */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
/* Maturity */
.badge--explorer     { background: var(--color-gray-100); color: var(--color-gray-600); }
.badge--emerging     { background: #FEF9C3; color: #854D0E; }
.badge--ready        { background: var(--color-teal-light); color: #0F5C55; }
.badge--advanced     { background: #DBEAFE; color: #1E3A8A; }
.badge--ai_leader    { background: var(--color-amber-bg); color: #78350F; }
/* Risk */
.badge--risk-low      { background: var(--color-success-bg); color: #166534; }
.badge--risk-moderate { background: var(--color-warn-bg);    color: #92400e; }
.badge--risk-high     { background: #FFEDD5;                 color: #9A3412; }
.badge--risk-critical { background: var(--color-error-bg);   color: #991b1b; }
/* Lead cat */
.badge--low    { background: var(--color-gray-100); color: var(--color-gray-600); }
.badge--medium { background: #DBEAFE; color: #1E3A8A; }
.badge--high   { background: var(--color-teal-light); color: #0F5C55; }
.badge--hot    { background: var(--color-amber-bg);  color: #92400E; border: 1px solid var(--color-amber); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 640px) {
  .lead-form .form-row { grid-template-columns: 1fr; }
  .hero { padding: 56px 24px 64px; }
  .btn--lg { padding: 14px 24px; font-size: 1rem; }
}

/* =========================================================
   Utility
   ========================================================= */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* =========================================================
   Eyebrow label
   ========================================================= */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 12px;
}

/* Navbar lang links */
.navbar__lang { display: flex; gap: 8px; }
.navbar__lang a {
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-600);
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.navbar__lang a.active,
.navbar__lang a:hover {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
  text-decoration: none;
}

/* =========================================================
   Resume Banner
   ========================================================= */
.resume-banner__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.resume-banner__inner form { display: flex; gap: 8px; }

/* =========================================================
   LP Container / Section base
   ========================================================= */
.lp-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.lp-container--narrow { max-width: 720px; }
.lp-section { padding: 72px 0; }
.lp-section h2 { text-align: center; margin-bottom: 8px; }

/* =========================================================
   LP Hero
   ========================================================= */
.lp-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, #163d6b 100%);
  color: var(--color-white);
  padding: 80px 24px 100px;
}
.lp-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.lp-hero__text { max-width: 640px; }
.lp-hero__text h1 { color: var(--color-white); margin-bottom: 20px; }
.lp-hero__sub   { color: rgba(255,255,255,.82); font-size: 1.125rem; margin-bottom: 12px; }
.lp-hero__trust { color: var(--color-amber); font-size: 0.875rem; font-weight: 600; margin-bottom: 32px; }

.lp-hero__badge-stack { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.lp-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  min-width: 110px;
}
.lp-badge--teal { background: rgba(46,175,160,.2); border-color: var(--color-teal); }
.lp-badge__num { font-size: 2rem; font-weight: 700; line-height: 1; color: var(--color-white); }
.lp-badge__num span { font-size: 1rem; opacity: .7; }
.lp-badge__lbl { font-size: 0.75rem; color: rgba(255,255,255,.7); margin-top: 4px; }

/* =========================================================
   LP How It Works
   ========================================================= */
.lp-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 640px;
  margin: 36px auto 0;
  list-style: none;
}
.lp-step { display: flex; gap: 20px; align-items: flex-start; }
.lp-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-teal);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-step__body strong { display: block; font-size: 1rem; color: var(--color-navy); margin-bottom: 4px; }
.lp-step__body p { font-size: 0.9375rem; margin: 0; }

/* =========================================================
   LP Dimensions
   ========================================================= */
.lp-dims--bg { background: var(--color-gray-50); }
.lp-dims__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px,1fr));
  gap: 20px;
  margin-top: 40px;
}
.lp-dim-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.lp-dims--bg .lp-dim-card { background: var(--color-white); }
.lp-dim-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-teal); }
.lp-dim-card__num {
  display: inline-block;
  background: var(--color-teal);
  color: var(--color-white);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  margin-bottom: 12px;
  letter-spacing: .06em;
}
.lp-dim-card__name { font-weight: 700; color: var(--color-navy); margin-bottom: 8px; font-size: 0.9375rem; }
.lp-dim-card p { font-size: 0.875rem; margin: 0; }

/* =========================================================
   LP What You Receive
   ========================================================= */
.lp-receive__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.lp-receive__col { border-radius: var(--radius-md); padding: 32px; }
.lp-receive__col--free { background: var(--color-teal-light); border: 1.5px solid var(--color-teal); }
.lp-receive__col--paid { background: var(--color-gray-50); border: 1.5px solid var(--color-gray-200); }
.lp-receive__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-teal);
  margin-bottom: 16px;
}
.lp-receive__col--paid .lp-receive__label { color: var(--color-gray-600); }
.lp-receive__col ul { margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.lp-receive__col ul li { font-size: 0.9375rem; color: var(--color-gray-800); padding-left: 22px; position: relative; }
.lp-receive__col--free ul li::before { content: '✓'; color: var(--color-teal); font-weight: 700; position: absolute; left: 0; }
.lp-receive__col--paid ul li::before { content: '+'; color: var(--color-amber); font-weight: 700; position: absolute; left: 0; }

/* =========================================================
   LP Methodology
   ========================================================= */
.lp-method--bg { background: var(--color-navy); }
.lp-method--bg h2 { color: var(--color-white); }
.lp-method__body { color: rgba(255,255,255,.78); font-size: 1rem; margin-top: 16px; text-align: center; }

/* =========================================================
   LP FAQ
   ========================================================= */
.lp-faq__list { display: flex; flex-direction: column; gap: 8px; margin-top: 40px; }
.lp-faq__item {
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  overflow: hidden;
}
.lp-faq__q {
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-navy);
  background: var(--color-white);
  border: none;
  cursor: pointer;
}
.lp-faq__a { padding: 0 20px 16px; font-size: 0.9375rem; color: var(--color-gray-600); }

/* =========================================================
   LP Lead Capture Form Section
   ========================================================= */
.lp-form-section { background: var(--color-navy); }
.lp-form-section h2 { color: var(--color-white); }
.lp-form-section__sub { color: rgba(255,255,255,.75); text-align: center; margin-bottom: 36px; }
.lp-form-section .lead-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
}

/* Form inputs (no .form-control class in LP HTML) */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--color-gray-800);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(46,175,160,.15);
}
.req { color: var(--color-error); margin-left: 2px; }
.consent-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.875rem; color: var(--color-gray-600); line-height: 1.5; }
.consent-label input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--color-teal); flex-shrink: 0; cursor: pointer; }
.form-errors {
  background: var(--color-error-bg);
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
  color: #991b1b;
  font-size: 0.9375rem;
}
.form-errors ul { list-style: disc; padding-left: 18px; display: flex; flex-direction: column; gap: 4px; }
.inline-error { font-size: 0.8125rem; color: var(--color-error); margin-top: 4px; }
.form-privacy-note { font-size: 0.8125rem; color: var(--color-gray-400); text-align: center; margin-top: 16px; }

/* Phone flag display */
.phone-input-wrap { display: flex; gap: 8px; }
.phone-flag {
  display: flex;
  align-items: center;
  padding: 11px 14px;
  background: var(--color-gray-100);
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--color-gray-800);
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-input-wrap input { flex: 1; }

/* =========================================================
   LP Final CTA
   ========================================================= */
.lp-final-cta--bg { background: var(--color-amber-bg); }
.lp-final-cta__inner { text-align: center; }
.lp-final-cta__inner h2 { margin-bottom: 16px; }
.lp-final-cta__inner > p { margin-bottom: 28px; }
.lp-grants-note { font-size: 0.8125rem; color: var(--color-gray-500, #6B7280); margin-top: 20px; }

/* =========================================================
   LP Footer
   ========================================================= */
.lp-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.875rem;
}
.lp-footer a { color: rgba(255,255,255,.6); }
.lp-footer a:hover { color: var(--color-white); }

/* =========================================================
   Responsive — LP
   ========================================================= */
@media (max-width: 768px) {
  .lp-hero__inner { grid-template-columns: 1fr; }
  .lp-hero__badge-stack { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .lp-receive__grid { grid-template-columns: 1fr; }
  .lp-section { padding: 48px 0; }
  .lp-form-section .lead-form { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .lp-hero { padding: 48px 24px 64px; }
  .lp-dims__grid { grid-template-columns: 1fr 1fr; }
  .lp-badge { min-width: 90px; padding: 12px 14px; }
}
