@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=JetBrains+Mono:wght@400;500&display=swap');

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

:root {
  --teal: #008291;
  --deep: #003b42;
  --sand: #f0a93b;
  --white: #ffffff;
  --offwhite: #f4f9f9;
  --mist: #e4f1f2;
  --ink: #1a2e30;
  --slate: #456066;
  --border: rgba(0,130,145,0.13);
  --shadow: 0 2px 18px rgba(0,59,66,.07), 0 1px 4px rgba(0,59,66,.05);
  --font-d: 'Instrument Sans', sans-serif;
  --font-m: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-d);
  background: #ebf3f3;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; border: none; cursor: pointer; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--teal); color: white; padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 10px; top: 10px; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,249,249,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-nav .wrap {
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 38px; width: auto; flex-shrink: 0; }
.nav-sub { font-family: var(--font-m); font-size: 8.5px; color: var(--teal); letter-spacing: .1em; text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-link { font-size: 13.5px; color: var(--slate); font-weight: 500; }
.nav-link:hover { color: var(--deep); }
.nav-cta {
  background: var(--teal); color: white;
  padding: 9px 17px; border-radius: 6px;
  font-size: 13px; font-weight: 700;
  letter-spacing: -.01em; display: inline-block;
}
.nav-cta:hover { background: var(--deep); }
.nav-toggle {
  display: none;
  background: none; padding: 6px; color: var(--deep);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column; align-items: flex-start;
    padding: 18px 24px 22px; gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-cta { width: 100%; text-align: center; }
}

/* ── HERO ── */
.site-hero {
  background: linear-gradient(155deg, var(--deep) 0%, #005060 55%, #007280 100%);
  padding: 76px 24px 64px;
  position: relative;
  overflow: hidden;
}
.hero-ripple {
  position: absolute; right: -60px; bottom: -100px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,130,145,.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-ripple2 {
  position: absolute; right: 80px; bottom: -20px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,169,59,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1080px; margin: 0 auto; position: relative; }
.hero-eyebrow {
  font-family: var(--font-m); font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--sand); display: block; }
.hero-headline {
  font-size: clamp(34px, 5.5vw, 54px); font-weight: 700; color: white;
  line-height: 1.1; letter-spacing: -.03em; margin-bottom: 18px; max-width: 620px;
}
.hero-headline em { font-style: italic; color: var(--sand); }
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,.65);
  margin-bottom: 34px; max-width: 460px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-btn {
  background: var(--sand); color: var(--deep);
  padding: 14px 26px; border-radius: 7px;
  font-size: 14px; font-weight: 700; letter-spacing: -.01em; display: inline-block;
}
.hero-btn:hover { background: #ffbc5a; }
.hero-ghost {
  color: rgba(255,255,255,.75); font-size: 14px; font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px;
}
.hero-ghost:hover { color: white; }
.hero-badge {
  position: absolute; top: -6px; right: 0;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px; padding: 14px 18px; text-align: center;
}
.hero-badge-num { font-family: var(--font-m); font-size: 18px; font-weight: 500; color: var(--sand); line-height: 1; }
.hero-badge-lbl { font-family: var(--font-m); font-size: 8.5px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); margin-top: 4px; }
@media (max-width: 640px) { .hero-badge { position: static; display: inline-flex; flex-direction: column; margin-bottom: 24px; } }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
}
.trust-bar .wrap {
  padding: 16px 24px; display: flex; gap: 30px; align-items: center; flex-wrap: wrap;
}
.trust-pill { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--slate); font-weight: 500; }
.trust-pill .ico { font-size: 15px; }
.trust-pill strong { color: var(--ink); }

/* ── SHARED SECTION STYLES ── */
.section { background: var(--white); border-bottom: 1px solid var(--border); }
.section.alt { background: var(--offwhite); }
.sec { padding: 64px 24px; max-width: 1080px; margin: 0 auto; }
.sec-eyebrow {
  font-family: var(--font-m); font-size: 10.5px;
  letter-spacing: .13em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
}
.sec-heading { font-size: clamp(24px, 3.4vw, 32px); font-weight: 700; color: var(--deep); letter-spacing: -.025em; margin-bottom: 12px; line-height: 1.18; }
.sec-body { font-size: 15px; color: var(--slate); line-height: 1.7; max-width: 600px; }

/* ── SERVICE CARDS ── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 30px; }
.svc-card { background: var(--offwhite); border-radius: 10px; padding: 22px 20px; border: 1px solid var(--border); }
.section.alt .svc-card { background: var(--white); }
.svc-icon { font-size: 24px; margin-bottom: 12px; }
.svc-name { font-size: 14.5px; font-weight: 700; color: var(--deep); margin-bottom: 6px; }
.svc-desc { font-size: 13px; color: var(--slate); line-height: 1.65; }
.svc-tag {
  display: inline-block; margin-top: 11px;
  font-family: var(--font-m); font-size: 9px; padding: 3px 9px; border-radius: 99px;
  background: rgba(0,130,145,.09); color: var(--teal); letter-spacing: .08em; text-transform: uppercase;
}
@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } }
@media (min-width: 761px) and (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }

/* ── PROCESS ── */
.process-track { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 34px; position: relative; }
.process-track::before {
  content: ''; position: absolute; top: 17px; left: calc(12.5% + 2px); right: calc(12.5% + 2px);
  height: 1.5px; background: linear-gradient(90deg, var(--teal) 0%, var(--sand) 100%); z-index: 0;
}
.proc-step { text-align: center; padding: 0 8px; position: relative; z-index: 1; }
.proc-num {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
  font-family: var(--font-m); font-size: 12px; font-weight: 500; background: var(--deep); color: white;
}
.proc-num.hi { background: var(--sand); color: var(--deep); font-weight: 700; }
.proc-title { font-size: 13.5px; font-weight: 700; color: var(--deep); margin-bottom: 6px; }
.proc-body { font-size: 12.5px; color: var(--slate); line-height: 1.6; }
@media (max-width: 700px) {
  .process-track { grid-template-columns: 1fr; gap: 28px; }
  .process-track::before { display: none; }
}

