/* ============================================================
   ACT — American Compliance Trade
   Production stylesheet (v1)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy: #0A2540;
  --navy-light: #14365c;
  --gold: #C9A961;
  --gold-dark: #b08f48;
  --white: #FFFFFF;
  --offwhite: #F8F7F4;
  --slate: #475569;
  --slate-light: #94a3b8;
  --charcoal: #1E293B;
  --border: #e2e8f0;
  --success: #10B981;
  --amber: #F59E0B;

  --font-serif: 'Lora', 'Source Serif Pro', Georgia, serif;
  --font-sans: 'Inter', 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 4px 14px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 37, 64, 0.12);

  --transition: 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.125rem; color: var(--slate); }
.eyebrow {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: inline-block;
}
.numeric { font-variant-numeric: tabular-nums; }

/* ---------- Simplified Chinese (CJK) fonts ----------
   Lora has no CJK glyphs, so zh body + headings fall back to Noto Sans SC
   to avoid tofu (□) boxes. */
html[lang="zh"] body { font-family: 'Noto Sans SC', var(--font-sans); }
html[lang="zh"] h1,
html[lang="zh"] h2,
html[lang="zh"] h3,
html[lang="zh"] h4 { font-family: 'Noto Sans SC', var(--font-serif); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
section { padding: 4.5rem 0; }
@media (min-width: 768px) { section { padding: 6rem 0; } }
.section-tight { padding: 3rem 0; }
.bg-offwhite { background: var(--offwhite); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.82); }
.bg-navy-gradient {
  background: linear-gradient(135deg, #0A2540 0%, #14365c 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.bg-navy-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.10) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px);
  pointer-events: none;
}
.bg-navy-gradient h1,
.bg-navy-gradient h2,
.bg-navy-gradient h3 { color: var(--white); }
.bg-navy-gradient p { color: rgba(255,255,255,0.82); }
.bg-navy-gradient > .container { position: relative; z-index: 1; }

.text-center { text-align: center; }
.max-text { max-width: 720px; }
.max-text-narrow { max-width: 580px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}
.bg-navy .btn-ghost,
.bg-navy-gradient .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.bg-navy .btn-ghost:hover,
.bg-navy-gradient .btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-block { width: 100%; }
.btn-sm { padding: .55rem 1rem; font-size: .85rem; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid transparent;
  z-index: 50;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 700;
}
.brand-mark {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.brand-mark .dot { color: var(--gold); }
.brand-sub {
  font-size: .72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  font-family: var(--font-sans);
  font-weight: 500;
}
@media (max-width: 640px) { .brand-sub { display: none; } }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.nav-desktop a {
  color: var(--charcoal);
  font-size: .92rem;
  font-weight: 500;
  position: relative;
}
.nav-desktop a:hover { color: var(--gold-dark); }
.nav-desktop a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.lang-switcher { position: relative; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--charcoal);
  background: var(--white);
  font-weight: 500;
}
.lang-toggle:hover { border-color: var(--navy); }
.lang-toggle svg { width: 12px; height: 12px; }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 140px;
  padding: .35rem;
  display: none;
}
.lang-menu.open { display: block; }
.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: .55rem .75rem;
  font-size: .88rem;
  color: var(--charcoal);
  border-radius: 6px;
}
.lang-menu button:hover { background: var(--offwhite); }
.lang-menu button.active { color: var(--gold-dark); font-weight: 600; }
.lang-menu button[disabled] { color: var(--slate-light); cursor: not-allowed; }

.hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: .6rem;
  border-radius: 6px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 1024px) { .hamburger { display: none; } }

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  font-weight: 500;
}
.nav-mobile a:last-child { border-bottom: none; }

/* ---------- Hero ---------- */
.hero {
  padding: 5rem 0 4.5rem;
  position: relative;
}
.hero-full {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (min-width: 1024px) {
  .hero-full { min-height: 86vh; }
}
.hero-content { max-width: 760px; }
.hero h1 { margin-bottom: 1.25rem; }
.hero .lead { color: rgba(255,255,255,0.82); max-width: 640px; }
.hero-light .lead { color: var(--slate); }

/* ---------- Trust strip ---------- */
.trust-strip {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-strip-label {
  font-size: .78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .95rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,97,0.45);
  white-space: nowrap;
}
.trust-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* ---------- Grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Section heading block ---------- */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-heading h2 { margin-bottom: .75rem; }

/* ---------- Why ACT (icon columns) ---------- */
.feature-col {
  padding: 0;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.feature-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.7; }
.feature-col h3 { margin-bottom: .5rem; }
.feature-col p { color: var(--slate); }

/* ---------- Pricing cards ---------- */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 1.75rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: .35rem .65rem;
  border-radius: 999px;
}
.tier-badge.neutral { background: var(--charcoal); color: var(--white); }
.pricing-card h3 { font-size: 1.35rem; margin-bottom: .35rem; }
.tier-price {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--navy);
  font-weight: 700;
  margin: 0.5rem 0 0.25rem;
}
.tier-price small {
  font-family: var(--font-sans);
  font-size: .85rem;
  color: var(--slate);
  font-weight: 500;
  margin-left: .35rem;
}
.tier-subtext {
  color: var(--slate);
  font-size: .95rem;
  margin-bottom: 1.25rem;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}
.tier-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .92rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.tier-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2310B981' stroke-width='2.5'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.tier-features li.exc::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2394a3b8' stroke-width='2.2'%3E%3Cpath d='M4 4l8 8M12 4l-8 8' stroke-linecap='round'/%3E%3C/svg%3E");
}
.tier-features li.exc { color: var(--slate); }

