:root {
  --navy: #1d3557;
  --teal: #2a9d8f;
  --gold: #e9c46a;
  --red: #c94c4c;
  --ink: #263238;
  --muted: #607d8b;
  --line: #d7e0e4;
  --pale: #f4f8f9;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(29, 53, 87, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--white);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

nav a:hover,
.header-cta:hover {
  color: var(--navy);
}

.header-cta {
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 7vw, 94px) clamp(20px, 5vw, 72px) 44px;
  overflow: hidden;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(29px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 660px;
  margin: 22px 0 24px;
  color: #40545d;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 20px;
}

.proof-grid span {
  min-height: 54px;
  padding: 13px 14px 13px 40px;
  color: var(--navy);
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}

.proof-grid span::before,
.check-list li::before,
.issue-list li::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
}

.proof-grid span::before {
  top: 17px;
  left: 16px;
  box-shadow: inset 0 0 0 4px #dff2ee;
}

.focus-line {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 850;
  border: 1px solid transparent;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button.secondary.light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.46);
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  display: block;
  width: min(100%, 680px);
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

section {
  padding: clamp(58px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.section-band {
  background: var(--pale);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  max-width: 1120px;
}

.split p,
.about p {
  margin: 0 0 16px;
  color: #40545d;
  font-size: 20px;
}

.issue-list,
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.issue-list li,
.check-list li {
  position: relative;
  min-height: 38px;
  padding: 8px 0 8px 34px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
}

.issue-list li::before,
.check-list li::before {
  top: 13px;
  left: 2px;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px #fff7de;
}

.check-list li::before {
  background: var(--teal);
  box-shadow: inset 0 0 0 4px #dff2ee;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.outcome-grid article {
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.outcome-grid p,
.process-list p {
  margin: 0;
  color: #526a74;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.serve-outcomes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 6vw, 92px);
}

.offer {
  background: var(--navy);
}

.offer-panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(42, 157, 143, 0.26), transparent 44%),
    #243f63;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.offer-panel h2,
.final-cta h2 {
  color: var(--white);
}

.price {
  margin: 12px 0 30px;
  color: #cde8e4;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 850;
}

.offer-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
  gap: 28px;
  align-items: stretch;
}

.offer .check-list li {
  color: var(--white);
}

.timeline {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.timeline span {
  color: #cde8e4;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline strong {
  margin-top: 6px;
  font-size: 29px;
  line-height: 1.1;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(26px, 5vw, 68px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  background: #eef5f4;
}

.contact-intro {
  max-width: 520px;
}

.contact-intro p:not(.eyebrow) {
  color: #526a74;
}

.contact-email {
  display: inline-block;
  margin-top: 12px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: #18324a;
  background: #fbfdfd;
  border: 1px solid #b8c9ce;
  border-radius: 4px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(42, 157, 143, 0.22);
  border-color: var(--teal);
}

.contact-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: -7px 0 0;
  color: #617780;
  font-size: 13px;
}

.form-trap {
  position: absolute;
  left: -10000px;
}

.thank-you-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 72px);
  padding: 40px 20px;
  background: #eef5f4;
}

.thank-you-page section {
  width: min(720px, 100%);
  padding: clamp(32px, 6vw, 64px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.thank-you-page p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 26px;
  color: #526a74;
}

.final-cta {
  color: var(--white);
  text-align: center;
  background: var(--teal);
}

.final-cta .eyebrow {
  color: #e5faf7;
}

.final-cta h2 {
  max-width: 820px;
  margin: 0 auto 24px;
}

.button-row.center {
  justify-content: center;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding: 28px 20px;
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

footer strong {
  color: var(--navy);
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .split,
  .serve-outcomes,
  .about,
  .offer-content,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .outcome-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
  }

  .header-cta {
    display: none;
  }

  .proof-grid,
  .outcome-grid,
  .process-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 40px;
  }
}
