/* ═══════════════════════════════════════════════════════════
   1. TOKENS
   ═══════════════════════════════════════════════════════════ */
:root {
  --ink: #101C2E;
  --steel: #5B7290;
  --mist: #EEF2F6;
  --slate: #2B3A4F;
  --white: #FFFFFF;
  --trust: #1E8A5F;      /* CTA-only. Never used decoratively. */
  --trust-dark: #166B49;
  --line: #DCE4EC;

  --font-display: 'Archivo', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px -20px rgba(16, 28, 46, 0.25);
  --shadow-sm: 0 8px 24px -12px rgba(16, 28, 46, 0.18);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════════════════════════
   2. RESET
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
button { font-family: inherit; cursor: pointer; }

/* ═══════════════════════════════════════════════════════════
   3. UTILITY
   ═══════════════════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--trust); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--trust); display: inline-block; }
.section-title { font-size: clamp(28px, 3.6vw, 42px); color: var(--ink); margin-bottom: 16px; }
.section-sub { font-size: 18px; color: var(--steel); max-width: 640px; line-height: 1.6; }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
section { padding: 96px 0; }
.card-text { display: block; }

/* ═══════════════════════════════════════════════════════════
   4. BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--trust); color: var(--white);
  font-weight: 600; font-size: 16px;
  padding: 15px 30px; border-radius: var(--radius-sm);
  border: none; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  box-shadow: 0 10px 24px -8px rgba(30, 138, 95, 0.45);
}
.btn-primary:hover { background: var(--trust-dark); transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(30, 138, 95, 0.55); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--ink);
  font-weight: 600; font-size: 16px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); transition: border-color 0.25s, background 0.25s;
}
.btn-ghost:hover { border-color: var(--steel); background: var(--mist); }
.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--white);
  font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: 999px;
}

/* ═══════════════════════════════════════════════════════════
   5. NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar-inner {
  max-width: 1240px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 9px; background: var(--trust);
  color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--white); }
.nav-logo-text em { font-style: normal; color: var(--trust); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.82); font-weight: 500; font-size: 15px; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; }
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; width: 32px; height: 32px;
}
.hamburger span { width: 100%; height: 2px; background: var(--white); transition: transform 0.25s, opacity 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; background: var(--slate); padding: 8px 24px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { display: block; padding: 12px; color: var(--white); font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.08); }

/* ═══════════════════════════════════════════════════════════
   6. REVEAL
   ═══════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="left"].revealed, [data-reveal="right"].revealed { transform: translateX(0); }

/* ═══════════════════════════════════════════════════════════
   7. SECTIONS
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--white);
  padding: 120px 0 96px;
}
.hero-video-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, rgba(16,28,46,0.94) 0%, rgba(16,28,46,0.82) 40%, rgba(16,28,46,0.5) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
}
.hero-copy { max-width: 620px; }

/* ── Stat bar ── */
.stat-bar { background: var(--mist); padding: 40px 0; }
.stat-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stat-bar-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--ink); }
.stat-bar-label { font-size: 14px; color: var(--steel); margin-top: 4px; }
.hero-copy .eyebrow { color: #7FD9AE; }
.hero-copy .eyebrow::before { background: #7FD9AE; }
.hero-copy h1 { font-size: clamp(34px, 4.6vw, 54px); color: var(--white); margin-bottom: 20px; }
.hero-copy h1 .hl { color: #7FD9AE; }
.hero-copy p { font-size: 18px; color: rgba(255,255,255,0.72); max-width: 480px; margin-bottom: 32px; }

/* Coverage toggle — signature interaction */
.coverage-toggle {
  display: inline-flex; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; padding: 4px;
  margin-bottom: 28px;
}
.coverage-toggle button {
  border: none; background: transparent; color: rgba(255,255,255,0.65);
  font-weight: 600; font-size: 14px; padding: 10px 22px; border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s;
}
.coverage-toggle button.active { background: var(--trust); color: var(--white); }

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-cta-row .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.25); }
.hero-cta-row .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

.hero-stats { display: flex; gap: 36px; padding-bottom: 40px; }
.hero-stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--white); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.55); }
/* ── Credentials strip (trust-first archetype) ── */
.credentials { padding: 72px 0 40px; }
.credentials-inner {
  display: flex; flex-wrap: wrap; gap: 28px; justify-content: center;
}
.credential-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 22px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; color: var(--slate);
}
.credential-item svg { color: var(--trust); flex-shrink: 0; }

/* ── Problem section ── */
.problem { background: var(--white); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.problem-list li { display: flex; gap: 14px; font-size: 16px; color: var(--slate); }
.problem-list li svg { flex-shrink: 0; color: var(--trust); margin-top: 3px; }

/* ── Services — 2-across large cards ── */
.services { background: var(--mist); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card-icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--mist);
  display: flex; align-items: center; justify-content: center; color: var(--trust);
  margin-bottom: 24px;
}
.service-card h3 { font-size: 24px; margin-bottom: 12px; }
.service-card p { color: var(--steel); margin-bottom: 24px; flex: 1; }
.service-card-list { list-style: none; margin-bottom: 28px; }
.service-card-list li { display: flex; gap: 10px; font-size: 14px; color: var(--slate); padding: 6px 0; }
.service-card-list li::before { content: '✓'; color: var(--trust); font-weight: 700; }

