/* ════════════════════════════════════════════════════════════
   TRINOVA INSURANCE GROUP — MASTER STYLESHEET
   Edit here → updates every page on the site
   ════════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --navy:         #1B2A4A;
  --navy-deep:    #111E35;
  --navy-mid:     #243659;
  --navy-soft:    #2E4470;
  --gold:         #B8972A;
  --gold-bright:  #D4AE3A;
  --gold-pale:    #F5EDD0;
  --gold-muted:   #8A7020;

  /* Neutrals */
  --white:        #FFFFFF;
  --off-white:    #F9F8F6;
  --grey-50:      #F4F3F1;
  --grey-100:     #ECEAE6;
  --grey-200:     #D8D5CF;
  --grey-400:     #9E9A93;
  --grey-600:     #5C5852;
  --grey-800:     #2A2825;
  --text:         #1A1917;
  --text-body:    #4A4845;
  --text-light:   #6E6B66;

  /* Status */
  --green:        #1E6B3C;
  --green-bg:     #EBF5EF;
  --amber:        #7A5200;
  --amber-bg:     #FDF4E3;
  --red:          #8B1A1A;
  --red-bg:       #FDEAEA;
  --blue:         #1A3E6B;
  --blue-bg:      #EEF4FD;

  /* Typography */
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body:    -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'Courier New', monospace;

  /* Scale */
  --text-xs:    0.6875rem;
  --text-sm:    0.8125rem;
  --text-base:  0.9375rem;
  --text-md:    1.0625rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   2rem;
  --text-3xl:   2.625rem;
  --text-4xl:   3.5rem;

  /* Spacing */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;

  /* Layout */
  --max-w:      1080px;
  --max-w-text: 680px;
  --radius-sm:  3px;
  --radius:     6px;
  --radius-lg:  12px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(27,42,74,0.06);
  --shadow-sm:  0 2px 8px rgba(27,42,74,0.08);
  --shadow-md:  0 4px 20px rgba(27,42,74,0.10);
  --shadow-lg:  0 8px 40px rgba(27,42,74,0.14);
  --shadow-xl:  0 20px 60px rgba(27,42,74,0.18);

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:   150ms;
  --dur:        250ms;
  --dur-slow:   400ms;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, var(--text-4xl)); }
h2 { font-size: clamp(1.625rem, 3.5vw, var(--text-3xl)); }
h3 { font-size: clamp(1.25rem, 2.5vw, var(--text-xl)); }
h4 { font-size: var(--text-lg); }
h5 { font-size: var(--text-md); font-family: var(--font-body); font-weight: 700; }

p { color: var(--text-body); line-height: 1.75; margin-bottom: var(--sp-4); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.lead {
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--text-body);
}

strong { font-weight: 700; color: var(--text); }

/* ── LAYOUT ─────────────────────────────────────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

@media (max-width: 640px) { .wrap { padding: 0 var(--sp-5); } }

.section { padding: var(--sp-20) 0; }
.section-sm { padding: var(--sp-12) 0; }
.section-lg { padding: var(--sp-24) 0; }

.section--grey    { background: var(--off-white); }
.section--navy    { background: var(--navy); }
.section--deep    { background: var(--navy-deep); }
.section--gold    { background: var(--gold-pale); }

/* Section heading */
.section-head {
  max-width: var(--max-w-text);
  margin-bottom: var(--sp-12);
}
.section-head--center {
  max-width: var(--max-w-text);
  margin: 0 auto var(--sp-12);
  text-align: center;
}
.section-head h2 { margin-bottom: var(--sp-4); }
.section-head p { font-size: var(--text-md); }

/* Grid */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-5); }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: var(--sp-12); }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: var(--sp-12); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Dividers */
.divider { height: 1px; background: var(--grey-100); }
.gold-rule { width: 40px; height: 3px; background: var(--gold); margin-bottom: var(--sp-5); }
.gold-rule--center { margin: 0 auto var(--sp-5); }