/* ── ABOUT ── */
.about-layout { display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: start; margin-top: 8px; }
.about-photo {
  background: linear-gradient(160deg, var(--mist), var(--offwhite));
  border-radius: 12px; aspect-ratio: 3/4;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1.5px dashed rgba(0,130,145,.28); color: var(--teal); font-size: 32px; gap: 10px;
}
.about-photo span { font-family: var(--font-m); font-size: 9.5px; color: var(--slate); letter-spacing: .09em; text-transform: uppercase; text-align: center; padding: 0 12px; }
.about-role { font-family: var(--font-m); font-size: 10.5px; color: var(--teal); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.about-name { font-size: 22px; font-weight: 700; color: var(--deep); margin-bottom: 16px; letter-spacing: -.02em; }
.about-p { font-size: 14px; color: var(--slate); line-height: 1.78; margin-bottom: 14px; }
.cpo-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(130deg, var(--deep), #005060); color: white;
  padding: 10px 16px; border-radius: 8px; font-size: 12.5px; font-weight: 600; margin-top: 6px; letter-spacing: -.01em;
}
.cpo-pill .ico { font-size: 16px; }
@media (max-width: 640px) { .about-layout { grid-template-columns: 1fr; } .about-photo { max-width: 220px; } }

/* ── TESTIMONIALS / REVIEW PROMPT ── */
.review-prompt {
  margin-top: 24px; background: var(--white); border: 1.5px dashed var(--border);
  border-radius: 12px; padding: 30px 26px; text-align: center;
}
.section.alt .review-prompt { background: var(--offwhite); }
.review-prompt p { font-size: 14px; color: var(--slate); max-width: 460px; margin: 0 auto 16px; line-height: 1.6; }
.review-prompt .hero-btn { padding: 11px 20px; font-size: 13px; }

/* ── FAQ ── */
.faq-list { margin-top: 20px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  padding: 18px 4px; font-size: 14.5px; font-weight: 700; color: var(--deep);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--teal); font-weight: 400; flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-a { font-size: 13.5px; color: var(--slate); line-height: 1.7; padding: 0 4px 18px; max-width: 640px; }

/* ── QUOTE / CTA FORM ── */
.site-cta {
  background: linear-gradient(150deg, var(--deep) 0%, #005060 100%);
  padding: 64px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-wave { position: absolute; bottom: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--teal), var(--sand), var(--teal)); opacity: .4; }
.cta-inner { max-width: 460px; margin: 0 auto; position: relative; }
.cta-eyebrow { font-family: var(--font-m); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--sand); margin-bottom: 16px; }
.cta-headline { font-size: clamp(26px, 4vw, 34px); font-weight: 700; color: white; letter-spacing: -.025em; line-height: 1.18; margin-bottom: 12px; }
.cta-sub { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 30px; line-height: 1.65; }

.quote-form { text-align: left; display: flex; flex-direction: column; gap: 14px; }
.quote-form label { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 600; margin-bottom: 6px; display: block; letter-spacing: -.01em; }
.quote-form input, .quote-form textarea {
  width: 100%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px; padding: 12px 14px; font-size: 14px; color: white; font-family: var(--font-d);
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(255,255,255,.4); }
.quote-form input:focus, .quote-form textarea:focus { outline: 2px solid var(--sand); outline-offset: 1px; background: rgba(255,255,255,.14); }
.quote-form textarea { resize: vertical; min-height: 80px; }
.quote-form .field-row { display: flex; gap: 12px; }
.quote-form .field-row > div { flex: 1; }
.quote-form .hp-field { position: absolute; left: -9999px; }
.cta-btn {
  background: var(--sand); color: var(--deep);
  padding: 13px 20px; border-radius: 6px; border: none;
  font-size: 14.5px; font-weight: 700; white-space: nowrap; margin-top: 4px;
}
.cta-btn:hover { background: #ffbc5a; }
.cta-note { font-size: 11.5px; color: rgba(255,255,255,.4); margin-top: 14px; }

/* ── FOOTER ── */
.site-footer { background: var(--ink); padding: 30px 24px; }
.site-footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-left img { height: 34px; width: auto; flex-shrink: 0; }
.footer-left .fs { font-family: var(--font-m); font-size: 9px; color: rgba(255,255,255,.35); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-link { font-size: 12.5px; color: rgba(255,255,255,.45); }
.footer-link:hover { color: rgba(255,255,255,.8); }

/* ── SUCCESS PAGE ── */
.success-page {
  min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
}
.success-page .icon { font-size: 44px; margin-bottom: 18px; }
.success-page h1 { font-size: 26px; color: var(--deep); margin-bottom: 12px; }
.success-page p { color: var(--slate); max-width: 420px; margin-bottom: 24px; line-height: 1.6; }
