:root {
  --ink: #182229;
  --muted: #5c6970;
  --light: #f4f8fa;
  --panel: #ffffff;
  --line: #dbe5e9;
  --blue: #74b8d8;
  --blue-dark: #2b87ad;
  --slate: #737b7e;
  --shadow: 0 24px 70px rgba(25, 42, 52, 0.12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f6fafc 48%, #ffffff 100%);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 229, 233, 0.7);
}

.brand img { width: 220px; height: auto; }
.nav { display: flex; align-items: center; gap: 26px; font-size: 0.95rem; color: var(--muted); }
.nav a:hover { color: var(--ink); }
.nav-cta { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink) !important; background: #fff; }
.menu-button { display: none; border: 0; background: var(--ink); color: white; padding: 10px 14px; border-radius: 999px; }
.mobile-nav { display: none; }

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(64px, 9vw, 130px) clamp(20px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% -14% auto auto;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 184, 216, 0.26), rgba(116, 184, 216, 0));
  z-index: -1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1, h2, h3 { line-height: 1.05; margin: 0; letter-spacing: -0.04em; }
h1 { max-width: 980px; font-size: clamp(3.2rem, 8vw, 6.8rem); }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); }
h3 { font-size: 1.45rem; }

.hero-copy {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--muted);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--ink); color: #fff; box-shadow: 0 16px 36px rgba(24, 34, 41, 0.18); }
.secondary { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.light { background: #fff; color: var(--ink); }
.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.46); }

.hero-card {
  justify-self: end;
  max-width: 390px;
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  border: 1px solid rgba(219, 229, 233, 0.9);
}
.hero-card span { display: block; font-size: clamp(3rem, 6vw, 5rem); font-weight: 900; letter-spacing: -0.08em; color: var(--blue-dark); }
.hero-card p { margin: 12px 0 0; color: var(--muted); font-size: 1.08rem; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.trust-strip p { margin: 0; padding: 22px; background: #fff; text-align: center; color: var(--muted); font-weight: 700; }

.section { padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 72px); }
.section-heading { max-width: 840px; margin-bottom: 38px; }

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 36px rgba(25, 42, 52, 0.06);
}
.offer-card.featured { border-color: rgba(43, 135, 173, 0.35); box-shadow: var(--shadow); }
.offer-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 38px;
}
.offer-number { color: var(--blue-dark); font-weight: 900; }
.offer-card > .offer-number { margin-bottom: 38px; }
.offer-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(43, 135, 173, 0.1);
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.offer-summary { color: var(--muted); font-size: 1.05rem; margin: 18px 0 22px; }
ul { padding-left: 20px; margin: 0; }
li { margin: 12px 0; color: var(--muted); }
.price { margin: auto 0 0; padding-top: 28px; font-weight: 900; color: var(--ink); }

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 7vw, 100px);
  background: var(--light);
}
.approach-list { display: grid; gap: 18px; }
.approach-list div { padding: 26px; border-radius: 22px; background: #fff; border: 1px solid var(--line); }
.approach-list p { color: var(--muted); margin: 12px 0 0; }

.fit-section { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fit-card { padding: clamp(28px, 5vw, 50px); border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.fit-card h2 { margin-bottom: 24px; }
.fit-card.dark { background: var(--ink); color: #fff; }
.fit-card.dark li { color: rgba(255,255,255,0.78); }

.cta-section {
  margin: 0 clamp(20px, 5vw, 72px) clamp(56px, 7vw, 90px);
  padding: clamp(34px, 6vw, 64px);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, var(--blue-dark), #244653);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-section .eyebrow { color: rgba(255,255,255,0.8); }
.cta-section p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,0.78); font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.intake-hero {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px) clamp(36px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}

.intake-hero::before {
  content: "";
  position: absolute;
  inset: -18% auto auto 48%;
  width: 560px;
  height: 560px;
  border-radius: 42%;
  background: radial-gradient(circle, rgba(116, 184, 216, 0.24), rgba(116, 184, 216, 0));
  z-index: -1;
}

.intake-hero h1 { max-width: 980px; }
.intake-section { padding-top: 0; }

.intake-card {
  max-width: 1040px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.intake-form { display: grid; gap: 26px; }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.field {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea { resize: vertical; min-height: 190px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue-dark);
  box-shadow: 0 0 0 4px rgba(116, 184, 216, 0.18);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.platform-fieldset {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  margin: 0;
}

.platform-fieldset legend {
  padding: 0 10px;
  font-weight: 900;
  color: var(--ink);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.checkbox-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue-dark);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status[data-type="error"] { color: #a23a2a; }
.form-status[data-type="success"] { color: #1d7650; }
.form-status[data-type="pending"] { color: var(--blue-dark); }
.form-button { justify-self: start; border: 0; cursor: pointer; font-size: 1rem; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer img { width: 170px; }

@media (max-width: 980px) {
  .nav { display: none; }
  .menu-button { display: inline-flex; }
  .mobile-nav.open { display: grid; gap: 14px; padding: 18px 24px; background: #fff; border-bottom: 1px solid var(--line); }
  .hero, .split-section, .fit-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { justify-self: start; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: auto; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .cta-section { align-items: flex-start; flex-direction: column; }
  .form-grid, .checkbox-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .brand img { width: 176px; }
  .site-header { padding: 14px 18px; }
  h1 { font-size: 3rem; }
  .hero { padding-top: 48px; }
  .trust-strip { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .form-grid, .checkbox-grid { grid-template-columns: 1fr; }
  .intake-card { padding: 24px; }
}