/* ── HEADER ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  box-shadow: var(--shadow-xs);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: var(--sp-6);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}

.logo-shield {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.logo-shield::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(184,151,42,0.15) 0%,
    transparent 60%
  );
  border-radius: var(--radius-sm);
}

.logo-t {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
  justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}

.nav-link:hover { color: var(--gold); background: var(--grey-50); }
.nav-link.active { color: var(--gold); }

.nav-chevron {
  font-size: 0.55rem;
  transition: transform var(--dur) var(--ease);
  opacity: 0.6;
}

.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--dur) var(--ease);
  z-index: 100;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-sm);
  color: var(--text-body);
  border-bottom: 1px solid var(--grey-50);
  transition: all var(--dur-fast) var(--ease);
}

.nav-dropdown a:last-child { border-bottom: none; }

.nav-dropdown a:hover {
  background: var(--grey-50);
  color: var(--navy);
  padding-left: calc(var(--sp-5) + 4px);
}

.nav-dropdown a .dd-icon {
  font-size: 0.85rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Header CTA */
.header-cta { flex-shrink: 0; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease);
}
.mobile-toggle:hover { background: var(--grey-50); }
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease);
}
.mobile-nav.open { max-height: 600px; }

.mobile-nav-section { padding: var(--sp-4) var(--sp-5) var(--sp-2); }

.mobile-nav-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp-2);
}

.mobile-nav a {
  display: block;
  padding: var(--sp-2) 0;
  font-size: var(--text-sm);
  color: var(--text-body);
  border-bottom: 1px solid var(--grey-50);
}
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav a:last-child { border-bottom: none; }

.mobile-nav-cta {
  padding: var(--sp-4) var(--sp-5);
  border-top: 1px solid var(--grey-100);
}

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
}

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,151,42,0.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--grey-200);
}
.btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--grey-50);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.btn-ghost-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-ghost-gold:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-lg { padding: var(--sp-4) var(--sp-8); font-size: var(--text-base); }
.btn-sm { padding: var(--sp-2) var(--sp-4); font-size: var(--text-xs); }
.btn-full { width: 100%; }

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: var(--sp-24) 0;
}

/* Subtle geometric accent */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 55%;
  height: 140%;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(184,151,42,0.07) 0%,
    rgba(184,151,42,0.02) 50%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-5);
  line-height: 1.12;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero .lead {
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--sp-8);
  font-size: var(--text-md);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--sp-10);
}

.hero-proof {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

.hero-proof-item::before {
  content: '—';
  color: var(--gold);
  font-size: 0.65rem;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy);
  padding: var(--sp-16) 0 var(--sp-12);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(184,151,42,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; max-width: 680px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  font-size: var(--text-xs);
}

.breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--dur); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--gold); }

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.page-hero h1 em { font-style: normal; color: var(--gold); }

.page-hero .lead {
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin-bottom: var(--sp-6);
}

/* ── PATH SELECTOR (Homepage) ────────────────────────────────────────── */
.path-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: calc(-1 * var(--sp-8));
  position: relative;
  z-index: 10;
}

@media (max-width: 700px) {
  .path-selector { grid-template-columns: 1fr; }
}

.path-card {
  background: var(--white);
  padding: var(--sp-8) var(--sp-6);
  border-bottom: 3px solid transparent;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow-sm);
}

.path-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.path-icon {
  font-size: 1.75rem;
  margin-bottom: var(--sp-4);
  display: block;
}

.path-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--sp-2);
}

.path-card p {
  font-size: var(--text-sm);
  color: var(--text-light);
  margin-bottom: var(--sp-4);
  line-height: 1.6;
}

.path-links { display: flex; flex-direction: column; gap: var(--sp-1); }

.path-link {
  font-size: var(--text-xs);
  color: var(--text-light);
  padding: var(--sp-1) 0;
  border-bottom: 1px solid var(--grey-50);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  transition: color var(--dur) var(--ease);
  text-decoration: none;
}

