:root {
  --blue: #1062b2;
  --blue-dark: #0e4f91;
  --navy: #0e2444;
  --muted: #586373;
  --sky: #ecf7ff;
  --light: #f6fafe;
  --border: #cde2f4;
  --green: #1e915f;
  --yellow: #fff8e1;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(14, 36, 68, 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(--navy);
  background: linear-gradient(180deg, var(--sky), #ffffff 34%, #f8fbff 100%);
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(205, 226, 244, 0.7);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand img { width: 44px; height: 44px; border-radius: 12px; }

nav { display: flex; align-items: center; gap: 22px; font-size: 0.95rem; color: var(--muted); }
nav a:hover { color: var(--blue); }
.nav-cta {
  color: var(--white);
  background: var(--blue);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(16, 98, 178, 0.18);
}
.nav-cta:hover { color: var(--white); background: var(--blue-dark); }

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0;
}

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 38px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}
h3 { margin-bottom: 10px; font-size: 1.25rem; line-height: 1.18; }
.hero-text, .section-heading p, .fit-copy p, .cta-section p, .intake-hero p, .success-card p {
  color: var(--muted);
  font-size: 1.18rem;
  max-width: 720px;
}
.hero-actions, .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0 16px; }
.proof-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
.proof-pills span { padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--navy); font-size: 0.92rem; font-weight: 800; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { color: white; background: var(--blue); box-shadow: 0 14px 30px rgba(16, 98, 178, 0.22); }
.button.primary:hover { background: var(--blue-dark); }
.button.secondary { color: var(--navy); background: var(--white); border-color: var(--border); }
.microcopy { color: var(--muted); max-width: 680px; font-size: 0.98rem; }

.hero-card {
  border: 1px solid var(--border);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  padding: 30px;
}
.hero-logo { width: 220px; margin: 0 auto 22px; border-radius: 30px; }
.flow-list { display: grid; gap: 12px; }
.flow-list div, .fit-list div {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
}
.flow-list span, .fit-list span { color: var(--muted); font-size: 0.95rem; }

.split { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 36px; align-items: start; }
.grid { display: grid; gap: 18px; }
.grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mini-card, .step, .proof-card, .fit, .cta-section, .form-section, .success-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(14, 36, 68, 0.07);
}
.mini-card { padding: 24px; }
.mini-card p, .step p, .proof-card p, .proof-card li { color: var(--muted); }

.section-heading { max-width: 850px; margin-bottom: 34px; }
.proof-grid { display: grid; gap: 28px; }
.proof-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  overflow: hidden;
  padding: 30px;
}
.proof-card.green .pill { background: #eaf8f2; color: var(--green); }
.pill {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  color: var(--blue);
  background: #eaf4ff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.proof-copy ul { padding-left: 20px; margin-bottom: 0; }
.phone-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.phone-strip img, .adam-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--light);
}
.phone-strip img { aspect-ratio: 9 / 16; }
.adam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  grid-template-rows: 160px 180px;
  gap: 14px;
}
.adam-grid .wide { grid-column: 1 / 3; }
.adam-grid .tall { grid-column: 3; grid-row: 1 / 3; }

