:root {
  --navy: #0a1f1a;
  --navy-mid: #133228;
  --accent: #0b7e6f;
  --accent-light: #0f9d8a;
  --accent-soft: #e6faf6;
  --white: #ffffff;
  --off-white: #f5f8f7;
  --warm-gray: #e0e8e6;
  --text: #1a1a1a;
  --muted: #6b7280;
  --line: #dce8e5;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  padding-bottom: 72px;
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

/* NAV */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-brand span { color: var(--accent-light); }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-phone { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500; }
.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-light); }

/* HERO */
.hero {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 40%, rgba(15,157,138,0.13) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
  padding: 72px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #b8fff2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.btn-primary {
  display: inline-block;
  background: var(--accent-light);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.45); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.58);
}
.trust-pill::before {
  content: '✓';
  width: 18px;
  height: 18px;
  background: rgba(15,157,138,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #b8fff2;
  flex-shrink: 0;
}

/* FORM CARD */
.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  color: var(--text);
  position: relative;
}
.form-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-card > p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.step-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 6px;
}
.step-item {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 10px;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.55;
  transition: all 0.2s;
}
.step-item.active {
  opacity: 1;
  border-color: var(--accent-light);
  background: var(--accent-soft);
  color: var(--accent);
}
.step-item strong { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 2px; }
.progress-bar-wrap {
  height: 3px;
  background: var(--warm-gray);
  border-radius: 999px;
  overflow: hidden;
  margin: 10px 0 18px;
}
.progress-fill {
  height: 100%;
  width: 33.33%;
  background: var(--accent-light);
  border-radius: 999px;
  transition: width 0.25s ease;
}
.form-step { display: none; }
.form-step.active { display: block; }
.field-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin: 14px 0 6px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin-top: 6px; }
.choice-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 7px;
  padding: 10px;
  text-align: left;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--text);
}
.choice-btn:hover { border-color: var(--accent-light); background: var(--accent-soft); }
.choice-btn.active { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.field-input, .field-select, .field-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 13px;
  font: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
}
.field-input:focus, .field-select:focus, .field-textarea:focus { outline: none; border-color: var(--accent-light); }
.field-textarea { min-height: 82px; resize: vertical; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  gap: 10px;
}
.btn-next {
  background: var(--accent-light);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-next:hover { background: var(--accent); }
.btn-back {
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-back:hover { border-color: var(--text); color: var(--text); }
.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 14px;
}
.btn-submit:hover { background: var(--navy-mid); }
.consent-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.5;
}
.consent-label a { color: var(--accent); text-decoration: underline; }
.consent-label input { margin-top: 2px; flex-shrink: 0; }
.form-fine { font-size: 11px; color: var(--muted); margin-top: 10px; text-align: center; }
.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

/* CRED BAR */
.cred-bar {
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.cred-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}
.cred-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* SECTIONS */
section { padding: 72px 0; }
.soft { background: var(--off-white); }
.dark { background: var(--navy); color: var(--white); }
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.dark .section-eyebrow { color: rgba(184,255,242,0.7); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
.dark .section-title { color: var(--white); }
.section-sub {
  font-size: 17px;
  color: var(--muted);
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 48px;
}
.dark .section-sub { color: rgba(255,255,255,0.5); }

/* STATS */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  background: var(--accent-soft);
  border: 1px solid #bfeee6;
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--muted); }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.07); transform: translateY(-2px); }
.service-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* SPACES */
.spaces-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.space-card { border: 1px solid var(--line); border-radius: 10px; padding: 26px; }
.space-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.space-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.space-list li { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 9px; }
.space-list li::before { content: '›'; color: var(--accent-light); font-weight: 700; font-size: 16px; flex-shrink: 0; }

/* PROCESS (DARK) */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: rgba(15,157,138,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.process-step h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.48); line-height: 1.6; }

/* PROOF */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.proof-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px;
}
.proof-card strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.proof-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.proof-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  border: 1px solid var(--accent-light);
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.15s;
}
.proof-link:hover { background: var(--accent-light); color: var(--white); }

/* CTA */
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.cta-inner p { font-size: 17px; color: var(--muted); font-weight: 300; max-width: 540px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn-dark {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--navy-mid); }
.btn-muted {
  display: inline-block;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.15s;
}
.btn-muted:hover { border-color: var(--muted); color: var(--text); }
.contact-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  min-width: 280px;
}
.contact-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}
.contact-line { display: flex; flex-direction: column; gap: 12px; }
.contact-item { font-size: 14px; color: rgba(255,255,255,0.7); }
.contact-item strong { color: var(--white); display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }

/* FOOTER */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.45);
  padding: 28px 0 36px;
  font-size: 13px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }

/* MOBILE CTA */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(10,31,26,0.97);
  backdrop-filter: blur(8px);
  z-index: 200;
}
.mobile-cta a {
  text-align: center;
  padding: 13px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
}
.m-call { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: var(--white); }
.m-form { background: var(--accent-light); color: var(--white); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 52px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .spaces-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .contact-box { min-width: auto; }
  .nav-phone { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (min-width: 901px) {
  body { padding-bottom: 0; }
  .mobile-cta { display: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}