.path-link:last-child { border-bottom: none; }
.path-link:hover { color: var(--gold); }

.path-link::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity var(--dur);
}

.path-link:hover::before { opacity: 1; }

/* ── CARDS ───────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: var(--sp-6);
  transition: all var(--dur) var(--ease);
}

.card--hover:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card--navy {
  background: var(--navy);
  border-color: var(--navy-mid);
}

.card--gold {
  background: var(--gold-pale);
  border-color: rgba(184,151,42,0.25);
}

/* Product card */
.product-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: var(--sp-6);
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-card__icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-4);
  display: block;
}

.product-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--sp-3);
}

.product-card p {
  font-size: var(--text-sm);
  flex: 1;
  margin-bottom: var(--sp-5);
}

.product-card__checklist {
  margin-bottom: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.product-card__checklist li {
  font-size: var(--text-sm);
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  line-height: 1.45;
}

.product-card__checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: var(--text-xs);
  margin-top: 2px;
  flex-shrink: 0;
}

.product-card__cta {
  margin-top: auto;
}

/* ── WHY SECTION ─────────────────────────────────────────────────────── */
.why-item {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--grey-100);
}

.why-item:last-child { border-bottom: none; }

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-text h4 {
  font-size: var(--text-md);
  margin-bottom: var(--sp-2);
}

.why-text p { font-size: var(--text-sm); margin-bottom: 0; }

/* ── PROCESS STEPS ───────────────────────────────────────────────────── */
.step {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184,151,42,0.12);
  border: 1px solid rgba(184,151,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--gold);
  flex-shrink: 0;
}

.step-body h4 { margin-bottom: var(--sp-2); }
.step-body p { font-size: var(--text-sm); margin-bottom: 0; }

/* ── FORMS ───────────────────────────────────────────────────────────── */
.form-panel {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
}

.form-panel h3 { margin-bottom: var(--sp-2); }

.form-subtitle {
  font-size: var(--text-sm);
  color: var(--text-light);
  margin-bottom: var(--sp-6);
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: var(--sp-4); }

.form-group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8972A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: var(--sp-10);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,42,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-400); }

.form-submit { margin-top: var(--sp-5); }

.form-legal {
  font-size: 0.68rem;
  color: var(--text-light);
  margin-top: var(--sp-4);
  line-height: 1.55;
  border-top: 1px solid var(--grey-100);
  padding-top: var(--sp-4);
}

.form-legal a { color: var(--navy); text-decoration: underline; }

.form-success {
  display: none;
  background: var(--green-bg);
  border: 1px solid rgba(30,107,60,0.2);
  border-radius: var(--radius-sm);
  padding: var(--sp-5);
  text-align: center;
  margin-top: var(--sp-5);
}

.form-success h4 { color: var(--green); margin-bottom: var(--sp-2); }
.form-success p { font-size: var(--text-sm); color: var(--green); margin: 0; }

/* Tool embed placeholder */
.tool-embed {
  background: var(--grey-50);
  border: 1px dashed var(--grey-200);
  border-radius: var(--radius);
  padding: var(--sp-8);
  text-align: center;
}

.tool-embed p {
  font-size: var(--text-sm);
  color: var(--text-light);
  margin-bottom: var(--sp-4);
}

/* ── STAT BAND ───────────────────────────────────────────────────────── */
.stat-band { background: var(--navy-deep); padding: var(--sp-12) 0; }

.stat-item { text-align: center; }

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-label {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq { max-width: 720px; }
.faq--center { margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--grey-100); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: var(--sp-5) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-body);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-4);
  transition: color var(--dur) var(--ease);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1.4;
}

.faq-q:hover { color: var(--gold); }

.faq-arrow {
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease), padding var(--dur) var(--ease);
}

.faq-a-inner {
  padding-bottom: var(--sp-5);
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.75;
}

.faq-item.open .faq-a { max-height: 500px; }

