:root {
  --navy: #1d3557;
  --navy-dark: #14263e;
  --blue: #457b9d;
  --accent: #0184ff;
  --accent-dark: #0468c7;
  --accent-soft: #eaf4fe;
  --sand: #f1faee;
  --paper: #ffffff;
  --ink: #22303f;
  --ink-light: #5a6b7b;
  --border: #e2e8f0;
  --alt-bg: #f6f8fb;
  --radius: 14px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow: 0 4px 16px rgba(29, 53, 87, 0.08);
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --font-head: 'Bricolage Grotesque', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

h2 { font-size: 2.1rem; text-align: center; }
h3 { font-size: 1.15rem; }

.accent-text { color: var(--accent); }

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

.section { padding: 72px 0; }
.section-alt { background: var(--alt-bg); }
.section-sub {
  color: var(--ink-light);
  max-width: 640px;
  font-size: 1.05rem;
  margin: 0 auto 40px;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(1, 132, 255, 0.28);
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-white {
  background: #fff;
  color: var(--accent-dark);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.btn-white:hover { background: var(--accent-soft); }

.btn-phone {
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 9px 18px;
  font-size: 0.92rem;
  white-space: nowrap;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

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

.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
}
.logo span { color: var(--accent); }
.logo:hover { text-decoration: none; }

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--navy); text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--paper) 65%);
  padding: 104px 0 88px;
  text-align: center;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.hero-blob-1 {
  width: 420px;
  height: 420px;
  top: -180px;
  left: -140px;
  background: rgba(1, 132, 255, 0.16);
}
.hero-blob-2 {
  width: 360px;
  height: 360px;
  bottom: -200px;
  right: -120px;
  background: rgba(29, 53, 87, 0.1);
}
.hero-inner { position: relative; z-index: 1; }

.eyebrow {
  display: inline-block;
  background: var(--paper);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--navy);
  font-size: 3.4rem;
  max-width: 780px;
  margin: 0 auto 20px;
}
.hero-sub {
  max-width: 600px;
  margin: 0 auto 32px;
  color: var(--ink-light);
  font-size: 1.15rem;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badges {
  list-style: none;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  color: var(--ink-light);
  font-size: 0.92rem;
  font-weight: 600;
}
.hero-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badges svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  position: relative;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--paper) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(29, 53, 87, 0.12);
}
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--accent);
  margin-bottom: 16px;
}
.card-icon svg { width: 24px; height: 24px; }
.card-index {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: rgba(29, 53, 87, 0.1);
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-light); margin: 0; font-size: 0.96rem; }

.services-note { color: var(--ink-light); text-align: center; }

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.step {
  position: relative;
  text-align: center;
  padding: 8px;
}
.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--accent);
}
.step-icon svg { width: 28px; height: 28px; }
.step-number {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--ink-light); margin: 0; font-size: 0.96rem; }

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-head);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--ink-light);
  margin: 14px 0 0;
}

/* CTA Banner */
.cta-banner-wrap { padding-top: 0; padding-bottom: 0; }
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 16px 36px rgba(1, 132, 255, 0.22);
}
.cta-banner-text { text-align: left; max-width: 560px; }
.cta-banner h2 {
  color: #fff;
  text-align: left;
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

/* Pricing */
.pricing-card {
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--paper) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px;
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
}
.pricing-amount {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--accent);
}
.pricing-label {
  font-weight: 600;
  color: var(--ink-light);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}
.pricing-detail {
  color: var(--ink-light);
  margin-bottom: 26px;
}

/* Booking */
.booking-intro {
  max-width: 560px;
  margin: 0 auto;
}
.calendly-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 12px;
  overflow: hidden;
}
.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
}
.booking-fallback {
  margin-top: 24px;
  color: var(--ink-light);
  text-align: center;
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--alt-bg);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 12px;
}
.contact-form input,
.contact-form textarea {
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.98rem;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.contact-form button { margin-top: 18px; }
.form-note {
  font-size: 0.82rem;
  color: var(--ink-light);
  margin: 10px 0 0;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #b9c9db;
  padding: 32px 0;
  text-align: center;
  font-size: 0.9rem;
}
.footer-sub { margin: 4px 0 0; color: #8ba0b8; }

/* Responsive */
@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; }
  .cta-banner { text-align: center; justify-content: center; padding: 40px 32px; }
  .cta-banner-text { text-align: center; }
  .cta-banner h2 { text-align: center; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    display: none;
    gap: 18px;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-phone { display: none; }
  .hero h1 { font-size: 2.3rem; }
  h2 { font-size: 1.6rem; }
}
