/* ============================================================
   Design A — "Movement-X inspired"
   Light, clinical-modern: navy ink, teal CTAs, soft gray bands,
   generous whitespace, rounded cards.
   ============================================================ */
:root {
  --navy: #0d2340;
  --navy-2: #14335c;
  --ink: #1c2a3a;
  --muted: #5b6b7f;
  --teal: #0ea5a3;
  --teal-dark: #0b8a88;
  --gold: #f5b301;
  --bg: #ffffff;
  --bg-soft: #f2f6f9;
  --line: #e3eaf1;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(13, 35, 64, 0.08);
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 700; }

.eyebrow {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 10px;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-sub { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 12px 22px; border-radius: 10px; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(14, 165, 163, 0.35); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-ghost { color: var(--navy); font-size: 0.92rem; padding: 12px 10px; }
.btn-ghost:hover { color: var(--teal-dark); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* ---------- topbar ---------- */
.topbar { background: var(--navy); color: #cfe0f0; font-size: 0.82rem; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; gap: 12px; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; margin-left: 18px; }
.topbar a:hover { color: #8de3e1; }
.topbar-right { white-space: nowrap; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-in { display: flex; align-items: center; gap: 28px; padding-top: 12px; padding-bottom: 12px; }
.brand img { height: 52px; width: auto; border-radius: 8px; }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem;
  padding: 6px 0; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s;
}
.main-nav a:hover { color: var(--teal-dark); border-bottom-color: var(--teal); }
.header-cta { display: flex; align-items: center; gap: 8px; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2.5px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { background: linear-gradient(180deg, #f6fafc 0%, #ffffff 100%); overflow: hidden; }
.hero-in {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px;
  align-items: center; padding-top: 72px; padding-bottom: 88px;
}
.hero h1 em { font-style: normal; color: var(--teal-dark); }
.hero .lead { color: var(--muted); font-size: 1.13rem; margin: 20px 0 28px; max-width: 34rem; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 26px; color: var(--muted); font-size: 0.95rem; }
.hero-media { position: relative; }
.hero-photo {
  border-radius: 24px; box-shadow: var(--shadow);
  aspect-ratio: 5 / 4.4; object-fit: cover; width: 100%;
}
.float-card {
  position: absolute; background: #fff; border-radius: 14px; box-shadow: 0 12px 32px rgba(13,35,64,0.16);
  padding: 12px 18px; display: flex; flex-direction: column; gap: 2px; font-size: 0.85rem;
}
.float-card strong { color: var(--navy); font-family: var(--font-head); }
.float-card-1 { top: 20px; right: -18px; }
.float-card-2 { bottom: 26px; left: -22px; flex-direction: row; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); }
.float-card-2 img { height: 20px; width: auto; }

/* ---------- press ---------- */
.press { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; background: #fff; }
.press-label { text-align: center; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 18px; font-weight: 600; }
.press-logos { display: flex; justify-content: center; align-items: center; gap: clamp(24px, 5vw, 64px); flex-wrap: wrap; }
.press-logos img { height: 26px; width: auto; filter: grayscale(1) opacity(0.55); transition: filter 0.2s; }
.press-logos img:hover { filter: none; }
.press-text { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: #9aa7b5; letter-spacing: 0.02em; }
.press-text.fox { font-size: 1.35rem; letter-spacing: 0.18em; }

/* ---------- how ---------- */
.how { padding: 88px 0; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-card {
  background: var(--bg-soft); border-radius: var(--radius); padding: 34px 28px;
  position: relative; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.how-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.how-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; margin-bottom: 18px;
}
.how-card p { color: var(--muted); margin-top: 8px; font-size: 0.97rem; }

/* ---------- services ---------- */
.services { padding: 88px 0; background: var(--bg-soft); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  border: 1px solid var(--line); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 14px; background: rgba(14, 165, 163, 0.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.svc-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--teal-dark); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.svc-card p { color: var(--muted); margin-top: 8px; font-size: 0.95rem; }
.svc-card-cta { background: var(--navy); border-color: var(--navy); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 6px; }
.svc-card-cta h3 { color: #fff; }
.svc-card-cta p { color: #b9c9dc; }
.svc-card-cta .btn { margin-top: 14px; }

/* ---------- why ---------- */
.why { padding: 88px 0; }
.why-in { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.why-media img { border-radius: 24px; box-shadow: var(--shadow); aspect-ratio: 4/3.4; object-fit: cover; }
.check-list { list-style: none; margin: 22px 0 30px; }
.check-list li { padding-left: 34px; position: relative; margin-bottom: 14px; color: var(--muted); }
.check-list li strong { color: var(--ink); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%; background: rgba(14,165,163,0.14);
  color: var(--teal-dark); font-weight: 800; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
}
.stat-row { display: flex; gap: 36px; border-top: 1px solid var(--line); padding-top: 24px; flex-wrap: wrap; }
.stat strong { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--teal-dark); display: block; line-height: 1.1; }
.stat span { font-size: 0.85rem; color: var(--muted); max-width: 130px; display: block; }

/* ---------- reviews ---------- */
.reviews { padding: 88px 0; background: var(--bg-soft); }
.greviews-badge { display: inline-flex; align-items: center; gap: 18px; text-align: left; }
.g-logo { width: 46px; height: 46px; flex: none; }
.grating { display: flex; align-items: center; gap: 8px; margin-top: 6px; font-size: 1.05rem; color: var(--ink); }
.gcount { color: var(--muted); font-size: 0.9rem; }
.rev-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(290px, 340px);
  gap: 20px; overflow-x: auto; padding: 6px 4px 22px; scroll-snap-type: x mandatory;
}
.rev-track::-webkit-scrollbar { height: 8px; }
.rev-track::-webkit-scrollbar-thumb { background: #cdd9e4; border-radius: 8px; }
.rev-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; scroll-snap-align: start; box-shadow: 0 2px 8px rgba(13,35,64,0.04);
}
.rev-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rev-avatar {
  width: 42px; height: 42px; border-radius: 50%; color: #fff; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
}
.rev-head strong { display: block; font-size: 0.95rem; color: var(--ink); }
.rev-head .stars { font-size: 0.8rem; }
.g-mini { width: 20px; height: 20px; margin-left: auto; opacity: 0.9; }
.rev-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- team ---------- */
.team { padding: 88px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.team-creds { color: var(--teal-dark); font-weight: 700; font-size: 0.88rem; margin: 4px 0 12px; }
.team-card > p:last-of-type { color: var(--muted); font-size: 0.93rem; }
.cred-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.cred-chips span {
  background: var(--bg-soft); border: 1px solid var(--line); color: var(--navy);
  font-size: 0.75rem; font-weight: 700; padding: 5px 11px; border-radius: 999px;
}

/* ---------- associations ---------- */
.assoc { padding: 88px 0; background: var(--bg-soft); }
.assoc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.assoc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; align-items: center; justify-content: center; min-height: 110px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.assoc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.assoc-card img { max-height: 64px; width: auto; max-width: 100%; object-fit: contain; }
.insurance { text-align: center; margin-top: 34px; color: var(--muted); }
.insurance a { color: var(--teal-dark); font-weight: 700; }

/* ---------- contact ---------- */
.contact { padding: 88px 0; }
.contact-in { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-card h2 { margin-bottom: 6px; }
.contact-rows { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.contact-row {
  display: flex; align-items: center; gap: 16px; text-decoration: none;
  border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
a.contact-row:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.c-ico { font-size: 1.4rem; width: 44px; height: 44px; background: var(--bg-soft); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex: none; }
.contact-row strong { color: var(--navy); }
.contact-row small { color: var(--muted); }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- footer ---------- */
.footer { background: var(--navy); color: #b9c9dc; }
.footer-in { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding: 60px 24px 40px; }
.f-brand img { height: 54px; width: auto; border-radius: 8px; margin-bottom: 16px; }
.f-brand p { font-size: 0.92rem; }
.f-col h4 { color: #fff; margin-bottom: 14px; font-size: 1rem; }
.f-col a { display: block; color: #b9c9dc; text-decoration: none; font-size: 0.92rem; margin-bottom: 9px; }
.f-col a:hover { color: #8de3e1; }
.f-col p { font-size: 0.92rem; }
.f-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 18px; padding-bottom: 18px; font-size: 0.82rem; text-align: center; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .assoc-grid { grid-template-columns: repeat(3, 1fr); }
  .header-cta .btn-ghost { display: none; }
}
@media (max-width: 820px) {
  .hero-in, .why-in, .contact-in { grid-template-columns: 1fr; gap: 36px; }
  .hero-in { padding-top: 48px; padding-bottom: 56px; }
  .why-media { order: 2; }
  .how-grid { grid-template-columns: 1fr; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0; padding: 8px 24px 16px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-burger { display: block; margin-left: auto; }
  .main-nav ~ .header-cta { margin-left: 0; }
  .header-cta { margin-left: auto; }
  .header-cta .btn-primary { display: none; }
  .topbar-in { justify-content: center; }
  .topbar-in > span:first-child { display: none; }
  .float-card-1 { right: 8px; }
  .float-card-2 { left: 8px; }
}
@media (max-width: 560px) {
  .svc-grid, .team-grid { grid-template-columns: 1fr; }
  .assoc-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { gap: 24px; }
}