/* ---------- Process strip (home) ---------- */
.process-strip {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 3rem;
}
@media (min-width: 768px) { .process-strip { grid-template-columns: repeat(5, 1fr); } }

.process-step {
  position: relative;
}
.process-step .step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: .8rem;
}
.process-step h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: .5rem;
}
.process-step p {
  color: rgba(255,255,255,0.72);
  font-size: .9rem;
  line-height: 1.5;
}
.process-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.04);
  font-size: .9rem;
  color: rgba(255,255,255,0.75);
  border-radius: 0 6px 6px 0;
}

/* ---------- FAQ accordion ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
}
.faq-trigger .chev {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.faq-trigger .chev::before {
  content: '+';
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item.open .faq-trigger .chev::before { content: '–'; }
.faq-answer {
  display: none;
  padding: 0 0 1.5rem;
  color: var(--slate);
  line-height: 1.65;
  max-width: 90%;
}
.faq-item.open .faq-answer { display: block; }

/* ---------- Industry cards ---------- */
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.industry-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--offwhite);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.industry-icon svg { width: 32px; height: 32px; stroke: var(--navy); fill: none; stroke-width: 1.6; }
.industry-card h3 { margin-bottom: .6rem; }
.industry-card .reg-line {
  font-size: .85rem;
  color: var(--slate);
  font-weight: 500;
  margin: 1rem 0;
  padding: .65rem .85rem;
  background: var(--offwhite);
  border-radius: 6px;
}
.industry-card .note {
  font-style: italic;
  color: var(--slate);
  font-size: .92rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

/* ---------- Timeline (process page) ---------- */
.timeline {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
}
.timeline-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--border);
  align-items: center;
}
.timeline-row:last-child { border-bottom: none; }
.timeline-row .label {
  font-weight: 600;
  color: var(--charcoal);
  font-size: .95rem;
}
.timeline-bar-wrap {
  height: 14px;
  background: var(--offwhite);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.timeline-bar {
  position: absolute;
  top: 0; bottom: 0;
  background: var(--navy);
  border-radius: 999px;
}
.timeline-bar.gold { background: var(--gold); }
.timeline-bar.critical {
  background: repeating-linear-gradient(45deg, #F59E0B, #F59E0B 6px, #fbbf24 6px, #fbbf24 12px);
}
.timeline-weeks {
  display: grid;
  grid-template-columns: 200px repeat(12, 1fr);
  gap: 1rem;
  padding: 0 0 .5rem;
  font-size: .72rem;
  color: var(--slate);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.timeline-weeks span:nth-child(1) { grid-column: 1; }
@media (max-width: 768px) {
  .timeline-row { grid-template-columns: 1fr; }
  .timeline-row .label { font-size: .9rem; }
  .timeline-weeks { display: none; }
}

.phase-list {
  display: grid;
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
}
.phase-item {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}
.phase-item h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}
.phase-item p { color: var(--slate); }

.pitfall-list {
  counter-reset: pf;
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}
.pitfall-item {
  counter-increment: pf;
  background: var(--white);
  padding: 1.25rem 1.5rem 1.25rem 4.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.pitfall-item::before {
  content: counter(pf);
  position: absolute;
  left: 1.25rem;
  top: 1.1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.pitfall-item strong { color: var(--navy); display: block; margin-bottom: .25rem; }

/* ---------- About: differentiators ---------- */
.diff-list {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}
.diff-item {
  padding: 1.5rem;
  background: var(--offwhite);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.diff-item strong { display: block; font-family: var(--font-serif); color: var(--navy); font-size: 1.1rem; margin-bottom: .35rem; }

/* ---------- Contact / Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1.2fr 1fr; gap: 4rem; }
}
.form-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.form-card h2 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--charcoal);
}
.field label .req { color: #ef4444; margin-left: 2px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .75rem .9rem;
  font: inherit;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.10);
}
.field textarea { resize: vertical; min-height: 120px; }
.field.error input, .field.error select, .field.error textarea { border-color: #ef4444; }
.field .err-msg { font-size: .8rem; color: #ef4444; display: none; }
.field.error .err-msg { display: block; }

.form-note {
  font-size: .8rem;
  color: var(--slate);
  margin-top: 1rem;
}
.form-success {
  display: none;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.3);
  color: #047857;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-weight: 500;
}
.form-success.show { display: block; }

.contact-meta {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-meta dl {
  display: grid;
  gap: .85rem;
  margin: 0;
}
.contact-meta dt {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
}
.contact-meta dd { margin: 0; color: var(--charcoal); }

/* ---------- Generic prose page (legal stubs) ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--slate);
  line-height: 1.75;
}
.prose h2 { margin-top: 2.5rem; color: var(--navy); }
.prose h3 { margin-top: 2rem; color: var(--navy); }
.prose ul, .prose ol { padding-left: 1.4rem; }

/* ---------- Final CTA band ---------- */
.cta-band { text-align: center; padding: 5rem 0; }
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 640px; margin: 0 auto 1.75rem; }
.cta-band .cta-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 1.5rem;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: .92rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-brand .brand-mark { color: var(--white); font-size: 1.8rem; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,0.62); line-height: 1.6; margin-top: .5rem; }
.footer-meta { font-size: .82rem; color: rgba(255,255,255,0.55); }
.footer-meta a { color: rgba(255,255,255,0.75); }
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,0.5);
}
.footer-disclaimer {
  font-size: .82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 900px;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--navy);
  color: var(--white);
  padding: .9rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: none;
  font-size: .92rem;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: var(--success); }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  padding: 1rem;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  padding: 2rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--slate);
}
.modal-close:hover { background: var(--offwhite); }

/* ---------- Utility ---------- */
.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;
}
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