.process { padding-top: 40px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { padding: 26px; }
.step span { display: inline-flex; color: var(--blue); font-weight: 900; margin-bottom: 16px; }

.fit { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; padding: 40px; align-items: start; }
.fit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.cta-section {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding: 44px;
  margin-bottom: 80px;
  background: linear-gradient(135deg, var(--navy), #123c72);
  color: white;
}
.cta-section .eyebrow { color: #9bd0ff; }
.cta-section p { color: rgba(255,255,255,0.78); }
.cta-section .button.secondary { background: rgba(255,255,255,0.08); color: white; border-color: rgba(255,255,255,0.22); }

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.site-footer div { display: grid; gap: 4px; }
.footer-links { text-align: right; }
.footer-links a { color: var(--blue); }

.intake-hero { padding-bottom: 30px; }
.form-section { padding: 34px; margin-bottom: 70px; }
.intake-form { display: grid; gap: 20px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
label { display: grid; gap: 8px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  font: inherit;
  color: var(--navy);
  background: #fff;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(16, 98, 178, 0.12); }
textarea { resize: vertical; min-height: 104px; }
::placeholder { color: #9aa5b5; opacity: 1; }
.hidden { display: none; }
.form-button { justify-self: start; border: none; cursor: pointer; }
.form-note { color: var(--muted); max-width: 720px; }
.success-card { max-width: 860px; padding: 48px; margin-top: 60px; }

@media (max-width: 900px) {
  .site-header { align-items: flex-start; }
  nav { display: none; }
  .hero, .split, .proof-card, .fit { grid-template-columns: 1fr; }
  .steps, .grid.four, .fit-list { grid-template-columns: 1fr; }
  .cta-section, .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-links { text-align: left; }
  .form-grid { grid-template-columns: 1fr; }
  .phone-strip { grid-template-columns: repeat(3, minmax(100px, 1fr)); overflow-x: auto; }
  .adam-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .adam-grid .wide, .adam-grid .tall { grid-column: auto; grid-row: auto; }
  .adam-grid img { aspect-ratio: 16 / 9; }
  .adam-grid .tall { aspect-ratio: 9 / 16; max-height: 520px; object-fit: cover; }
  h1 { font-size: clamp(2.45rem, 11vw, 3.45rem); line-height: 1.02; letter-spacing: -0.035em; overflow-wrap: normal; }
  .hero-text, .section-heading p, .fit-copy p, .cta-section p, .intake-hero p, .success-card p { font-size: 1rem; }
  .hero-card { padding: 22px; }
}

@media (max-width: 560px) {
  .section { width: min(100% - 28px, 1180px); padding: 42px 0; }
  .hero { min-height: auto; gap: 24px; }
  .proof-card, .form-section, .fit, .cta-section { padding: 20px; }
  .phone-strip { grid-template-columns: 1fr; }
  .phone-strip img { max-height: 520px; object-fit: cover; }
}

/* Mobile overflow hardening */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
.hero-copy,
.hero-card,
.proof-card,
.fit,
.cta-section,
.form-section,
.mini-card,
.step,
.flow-list div,
.fit-list div {
  min-width: 0;
}
@media (max-width: 900px) {
  .section {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  h1, h2, h3, p, a, span, li, strong {
    max-width: 100%;
  }
  h1 {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
  .proof-pills span,
  .button {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 900px) {
  .hero {
    display: block;
  }
  .hero-copy {
    width: 100%;
    max-width: 340px;
  }
  .hero h1 {
    font-size: 36px !important;
    line-height: 1.04 !important;
    letter-spacing: -0.025em !important;
    max-width: 330px;
  }
  .hero-text,
  .microcopy {
    max-width: 330px;
  }
  .proof-pills {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 330px;
  }
  .proof-pills span {
    display: block;
    width: 100%;
  }
  .hero-card {
    width: 100%;
    max-width: 340px;
    margin-top: 24px;
  }
}

/* Live review polish */
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.hero-proof span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(16, 98, 178, 0.08);
  color: var(--navy);
  border: 1px solid rgba(16, 98, 178, 0.16);
  font-size: 0.88rem;
  font-weight: 800;
}
.intake-hero {
  padding-top: 48px;
  padding-bottom: 18px;
}
.intake-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}
.required { color: var(--blue); font-weight: 900; }
.helper {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.92rem;
  margin-top: -2px;
}
.form-section { padding-top: 28px; }
@media (max-width: 900px) {
  .hero-proof { display: grid; grid-template-columns: 1fr; max-width: 330px; }
  .hero-proof span { width: 100%; }
  .hero-card { padding-top: 18px; }
  .hero-logo { width: 150px; margin-bottom: 14px; }
  .flow-list div { padding: 13px 15px; }
  .intake-hero { padding-top: 34px; }
}

/* Mobile brand visibility tweak */
@media (max-width: 900px) {
  .brand img {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }
  .brand span {
    font-size: 1.08rem;
  }
  .site-header {
    min-height: 82px;
  }
  .hero-logo {
    width: 185px;
  }
}
@media (max-width: 420px) {
  .brand img {
    width: 54px;
    height: 54px;
  }
  .brand span {
    font-size: 1rem;
  }
}

/* Mobile proof asset image clarity */
@media (max-width: 900px) {
  .proof-card.green .adam-grid img {
    object-fit: contain;
    background: #ffffff;
    border: 1px solid var(--border);
  }
  .proof-card.green .adam-grid .wide {
    aspect-ratio: 1280 / 435;
  }
  .proof-card.green .adam-grid img:not(.wide):not(.tall) {
    aspect-ratio: 1280 / 533;
  }
  .proof-card.green .adam-grid .tall {
    aspect-ratio: 702 / 1280;
    max-height: none;
    object-fit: contain;
  }
}

/* Final mobile containment pass */
@media (max-width: 900px) {
  .section {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .proof-card,
  .mini-card,
  .step,
  .fit,
  .cta-section,
  .form-section,
  .proof-copy,
  .fit-copy,
  .section-heading,
  .fit-list,
  .steps,
  .grid,
  .adam-grid,
  .phone-strip {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }
  .mini-card p,
  .proof-card p,
  .proof-card li,
  .step p,
  .fit p,
  .fit-list span,
  .cta-section p,
  .cta-section h2 {
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .proof-card.green .adam-grid img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  .proof-card.green .adam-grid .tall {
    width: min(100%, 250px) !important;
    margin: 0 auto;
  }
}

/* Final lower-section mobile overflow fix */
@media (max-width: 900px) {
  main {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .split,
  .grid.four,
  .steps,
  .fit-list {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .fit,
  .cta-section {
    display: block !important;
  }
  .cta-actions,
  .hero-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .button,
  .nav-cta {
    width: 100% !important;
    max-width: 100% !important;
  }
  h2 {
    font-size: clamp(2rem, 9vw, 2.55rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
    overflow-wrap: anywhere !important;
  }
  .section-heading,
  .fit-copy,
  .cta-section > div,
  .step,
  .mini-card,
  .fit-list div {
    width: 100% !important;
    max-width: 100% !important;
  }
  p, li, span, strong, h3 {
    overflow-wrap: anywhere !important;
  }
}

/* Proof Asset 2 complete-image layout */
.proof-card.green .adam-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto;
  align-items: start;
}
.proof-card.green .adam-grid .wide {
  grid-column: 1 / -1;
  aspect-ratio: 1280 / 435;
}
.proof-card.green .adam-grid img:not(.wide):not(.tall) {
  aspect-ratio: 1280 / 533;
}
.proof-card.green .adam-grid .tall {
  grid-column: 1 / -1;
  grid-row: auto;
  width: min(100%, 270px);
  justify-self: center;
  aspect-ratio: 702 / 1280;
}
.proof-card.green .adam-grid img {
  object-fit: contain;
  background: #ffffff;
}

/* Brand logo size bump — desktop + mobile */
.brand img {
  width: 68px;
  height: 68px;
  border-radius: 18px;
}
.brand span {
  font-size: 1.18rem;
}
.site-header {
  min-height: 96px;
}
.hero-logo {
  width: 285px;
}
@media (max-width: 900px) {
  .brand img {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }
  .brand span {
    font-size: 1.12rem;
  }
  .site-header {
    min-height: 104px;
  }
  .hero-logo {
    width: 235px;
  }
}
@media (max-width: 420px) {
  .brand img {
    width: 70px;
    height: 70px;
  }
  .brand span {
    font-size: 1.05rem;
  }
}

/* Desktop header logo — stronger visibility override */
@media (min-width: 901px) {
  .site-header {
    min-height: 116px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .brand {
    gap: 18px !important;
  }
  .brand img {
    width: 96px !important;
    height: 96px !important;
    border-radius: 24px !important;
  }
  .brand span {
    font-size: 1.42rem !important;
  }
  .hero-logo {
    width: 320px !important;
  }
}

/* Click-to-enlarge proof screenshots */
.proof-note {
  margin-top: -14px;
  color: var(--blue) !important;
  font-size: 0.98rem !important;
  font-weight: 800;
}
.enlargeable {
  cursor: zoom-in;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.enlargeable:hover,
.enlargeable:focus-visible {
  transform: translateY(-2px);
  border-color: var(--blue) !important;
  box-shadow: 0 16px 36px rgba(16, 98, 178, 0.18);
  outline: none;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(5, 19, 38, 0.82);
  backdrop-filter: blur(6px);
}
.lightbox[aria-hidden="false"] {
  display: flex;
}
.lightbox-image {
  max-width: min(1160px, 96vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 22px;
  background: white;
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: white;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-open {
  overflow: hidden;
}
@media (max-width: 560px) {
  .lightbox {
    padding: 12px;
  }
  .lightbox-image {
    max-width: 96vw;
    max-height: 84vh;
    border-radius: 16px;
  }
  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}