/* ── Process / how it works ── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.process-step { text-align: left; }
.process-num {
  font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--white);
  background: var(--ink); width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.process-step h3 { font-size: 19px; margin-bottom: 10px; }
.process-step p { color: var(--steel); font-size: 15px; }

/* ── Proof — testimonials ── */
.proof { background: var(--slate); color: var(--white); }
.proof .section-title, .proof .eyebrow { color: var(--white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px;
}
.testimonial-stars { color: #F5B942; font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { color: rgba(255,255,255,0.85); margin-bottom: 20px; font-size: 15px; }
.testimonial-author { font-weight: 600; font-size: 14px; }
.testimonial-loc { color: rgba(255,255,255,0.5); font-size: 13px; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 17px; color: var(--ink);
}
.faq-question .icon { transition: transform 0.3s var(--ease); color: var(--trust); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-answer-inner { padding-bottom: 22px; color: var(--steel); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--ink), var(--slate));
  color: var(--white); text-align: center; padding: 80px 0;
}
.cta-band h2 { color: var(--white); font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 32px; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   8. FORMS
   ═══════════════════════════════════════════════════════════ */
.ahc-form-wrap {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 36px; border: 1px solid var(--line); max-width: 460px;
}
.ahc-form-wrap h3 { font-size: 21px; margin-bottom: 6px; }
.ahc-form-wrap .form-sub { color: var(--steel); font-size: 14px; margin-bottom: 24px; }
.ahc-field { margin-bottom: 16px; }
.ahc-field label { display: block; font-size: 13px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.ahc-field input, .ahc-field select, .ahc-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; color: var(--ink); transition: border-color 0.2s;
}
.ahc-field input:focus, .ahc-field select:focus, .ahc-field textarea:focus {
  outline: none; border-color: var(--trust);
}
.ahc-field.error input, .ahc-field.error select { border-color: #D64545; }
.ahc-field-error-msg { display: none; font-size: 12px; color: #D64545; margin-top: 4px; }
.ahc-field.error .ahc-field-error-msg { display: block; }
.ahc-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.ahc-submit { width: 100%; margin-top: 8px; }
.ahc-success { display: none; text-align: center; padding: 20px 0; }
.ahc-success.show { display: block; }
.ahc-success-icon {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(30,138,95,0.12);
  color: var(--trust); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.ahc-success h4 { font-size: 19px; margin-bottom: 8px; }
.ahc-success p { color: var(--steel); font-size: 14px; }
.ahc-lead-ref { font-family: monospace; font-weight: 700; color: var(--trust); }
.form-disclaimer { font-size: 11px; color: var(--steel); margin-top: 14px; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   9. FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .nav-logo-text { color: var(--white); }
.footer-brand p { margin-top: 14px; font-size: 14px; line-height: 1.6; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 14px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-phone, .footer-email { display: block; font-size: 14px; margin-bottom: 8px; }
.footer-bottom { padding-top: 24px; display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-disclaimer { color: rgba(255,255,255,0.4); max-width: 640px; }

.sticky-call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--trust); color: var(--white); text-align: center;
  padding: 14px; font-weight: 700; font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════
   10. RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
	.hero-video-bg { display: none; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-call-bar { display: block; }
  body { padding-bottom: 54px; }
  .credentials-inner { flex-direction: column; align-items: stretch; }
  .hero-video-bg { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   11. REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ── Page hero (About / Contact / legal) — single column ── */
.page-hero {
  background: linear-gradient(180deg, var(--ink) 0%, #16263D 100%);
  color: var(--white); text-align: center; padding: 76px 0 64px;
}
.page-hero .eyebrow { color: #7FD9AE; justify-content: center; }
.page-hero .eyebrow::before { display: none; }
.page-hero h1 { font-size: clamp(32px, 4.2vw, 48px); color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 600px; margin: 0 auto; }

/* ── About — values grid ── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); }
.value-card-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--mist);
  display: flex; align-items: center; justify-content: center; color: var(--trust); margin-bottom: 18px;
}
.value-card h3 { font-size: 19px; margin-bottom: 10px; }
.value-card p { color: var(--steel); font-size: 15px; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item svg { color: var(--trust); flex-shrink: 0; margin-top: 2px; }
.contact-info-item h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--steel); font-size: 15px; }

/* ── Legal content ── */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; margin: 36px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--slate); font-size: 15.5px; line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { padding-left: 22px; }
.legal-content .legal-updated { color: var(--steel); font-size: 14px; margin-bottom: 32px; }
.legal-notice {
  background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 20px; font-size: 14px; color: var(--steel); margin-bottom: 32px;
}