/* ── CTA STRIP ───────────────────────────────────────────────────────── */
.cta-strip {
  background: var(--gold-pale);
  border-top: 1px solid rgba(184,151,42,0.2);
  border-bottom: 1px solid rgba(184,151,42,0.2);
  padding: var(--sp-16) 0;
  text-align: center;
}

.cta-strip h2 { margin-bottom: var(--sp-4); }
.cta-strip p { max-width: 540px; margin: 0 auto var(--sp-8); font-size: var(--text-md); }

.cta-actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* Dark CTA strip */
.cta-strip--dark {
  background: var(--navy-deep);
  border: none;
}

.cta-strip--dark h2 { color: var(--white); }
.cta-strip--dark p { color: rgba(255,255,255,0.65); }

/* ── COVERAGE TABLE ──────────────────────────────────────────────────── */
.cov-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.cov-table th {
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-3) var(--sp-5);
  text-align: left;
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cov-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.cov-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.cov-table td {
  padding: var(--sp-3) var(--sp-5);
  border-bottom: 1px solid var(--grey-100);
  color: var(--text-body);
  vertical-align: top;
}

.cov-table tr:last-child td { border-bottom: none; }
.cov-table tr:nth-child(even) td { background: var(--grey-50); }

.cov-table .check { color: var(--green); font-weight: 700; }
.cov-table .na { color: var(--grey-400); }

/* ── TAGS / PILLS ────────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: var(--sp-1) var(--sp-3);
  border-radius: 20px;
  background: var(--gold-pale);
  color: var(--navy);
  margin-right: var(--sp-1);
  margin-bottom: var(--sp-1);
}

.tag--navy {
  background: rgba(27,42,74,0.08);
  color: var(--navy);
}

/* ── NOTICE BAR ──────────────────────────────────────────────────────── */
.notice-bar {
  background: var(--navy-deep);
  padding: var(--sp-2) 0;
}

.notice-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

.notice-bar-inner span {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.notice-bar-inner span::before {
  content: '';
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.notice-bar-inner span:first-child::before { display: none; }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  padding: var(--sp-20) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .logo-name { color: var(--white); }

.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.42);
  margin-top: var(--sp-5);
  line-height: 1.75;
}

.footer-social {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}

.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  transition: all var(--dur) var(--ease);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--sp-5);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }

.footer-col ul li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.52);
  transition: color var(--dur) var(--ease);
  line-height: 1.4;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding: var(--sp-8) 0;
  display: flex;
  gap: var(--sp-8);
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.65;
  max-width: 680px;
}

.footer-legal a { color: rgba(255,255,255,0.35); text-decoration: underline; }
.footer-legal a:hover { color: var(--gold); }

.footer-license {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.22);
  text-align: right;
  line-height: 1.65;
}

@media (max-width: 640px) { .footer-license { text-align: left; } }

/* ── COOKIE BANNER ───────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  border-top: 1px solid rgba(184,151,42,0.2);
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.25);
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform var(--dur-slow) var(--ease);
}

.cookie-banner.hidden { transform: translateY(110%); }

.cookie-banner p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.cookie-banner p a { color: var(--gold); text-decoration: underline; }

.cookie-actions { display: flex; gap: var(--sp-3); flex-shrink: 0; }

/* ── BACK TO TOP ─────────────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  border: 1px solid rgba(184,151,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease);
  z-index: 100;
  cursor: pointer;
}

.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ── REVEAL ANIMATION ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── UTILITIES ───────────────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-gold    { color: var(--gold) !important; }
.text-navy    { color: var(--navy) !important; }
.text-white   { color: var(--white) !important; }
.text-light   { color: var(--text-light) !important; }
.text-sm      { font-size: var(--text-sm) !important; }
.text-xs      { font-size: var(--text-xs) !important; }
.font-display { font-family: var(--font-display) !important; }
.font-bold    { font-weight: 700 !important; }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }
.mb-12 { margin-bottom: var(--sp-12); }
.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;
}
