/* ---------- Tokens ---------- */
:root {
  --bg: #ffffff;
  --surface: #f7f7f8;
  --surface-2: #f2f2f4;
  --border: #e5e7eb;
  --border-strong: #d1d5db;
  --text: #111827;
  --text-muted: #4b5563;
  --text-soft: #6b7280;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-fg: #ffffff;
  --accent-soft: #eef2ff;
  --danger-soft: #fef2f2;
  --danger-border: #fecaca;

  --radius: 14px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.04);
  --shadow: 0 4px 16px rgba(17, 24, 39, 0.06), 0 1px 2px rgba(17, 24, 39, 0.04);

  --max-w: 1080px;
  --max-w-narrow: 720px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 70px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

h1, h2, h3 {
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p { margin: 0 0 1em; }

:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.container.narrow { max-width: var(--max-w-narrow); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}

.wordmark {
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 15px;
  white-space: nowrap;
}
.wordmark:hover { text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.1s ease, box-shadow 0.18s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.18);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:active { transform: translateY(1px); }

.btn-sm { padding: 8px 14px; font-size: 14px; }
.btn-lg { padding: 15px 28px; font-size: 17px; }

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 48px;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--text-soft);
  margin: 0 0 12px;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(1.75rem, 5.5vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.028em;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.subhead {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  max-width: 56ch;
  margin: 0 auto 24px;
}

.hero-cta-wrap {
  margin: 0 0 16px;
}

.hero-meta {
  margin: 0 0 6px;
  color: var(--text-soft);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.hero-reassurance {
  max-width: 50ch;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 15px;
}

/* ---------- Sections ---------- */
.section { padding: 56px 0; }

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section > .container > p,
.section > .container.narrow > p {
  max-width: 65ch;
  color: var(--text-muted);
  font-size: 15.5px;
}

.section-lead {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 24px;
}

/* ---------- Card grid ---------- */
.card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.1s ease;
}
.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0 0 4px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text);
  line-height: 1.35;
}
.card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ---------- Two-column for/not-for ---------- */
.two-col {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-sm);
}
.col h3 {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.col h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
}
.col-for h3 { color: #15803d; }
.col-for h3::before { background: #16a34a; }
.col-not h3 { color: #6b7280; }
.col-not h3::before { background: #9ca3af; }

.fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fit-list li {
  padding: 0;
}
.fit-list li + li {
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.fit-list li strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
  letter-spacing: -0.005em;
  margin-bottom: 3px;
}
.fit-list li span {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.steps li {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

.steps h3 {
  margin: 0 0 6px;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- FAQ ---------- */
.faq {
  border-top: 1px solid var(--border);
}
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 18px 2px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
  padding: 2px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 10px 0 2px;
  color: var(--text-muted);
  max-width: 65ch;
  font-size: 14.5px;
}

/* ---------- Booking ---------- */
.booking-lead {
  margin: 0 0 22px;
  color: var(--text-muted);
  max-width: 65ch;
  font-size: 15px;
}

.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
  margin: 0 auto;
  max-width: 900px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.policy {
  margin: 28px auto 0;
  max-width: 68ch;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.policy h3 {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 600;
}
.policy p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0 56px;
  text-align: center;
}
.wordmark-footer {
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-contact { margin: 0 0 18px; }
.site-footer a {
  color: var(--text-muted);
  font-size: 14px;
}
.site-footer a:hover { color: var(--accent); }
.site-footer .footer-legal {
  font-size: 12.5px;
  color: var(--text-soft);
  margin: 0 auto 2px;
  max-width: 60ch;
  line-height: 1.55;
  letter-spacing: 0.005em;
}
.site-footer .footer-legal + .footer-legal { margin-bottom: 10px; }
.site-footer .disclaimer {
  font-size: 12px;
  color: var(--text-soft);
  max-width: 58ch;
  margin: 10px auto 0;
  line-height: 1.55;
  opacity: 0.85;
}

/* ---------- Small tweaks ---------- */
@media (max-width: 440px) {
  .hero { padding: 48px 0 40px; }
  .section { padding: 48px 0; }
  .calendly-inline-widget { height: 760px; }
  .btn-lg { padding: 14px 22px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
