:root {
  --navy: #14213d;
  --navy-soft: #34405c;
  --bg: #fafaf8;
  --bg-alt: #f1f0eb;
  --border: #e2e0d8;
  --accent: #e8862e;
  --accent-dark: #cc7422;
  --text: #14213d;
  --text-muted: #5b6478;
  --max-width: 1080px;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.15rem; }

p { color: var(--text-muted); margin: 0 0 16px; }

a { color: var(--navy); }

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Header */
.site-header {
  position: static;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 16px;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a:hover { color: var(--navy); }

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

.hero-inner {
  max-width: 780px;
}

.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 32px;
}

/* Process */
.process {
  background: var(--bg-alt);
  padding: 80px 0;
}

.process h2 {
  text-align: center;
  margin-bottom: 48px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

/* Solutions / Proof / About: shared narrow text sections */
.solutions, .proof, .about {
  padding: 72px 0;
}

.solutions-inner, .proof-inner, .about-inner {
  max-width: 720px;
}

.proof {
  background: var(--bg-alt);
}

/* Book / final CTA */
.book {
  padding: 88px 0 96px;
  text-align: center;
  background: var(--navy);
}

.book h2, .book p { color: #fff; }

.book-sub {
  color: #cdd3e0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.calendly-inline-widget {
  margin: 32px auto 0;
  max-width: 700px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}

.book-fallback {
  margin-top: 24px;
  font-size: 0.95rem;
}

.book-fallback a {
  color: var(--accent);
  font-weight: 600;
}

/* Footer */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-row a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-row a:hover { color: var(--navy); }

/* Mobile nav toggle (script.js controls .site-nav.open) */
.nav-toggle {
  display: none;
}

/* Responsive */
@media (max-width: 760px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
  }

  .site-nav.open { display: flex; }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: none;
    cursor: pointer;
  }

  .header-row { flex-wrap: wrap; }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero { padding: 64px 0 56px; }
}
