  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0C3877;
    --blue: #1E4B82;
    --gold: #F7C613;
    --light-gray: #d9d9d9;
    --off-white: #ededed;
    --text-dark: #0f1923;
    --text-mid: #3a4a5c;
    --text-muted: #6b7a8d;
    --font: 'Georgia', 'Times New Roman', serif;
    --font-sans: 'Helvetica Neue', 'Arial', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: #fff;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }

  /* --- NAV --- */
  nav {
    background: var(--navy);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav-brand {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: #fff; }

  .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 7px 16px;
    border-radius: 2px;
    font-weight: 600 !important;
    font-size: 13px !important;
  }

  /* --- HERO --- */
  .hero {
    background: var(--navy);
    color: #fff;
    padding: 6rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
  }

  .hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .hero-statement {
    font-family: var(--font);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: normal;
    line-height: 1.2;
    max-width: 780px;
    margin: 0 auto 1.5rem;
    letter-spacing: -0.01em;
  }

  .hero-statement em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-tagline {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-family: var(--font-sans);
    font-weight: 400;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 2px;
    font-family: var(--font-sans);
    transition: background 0.2s, transform 0.1s;
  }

  .btn-primary:hover { background: #e6b800; transform: translateY(-1px); }

  .btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 2px;
    font-family: var(--font-sans);
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

  /* --- SECTIONS --- */
  section {
    padding: 5rem 2rem;
  }

  .section-inner {
    max-width: 980px;
    margin: 0 auto;
  }

  .section-label {
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
    display: block;
  }

  .section-heading {
    font-family: var(--font);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: normal;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .section-intro {
    font-size: 17px;
    color: var(--text-mid);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 3rem;
  }

  /* --- PROBLEM --- */
  .problem-section {
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
  }

  .problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
  }

  .problem-card {
    background: #fff;
    border: 1px solid var(--light-gray);
    border-top: 3px solid var(--blue);
    padding: 1.5rem 1.5rem 1.75rem;
    border-radius: 0;
  }

  .problem-card-icon {
    width: 32px;
    height: 32px;
    background: var(--navy);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .problem-card-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .problem-card h3 {
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--navy);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
  }

  .problem-card p {
    font-size: 14.5px;
    color: var(--text-mid);
    line-height: 1.65;
  }

  /* --- WHAT WE DO --- */
  .what-section {
    background: #fff;
  }

  .what-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .what-copy p {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .what-copy p:last-child { margin-bottom: 0; }

  .what-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.25rem;
    background: var(--off-white);
    border-left: 3px solid var(--gold);
  }

  .highlight-num {
    font-family: var(--font);
    font-size: 22px;
    color: var(--blue);
    font-weight: normal;
    line-height: 1;
    min-width: 28px;
    padding-top: 2px;
  }

  .highlight-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.55;
  }

  .highlight-text strong {
    display: block;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy);
    margin-bottom: 3px;
  }

  /* --- WHO IT'S FOR --- */
  .who-section {
    background: var(--navy);
    color: #fff;
    padding: 4rem 2rem;
  }

  .who-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
  }

  .who-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
  }

  .who-statement {
    font-family: var(--font);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: normal;
    line-height: 1.3;
    color: #fff;
    max-width: 600px;
  }

  .who-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
  }

  .who-tag {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 2px;
    white-space: nowrap;
  }

  /* --- HOW IT WORKS --- */
  .how-section {
    background: #fff;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    margin-top: 2.5rem;
    border: 1px solid var(--light-gray);
  }

  .step-card {
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--light-gray);
    position: relative;
  }

  .step-card:last-child { border-right: none; }

  .step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--light-gray);
    transition: background 0.3s;
  }

  .step-card:hover::before {
    background: var(--gold);
  }

  .step-number {
    font-family: var(--font);
    font-size: 11px;
    font-weight: normal;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    display: block;
  }

  .step-title {
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
  }

  .step-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
  }

  /* --- OFFER --- */
  .offer-section {
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
  }

  .offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
  }

  .offer-card {
    background: #fff;
    border: 1px solid var(--light-gray);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .offer-card-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .offer-card h3 {
    font-family: var(--font);
    font-size: 1.3rem;
    font-weight: normal;
    color: var(--navy);
    line-height: 1.25;
  }

  .offer-card p {
    font-size: 14.5px;
    color: var(--text-mid);
    line-height: 1.65;
    flex: 1;
  }

  .offer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    letter-spacing: 0.02em;
    margin-top: auto;
    padding-top: 0.25rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
    width: fit-content;
  }

  .offer-link:hover {
    color: var(--navy);
    border-bottom-color: var(--navy);
  }

  .offer-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  .offer-card-primary {
    border-top: 3px solid var(--blue);
  }

  /* --- FOOTER --- */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    padding: 2rem;
    text-align: center;
    font-size: 13px;
  }

  footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
  }

  footer a:hover { color: #fff; }

  .footer-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* --- DIVIDER --- */
  .rule {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 1.25rem 0 2rem;
  }

  /* --- MOBILE --- */
  @media (max-width: 700px) {
    nav { padding: 0 1.25rem; }
    .nav-links { display: none; }
    section { padding: 3.5rem 1.25rem; }
    .hero { padding: 4rem 1.25rem 3.5rem; }
    .what-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .who-inner { grid-template-columns: 1fr; gap: 1.75rem; }
    .who-tags { flex-direction: row; flex-wrap: wrap; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card { border-right: none; border-bottom: 1px solid var(--light-gray); }
    .step-card:last-child { border-bottom: none; }
    .footer-inner { flex-direction: column; text-align: center; }
  }

  @media (max-width: 480px) {
    .problem-grid { grid-template-columns: 1fr; }
    .offer-grid { grid-template-columns: 1fr; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
  }

  /* --- CONTACT FORM --- */
.contact-section {
  background: #fff;
  border-top: 1px solid var(--light-gray);
}

.contact-form {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  border: 1px solid var(--light-gray);
  border-radius: 0;
  padding: 11px 14px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-submit {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  font-family: var(--font-sans);
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-submit:hover { background: var(--blue); }
.btn-submit:disabled {
  background: var(--light-gray);
  color: var(--text-muted);
  cursor: not-allowed;
}

.form-status {
  font-size: 14px;
  color: var(--text-mid);
}

.form-status.success { color: #2a7a4b; }
.form-status.error   { color: #b0300e; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

#debug {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow: auto;
  background: #000;
  color: #FF69B4;
  font-family: monospace;
  font-size: 14px;
  padding: 8px;
  z-index: 99999;
}
