:root {
  --ink: #07111f;
  --ink-2: #0f1b2d;
  --muted: #647084;
  --soft: #f5f1ea;
  --soft-2: #fbfaf7;
  --white: #ffffff;
  --line: #e5ded5;
  --orange: #ff5a1f;
  --orange-2: #ff7a2f;
  --shadow-soft: 0 18px 55px rgba(7, 17, 31, .10);
  --shadow-strong: 0 34px 110px rgba(0, 0, 0, .30);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--soft);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, .96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: grid;
  line-height: 1;
  min-width: 170px;
}

.brand-main {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.brand-main span,
h1 span,
.conversion-copy h2 span,
.price-message h2 span {
  color: var(--orange);
}

.brand-sub {
  margin-top: 5px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 850;
}

.nav-links a { color: rgba(255,255,255,.86); }
.nav-links a:hover { color: #fff; }

.menu-btn { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  padding: 13px 20px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 900;
  font-size: 14px;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white;
  box-shadow: 0 16px 34px rgba(255, 90, 31, .27);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(255, 90, 31, .34);
}

.btn-large {
  min-height: 60px;
  padding: 17px 24px;
}

.btn-full { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-ghost {
  color: #fff;
  gap: 11px;
  padding-left: 4px;
}

.btn-ghost small {
  color: rgba(255,255,255,.58);
  font-weight: 750;
}

.play-icon {
  width: 38px;
  height: 38px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.05);
  font-size: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 78px;
  color: white;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 90, 31, .18), transparent 30%),
    radial-gradient(circle at 35% -10%, rgba(255, 255, 255, .08), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #081525 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(560px, .98fr);
  gap: 74px;
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 31, .52);
  color: var(--orange);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.eyebrow.dark {
  border-color: rgba(255, 90, 31, .30);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 20px 0 24px;
  max-width: 720px;
  font-size: clamp(58px, 5.4vw, 84px);
  line-height: .91;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.line-keep { white-space: nowrap; }

.hero-lede {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255,255,255,.84);
  font-size: 19px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 31px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 750;
}

.trust-row span::before {
  content: "⊙";
  margin-right: 8px;
  color: #fff;
  opacity: .85;
}

.hero-visual {
  position: relative;
  min-height: 475px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.device {
  border: 2px solid rgba(255,255,255,.40);
  background: #101827;
  box-shadow: var(--shadow-strong);
}

.laptop {
  width: min(720px, 100%);
  border-radius: 22px;
  padding: 12px;
}

.fake-browser {
  overflow: hidden;
  border-radius: 14px;
  background: white;
  color: var(--ink);
}

.fake-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  font-size: 12px;
}

.fake-nav strong {
  font-size: 14px;
  letter-spacing: -.03em;
}

.fake-nav div {
  display: flex;
  gap: 18px;
  color: #253449;
  font-weight: 800;
}

.fake-nav button,
.fake-hero-card button,
.mini-form-card button {
  border: 0;
  border-radius: 6px;
  padding: 9px 13px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.fake-hero-card {
  min-height: 310px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 245px;
  align-items: center;
  gap: 28px;
  padding: 46px 46px;
  background:
    linear-gradient(90deg, rgba(7,17,31,.95), rgba(7,17,31,.54)),
    linear-gradient(135deg, #4f5a69, #d1c5b8);
}

.fake-hero-text h2 {
  color: white;
  margin-bottom: 11px;
  font-size: 39px;
  line-height: 1.03;
  letter-spacing: -.045em;
}

.fake-hero-text p {
  color: rgba(255,255,255,.82);
  font-weight: 750;
}

.fake-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.fake-buttons span {
  display: inline-flex;
  border-radius: 7px;
  padding: 11px 16px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.fake-buttons span:last-child { background: #07111f; }

.quote-card {
  border-radius: 14px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(0,0,0,.22);
}

.quote-card h3 {
  margin-bottom: 3px;
  font-size: 18px;
  letter-spacing: -.03em;
}

.quote-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
}

.quote-card input,
.quote-card textarea,
.mini-form input {
  width: 100%;
  margin-bottom: 9px;
  border: 1px solid #e4e7ec;
  border-radius: 6px;
  padding: 10px;
  color: var(--ink);
  font-size: 12px;
}

.quote-card textarea {
  min-height: 56px;
  resize: none;
}

.quote-card button { width: 100%; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px 22px;
  color: #253449;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.proof-strip span::before {
  content: "◎";
  margin-right: 6px;
}

.phone {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 205px;
  border-radius: 30px;
  padding: 10px;
}

.phone-top {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 52px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #02050a;
}

.phone-screen {
  min-height: 344px;
  border-radius: 21px;
  padding: 32px 16px 15px;
  background: #081525;
  color: white;
}

.phone-brand {
  margin-bottom: 20px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 800;
}

.phone-screen h3 {
  margin-bottom: 9px;
  font-size: 24px;
  line-height: 1.03;
  letter-spacing: -.035em;
}

.phone-screen p {
  color: rgba(255,255,255,.74);
  font-size: 12px;
}

.phone-screen button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 11px;
  background: var(--orange);
  color: #fff;
  font-weight: 950;
}

.phone-screen a {
  display: block;
  margin: 11px 0 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 850;
}

.mini-form {
  border-radius: 10px;
  padding: 13px;
  background: white;
  color: var(--ink);
}

.mini-form strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.conversion-copy h2,
.steps-section h2,
.included-grid h2,
.faq-grid h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 4.4vw, 62px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 950;
}

.section-heading p,
.conversion-copy p,
.included-grid p,
.faq-grid p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.pain-section,
.steps-section,
.faq-section {
  padding: 76px 0;
  background: #fff;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.pain-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.pain-item .icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f4f6f8;
  box-shadow: 0 12px 28px rgba(7,17,31,.05);
  font-size: 24px;
}

.pain-item strong {
  max-width: 150px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.25;
}

.pain-item span {
  color: var(--orange);
  font-weight: 950;
}

.conversion-section,
.included-section {
  padding: 88px 0;
  background: var(--soft);
}

.conversion-grid {
  display: grid;
  grid-template-columns: minmax(330px, .52fr) minmax(720px, 1.48fr);
  gap: 70px;
  align-items: center;
}

.conversion-copy {
  max-width: 430px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #28364b;
  font-size: 15px;
  font-weight: 750;
}

.check-list li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 950;
}

.before-after {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 54px minmax(340px, 1.05fr);
  gap: 24px;
  align-items: center;
}

.label {
  width: max-content;
  margin: 0 auto 14px;
  border-radius: 999px;
  padding: 6px 16px;
  background: #7d8590;
  color: white;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.after .label { background: var(--orange); }

.site-mini {
  min-height: 318px;
  overflow: hidden;
  border: 1px solid #d7dce5;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.mini-top {
  height: 28px;
  border-bottom: 1px solid #e1e5eb;
  background: #fafafa;
}

.mini-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 30px;
}

.site-mini h3 {
  margin-bottom: 8px;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.site-mini p {
  color: var(--muted);
  font-size: 13px;
}

.site-mini button {
  border: 0;
  border-radius: 6px;
  padding: 10px 13px;
  background: #737c88;
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.muted {
  filter: saturate(.68);
  opacity: .84;
}

.mini-image {
  min-height: 150px;
  background: linear-gradient(135deg, #d0d7df, #8996a7);
}

.mini-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  padding: 0 30px 30px;
}

.mini-boxes span {
  height: 58px;
  border: 1px solid #e1e5eb;
  background: #fafafa;
}

.strong .mini-body {
  background: linear-gradient(90deg, #081525, #33445b);
  color: white;
}

.strong .mini-body p { color: rgba(255,255,255,.76); }
.strong button { background: var(--orange); }

.mini-form-card {
  border-radius: 10px;
  padding: 16px;
  background: white;
  color: var(--ink);
}

.mini-form-card input {
  display: block;
  width: 100%;
  margin: 9px 0;
  border: 1px solid #e4e7ec;
  padding: 8px;
}

.mini-form-card button { width: 100%; }

.mini-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 15px;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
}

.arrow {
  color: var(--orange);
  text-align: center;
  font-size: 58px;
  font-weight: 950;
}

.price-band {
  padding: 58px 0;
  background: #07111f;
  color: white;
}

.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, .55fr);
  gap: 66px;
  align-items: center;
}

.price-message {
  display: flex;
  gap: 28px;
  align-items: center;
}

.price-icon {
  flex: 0 0 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 38px;
  font-weight: 750;
}

.price-message h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1;
  letter-spacing: -.05em;
}

.price-message p {
  margin-bottom: 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.7;
}

.price-card {
  border-left: 1px solid rgba(255,255,255,.16);
  padding-left: 54px;
}

.price strong {
  display: inline-block;
  color: var(--orange);
  font-size: 78px;
  line-height: .9;
  letter-spacing: -.05em;
}

.price span {
  margin-left: 8px;
  font-size: 22px;
  font-weight: 750;
}

.price-card p {
  margin: 7px 0 10px;
  color: var(--orange);
  font-weight: 950;
}

.price-card small {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.62;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 36px;
}

.step {
  min-height: 250px;
  border: 1px solid #edf0f3;
  border-radius: 24px;
  padding: 28px 22px;
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 34px rgba(7,17,31,.045);
}

.step-num {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 13px;
  font-weight: 950;
}

.step-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #f4f6f8;
  font-size: 28px;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.included-grid {
  display: grid;
  grid-template-columns: minmax(430px, .9fr) minmax(520px, 1.1fr);
  gap: 76px;
  align-items: center;
}

.included-card {
  border-radius: 28px;
  padding: 38px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.two-col { grid-template-columns: repeat(2, 1fr); }

.faq-grid {
  display: grid;
  grid-template-columns: minmax(380px, .75fr) minmax(610px, 1.25fr);
  gap: 76px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 13px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  background: var(--soft);
}

summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 950;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.cta-section {
  padding: 96px 0 108px;
  background: linear-gradient(180deg, var(--soft) 0%, #eee9df 100%);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(620px, 1.22fr);
  gap: 70px;
  align-items: center;
  border-radius: 38px;
  padding: 58px;
  background: white;
  box-shadow: 0 30px 100px rgba(7,17,31,.13);
}

.cta-copy {
  max-width: 430px;
}

.cta-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 24px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.cta-proof span::before {
  content: "⊙";
  margin-right: 7px;
  color: var(--orange);
}

.booking-form {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
  box-shadow: 0 20px 58px rgba(7,17,31,.08);
}

.booking-form h3 {
  margin-bottom: 6px;
  font-size: 31px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.booking-form p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.booking-form label span,
.picker-label {
  color: #27364a;
  font-size: 13px;
  font-weight: 950;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid #d8dde6;
  border-radius: 12px;
  padding: 14px;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, .12);
}

.booking-form textarea {
  min-height: 114px;
  resize: vertical;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.calendar-request {
  margin: 18px 0 15px;
  border: 1px solid rgba(255, 90, 31, .18);
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(180deg, #fff8f3 0%, #fff 100%);
  box-shadow: 0 12px 30px rgba(7,17,31,.05);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.calendar-header strong {
  display: block;
  font-size: 19px;
  letter-spacing: -.02em;
}

.calendar-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.timezone-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 999px;
  padding: 8px 11px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.picker-group { margin-top: 17px; }
.picker-label { margin-bottom: 10px; }

.date-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.date-card,
.time-slot {
  border: 1px solid #d8dde6;
  background: white;
  color: var(--ink);
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.date-card {
  min-height: 86px;
  border-radius: 16px;
  padding: 13px 12px;
  text-align: left;
}

.date-card:hover,
.time-slot:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 90, 31, .55);
  box-shadow: 0 10px 24px rgba(7, 17, 31, .08);
}

.date-card.is-selected,
.time-slot.is-selected {
  border-color: var(--orange);
  background: #fff1e9;
  box-shadow: 0 0 0 4px rgba(255, 90, 31, .12);
}

.date-card-day {
  display: block;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -.02em;
}

.date-card-date {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.time-slot {
  min-height: 43px;
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 950;
}

.picker-loading {
  grid-column: 1 / -1;
  border: 1px dashed #d8dde6;
  border-radius: 14px;
  padding: 15px;
  background: white;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 850;
}

.calendar-note,
.form-note {
  margin: 12px 0 0 !important;
  color: #77503b !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  font-weight: 750;
}

.site-footer {
  padding: 34px 0;
  background: #07111f;
  color: white;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.footer-contact {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 800;
}

/* Thank-you page support */
.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,90,31,.18), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #091526 100%);
  color: white;
}

.thank-you-card {
  width: min(720px, 100%);
  border-radius: 34px;
  padding: clamp(34px, 6vw, 62px);
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-strong);
}

.thank-you-card h1 {
  color: var(--ink);
  font-size: clamp(38px, 6vw, 64px);
}

.thank-you-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.thank-you-card .btn { margin-top: 16px; }

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
    gap: 52px;
  }

  h1 {
    font-size: clamp(52px, 5.3vw, 72px);
  }

  .line-keep { white-space: normal; }

  .conversion-grid,
  .included-grid,
  .faq-grid,
  .final-cta {
    gap: 52px;
  }

  .time-slot-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 36px, 1180px);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 10px;
    padding: 9px 12px;
    background: transparent;
    color: white;
    font-size: 21px;
  }

  .nav-links.open {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: #07111f;
    padding: 20px;
  }

  .hero-grid,
  .conversion-grid,
  .included-grid,
  .faq-grid,
  .final-cta,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-lede,
  h1,
  .conversion-copy,
  .cta-copy {
    max-width: none;
  }

  .hero-visual {
    justify-content: center;
  }

  .laptop {
    width: 100%;
  }

  .phone {
    right: 4px;
  }

  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .arrow {
    transform: rotate(90deg);
  }

  .price-card {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.16);
    padding-left: 0;
    padding-top: 28px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta {
    padding: 38px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 50px 0 44px;
  }

  h1 {
    font-size: clamp(42px, 13.4vw, 58px);
    line-height: .95;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    display: grid;
  }

  .fake-nav div,
  .phone {
    display: none;
  }

  .fake-hero-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .proof-strip,
  .pain-grid,
  .steps-grid,
  .two-col,
  .form-grid,
  .date-card-grid {
    grid-template-columns: 1fr;
  }

  .price-message {
    align-items: flex-start;
  }

  .price-icon {
    flex-basis: 56px;
    height: 56px;
    font-size: 28px;
  }

  .final-cta {
    padding: 26px;
    border-radius: 28px;
  }

  .booking-form {
    padding: 22px;
  }

  .calendar-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .time-slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid,
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* Flow v7 surgical repair:
   Fix hero headline clipping by removing forced nowrap behavior and using safe desktop wrapping.
   Also protects the hero grid from horizontal overflow at intermediate desktop widths. */

.hero {
  overflow-x: hidden;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(42px, 5vw, 72px);
}

.hero-copy {
  min-width: 0;
  max-width: 680px;
}

h1 {
  max-width: 680px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.line-keep,
.nowrap {
  white-space: normal !important;
}

@media (min-width: 981px) and (max-width: 1320px) {
  .hero-grid {
    grid-template-columns: minmax(430px, 0.88fr) minmax(500px, 1.12fr);
    gap: 48px;
  }

  h1 {
    font-size: clamp(50px, 5vw, 68px);
    line-height: .94;
    letter-spacing: -0.068em;
  }

  .hero-lede {
    font-size: 18px;
    line-height: 1.65;
  }

  .laptop {
    width: min(650px, 100%);
  }

  .phone {
    width: 188px;
    right: -8px;
  }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  h1,
  .hero-lede {
    max-width: 780px;
  }

  .hero-visual {
    justify-content: center;
  }
}



/* Flow v8 premium hero mockup example.
   Scope: hero website example only. Uses fictional Capital City Injury Law.
   Purpose: communicate semi-bespoke agency-grade conversion site, not a template/Wix-style page. */

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  isolation: isolate;
}

.premium-site-frame {
  width: min(760px, 100%);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.34);
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 36px 110px rgba(0, 0, 0, .42);
}

.premium-site-topbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 17px 22px;
  background: #ffffff;
  border-bottom: 1px solid #dde3ec;
  font-size: 12px;
}

.mock-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-logo span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #07111f;
  color: #f7b733;
  font-family: Georgia, serif;
  font-weight: 900;
}

.mock-logo strong {
  color: #07111f;
  font-size: 15px;
  letter-spacing: -.035em;
}

.mock-nav {
  display: flex;
  gap: 16px;
  color: #27364a;
  font-size: 11px;
  font-weight: 900;
}

.mock-phone {
  border-radius: 999px;
  background: #07111f;
  color: #fff;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 950;
}

.premium-site-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 258px;
  gap: 28px;
  min-height: 390px;
  padding: 44px 40px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,17,31,.96) 0%, rgba(7,17,31,.86) 48%, rgba(7,17,31,.64) 100%),
    radial-gradient(circle at 72% 26%, rgba(247,183,51,.24), transparent 28%),
    linear-gradient(135deg, #1b2c42, #7a6c55);
}

.premium-site-bg {
  position: absolute;
  inset: 0;
  opacity: .25;
  background:
    linear-gradient(90deg, rgba(7,17,31,.90), rgba(7,17,31,.24)),
    repeating-linear-gradient(115deg, rgba(255,255,255,.08) 0 1px, transparent 1px 46px);
}

.premium-site-copy,
.premium-lead-form {
  position: relative;
  z-index: 1;
}

.mock-location {
  margin-bottom: 12px;
  color: #f7b733;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.premium-site-copy h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 45px;
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 950;
}

.premium-site-copy h2 span {
  color: #f7b733;
}

.premium-site-copy p {
  max-width: 380px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 750;
}

.mock-proof-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 410px;
  gap: 12px;
  margin-bottom: 25px;
}

.mock-proof-icons div {
  display: flex;
  align-items: center;
  gap: 9px;
  border-left: 1px solid rgba(255,255,255,.20);
  padding-left: 12px;
}

.mock-proof-icons div:first-child {
  border-left: 0;
  padding-left: 0;
}

.mock-proof-icons b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border: 2px solid #f7b733;
  border-radius: 50%;
  color: #f7b733;
  font-size: 13px;
  font-weight: 950;
}

.mock-proof-icons span {
  color: rgba(255,255,255,.86);
  font-size: 11px;
  line-height: 1.15;
  font-weight: 900;
}

.mock-cta-row {
  display: flex;
  gap: 12px;
}

.mock-cta-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  border-radius: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f7b733, #ff8a1f);
  color: #07111f;
  font-size: 12px;
  font-weight: 950;
}

.mock-cta-row span:last-child {
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.premium-lead-form {
  align-self: center;
  border-radius: 18px;
  padding: 22px;
  background: #ffffff;
  color: #07111f;
  box-shadow: 0 28px 60px rgba(0,0,0,.26);
}

.premium-lead-form h3 {
  margin-bottom: 4px;
  text-align: center;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.premium-lead-form p {
  margin-bottom: 14px;
  color: #4b586b;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.mock-input,
.mock-textarea {
  width: 100%;
  border: 1px solid #d8dde6;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 11px 12px;
  color: #7b8494;
  background: #fbfcfd;
  font-size: 12px;
  font-weight: 650;
}

.mock-textarea {
  min-height: 66px;
}

.premium-lead-form button {
  width: 100%;
  border: 0;
  border-radius: 9px;
  padding: 13px 10px;
  background: linear-gradient(135deg, #f7b733, #ff8a1f);
  color: #07111f;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.premium-lead-form small {
  display: block;
  margin-top: 11px;
  color: #4b586b;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
}

.premium-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e2e7ee;
  background: #fff;
}

.premium-trust-strip div {
  min-height: 76px;
  border-left: 1px solid #e2e7ee;
  padding: 15px 16px;
}

.premium-trust-strip div:first-child {
  border-left: 0;
}

.premium-trust-strip strong {
  display: block;
  margin-bottom: 4px;
  color: #07111f;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 950;
}

.premium-trust-strip span {
  display: block;
  color: #647084;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
}

.premium-phone-preview {
  position: absolute;
  right: -18px;
  bottom: -8px;
  z-index: 2;
  width: 205px;
  min-height: 335px;
  border: 2px solid rgba(255,255,255,.38);
  border-radius: 30px;
  padding: 34px 15px 15px;
  background:
    linear-gradient(180deg, rgba(7,17,31,.94), rgba(7,17,31,.98)),
    linear-gradient(135deg, #27364a, #07111f);
  color: #fff;
  box-shadow: 0 28px 75px rgba(0,0,0,.46);
}

.phone-notch {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 52px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #02050a;
}

.mobile-mock-logo {
  margin-bottom: 18px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 900;
}

.premium-phone-preview h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: .98;
  letter-spacing: -.04em;
}

.premium-phone-preview p {
  color: rgba(255,255,255,.76);
  font-size: 12px;
  line-height: 1.45;
}

.premium-phone-preview button {
  width: 100%;
  border: 0;
  border-radius: 9px;
  margin: 10px 0 13px;
  padding: 11px;
  background: linear-gradient(135deg, #f7b733, #ff8a1f);
  color: #07111f;
  font-size: 12px;
  font-weight: 950;
}

.mobile-proof {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 12px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 850;
}

@media (max-width: 1180px) {
  .premium-site-frame {
    width: min(680px, 100%);
  }

  .premium-site-hero {
    grid-template-columns: minmax(0, 1fr) 235px;
    padding: 38px 34px;
  }

  .premium-site-copy h2 {
    font-size: 38px;
  }

  .premium-phone-preview {
    width: 188px;
    right: -8px;
  }
}

@media (max-width: 980px) {
  .hero-visual {
    justify-content: center;
  }

  .premium-site-frame {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .premium-site-topbar {
    grid-template-columns: 1fr;
  }

  .mock-nav,
  .mock-phone,
  .premium-phone-preview {
    display: none;
  }

  .premium-site-hero {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }

  .premium-site-copy h2 {
    font-size: 34px;
  }

  .mock-proof-icons,
  .premium-trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .mock-cta-row {
    flex-direction: column;
  }
}



/* Flow v9 premium generic service-business hero mockup.
   Scope: hero website example only.
   Uses fictional Apex Service Co. to imply HVAC/home services without locking into one vertical or location.
   No legal, Lincoln, Nebraska, attorney, or location-specific copy. */

.service-site-frame {
  border-color: rgba(255,255,255,.36);
  background: #fff;
}

.service-logo span {
  background: linear-gradient(135deg, #07111f, #15243a);
  color: #ff7a2f;
  font-family: Inter, system-ui, sans-serif;
}

.service-site-hero {
  background:
    linear-gradient(90deg, rgba(7,17,31,.96) 0%, rgba(7,17,31,.86) 45%, rgba(7,17,31,.56) 100%),
    radial-gradient(circle at 78% 20%, rgba(255, 122, 47, .32), transparent 27%),
    radial-gradient(circle at 88% 82%, rgba(255,255,255,.12), transparent 24%),
    linear-gradient(135deg, #18283d, #5d6c78);
}

.service-site-bg {
  opacity: .34;
  background:
    linear-gradient(90deg, rgba(7,17,31,.94), rgba(7,17,31,.18)),
    repeating-linear-gradient(120deg, rgba(255,255,255,.10) 0 1px, transparent 1px 44px),
    radial-gradient(circle at 70% 35%, rgba(255,122,47,.20), transparent 30%);
}

.service-kicker {
  color: #ff8a3d;
}

.service-site-copy h2 {
  max-width: 460px;
  font-size: 44px;
}

.service-site-copy h2 span {
  color: #ff8a3d;
}

.service-site-copy p {
  max-width: 430px;
  font-size: 15px;
}

.service-proof-icons b {
  border-color: #ff8a3d;
  color: #ff8a3d;
}

.service-cta-row span {
  background: linear-gradient(135deg, #ff5a1f, #ff9a3d);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255,90,31,.25);
}

.service-cta-row span:last-child {
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.07);
  color: #fff;
  box-shadow: none;
}

.service-lead-form {
  border: 1px solid rgba(255,122,47,.20);
}

.service-lead-form button {
  background: linear-gradient(135deg, #ff5a1f, #ff9a3d);
  color: #fff;
}

.service-trust-strip strong {
  color: #07111f;
}

.service-phone-preview {
  background:
    linear-gradient(180deg, rgba(7,17,31,.95), rgba(7,17,31,.99)),
    radial-gradient(circle at 65% 18%, rgba(255,122,47,.22), transparent 32%),
    linear-gradient(135deg, #27364a, #07111f);
}

.service-phone-preview button {
  background: linear-gradient(135deg, #ff5a1f, #ff9a3d);
  color: #fff;
}

@media (max-width: 1180px) {
  .service-site-copy h2 {
    font-size: 38px;
  }
}

@media (max-width: 720px) {
  .service-site-copy h2 {
    font-size: 34px;
  }
}



/* Flow layer 12: solution-forward system section.
   Scope: replaces weak problem-list section only. */

.solution-system-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 122, 47, .09), transparent 26%),
    radial-gradient(circle at 88% 70%, rgba(7, 17, 31, .08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

.solution-system-shell {
  position: relative;
  border: 1px solid rgba(7, 17, 31, .08);
  border-radius: 32px;
  padding: clamp(32px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.88)),
    radial-gradient(circle at top right, rgba(255, 122, 47, .13), transparent 30%);
  box-shadow: 0 30px 90px rgba(7, 17, 31, .08);
}

.solution-system-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border-radius: 24px;
  border: 1px solid rgba(7, 17, 31, .045);
  pointer-events: none;
}

.solution-system-heading,
.solution-flow-grid {
  position: relative;
  z-index: 1;
}

.solution-system-heading {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.solution-system-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 122, 47, .22);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 122, 47, .08);
  color: #c84d16;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.solution-system-heading h2 {
  margin: 0 auto 16px;
  max-width: 980px;
  color: #07111f;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 950;
}

.solution-system-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #566276;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 650;
}

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

.solution-card {
  position: relative;
  overflow: hidden;
  min-height: 232px;
  border: 1px solid rgba(7, 17, 31, .08);
  border-radius: 24px;
  padding: 26px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfd);
  box-shadow: 0 18px 42px rgba(7, 17, 31, .06);
}

.solution-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: rgba(255, 122, 47, .08);
}

.solution-card.featured {
  background:
    linear-gradient(135deg, #07111f, #15243a);
  color: #ffffff;
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 26px 62px rgba(7, 17, 31, .22);
}

.solution-card.featured::after {
  background: rgba(255, 122, 47, .20);
}

.solution-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: #07111f;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: -.02em;
}

.solution-card.featured .solution-icon {
  background: linear-gradient(135deg, #ff5a1f, #ff9a3d);
  color: #ffffff;
}

.solution-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #07111f;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 950;
}

.solution-card.featured h3 {
  color: #ffffff;
}

.solution-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5d687a;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 650;
}

.solution-card.featured p {
  color: rgba(255,255,255,.78);
}

@media (max-width: 980px) {
  .solution-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-system-shell {
    padding: 34px 24px;
  }
}

@media (max-width: 640px) {
  .solution-flow-grid {
    grid-template-columns: 1fr;
  }

  .solution-system-heading {
    text-align: left;
  }

  .solution-system-heading h2 {
    font-size: 36px;
  }

  .solution-system-heading p {
    font-size: 16px;
  }

  .solution-card {
    min-height: auto;
  }
}



/* Flow layer 13: premium transformation/system section.
   Scope: replaces Layer 12 six-card feature grid only. */

.transformation-system-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 122, 47, .10), transparent 25%),
    radial-gradient(circle at 92% 80%, rgba(7, 17, 31, .09), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f3f4f0 100%);
}

.transformation-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, .08);
  border-radius: 34px;
  padding: clamp(34px, 5vw, 66px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.88)),
    radial-gradient(circle at top right, rgba(255, 122, 47, .16), transparent 32%);
  box-shadow: 0 34px 100px rgba(7, 17, 31, .09);
}

.transformation-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(7, 17, 31, .045);
  border-radius: 26px;
  pointer-events: none;
}

.transformation-shell::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -110px;
  width: 310px;
  height: 310px;
  border-radius: 999px;
  background: rgba(255, 122, 47, .10);
  pointer-events: none;
}

.transformation-heading,
.transformation-layout {
  position: relative;
  z-index: 1;
}

.transformation-heading {
  max-width: 1000px;
  margin: 0 auto 40px;
  text-align: center;
}

.transformation-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 122, 47, .22);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 122, 47, .08);
  color: #c84d16;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.transformation-heading h2 {
  margin: 0 auto 16px;
  max-width: 960px;
  color: #07111f;
  font-size: clamp(36px, 5vw, 64px);
  line-height: .96;
  letter-spacing: -.07em;
  font-weight: 950;
}

.transformation-heading p {
  max-width: 790px;
  margin: 0 auto;
  color: #566276;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 650;
}

.transformation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 22px;
  align-items: stretch;
}

.flow-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  border-radius: 28px;
  padding: 20px;
  background:
    linear-gradient(135deg, #07111f, #15243a);
  box-shadow: 0 30px 80px rgba(7, 17, 31, .20);
}

.flow-diagram::before {
  content: "";
  position: absolute;
  left: 38px;
  right: 38px;
  top: 78px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,122,47,.18), rgba(255,122,47,.80), rgba(255,122,47,.18));
}

.flow-step {
  position: relative;
  z-index: 1;
  min-height: 292px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  backdrop-filter: blur(8px);
}

.flow-step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,122,47,.72);
  border-radius: 16px;
  background: rgba(255,122,47,.12);
  color: #ff8a3d;
  font-size: 13px;
  font-weight: 950;
}

.flow-step-body h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 950;
}

.flow-step-body p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.installed-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(7, 17, 31, .08);
  border-radius: 28px;
  padding: 30px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfd);
  box-shadow: 0 22px 58px rgba(7, 17, 31, .08);
}

.installed-panel-header span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255,122,47,.10);
  color: #c84d16;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.installed-panel h3 {
  margin: 0 0 22px;
  color: #07111f;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -.06em;
  font-weight: 950;
}

.installed-panel ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
}

.installed-panel li {
  position: relative;
  padding-left: 28px;
  color: #172235;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.installed-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,122,47,.12);
  color: #ff5a1f;
  font-size: 12px;
  font-weight: 950;
}

.installed-note {
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(7,17,31,.96), rgba(21,36,58,.96));
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 650;
}

.installed-note strong {
  color: #ffffff;
}

@media (max-width: 1080px) {
  .transformation-layout {
    grid-template-columns: 1fr;
  }

  .flow-diagram {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-diagram::before {
    display: none;
  }

  .flow-step {
    min-height: 230px;
  }
}

@media (max-width: 640px) {
  .transformation-shell {
    padding: 32px 20px;
  }

  .transformation-heading {
    text-align: left;
  }

  .transformation-heading h2 {
    font-size: 35px;
  }

  .transformation-heading p {
    font-size: 16px;
  }

  .flow-diagram {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .flow-step {
    min-height: auto;
  }

  .installed-panel {
    padding: 24px;
  }
}



/* Flow layer 14: transformation/system layout correction.
   Scope: fixes awkward narrow column layout from layer 13 only. */

.transformation-system-v14 {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 122, 47, .10), transparent 24%),
    radial-gradient(circle at 92% 72%, rgba(7, 17, 31, .08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f4f0 100%);
}

.v14-shell {
  padding: clamp(36px, 5vw, 68px);
}

.v14-heading {
  margin-bottom: 38px;
}

.v14-transformation-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: stretch;
}

.v14-state-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 28px;
  padding: 26px;
  border: 1px solid rgba(7, 17, 31, .08);
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(7, 17, 31, .07);
}

.v14-state-card span {
  width: fit-content;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(7, 17, 31, .06);
  color: #526073;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.v14-state-card h3 {
  margin: 0 0 12px;
  color: #07111f;
  font-size: 28px;
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 950;
}

.v14-state-card p {
  margin: 0;
  color: #5d687a;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 700;
}

.v14-state-card.active {
  background:
    linear-gradient(135deg, #07111f, #15243a);
  color: #ffffff;
  box-shadow: 0 28px 72px rgba(7, 17, 31, .18);
}

.v14-state-card.active span {
  background: rgba(255, 122, 47, .15);
  color: #ff8a3d;
}

.v14-state-card.active h3 {
  color: #ffffff;
}

.v14-state-card.active p {
  color: rgba(255,255,255,.76);
}

.v14-system-core {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 22px;
  background:
    linear-gradient(135deg, #07111f, #15243a);
  box-shadow: 0 34px 90px rgba(7, 17, 31, .23);
}

.v14-system-core::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,122,47,.25), transparent 28%),
    radial-gradient(circle at 84% 70%, rgba(255,255,255,.09), transparent 26%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.06) 0 1px, transparent 1px 42px);
  pointer-events: none;
}

.v14-core-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 122, 47, .14);
  color: #ff8a3d;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.v14-process-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.v14-process-strip article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
}

.v14-process-strip article span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,122,47,.76);
  border-radius: 14px;
  color: #ff8a3d;
  font-size: 12px;
  font-weight: 950;
}

.v14-process-strip h4 {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 950;
  white-space: normal;
}

.v14-process-strip p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

.v14-included-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(7, 17, 31, .08);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 22px 56px rgba(7, 17, 31, .06);
}

.v14-included-copy span {
  display: inline-flex;
  margin-bottom: 11px;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255,122,47,.10);
  color: #c84d16;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.v14-included-copy h3 {
  margin: 0;
  max-width: 420px;
  color: #07111f;
  font-size: 30px;
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 950;
}

.v14-included-band ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
}

.v14-included-band li {
  position: relative;
  padding-left: 28px;
  color: #172235;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.v14-included-band li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,122,47,.12);
  color: #ff5a1f;
  font-size: 12px;
  font-weight: 950;
}

@media (max-width: 1120px) {
  .v14-transformation-map {
    grid-template-columns: 1fr;
  }

  .v14-state-card {
    min-height: auto;
  }

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

  .v14-process-strip article {
    min-height: 210px;
  }
}

@media (max-width: 760px) {
  .v14-shell {
    padding: 32px 20px;
  }

  .v14-process-strip {
    grid-template-columns: 1fr;
  }

  .v14-process-strip article {
    min-height: auto;
    gap: 20px;
  }

  .v14-included-band {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .v14-included-band ul {
    grid-template-columns: 1fr;
  }
}



/* Flow layer 15: premium split conversion-system section.
   Scope: replaces awkward Layer 14 passive/system/active diagram only. */

.premium-conversion-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 122, 47, .10), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(7, 17, 31, .08), transparent 29%),
    linear-gradient(180deg, #ffffff 0%, #f3f0e9 100%);
}

.conversion-split-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(7,17,31,.08);
  border-radius: 36px;
  padding: clamp(34px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.90)),
    radial-gradient(circle at top right, rgba(255, 122, 47, .14), transparent 34%);
  box-shadow: 0 34px 110px rgba(7,17,31,.09);
}

.conversion-split-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(7,17,31,.045);
  border-radius: 28px;
  pointer-events: none;
}

.conversion-split-shell::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255,122,47,.12);
  pointer-events: none;
}

.conversion-copy,
.conversion-system-card,
.conversion-included-row {
  position: relative;
  z-index: 1;
}

.conversion-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 122, 47, .22);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 122, 47, .08);
  color: #c84d16;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.conversion-copy h2 {
  margin: 0 0 16px;
  color: #07111f;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 950;
}

.conversion-copy .lead {
  max-width: 590px;
  margin: 0 0 18px;
  color: #142033;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 900;
}

.conversion-copy p:not(.lead) {
  max-width: 610px;
  margin: 0;
  color: #596579;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 650;
}

.conversion-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.conversion-proof-row div {
  min-height: 118px;
  border: 1px solid rgba(7,17,31,.08);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 16px 38px rgba(7,17,31,.05);
}

.conversion-proof-row strong {
  display: block;
  margin-bottom: 8px;
  color: #07111f;
  font-size: 17px;
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 950;
}

.conversion-proof-row span {
  display: block;
  color: #687386;
  font-size: 13px;
  line-height: 1.42;
  font-weight: 750;
}

.conversion-system-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 36px);
  background:
    radial-gradient(circle at 18% 10%, rgba(255,122,47,.26), transparent 28%),
    radial-gradient(circle at 84% 80%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(135deg, #07111f, #15243a);
  color: #ffffff;
  box-shadow: 0 34px 92px rgba(7,17,31,.26);
}

.system-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 22px;
}

.system-card-header span {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,122,47,.14);
  color: #ff8a3d;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.system-card-header strong {
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 850;
}

.system-stage-list {
  display: grid;
  gap: 16px;
}

.system-stage-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
}

.stage-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,122,47,.74);
  border-radius: 15px;
  background: rgba(255,122,47,.12);
  color: #ff8a3d;
  font-size: 13px;
  font-weight: 950;
}

.system-stage-list h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 26px;
  line-height: .98;
  letter-spacing: -.05em;
  font-weight: 950;
}

.system-stage-list p {
  margin: 0;
  max-width: 520px;
  color: rgba(255,255,255,.73);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

.conversion-included-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
  border: 1px solid rgba(7,17,31,.08);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 46px rgba(7,17,31,.05);
}

.conversion-included-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 13px;
  background: #ffffff;
  color: #172235;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(7,17,31,.07);
}

.conversion-included-row span::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 18px;
  border-radius: 50%;
  background: rgba(255,122,47,.13);
  color: #ff5a1f;
  font-size: 12px;
  font-weight: 950;
}

@media (max-width: 1060px) {
  .conversion-split-shell {
    grid-template-columns: 1fr;
  }

  .conversion-copy h2 {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .conversion-split-shell {
    padding: 32px 20px;
  }

  .conversion-copy h2 {
    font-size: 42px;
  }

  .conversion-copy .lead {
    font-size: 21px;
  }

  .conversion-proof-row {
    grid-template-columns: 1fr;
  }

  .system-card-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .system-stage-list article {
    grid-template-columns: 1fr;
  }
}



/* Flow layer 16: reset post-hero section to bold/simple solution-installed structure.
   Scope: replaces failed Layer 12-15 transformation/diagram/split-section attempts only. */

.installed-opportunities-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 122, 47, .08), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(7, 17, 31, .06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfbf8 100%);
}

.installed-opportunities-heading {
  max-width: 1060px;
  margin: 0 auto 52px;
  text-align: center;
}

.installed-opportunities-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 122, 47, .22);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 122, 47, .08);
  color: #c84d16;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.installed-opportunities-heading h2 {
  max-width: 980px;
  margin: 0 auto 18px;
  color: #07111f;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 950;
}

.installed-opportunities-heading p {
  max-width: 870px;
  margin: 0 auto;
  color: #566276;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.62;
  font-weight: 650;
}

.installed-upgrades-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.installed-upgrade {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 26px;
  padding: 28px 18px 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,249,251,.94));
  border: 1px solid rgba(7, 17, 31, .07);
  box-shadow: 0 18px 46px rgba(7, 17, 31, .055);
}

.installed-upgrade::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: radial-gradient(circle at 50% 0%, rgba(255,122,47,.10), transparent 42%);
  opacity: .9;
  pointer-events: none;
}

.upgrade-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.9), rgba(255,255,255,.55)),
    linear-gradient(135deg, rgba(255,122,47,.18), rgba(7,17,31,.04));
  color: #ff5a1f;
  box-shadow:
    inset 0 0 0 1px rgba(255,122,47,.13),
    0 18px 38px rgba(7,17,31,.08);
  font-size: 25px;
  font-weight: 950;
}

.installed-upgrade h3 {
  position: relative;
  z-index: 1;
  max-width: 180px;
  margin: 0 0 12px;
  color: #07111f;
  font-size: 18px;
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 950;
}

.installed-upgrade p {
  position: relative;
  z-index: 1;
  max-width: 190px;
  margin: 0;
  color: #687386;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}

@media (max-width: 1120px) {
  .installed-upgrades-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .installed-upgrade {
    min-height: 245px;
  }

  .installed-upgrade h3,
  .installed-upgrade p {
    max-width: 240px;
  }
}

@media (max-width: 720px) {
  .installed-opportunities-heading {
    text-align: left;
    margin-bottom: 34px;
  }

  .installed-opportunities-heading h2 {
    font-size: 45px;
  }

  .installed-opportunities-heading p {
    font-size: 17px;
  }

  .installed-upgrades-grid {
    grid-template-columns: 1fr;
  }

  .installed-upgrade {
    min-height: auto;
    align-items: flex-start;
    text-align: left;
  }

  .upgrade-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
  }

  .installed-upgrade h3,
  .installed-upgrade p {
    max-width: none;
  }
}



/* Flow layer 17: post-hero opportunity section spacing + premium icon badges.
   Scope: visual polish only for installed-opportunities-section. */

.installed-opportunities-section {
  padding-top: clamp(96px, 10vw, 150px) !important;
  padding-bottom: clamp(104px, 11vw, 164px) !important;
}

.installed-opportunities-heading {
  margin-bottom: clamp(54px, 6vw, 82px) !important;
}

.installed-upgrades-grid {
  gap: clamp(18px, 2vw, 28px) !important;
}

.installed-upgrade {
  min-height: 292px !important;
  padding: 34px 20px 30px !important;
}

.upgrade-icon {
  position: relative !important;
  width: 86px !important;
  height: 86px !important;
  margin-bottom: 28px !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.96), rgba(255,255,255,.60)),
    linear-gradient(135deg, rgba(255,122,47,.22), rgba(255,122,47,.08)) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,122,47,.20),
    0 24px 46px rgba(7,17,31,.10) !important;
}

.upgrade-icon::before,
.upgrade-icon::after,
.upgrade-icon span,
.upgrade-icon span::before,
.upgrade-icon span::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
}

/* Clear path / arrow-route badge */
.icon-path::before {
  left: 22px;
  top: 43px;
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: #ff5a1f;
}

.icon-path::after {
  right: 22px;
  top: 35px;
  width: 17px;
  height: 17px;
  border-top: 3px solid #ff5a1f;
  border-right: 3px solid #ff5a1f;
  transform: rotate(45deg);
  border-radius: 2px;
}

.icon-path span {
  left: 20px;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #07111f;
  box-shadow: 32px 32px 0 #07111f;
}

/* Quote / estimate capture badge */
.icon-estimate::before {
  left: 25px;
  top: 20px;
  width: 36px;
  height: 46px;
  border: 2px solid #07111f;
  border-radius: 9px;
  background: rgba(255,255,255,.55);
}

.icon-estimate::after {
  left: 33px;
  top: 32px;
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: #ff5a1f;
  box-shadow: 0 10px 0 rgba(7,17,31,.28), 0 20px 0 rgba(7,17,31,.18);
}

.icon-estimate span {
  right: 20px;
  bottom: 18px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff5a1f;
}

.icon-estimate span::before {
  left: 5px;
  top: 6px;
  width: 10px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* Calendar / fit-check badge */
.icon-calendar::before {
  left: 22px;
  top: 24px;
  width: 42px;
  height: 40px;
  border: 2px solid #07111f;
  border-radius: 10px;
  background: rgba(255,255,255,.58);
}

.icon-calendar::after {
  left: 22px;
  top: 34px;
  width: 42px;
  height: 2px;
  background: #07111f;
}

.icon-calendar span {
  left: 32px;
  top: 45px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #ff5a1f;
  box-shadow: 13px 0 0 #ff5a1f, 0 12px 0 rgba(7,17,31,.28), 13px 12px 0 rgba(7,17,31,.28);
}

.icon-calendar span::before,
.icon-calendar span::after {
  top: -24px;
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: #ff5a1f;
}

.icon-calendar span::before {
  left: -4px;
}

.icon-calendar span::after {
  right: -17px;
}

/* After-hours clock / moon badge */
.icon-afterhours::before {
  left: 23px;
  top: 23px;
  width: 40px;
  height: 40px;
  border: 3px solid #07111f;
  border-radius: 50%;
}

.icon-afterhours::after {
  left: 42px;
  top: 32px;
  width: 3px;
  height: 16px;
  border-radius: 999px;
  background: #ff5a1f;
  transform-origin: bottom center;
  transform: rotate(0deg);
}

.icon-afterhours span {
  left: 43px;
  top: 45px;
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: #ff5a1f;
}

.icon-afterhours span::before {
  right: -11px;
  top: -20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: -6px 0 0 #ff5a1f;
}

/* Trust / shield-star badge */
.icon-trust::before {
  left: 27px;
  top: 19px;
  width: 33px;
  height: 42px;
  background: #07111f;
  clip-path: polygon(50% 0%, 92% 14%, 82% 72%, 50% 100%, 18% 72%, 8% 14%);
}

.icon-trust::after {
  left: 36px;
  top: 31px;
  width: 16px;
  height: 16px;
  background: #ff5a1f;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.icon-trust span {
  left: 29px;
  bottom: 18px;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,90,31,.32);
}

/* Branded email badge */
.icon-email::before {
  left: 21px;
  top: 28px;
  width: 44px;
  height: 31px;
  border: 2px solid #07111f;
  border-radius: 8px;
  background: rgba(255,255,255,.58);
}

.icon-email::after {
  left: 25px;
  top: 33px;
  width: 36px;
  height: 22px;
  border-left: 2px solid #ff5a1f;
  border-bottom: 2px solid #ff5a1f;
  transform: rotate(-45deg) skew(10deg, 10deg);
  transform-origin: center;
}

.icon-email span {
  right: 19px;
  top: 18px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ff5a1f;
}

.icon-email span::before {
  content: "@";
  position: static;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
}

@media (max-width: 1120px) {
  .installed-opportunities-section {
    padding-top: 96px !important;
    padding-bottom: 110px !important;
  }

  .installed-upgrade {
    min-height: 260px !important;
  }
}

@media (max-width: 720px) {
  .installed-opportunities-section {
    padding-top: 78px !important;
    padding-bottom: 88px !important;
  }

  .installed-opportunities-heading {
    margin-bottom: 34px !important;
  }

  .installed-upgrade {
    min-height: auto !important;
  }

  .upgrade-icon {
    width: 68px !important;
    height: 68px !important;
    border-radius: 20px !important;
  }
}



/* Flow layer 18: hero authority + headline flow.
   Scope: hero section only. */

.hero {
  padding-top: clamp(96px, 10vw, 150px) !important;
  padding-bottom: clamp(88px, 9vw, 136px) !important;
}

.hero .container,
.hero-inner,
.hero-grid {
  align-items: center !important;
}

.hero-copy,
.hero-content {
  max-width: 660px !important;
}

.hero h1 {
  max-width: 700px !important;
  font-size: clamp(56px, 7.2vw, 104px) !important;
  line-height: .88 !important;
  letter-spacing: -.078em !important;
  text-wrap: balance;
}

.hero h1 span {
  display: inline !important;
  color: #ff5a1f;
  white-space: normal !important;
}

.hero p {
  max-width: 610px !important;
  font-size: clamp(17px, 1.45vw, 21px) !important;
  line-height: 1.66 !important;
}

.hero .btn-row,
.hero-actions {
  margin-top: 30px !important;
}

.hero .trust-row,
.hero-trust,
.hero-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px 18px !important;
  align-items: center !important;
  margin-top: 20px !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.hero .trust-row span,
.hero-trust span,
.hero-meta span,
.hero .trust-row li,
.hero-trust li,
.hero-meta li {
  white-space: nowrap !important;
}

.hero .trust-row span::before,
.hero-trust span::before,
.hero-meta span::before,
.hero .trust-row li::before,
.hero-trust li::before,
.hero-meta li::before {
  color: #ff5a1f !important;
}

@media (min-width: 1060px) {
  .hero .container,
  .hero-inner,
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(520px, .95fr) !important;
    gap: clamp(42px, 6vw, 86px) !important;
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 86px !important;
    padding-bottom: 92px !important;
  }

  .hero h1 {
    font-size: clamp(48px, 12vw, 78px) !important;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 48px !important;
    line-height: .92 !important;
  }

  .hero .trust-row span,
  .hero-trust span,
  .hero-meta span,
  .hero .trust-row li,
  .hero-trust li,
  .hero-meta li {
    white-space: normal !important;
  }
}



/* Flow layer 19: hero composition rebuild.
   Scope: hero section only. Adds manifest-backed layer direction.
   Intent: headline gets more horizontal room; desktop preview reads as desktop, mobile remains secondary. */

.hero {
  padding-top: clamp(92px, 9vw, 136px) !important;
  padding-bottom: clamp(94px, 9vw, 142px) !important;
}

.hero .container,
.hero-inner,
.hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: clamp(34px, 5vw, 58px) !important;
  align-items: center !important;
}

.hero-copy,
.hero-content {
  max-width: 1120px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.hero h1 {
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(56px, 7.2vw, 104px) !important;
  line-height: .88 !important;
  letter-spacing: -.078em !important;
  text-wrap: balance;
}

.hero h1 span {
  display: inline !important;
  color: #ff5a1f !important;
  white-space: normal !important;
}

.hero p {
  max-width: 780px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(17px, 1.45vw, 21px) !important;
  line-height: 1.62 !important;
}

.hero .btn-row,
.hero-actions {
  justify-content: center !important;
  margin-top: 30px !important;
}

.hero .trust-row,
.hero-trust,
.hero-meta {
  justify-content: center !important;
  margin-top: 20px !important;
}

.hero-visual {
  width: min(1120px, 100%) !important;
  max-width: 1120px !important;
  min-height: 560px !important;
  margin: 0 auto !important;
  justify-content: center !important;
  align-items: center !important;
}

.premium-site-frame {
  width: min(980px, 92vw) !important;
  transform: none !important;
}

.premium-site-topbar {
  grid-template-columns: 1fr auto auto !important;
}

.premium-site-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr) !important;
  min-height: 430px !important;
  padding: clamp(38px, 4vw, 56px) clamp(36px, 4vw, 58px) !important;
}

.service-site-copy h2,
.premium-site-copy h2 {
  font-size: clamp(38px, 4.4vw, 58px) !important;
  max-width: 560px !important;
}

.premium-lead-form,
.service-lead-form {
  max-width: 320px !important;
  justify-self: end !important;
}

.premium-phone-preview,
.service-phone-preview {
  right: clamp(12px, 3vw, 54px) !important;
  bottom: -22px !important;
  width: 205px !important;
  min-height: 330px !important;
}

@media (min-width: 1180px) {
  .hero-visual {
    min-height: 610px !important;
  }

  .premium-site-frame {
    width: min(1040px, 92vw) !important;
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 84px !important;
    padding-bottom: 94px !important;
  }

  .hero h1 {
    font-size: clamp(48px, 10vw, 76px) !important;
  }

  .hero-visual {
    min-height: auto !important;
  }

  .premium-site-frame {
    width: 100% !important;
  }

  .premium-phone-preview,
  .service-phone-preview {
    right: 8px !important;
    bottom: -18px !important;
  }
}

@media (max-width: 720px) {
  .hero-copy,
  .hero-content {
    text-align: left !important;
  }

  .hero h1 {
    font-size: 48px !important;
    line-height: .92 !important;
  }

  .hero p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero .btn-row,
  .hero-actions,
  .hero .trust-row,
  .hero-trust,
  .hero-meta {
    justify-content: flex-start !important;
  }

  .premium-site-hero {
    grid-template-columns: 1fr !important;
  }

  .premium-lead-form,
  .service-lead-form {
    max-width: none !important;
    justify-self: stretch !important;
  }
}



/* Flow layer 20: premium before/after outcome section.
   Scope: replaces redundant What CrucibleFlow Does section only. */

.outcome-shift-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 9vw, 142px) 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 122, 47, .08), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(7, 17, 31, .08), transparent 30%),
    linear-gradient(180deg, #f8f7f2 0%, #ffffff 100%);
}

.outcome-shift-heading {
  max-width: 980px;
  margin: 0 auto 54px;
  text-align: center;
}

.outcome-shift-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 122, 47, .22);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 122, 47, .08);
  color: #c84d16;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.outcome-shift-heading h2 {
  max-width: 940px;
  margin: 0 auto 18px;
  color: #07111f;
  font-size: clamp(44px, 6.5vw, 82px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 950;
}

.outcome-shift-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #566276;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.58;
  font-weight: 650;
}

.outcome-shift-board {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1.36fr) minmax(0, .82fr);
  gap: 20px;
  align-items: stretch;
}

.outcome-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(7,17,31,.08);
  border-radius: 30px;
  padding: clamp(26px, 3vw, 34px);
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 70px rgba(7,17,31,.07);
}

.outcome-panel::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,122,47,.08);
  pointer-events: none;
}

.panel-label {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(7,17,31,.06);
  color: #526073;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.outcome-panel h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 13px;
  color: #07111f;
  font-size: clamp(28px, 3vw, 38px);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 950;
}

.outcome-panel p {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: #5d687a;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 650;
}

.outcome-panel ul {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
}

.outcome-panel li {
  position: relative;
  border-radius: 15px;
  padding: 12px 13px 12px 36px;
  background: rgba(7,17,31,.045);
  color: #172235;
  font-size: 14px;
  font-weight: 850;
}

.outcome-panel li::before {
  content: "•";
  position: absolute;
  left: 16px;
  top: 10px;
  color: #ff5a1f;
  font-size: 20px;
  line-height: 1;
}

.crucible-panel {
  background:
    radial-gradient(circle at 20% 10%, rgba(255,122,47,.28), transparent 30%),
    radial-gradient(circle at 84% 78%, rgba(255,255,255,.10), transparent 26%),
    linear-gradient(135deg, #07111f, #15243a);
  border-color: rgba(255,255,255,.14);
  color: #ffffff;
  box-shadow: 0 34px 96px rgba(7,17,31,.25);
}

.crucible-panel::after {
  background: rgba(255,122,47,.18);
}

.crucible-panel .panel-label {
  background: rgba(255,122,47,.14);
  color: #ff8a3d;
}

.crucible-panel h3 {
  color: #ffffff;
}

.crucible-panel p {
  color: rgba(255,255,255,.74);
}

.system-piece-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.system-piece-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 13px;
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.88);
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.system-piece-grid span::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 18px;
  border-radius: 50%;
  background: rgba(255,122,47,.18);
  color: #ff8a3d;
  font-size: 12px;
  font-weight: 950;
}

.after-panel {
  background:
    linear-gradient(180deg, #ffffff, #fbfcfd);
}

.after-panel .panel-label {
  background: rgba(255,122,47,.10);
  color: #c84d16;
}

@media (max-width: 1080px) {
  .outcome-shift-board {
    grid-template-columns: 1fr;
  }

  .outcome-panel {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .outcome-shift-section {
    padding: 72px 0;
  }

  .outcome-shift-heading {
    text-align: left;
    margin-bottom: 34px;
  }

  .outcome-shift-heading h2 {
    font-size: 42px;
  }

  .outcome-shift-heading p {
    font-size: 17px;
  }

  .outcome-panel {
    padding: 24px;
  }
}



/* Flow layer 21: premium pricing/value aha band.
   Scope: replaces pricing/value band only. */

.value-aha-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 9vw, 150px) 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 122, 47, .18), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(135deg, #07111f 0%, #15243a 100%);
  color: #ffffff;
}

.value-aha-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .55fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 36px;
  padding: clamp(32px, 5vw, 66px);
  background:
    radial-gradient(circle at 16% 8%, rgba(255,122,47,.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 38px 110px rgba(0,0,0,.28);
}

.value-aha-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  pointer-events: none;
}

.value-aha-copy,
.value-price-card,
.value-included-grid {
  position: relative;
  z-index: 1;
}

.value-aha-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 122, 47, .34);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 122, 47, .12);
  color: #ff9a3d;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.value-aha-copy h2 {
  max-width: 940px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: .9;
  letter-spacing: -.078em;
  font-weight: 950;
}

.value-aha-copy p {
  max-width: 740px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.75);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.6;
  font-weight: 650;
}

.value-aha-copy .btn {
  width: fit-content;
}

.value-price-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  padding: clamp(26px, 4vw, 38px);
  background:
    radial-gradient(circle at 28% 12%, rgba(255,122,47,.24), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  box-shadow: 0 28px 80px rgba(0,0,0,.25);
}

.price-kicker {
  width: fit-content;
  margin-bottom: 22px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,122,47,.14);
  color: #ff9a3d;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price-line {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 18px;
}

.price-line span {
  color: #ffffff;
  font-size: clamp(64px, 7vw, 104px);
  line-height: .82;
  letter-spacing: -.08em;
  font-weight: 950;
}

.price-line strong {
  margin-bottom: 8px;
  color: rgba(255,255,255,.78);
  font-size: 20px;
  font-weight: 850;
}

.value-price-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.value-included-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.value-included-grid div {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 17px 16px;
  background: rgba(255,255,255,.07);
}

.value-included-grid span {
  position: relative;
  display: block;
  padding-left: 28px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 850;
}

.value-included-grid span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,122,47,.18);
  color: #ff9a3d;
  font-size: 12px;
  font-weight: 950;
}

@media (max-width: 980px) {
  .value-aha-shell {
    grid-template-columns: 1fr;
  }

  .value-included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .value-aha-section {
    padding: 72px 0;
  }

  .value-aha-shell {
    padding: 28px 20px;
  }

  .value-aha-copy h2 {
    font-size: 40px;
  }

  .value-included-grid {
    grid-template-columns: 1fr;
  }

  .price-line span {
    font-size: 74px;
  }
}



/* Flow layer 22: final lower conversion path tightening.
   Scope: How It Works, included section, FAQ/no-pressure, and final fit-check copy/visual hierarchy only. */

.final-section-heading {
  max-width: 920px;
  margin: 0 auto 48px;
  text-align: center;
}

.final-section-heading .eyebrow,
.final-small-business-wrap .eyebrow,
.final-faq-copy .eyebrow,
.final-fit-check-section .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 122, 47, .22);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 122, 47, .08);
  color: #c84d16;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.final-section-heading h2 {
  margin: 0 auto 16px;
  max-width: 880px;
  color: #07111f;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 950;
}

.final-section-heading p {
  max-width: 740px;
  margin: 0 auto;
  color: #566276;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 650;
}

.final-how-section {
  background: #ffffff;
}

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

.final-how-grid article {
  min-height: 288px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(7,17,31,.08);
  border-radius: 26px;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
  box-shadow: 0 20px 56px rgba(7,17,31,.06);
}

.final-how-grid article span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,122,47,.12);
  color: #ff5a1f;
  font-size: 13px;
  font-weight: 950;
}

.final-how-grid h3 {
  margin: 0 0 10px;
  color: #07111f;
  font-size: 23px;
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 950;
}

.final-how-grid p {
  margin: 0;
  color: #5d687a;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.final-small-business-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(255,122,47,.09), transparent 24%),
    linear-gradient(180deg, #f3f0e9, #f8f7f2);
}

.final-small-business-wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.final-small-business-wrap h2 {
  max-width: 560px;
  margin: 0 0 16px;
  color: #07111f;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 950;
}

.final-small-business-wrap p {
  max-width: 560px;
  color: #566276;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 650;
}

.final-included-card {
  border: 1px solid rgba(7,17,31,.08);
  border-radius: 30px;
  padding: 30px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 28px 80px rgba(7,17,31,.08);
}

.final-included-card ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px 20px;
  margin: 0;
  padding: 0;
}

.final-included-card li,
.cta-assurance-list li {
  position: relative;
  padding-left: 28px;
  color: #172235;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.final-included-card li::before,
.cta-assurance-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,122,47,.12);
  color: #ff5a1f;
  font-size: 12px;
  font-weight: 950;
}

.final-faq-section {
  background: #ffffff;
}

.final-faq-layout {
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(460px,1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.final-faq-copy h2 {
  max-width: 500px;
  margin: 0 0 16px;
  color: #07111f;
  font-size: clamp(40px, 5.6vw, 70px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 950;
}

.final-faq-copy p {
  max-width: 520px;
  color: #566276;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 650;
}

.final-faq-list {
  display: grid;
  gap: 12px;
}

.final-faq-list details {
  border: 1px solid rgba(7,17,31,.07);
  border-radius: 18px;
  background: #f3f0e9;
  overflow: hidden;
}

.final-faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #07111f;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -.025em;
}

.final-faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: #5d687a;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
}

.final-fit-check-section .cta-copy h2 {
  letter-spacing: -.07em;
}

.cta-assurance-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
}

@media (max-width: 980px) {
  .final-how-grid,
  .final-small-business-wrap,
  .final-faq-layout {
    grid-template-columns: 1fr;
  }

  .final-how-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .final-included-card ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .final-section-heading {
    text-align: left;
  }

  .final-how-grid {
    grid-template-columns: 1fr;
  }

  .final-how-grid article {
    min-height: auto;
  }

  .final-small-business-wrap h2,
  .final-faq-copy h2,
  .final-section-heading h2 {
    font-size: 40px;
  }

  .final-faq-layout {
    gap: 30px;
  }
}



/* Flow layer 23: final CTA/form repair.
   Scope: fixes CTA anchor and final booking section structure only. */

.final-fit-check-section .cta-wrap {
  align-items: center;
}

.final-fit-check-section .cta-copy {
  align-self: center;
}

.final-fit-check-section .fit-check-form-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(7,17,31,.08);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 90px rgba(7,17,31,.10);
}

.final-fit-check-section .fit-check-form-card h2 {
  margin: 0 0 8px;
  color: #07111f;
  font-size: clamp(26px, 3vw, 36px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 950;
}

.final-fit-check-section .fit-check-form-card > p {
  margin: 0 0 20px;
  color: #5d687a;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.final-fit-check-section .cta-assurance-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
}

.final-fit-check-section .cta-assurance-list li {
  position: relative;
  padding-left: 28px;
  color: #172235;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.final-fit-check-section .cta-assurance-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,122,47,.12);
  color: #ff5a1f;
  font-size: 12px;
  font-weight: 950;
}



/* Flow layer 24: vertical rhythm + page compression.
   Scope: spacing, section rhythm, and visual hierarchy only.
   Intent: keep major conversion logic, make supporting sections lighter and reduce equal-weight stacking. */

:root {
  --flow-major-section-y: clamp(82px, 8vw, 128px);
  --flow-support-section-y: clamp(58px, 6vw, 88px);
  --flow-tight-section-y: clamp(46px, 5vw, 72px);
}

/* Preserve hero authority, but tighten just enough to reduce page length. */
.hero {
  padding-top: clamp(82px, 8vw, 126px) !important;
  padding-bottom: clamp(72px, 7vw, 112px) !important;
}

/* Supporting installed-opportunities section: important, but not a full-stop mega section. */
.installed-opportunities-section {
  padding-top: var(--flow-support-section-y) !important;
  padding-bottom: var(--flow-support-section-y) !important;
}

.installed-opportunities-heading {
  margin-bottom: clamp(34px, 4vw, 52px) !important;
}

.installed-opportunities-heading h2 {
  font-size: clamp(42px, 6vw, 78px) !important;
}

.installed-opportunities-heading p {
  font-size: clamp(16px, 1.55vw, 20px) !important;
  line-height: 1.55 !important;
}

.installed-upgrades-grid {
  gap: clamp(12px, 1.4vw, 18px) !important;
}

.installed-upgrade {
  min-height: 230px !important;
  padding: 24px 16px 22px !important;
}

.installed-upgrade h3 {
  font-size: 16px !important;
}

.installed-upgrade p {
  font-size: 12px !important;
  line-height: 1.42 !important;
}

.upgrade-icon {
  width: 68px !important;
  height: 68px !important;
  margin-bottom: 18px !important;
  border-radius: 20px !important;
  transform: scale(.88);
}

/* Keep transformation board and value band as major points. */
.outcome-shift-section {
  padding-top: var(--flow-major-section-y) !important;
  padding-bottom: var(--flow-major-section-y) !important;
}

.outcome-shift-heading {
  margin-bottom: clamp(34px, 4vw, 52px) !important;
}

.outcome-panel {
  min-height: 350px !important;
  padding: clamp(22px, 2.5vw, 30px) !important;
}

.value-aha-section {
  padding-top: clamp(78px, 8vw, 132px) !important;
  padding-bottom: clamp(78px, 8vw, 132px) !important;
}

.value-aha-shell {
  padding: clamp(30px, 4.4vw, 56px) !important;
}

.value-aha-copy h2 {
  font-size: clamp(40px, 5.8vw, 76px) !important;
}

.value-included-grid {
  gap: 10px !important;
}

.value-included-grid div {
  padding: 14px 14px !important;
}

/* Lower path becomes quicker and lighter. */
.final-how-section,
.final-small-business-section,
.final-faq-section {
  padding-top: var(--flow-tight-section-y) !important;
  padding-bottom: var(--flow-tight-section-y) !important;
}

.final-section-heading {
  margin-bottom: clamp(30px, 3.8vw, 44px) !important;
}

.final-section-heading h2 {
  font-size: clamp(36px, 5vw, 62px) !important;
}

.final-section-heading p {
  font-size: 16px !important;
  line-height: 1.55 !important;
}

.final-how-grid {
  gap: 12px !important;
}

.final-how-grid article {
  min-height: 230px !important;
  padding: 22px !important;
}

.final-how-grid h3 {
  font-size: 20px !important;
}

.final-how-grid p {
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.final-small-business-wrap {
  gap: clamp(24px, 4vw, 48px) !important;
}

.final-small-business-wrap h2,
.final-faq-copy h2 {
  font-size: clamp(36px, 5vw, 62px) !important;
}

.final-small-business-wrap p,
.final-faq-copy p {
  font-size: 16px !important;
  line-height: 1.55 !important;
}

.final-included-card {
  padding: 24px !important;
}

.final-included-card ul {
  gap: 10px 18px !important;
}

.final-faq-layout {
  gap: clamp(24px, 4vw, 48px) !important;
}

.final-faq-list {
  gap: 9px !important;
}

.final-faq-list summary {
  padding: 15px 18px !important;
}

.final-faq-list p {
  padding: 0 18px 16px !important;
}

/* Final conversion endpoint stays substantial but less vertically bloated. */
.final-fit-check-section {
  padding-top: clamp(66px, 7vw, 104px) !important;
  padding-bottom: clamp(72px, 7vw, 112px) !important;
}

.final-fit-check-section .cta-wrap {
  gap: clamp(28px, 5vw, 58px) !important;
}

.final-fit-check-section .cta-copy h2 {
  font-size: clamp(38px, 5.4vw, 68px) !important;
}

.final-fit-check-section .cta-copy p {
  font-size: 16px !important;
  line-height: 1.58 !important;
}

.final-fit-check-section .fit-check-form-card {
  padding: clamp(22px, 3vw, 30px) !important;
}

.final-fit-check-section .fit-check-form-card h2 {
  font-size: clamp(24px, 2.6vw, 32px) !important;
}

/* Reduce accidental repeated vertical whitespace created by nested containers/cards. */
.section + .section {
  margin-top: 0 !important;
}

@media (max-width: 980px) {
  .installed-upgrades-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .installed-upgrade {
    min-height: 215px !important;
  }

  .final-how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .hero,
  .installed-opportunities-section,
  .outcome-shift-section,
  .value-aha-section,
  .final-how-section,
  .final-small-business-section,
  .final-faq-section,
  .final-fit-check-section {
    padding-top: 56px !important;
    padding-bottom: 60px !important;
  }

  .installed-upgrades-grid,
  .final-how-grid {
    grid-template-columns: 1fr !important;
  }

  .installed-upgrade,
  .final-how-grid article {
    min-height: auto !important;
  }
}



/* Flow layer 25: vertical breathing repair.
   Scope: repair Layer 24 over-compression only.
   Intent: restore premium section boundaries and breathing room without changing offer, copy, or behavior. */

/* More coherent global section cadence. */
.installed-opportunities-section,
.final-how-section,
.final-small-business-section,
.final-faq-section,
.final-fit-check-section {
  position: relative;
}

/* Restore enough whitespace after card grids so the next section does not collide visually. */
.installed-opportunities-section {
  padding-top: clamp(72px, 7vw, 108px) !important;
  padding-bottom: clamp(86px, 8vw, 126px) !important;
}

.installed-opportunities-heading {
  margin-bottom: clamp(42px, 4.8vw, 64px) !important;
}

.installed-upgrades-grid {
  margin-bottom: 0 !important;
}

/* Keep the transformation and pricing sections substantial, but not bloated. */
.outcome-shift-section {
  padding-top: clamp(88px, 8.5vw, 136px) !important;
  padding-bottom: clamp(94px, 9vw, 144px) !important;
}

.outcome-shift-board {
  margin-bottom: 0 !important;
}

.value-aha-section {
  padding-top: clamp(82px, 8vw, 126px) !important;
  padding-bottom: clamp(92px, 8.5vw, 136px) !important;
}

/* How It Works: add room below the card row before Included starts. */
.final-how-section {
  padding-top: clamp(78px, 7vw, 112px) !important;
  padding-bottom: clamp(92px, 8vw, 132px) !important;
}

.final-section-heading {
  margin-bottom: clamp(40px, 4.6vw, 60px) !important;
}

.final-how-grid {
  margin-bottom: 0 !important;
}

.final-how-grid article {
  min-height: 250px !important;
}

/* Included section: restore top/bottom space and lower headline dominance slightly. */
.final-small-business-section {
  padding-top: clamp(84px, 7.5vw, 120px) !important;
  padding-bottom: clamp(88px, 8vw, 128px) !important;
}

.final-small-business-wrap {
  align-items: center !important;
}

.final-small-business-wrap h2 {
  font-size: clamp(38px, 4.8vw, 62px) !important;
  line-height: .92 !important;
}

.final-small-business-wrap p {
  max-width: 600px !important;
}

/* FAQ: create a clean boundary from included section and from final CTA. */
.final-faq-section {
  padding-top: clamp(82px, 7.5vw, 118px) !important;
  padding-bottom: clamp(90px, 8vw, 130px) !important;
}

.final-faq-copy h2 {
  font-size: clamp(38px, 4.8vw, 62px) !important;
  line-height: .92 !important;
}

.final-faq-list {
  gap: 12px !important;
}

/* Final action: enough top room after FAQ, and a premium landing zone around the form. */
.final-fit-check-section {
  padding-top: clamp(86px, 8vw, 128px) !important;
  padding-bottom: clamp(90px, 8.5vw, 136px) !important;
}

.final-fit-check-section .cta-wrap {
  gap: clamp(38px, 5.5vw, 76px) !important;
}

.final-fit-check-section .cta-copy h2 {
  font-size: clamp(40px, 5vw, 64px) !important;
  line-height: .92 !important;
}

.final-fit-check-section .fit-check-form-card {
  padding: clamp(26px, 3.4vw, 36px) !important;
}

/* Avoid edge collisions created by previous global compression overrides. */
.final-how-section + .final-small-business-section,
.final-small-business-section + .final-faq-section,
.final-faq-section + .final-fit-check-section {
  margin-top: 0 !important;
}

/* Slightly reduce support-section heading force while maintaining readability. */
.final-section-heading h2 {
  font-size: clamp(38px, 5vw, 66px) !important;
  line-height: .92 !important;
}

/* Cards need room, but should not feel giant. */
.installed-upgrade {
  min-height: 240px !important;
}

.final-how-grid h3 {
  line-height: 1.06 !important;
}

@media (max-width: 980px) {
  .installed-opportunities-section,
  .final-how-section,
  .final-small-business-section,
  .final-faq-section,
  .final-fit-check-section {
    padding-top: 72px !important;
    padding-bottom: 82px !important;
  }

  .outcome-shift-section,
  .value-aha-section {
    padding-top: 76px !important;
    padding-bottom: 86px !important;
  }

  .final-how-grid article {
    min-height: 230px !important;
  }
}

@media (max-width: 640px) {
  .installed-opportunities-section,
  .outcome-shift-section,
  .value-aha-section,
  .final-how-section,
  .final-small-business-section,
  .final-faq-section,
  .final-fit-check-section {
    padding-top: 62px !important;
    padding-bottom: 70px !important;
  }

  .final-section-heading {
    margin-bottom: 34px !important;
  }

  .final-how-grid article,
  .installed-upgrade {
    min-height: auto !important;
  }
}



/* Flow layer 26: lower-page consolidation.
   Scope: lower page after pricing/value band only.
   Intent: merge How It Works + Included into one close sequence; make FAQ lighter; keep final fit check as destination. */

.consolidated-close-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 8vw, 132px) 0 clamp(76px, 7vw, 110px) !important;
  background:
    radial-gradient(circle at 14% 8%, rgba(255,122,47,.07), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f5ef 100%);
}

.consolidated-close-heading {
  max-width: 950px;
  margin: 0 auto clamp(42px, 4.8vw, 64px);
  text-align: center;
}

.consolidated-close-heading .eyebrow,
.compact-included-panel .eyebrow,
.compact-faq-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 122, 47, .22);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 122, 47, .08);
  color: #c84d16;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.consolidated-close-heading h2 {
  max-width: 980px;
  margin: 0 auto 16px;
  color: #07111f;
  font-size: clamp(42px, 5.8vw, 74px);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 950;
}

.consolidated-close-heading p {
  max-width: 740px;
  margin: 0 auto;
  color: #566276;
  font-size: clamp(16px, 1.65vw, 20px);
  line-height: 1.58;
  font-weight: 650;
}

.consolidated-close-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(34px, 4.5vw, 58px);
}

.consolidated-close-grid article {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(7,17,31,.08);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 58px rgba(7,17,31,.055);
}

.consolidated-close-grid article span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,122,47,.11);
  color: #ff5a1f;
  font-size: 13px;
  font-weight: 950;
}

.consolidated-close-grid h3 {
  margin: 0 0 10px;
  color: #07111f;
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: -.05em;
  font-weight: 950;
}

.consolidated-close-grid p {
  margin: 0;
  color: #5d687a;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}

.compact-included-panel {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  border: 1px solid rgba(7,17,31,.08);
  border-radius: 30px;
  padding: clamp(24px, 3.6vw, 38px);
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 72px rgba(7,17,31,.07);
}

.compact-included-panel h3 {
  max-width: 430px;
  margin: 0;
  color: #07111f;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: .96;
  letter-spacing: -.06em;
  font-weight: 950;
}

.compact-included-panel ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 0;
}

.compact-included-panel li {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  padding: 10px 12px 10px 34px;
  background: #f6f4ef;
  color: #172235;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 850;
}

.compact-included-panel li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,122,47,.12);
  color: #ff5a1f;
  font-size: 11px;
  font-weight: 950;
  transform: translateY(-50%);
}

/* Hide old included section if present from cached markup. */
.final-small-business-section {
  display: none !important;
}

.compact-faq-section {
  position: relative;
  padding: clamp(62px, 6vw, 90px) 0 !important;
  background: #f7f5ef;
}

.compact-faq-shell {
  display: grid;
  grid-template-columns: minmax(240px, .52fr) minmax(0, 1.48fr);
  gap: clamp(24px, 4.6vw, 58px);
  align-items: start;
}

.compact-faq-heading h2 {
  margin: 0 0 12px;
  color: #07111f;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: .94;
  letter-spacing: -.07em;
  font-weight: 950;
}

.compact-faq-heading p {
  max-width: 420px;
  margin: 0;
  color: #566276;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

.compact-faq-list {
  display: grid;
  gap: 9px;
}

.compact-faq-list details {
  border: 1px solid rgba(7,17,31,.06);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  overflow: hidden;
}

.compact-faq-list summary {
  cursor: pointer;
  padding: 14px 18px;
  color: #07111f;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -.025em;
}

.compact-faq-list p {
  margin: 0;
  padding: 0 18px 15px;
  color: #5d687a;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

/* Final destination receives a clear pause after compact FAQ. */
.final-fit-check-section {
  padding-top: clamp(86px, 8vw, 126px) !important;
  padding-bottom: clamp(94px, 8.5vw, 136px) !important;
  background:
    radial-gradient(circle at 16% 12%, rgba(255,122,47,.07), transparent 26%),
    linear-gradient(180deg, #f3f0e9, #ebe7dd) !important;
}

.final-fit-check-section .cta-wrap {
  gap: clamp(42px, 6vw, 82px) !important;
}

@media (max-width: 1080px) {
  .consolidated-close-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-included-panel,
  .compact-faq-shell {
    grid-template-columns: 1fr;
  }

  .compact-included-panel ul {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 640px) {
  .consolidated-close-section,
  .compact-faq-section,
  .final-fit-check-section {
    padding-top: 64px !important;
    padding-bottom: 72px !important;
  }

  .consolidated-close-heading {
    text-align: left;
  }

  .consolidated-close-grid,
  .compact-included-panel ul {
    grid-template-columns: 1fr;
  }

  .consolidated-close-grid article {
    min-height: auto;
  }

  .compact-included-panel {
    padding: 24px;
  }
}



/* Flow layer 27: final CTA layout repair.
   Scope: final fit-check CTA layout only.
   Intent: prevent headline compression by widening copy column and constraining form width. */

.final-fit-check-section {
  padding-top: clamp(94px, 8.5vw, 138px) !important;
  padding-bottom: clamp(96px, 9vw, 146px) !important;
}

.final-fit-check-section .container {
  max-width: 1320px !important;
}

.final-fit-check-section .cta-wrap {
  display: grid !important;
  grid-template-columns: minmax(560px, .92fr) minmax(460px, 560px) !important;
  gap: clamp(56px, 7vw, 104px) !important;
  align-items: center !important;
}

.final-fit-check-section .cta-copy {
  max-width: 720px !important;
  align-self: center !important;
}

.final-fit-check-section .cta-copy h2 {
  max-width: 720px !important;
  font-size: clamp(58px, 6.6vw, 92px) !important;
  line-height: .88 !important;
  letter-spacing: -.078em !important;
  text-wrap: balance;
}

.final-fit-check-section .cta-copy p {
  max-width: 640px !important;
  font-size: clamp(17px, 1.55vw, 21px) !important;
  line-height: 1.58 !important;
}

.final-fit-check-section .cta-assurance-list {
  display: grid !important;
  gap: 10px !important;
  margin-top: 26px !important;
}

.final-fit-check-section .fit-check-form-card,
.final-fit-check-section .form-card,
.final-fit-check-section .booking-card,
.final-fit-check-section .cta-form {
  width: 100% !important;
  max-width: 560px !important;
  justify-self: end !important;
}

.final-fit-check-section .fit-check-form-card {
  padding: clamp(26px, 3.2vw, 36px) !important;
}

/* Keep the form readable but prevent it from swallowing the full row. */
.final-fit-check-section form {
  width: 100% !important;
}

@media (max-width: 1120px) {
  .final-fit-check-section .cta-wrap {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .final-fit-check-section .cta-copy {
    max-width: 880px !important;
  }

  .final-fit-check-section .cta-copy h2 {
    max-width: 880px !important;
    font-size: clamp(50px, 9vw, 78px) !important;
  }

  .final-fit-check-section .fit-check-form-card,
  .final-fit-check-section .form-card,
  .final-fit-check-section .booking-card,
  .final-fit-check-section .cta-form {
    max-width: 720px !important;
    justify-self: start !important;
  }
}

@media (max-width: 680px) {
  .final-fit-check-section {
    padding-top: 70px !important;
    padding-bottom: 78px !important;
  }

  .final-fit-check-section .cta-copy h2 {
    font-size: 44px !important;
    line-height: .92 !important;
  }

  .final-fit-check-section .cta-wrap {
    gap: 30px !important;
  }
}

/* Layer 42 public landing page rewrite: Option C pain-first positioning */
.flow-lp42 .lp42-hero {
  padding: 92px 0 86px;
}
.flow-lp42 .lp42-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  gap: 60px;
  align-items: center;
}
.flow-lp42 h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(54px, 5.7vw, 90px);
  letter-spacing: -0.083em;
}
.flow-lp42 .lp42-hero-pain {
  margin: 0 0 22px;
  max-width: 790px;
  color: #ff7a2f;
  font-size: clamp(28px, 3.3vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 950;
}
.lp42-proof-card {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 32px;
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow-strong);
  padding: 26px;
  backdrop-filter: blur(18px);
}
.lp42-proof-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lp42-proof-header strong {
  color: #fff;
  text-transform: none;
  letter-spacing: -.03em;
  font-size: 22px;
}
.lp42-leak-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.lp42-leak-list div {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 14px;
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.86);
  font-weight: 750;
}
.lp42-leak-list b {
  color: var(--orange);
  font-size: 12px;
}
.lp42-arrow {
  text-align: center;
  color: rgba(255,255,255,.72);
  font-size: 28px;
  font-weight: 900;
  margin: 4px 0 14px;
}
.lp42-system-card {
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(135deg, #fff, #fff7f1);
  color: var(--ink);
}
.lp42-system-card span {
  color: var(--orange);
  font-weight: 950;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.lp42-system-card strong {
  display: block;
  margin: 8px 0 18px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.055em;
}
.lp42-system-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lp42-system-pills em {
  border-radius: 999px;
  padding: 8px 10px;
  background: #07111f;
  color: #fff;
  font-style: normal;
  font-size: 12px;
  font-weight: 850;
}
.lp42-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: start;
}
.lp42-split h2,
.lp42-centered-heading h2,
.lp42-offer-card h2,
.lp42-book h2 {
  margin: 18px 0 0;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: .96;
  letter-spacing: -.07em;
  font-weight: 950;
}
.lp42-problem-copy p,
.lp42-centered-heading p,
.lp42-offer-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.lp42-check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}
.lp42-check-list li {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 17px 18px;
  color: var(--ink-2);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(7,17,31,.05);
}
.lp42-check-list li::before {
  content: "•";
  color: var(--orange);
  font-size: 22px;
  margin-right: 10px;
}
.lp42-centered-heading {
  max-width: 830px;
  margin: 0 auto 42px;
  text-align: center;
}
.lp42-centered-heading .eyebrow {
  margin-inline: auto;
}
.lp42-value-grid,
.lp42-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.lp42-value-grid article,
.lp42-process-grid article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.lp42-value-grid span,
.lp42-process-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #07111f;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}
.lp42-value-grid h3,
.lp42-process-grid h3 {
  margin: 20px 0 10px;
  font-size: 22px;
  letter-spacing: -.045em;
}
.lp42-value-grid p,
.lp42-process-grid p {
  margin: 0;
  color: var(--muted);
}
.lp42-compare {
  background: #fff;
}
.lp42-comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}
.lp42-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.lp42-table-row > div {
  padding: 21px 24px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}
.lp42-table-row > div:first-child {
  color: var(--muted);
  background: #faf8f5;
}
.lp42-table-row > div:last-child {
  color: var(--ink);
  background: #fff;
}
.lp42-table-head > div {
  border-top: 0;
  background: #07111f !important;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}
.lp42-offer {
  background: linear-gradient(180deg, #07111f, #0b1728);
  color: #fff;
}
.lp42-offer-card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  padding: 42px;
  background: rgba(255,255,255,.055);
  box-shadow: var(--shadow-strong);
}
.lp42-offer-card p {
  color: rgba(255,255,255,.76);
}
.lp42-speed {
  color: rgba(255,255,255,.9) !important;
  font-weight: 760;
}
.lp42-price-card {
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  padding: 30px;
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
}
.lp42-price-card > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.lp42-price-card strong {
  display: block;
  margin: 14px 0 12px;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -.075em;
}
.lp42-price-card small {
  font-size: 18px;
  color: var(--muted);
  letter-spacing: -.02em;
}
.lp42-price-card p {
  color: var(--muted);
  font-size: 15px;
}
@media (max-width: 980px) {
  .flow-lp42 .lp42-hero-grid,
  .lp42-split,
  .lp42-offer-card {
    grid-template-columns: 1fr;
  }
  .lp42-value-grid,
  .lp42-process-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .lp42-value-grid,
  .lp42-process-grid,
  .lp42-table-row {
    grid-template-columns: 1fr;
  }
  .lp42-table-row > div:last-child {
    border-top: 1px dashed var(--line);
  }
  .flow-lp42 h1 {
    font-size: clamp(45px, 14vw, 62px);
  }
  .container {
    width: min(100% - 32px, 1240px);
  }
  .lp42-proof-card,
  .lp42-offer-card {
    padding: 22px;
  }
}


/* Flow layer 43: Option C landing page visual body redesign.
   Scope: public landing page only. Admin/outreach/workers/send surfaces are untouched. */

.flow-lp43 {
  background: #f4efe6;
}

.flow-lp43 .lp43-header {
  background: rgba(7,17,31,.98);
}

.flow-lp43 .hero.lp43-hero {
  padding: clamp(72px, 8vw, 118px) 0 clamp(76px, 8vw, 122px);
  background:
    radial-gradient(circle at 70% 12%, rgba(255,90,31,.20), transparent 28%),
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.08), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #081525 58%, #07111f 100%);
}

.lp43-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .58fr);
  gap: clamp(42px, 5vw, 78px);
  align-items: center;
}

.lp43-hero-copy {
  max-width: 820px;
}

.lp43-hero-copy h1 {
  max-width: 900px;
  margin-bottom: 16px;
  font-size: clamp(58px, 7vw, 112px);
  line-height: .86;
  letter-spacing: -.09em;
}

.lp43-hero-pain {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.2;
  letter-spacing: -.04em;
  font-weight: 900;
}

.lp43-hero-panel {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  padding: 26px;
  background:
    radial-gradient(circle at 75% 12%, rgba(255,90,31,.22), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: 0 34px 110px rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
}

.lp43-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 18px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.70);
  font-size: 12px;
  font-weight: 850;
}

.lp43-panel-top strong {
  color: #fff;
  font-size: 17px;
  letter-spacing: -.035em;
}

.lp43-leak-flow {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.lp43-leak-flow div {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.055);
}

.lp43-leak-flow b {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 12px;
  background: rgba(255,90,31,.16);
  color: #ff8a3d;
  font-size: 11px;
}

.lp43-leak-flow span {
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.lp43-leak-flow em {
  display: block;
  margin: 8px 0 0 44px;
  color: rgba(255,255,255,.68);
  font-style: normal;
  font-size: 13px;
  line-height: 1.4;
}

.lp43-installed-card {
  border-radius: 22px;
  padding: 22px;
  background: #fff;
  color: #07111f;
}

.lp43-installed-card small {
  display: inline-flex;
  margin-bottom: 10px;
  color: #ff5a1f;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 11px;
  font-weight: 950;
}

.lp43-installed-card strong {
  display: block;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 950;
}

.lp43-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp43-pill-row span {
  border-radius: 999px;
  padding: 8px 10px;
  background: #fff0e9;
  color: #b13c10;
  font-size: 11px;
  font-weight: 900;
}

.lp43-section {
  padding: clamp(72px, 8vw, 118px) 0;
}

.lp43-section-head {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.lp43-section-head.compact {
  max-width: 1000px;
}

.lp43-section-head h2,
.lp43-system-copy h2,
.lp43-mockup-copy h2,
.lp43-offer-copy h2,
.lp43-cta-band h2 {
  margin: 14px 0 14px;
  color: #07111f;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 950;
}

.lp43-section-head p,
.lp43-system-copy p,
.lp43-mockup-copy p,
.lp43-offer-copy p,
.lp43-cta-band p {
  max-width: 760px;
  margin: 0 auto;
  color: #5c687a;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 650;
}

.lp43-leaks {
  background:
    radial-gradient(circle at 18% 16%, rgba(255,90,31,.10), transparent 26%),
    linear-gradient(180deg, #f8f4ec, #fffdf8);
}

.lp43-leak-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lp43-leak-card-grid article {
  position: relative;
  overflow: hidden;
  min-height: 268px;
  border: 1px solid rgba(7,17,31,.08);
  border-radius: 28px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(7,17,31,.06);
}

.lp43-leak-card-grid article::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(255,90,31,.085);
}

.lp43-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 18px;
  background: #07111f;
  color: #ff7a2f;
  font-weight: 950;
  font-size: 18px;
}

.lp43-leak-card-grid h3 {
  margin-bottom: 11px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.055em;
}

.lp43-leak-card-grid p {
  color: #647084;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 650;
}

.lp43-dark-system {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,90,31,.20), transparent 30%),
    linear-gradient(135deg, #07111f, #142136);
  color: #fff;
}

.lp43-system-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.lp43-system-copy h2,
.lp43-cta-band h2 {
  color: #fff;
}

.lp43-system-copy p,
.lp43-cta-band p {
  margin-left: 0;
  color: rgba(255,255,255,.75);
}

.lp43-system-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lp43-system-steps article {
  min-height: 288px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
}

.lp43-system-steps b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,90,31,.16);
  color: #ff8a3d;
  font-size: 13px;
}

.lp43-system-steps h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 27px;
  line-height: .95;
  letter-spacing: -.055em;
}

.lp43-system-steps p {
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: 14px;
  line-height: 1.55;
}

.lp43-mockup {
  background: #f4efe6;
}

.lp43-mockup-grid {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.lp43-mockup-copy p {
  margin-left: 0;
}

.lp43-clean-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.lp43-clean-list li {
  position: relative;
  padding-left: 28px;
  color: #172235;
  font-weight: 900;
}

.lp43-clean-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff5a1f;
}

.lp43-mockup-frame {
  overflow: hidden;
  border: 1px solid rgba(7,17,31,.10);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 36px 95px rgba(7,17,31,.12);
}

.lp43-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e5e9ef;
  padding: 16px 20px;
  background: #fbfcfd;
}

.lp43-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9d0db;
}

.lp43-browser-bar em {
  margin-left: 8px;
  color: #647084;
  font-style: normal;
  font-size: 12px;
  font-weight: 850;
}

.lp43-site-preview {
  padding: 22px;
}

.lp43-preview-hero {
  min-height: 290px;
  border-radius: 24px;
  padding: 36px;
  background:
    linear-gradient(90deg, rgba(7,17,31,.96), rgba(7,17,31,.65)),
    radial-gradient(circle at 80% 20%, rgba(255,122,47,.25), transparent 32%),
    linear-gradient(135deg, #394657, #d8cdbc);
  color: #fff;
}

.lp43-preview-hero small {
  color: #ff8a3d;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 950;
}

.lp43-preview-hero h3 {
  max-width: 470px;
  margin: 18px 0 28px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: .92;
  letter-spacing: -.07em;
}

.lp43-preview-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lp43-preview-buttons span {
  border-radius: 10px;
  padding: 13px 16px;
  background: #ff5a1f;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.lp43-preview-buttons span:last-child {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.24);
}

.lp43-preview-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.lp43-preview-row article,
.lp43-preview-assistant {
  border: 1px solid #e5e9ef;
  border-radius: 18px;
  padding: 18px;
  background: #fff;
}

.lp43-preview-row strong,
.lp43-preview-assistant span {
  display: block;
  margin-bottom: 6px;
  color: #07111f;
  font-size: 15px;
  font-weight: 950;
}

.lp43-preview-row span,
.lp43-preview-assistant em {
  color: #647084;
  font-style: normal;
  font-size: 13px;
  font-weight: 750;
}

.lp43-preview-assistant {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  background: #f7f9fb;
}

.lp43-preview-assistant b {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #07111f;
  color: #ff8a3d;
}

.lp43-compare {
  background: #fffdf8;
}

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

.lp43-compare-grid article {
  border-radius: 32px;
  padding: clamp(28px, 4vw, 46px);
}

.lp43-before-card {
  border: 1px solid rgba(7,17,31,.08);
  background: #fff;
  box-shadow: 0 24px 70px rgba(7,17,31,.06);
}

.lp43-after-card {
  background:
    radial-gradient(circle at 78% 14%, rgba(255,90,31,.20), transparent 32%),
    linear-gradient(135deg, #07111f, #15243a);
  color: #fff;
  box-shadow: 0 34px 90px rgba(7,17,31,.22);
}

.lp43-compare-grid article > span {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,90,31,.10);
  color: #c84d16;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 11px;
  font-weight: 950;
}

.lp43-after-card > span {
  background: rgba(255,90,31,.18) !important;
  color: #ff8a3d !important;
}

.lp43-compare-grid h3 {
  margin-bottom: 24px;
  font-size: clamp(32px, 4vw, 55px);
  line-height: .94;
  letter-spacing: -.07em;
}

.lp43-compare-grid ul {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp43-compare-grid li {
  position: relative;
  padding-left: 28px;
  color: #334054;
  font-size: 16px;
  font-weight: 850;
}

.lp43-after-card li {
  color: rgba(255,255,255,.78);
}

.lp43-compare-grid li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #9aa3b2;
  font-weight: 950;
}

.lp43-after-card li::before {
  content: "✓";
  color: #ff8a3d;
}

.lp43-offer {
  background: linear-gradient(180deg, #f4efe6, #ede6da);
}

.lp43-offer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr);
  gap: 28px;
  border-radius: 38px;
  padding: clamp(30px, 5vw, 58px);
  background: #fff;
  box-shadow: 0 30px 90px rgba(7,17,31,.10);
}

.lp43-offer-copy p {
  margin-left: 0;
}

.lp43-price-panel {
  border-radius: 28px;
  padding: 30px;
  background:
    radial-gradient(circle at 76% 10%, rgba(255,122,47,.22), transparent 28%),
    linear-gradient(135deg, #07111f, #15243a);
  color: #fff;
}

.lp43-price-panel small {
  color: #ff8a3d;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 11px;
  font-weight: 950;
}

.lp43-price-panel strong {
  display: block;
  margin: 18px 0 12px;
  color: #fff;
  font-size: 78px;
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 950;
}

.lp43-price-panel strong span {
  margin-left: 6px;
  color: rgba(255,255,255,.70);
  font-size: 21px;
  letter-spacing: -.02em;
}

.lp43-price-panel p {
  color: rgba(255,255,255,.74);
  line-height: 1.6;
}

.lp43-offer-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid #edf0f3;
  padding-top: 24px;
}

.lp43-offer-strip span {
  border-radius: 999px;
  padding: 10px 13px;
  background: #fff4ee;
  color: #9f3610;
  font-size: 13px;
  font-weight: 900;
}

.lp43-cta-band {
  padding: clamp(64px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,90,31,.20), transparent 28%),
    linear-gradient(135deg, #07111f, #111d31);
  color: #fff;
}

.lp43-cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.lp43-cta-band p {
  margin-left: 0;
}

.lp43-book .cta-wrap {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(520px, 1fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
}

.lp43-book .cta-copy h2 {
  color: #07111f;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .9;
  letter-spacing: -.075em;
}

.cta-assurance-list {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.cta-assurance-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 900;
}

.cta-assurance-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff5a1f;
}

@media (max-width: 1080px) {
  .lp43-hero-grid,
  .lp43-system-grid,
  .lp43-mockup-grid,
  .lp43-offer-shell,
  .lp43-book .cta-wrap {
    grid-template-columns: 1fr;
  }

  .lp43-system-steps,
  .lp43-leak-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp43-cta-band-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .lp43-hero-copy h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .lp43-leak-card-grid,
  .lp43-system-steps,
  .lp43-preview-row,
  .lp43-compare-grid {
    grid-template-columns: 1fr;
  }

  .lp43-system-steps article {
    min-height: auto;
  }

  .lp43-mockup-frame,
  .lp43-offer-shell,
  .lp43-hero-panel {
    border-radius: 24px;
  }

  .lp43-site-preview {
    padding: 14px;
  }

  .lp43-preview-hero {
    padding: 26px;
  }

  .lp43-preview-assistant {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* === Layer 44 public LP full visual rebuild === */
.flow-lp44 {
  --lp44-ink: #08111f;
  --lp44-navy: #07111f;
  --lp44-navy-2: #101b2e;
  --lp44-paper: #f5efe6;
  --lp44-warm: #fff8ed;
  --lp44-card: #ffffff;
  --lp44-line: rgba(8,17,31,.12);
  --lp44-muted: #627089;
  --lp44-orange: #ff5a1f;
  --lp44-orange-2: #ff7a35;
  --lp44-shadow: 0 24px 80px rgba(8, 17, 31, .14);
  color: var(--lp44-ink);
  background: var(--lp44-paper);
}
.flow-lp44 .container { max-width: 1180px; }
.flow-lp44 .site-header.lp44-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7,17,31,.88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.flow-lp44 .lp44-header .nav-wrap { min-height: 68px; }
.flow-lp44 .lp44-header .brand-main,
.flow-lp44 .lp44-header .brand-sub,
.flow-lp44 .lp44-header .nav-links a { color: #fff; }
.flow-lp44 .lp44-header .brand-main span { color: var(--lp44-orange); }
.flow-lp44 .lp44-header .nav-links a { opacity: .82; font-weight: 850; }
.flow-lp44 .lp44-header .nav-links a:hover { opacity: 1; color: #fff; }
.flow-lp44 .nav-cta { padding: 11px 15px; border-radius: 10px; }

.lp44-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 96px 0 112px;
  background:
    radial-gradient(circle at 85% 16%, rgba(255, 90, 31, .24), transparent 32%),
    radial-gradient(circle at 25% -10%, rgba(255, 255, 255, .10), transparent 24%),
    linear-gradient(135deg, #07111f 0%, #0b1424 48%, #111827 100%);
}
.lp44-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.17));
  pointer-events: none;
}
.lp44-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, .88fr);
  gap: 72px;
  align-items: center;
}
.lp44-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(255,90,31,.44);
  color: #ffb18e;
  background: rgba(255,90,31,.08);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lp44-kicker.muted { color: #f7c09f; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.lp44-kicker.warm { color: #b64618; background: #fff1e8; border-color: #ffd7c2; }
.lp44-hero h1 {
  margin: 22px 0 18px;
  max-width: 740px;
  font-size: clamp(54px, 6.25vw, 94px);
  line-height: .89;
  letter-spacing: -.078em;
  font-weight: 950;
}
.lp44-painline {
  color: #fff;
  max-width: 700px;
  margin: 0 0 20px;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 900;
}
.lp44-lede {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.75;
}
.lp44-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 34px; }
.lp44-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}
.lp44-secondary b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}
.lp44-hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 800;
}
.lp44-hero-micro span { display: inline-flex; align-items: center; gap: 6px; }
.lp44-hero-micro span:before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--lp44-orange); box-shadow: 0 0 0 4px rgba(255,90,31,.12); }
.lp44-hero-visual {
  position: relative;
  min-height: 620px;
}
.lp44-signal-card,
.lp44-path-card,
.lp44-mini-mock {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  border-radius: 28px;
}
.lp44-signal-card.top-card {
  position: absolute;
  top: 0;
  right: 18px;
  width: 330px;
  padding: 22px;
}
.lp44-signal-card small,
.lp44-path-head span { color: #ffb18e; text-transform: uppercase; font-weight: 950; letter-spacing: .1em; font-size: 10px; }
.lp44-signal-card strong { display: block; margin-top: 10px; font-size: 20px; line-height: 1.14; }
.lp44-signal-card p { margin: 10px 0 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.55; }
.lp44-flow-line {
  position: absolute;
  top: 158px;
  left: 52px;
  width: 360px;
  height: 74px;
  border-radius: 999px;
  border: 1px dashed rgba(255,255,255,.2);
  transform: rotate(-6deg);
}
.lp44-flow-line span { position: absolute; width: 10px; height: 10px; border-radius: 99px; background: var(--lp44-orange); box-shadow: 0 0 0 10px rgba(255,90,31,.12); }
.lp44-flow-line span:nth-child(1) { left: 42px; top: 30px; }
.lp44-flow-line span:nth-child(2) { left: 175px; top: 30px; }
.lp44-flow-line span:nth-child(3) { right: 42px; top: 30px; }
.lp44-path-card {
  position: absolute;
  top: 225px;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
}
.lp44-path-head { display: flex; justify-content: space-between; gap: 18px; align-items: start; margin-bottom: 20px; }
.lp44-path-head b { max-width: 310px; text-align: right; font-size: 22px; line-height: 1.08; }
.lp44-path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lp44-path-grid div {
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;
  background: rgba(7,17,31,.42);
}
.lp44-path-grid em { color: rgba(255,255,255,.28); font-style: normal; font-size: 26px; font-weight: 950; }
.lp44-path-grid strong { display: block; margin-top: 8px; font-size: 17px; }
.lp44-path-grid span { display: block; margin-top: 5px; color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.45; }
.lp44-mini-mock {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 0;
  overflow: hidden;
  background: #f7efe4;
  color: var(--lp44-ink);
}
.lp44-browser-dots { height: 38px; display: flex; align-items: center; gap: 7px; padding: 0 16px; background: #fff; border-bottom: 1px solid rgba(8,17,31,.08); }
.lp44-browser-dots i { width: 9px; height: 9px; border-radius: 99px; background: #d8dee8; }
.lp44-mini-hero { padding: 26px; background: linear-gradient(135deg, #0b1424, #1b2943); color: #fff; }
.lp44-mini-hero span { color: #ffb18e; text-transform: uppercase; font-size: 10px; font-weight: 950; letter-spacing: .1em; }
.lp44-mini-hero b { display: block; max-width: 300px; margin-top: 10px; font-size: 28px; line-height: 1.03; letter-spacing: -.04em; }
.lp44-mini-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 16px; }
.lp44-mini-row span { height: 58px; border-radius: 12px; background: #fff; border: 1px solid rgba(8,17,31,.08); }

.lp44-section { padding: 96px 0; }
.lp44-section-title { margin-bottom: 34px; }
.lp44-section-title.centered { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }
.lp44-section-title.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .65fr); gap: 44px; align-items: end; }
.lp44-section-title span { display: inline-flex; color: #b64618; font-size: 11px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.lp44-section-title h2,
.lp44-shift-copy h2,
.lp44-proof-copy h2,
.lp44-offer-copy h2,
.lp44-book-copy h2 {
  margin: 10px 0 0;
  color: var(--lp44-ink);
  font-size: clamp(38px, 4vw, 62px);
  line-height: .96;
  letter-spacing: -.06em;
  font-weight: 950;
}
.lp44-section-title p,
.lp44-shift-copy p,
.lp44-proof-copy p,
.lp44-offer-copy p,
.lp44-book-copy p { color: #5d6a7f; font-size: 17px; line-height: 1.72; }
.lp44-leaks { background: var(--lp44-paper); }
.lp44-leak-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lp44-leak-grid article {
  position: relative;
  min-height: 250px;
  padding: 25px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--lp44-line);
  box-shadow: 0 18px 50px rgba(8,17,31,.06);
  overflow: hidden;
}
.lp44-leak-grid article:after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(255,90,31,.09);
}
.lp44-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 18px; color: #fff; background: var(--lp44-ink); font-size: 22px; font-weight: 900; }
.lp44-leak-grid h3 { margin: 22px 0 10px; font-size: 21px; letter-spacing: -.03em; }
.lp44-leak-grid p { color: #61708a; line-height: 1.65; margin: 0; }

.lp44-shift { background: var(--lp44-navy); color: #fff; }
.lp44-shift-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 48px; align-items: center; }
.lp44-before-after { display: grid; grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr); gap: 18px; align-items: center; }
.lp44-ba-card { min-height: 360px; padding: 30px; border-radius: 30px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); }
.lp44-ba-card.after { background: linear-gradient(180deg, rgba(255,90,31,.22), rgba(255,255,255,.07)); border-color: rgba(255,90,31,.35); }
.lp44-ba-card span { color: #ffb18e; font-size: 11px; font-weight: 950; text-transform: uppercase; letter-spacing: .12em; }
.lp44-ba-card h3 { margin: 14px 0 18px; color: #fff; font-size: 32px; line-height: 1.04; letter-spacing: -.045em; }
.lp44-ba-card ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.lp44-ba-card li { color: rgba(255,255,255,.76); padding: 12px 13px; border-radius: 14px; background: rgba(255,255,255,.055); }
.lp44-arrow { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 99px; background: var(--lp44-orange); font-size: 24px; font-weight: 950; }
.lp44-shift-copy h2 { color: #fff; }
.lp44-shift-copy p { color: rgba(255,255,255,.72); }

.lp44-mockup-proof { background: #fffaf2; }
.lp44-proof-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr); gap: 56px; align-items: center; }
.lp44-chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.lp44-chip-row span { display: inline-flex; padding: 10px 12px; border-radius: 999px; background: #fff; border: 1px solid rgba(8,17,31,.1); color: #344258; font-size: 13px; font-weight: 850; }
.lp44-proof-frame { border-radius: 32px; overflow: hidden; background: #fff; border: 1px solid rgba(8,17,31,.1); box-shadow: var(--lp44-shadow); }
.lp44-frame-top { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 18px; border-bottom: 1px solid rgba(8,17,31,.08); background: #f7f9fc; }
.lp44-frame-top span { width: 9px; height: 9px; border-radius: 99px; background: #ccd4df; }
.lp44-frame-top em { margin-left: auto; color: #6b778b; font-size: 12px; font-style: normal; font-weight: 800; }
.lp44-frame-hero { min-height: 280px; padding: 34px; color: #fff; background: linear-gradient(135deg, rgba(7,17,31,.96), rgba(25,43,71,.92)), radial-gradient(circle at 78% 20%, rgba(255,90,31,.3), transparent 28%); }
.lp44-frame-hero small { color: #ffb18e; text-transform: uppercase; font-size: 11px; letter-spacing: .1em; font-weight: 950; }
.lp44-frame-hero h3 { max-width: 420px; margin: 16px 0 24px; color: #fff; font-size: 45px; line-height: .97; letter-spacing: -.055em; }
.lp44-frame-hero div { display: flex; gap: 10px; flex-wrap: wrap; }
.lp44-frame-hero b { padding: 12px 16px; border-radius: 12px; background: #fff; color: var(--lp44-ink); font-size: 13px; }
.lp44-frame-hero b:first-child { background: var(--lp44-orange); color: #fff; }
.lp44-frame-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 18px; }
.lp44-frame-cards article { padding: 18px; border-radius: 18px; border: 1px solid rgba(8,17,31,.08); background: #fbfcff; }
.lp44-frame-cards strong { display: block; margin-bottom: 5px; }
.lp44-frame-cards span { color: #637087; font-size: 13px; }
.lp44-assistant-bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; background: #07111f; color: #fff; }
.lp44-assistant-bar span { color: rgba(255,255,255,.72); }

.lp44-compare { background: var(--lp44-paper); }
.lp44-compare-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.lp44-compare-card { position: relative; padding: 34px; border-radius: 32px; background: #fff; border: 1px solid rgba(8,17,31,.1); box-shadow: 0 18px 55px rgba(8,17,31,.06); overflow: hidden; }
.lp44-compare-card.flow { color: #fff; background: linear-gradient(150deg, #07111f, #17243a); border-color: rgba(255,255,255,.12); box-shadow: 0 28px 80px rgba(8,17,31,.22); }
.lp44-compare-label { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: #fff1e8; color: #bf4a19; text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 950; }
.lp44-compare-card.flow .lp44-compare-label { color: #fff; background: rgba(255,90,31,.2); }
.lp44-compare-card h3 { margin: 18px 0 24px; font-size: 34px; line-height: 1.02; letter-spacing: -.045em; color: inherit; }
.lp44-compare-card ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.lp44-compare-card li { padding: 13px 15px; border-radius: 14px; background: rgba(8,17,31,.045); color: #4e5c72; font-weight: 750; }
.lp44-compare-card.flow li { background: rgba(255,255,255,.07); color: rgba(255,255,255,.78); }

.lp44-system { background: #fff; }
.lp44-system-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp44-system-grid article { padding: 24px; min-height: 220px; border-radius: 26px; background: #f7f9fc; border: 1px solid rgba(8,17,31,.08); }
.lp44-system-grid b { color: rgba(255,90,31,.42); font-size: 34px; font-weight: 950; }
.lp44-system-grid h3 { margin: 18px 0 8px; font-size: 21px; letter-spacing: -.03em; }
.lp44-system-grid p { margin: 0; color: #627089; line-height: 1.65; }

.lp44-offer { background: linear-gradient(135deg, #fff8ed, #f1e8db); }
.lp44-offer-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(380px, .62fr); gap: 44px; align-items: center; }
.lp44-price-card { border-radius: 32px; background: #fff; border: 1px solid rgba(8,17,31,.1); box-shadow: var(--lp44-shadow); padding: 30px; }
.lp44-price-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid rgba(8,17,31,.08); }
.lp44-price-top span { color: #68758a; font-size: 13px; font-weight: 850; }
.lp44-price-top strong { font-size: 52px; letter-spacing: -.06em; }
.lp44-price-top em { font-size: 16px; letter-spacing: 0; color: #657388; font-style: normal; }
.lp44-price-card ul { display: grid; gap: 12px; margin: 22px 0 26px; padding: 0; list-style: none; }
.lp44-price-card li { color: #46556c; font-weight: 750; }
.lp44-price-card li:before { content: "✓"; color: var(--lp44-orange); margin-right: 9px; font-weight: 950; }

.lp44-confidence { padding: 58px 0; background: linear-gradient(90deg, #251d31, #c65022); color: #fff; }
.lp44-confidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lp44-confidence-grid div { padding: 24px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); }
.lp44-confidence-grid span { color: #ffceb9; text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 950; }
.lp44-confidence-grid strong { display: block; margin: 9px 0; color: #fff; font-size: 24px; line-height: 1.05; letter-spacing: -.035em; }
.lp44-confidence-grid p { margin: 0; color: rgba(255,255,255,.75); line-height: 1.55; }

.lp44-book { padding: 108px 0; background: radial-gradient(circle at 15% 25%, rgba(255,90,31,.08), transparent 25%), #f6efe6; }
.lp44-book-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(430px, .72fr); gap: 70px; align-items: center; }
.lp44-book-copy h2 { font-size: clamp(54px, 6vw, 86px); }
.lp44-book-copy ul { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.lp44-book-copy li { font-weight: 900; color: #223047; }
.lp44-book-copy li:before { content: "✦"; color: var(--lp44-orange); margin-right: 9px; }
.lp44-form-card { border-radius: 32px !important; border: 1px solid rgba(8,17,31,.1); box-shadow: var(--lp44-shadow); }
.lp44-footer { background: var(--lp44-navy); }

@media (max-width: 980px) {
  .lp44-hero-grid,
  .lp44-shift-grid,
  .lp44-proof-grid,
  .lp44-section-title.split,
  .lp44-offer-grid,
  .lp44-book-grid { grid-template-columns: 1fr; }
  .lp44-hero-visual { min-height: auto; display: grid; gap: 18px; }
  .lp44-signal-card.top-card,
  .lp44-path-card,
  .lp44-mini-mock { position: relative; top: auto; left: auto; right: auto; bottom: auto; width: auto; }
  .lp44-flow-line { display: none; }
  .lp44-leak-grid,
  .lp44-system-grid,
  .lp44-confidence-grid { grid-template-columns: repeat(2, 1fr); }
  .lp44-before-after { grid-template-columns: 1fr; }
  .lp44-arrow { transform: rotate(90deg); margin: 0 auto; }
}
@media (max-width: 700px) {
  .lp44-hero { padding: 68px 0 76px; }
  .lp44-hero h1 { font-size: clamp(44px, 13vw, 66px); }
  .lp44-painline { font-size: 23px; }
  .lp44-section { padding: 68px 0; }
  .lp44-leak-grid,
  .lp44-system-grid,
  .lp44-compare-wrap,
  .lp44-confidence-grid,
  .lp44-path-grid,
  .lp44-frame-cards { grid-template-columns: 1fr; }
  .lp44-actions { align-items: stretch; }
  .lp44-actions .btn { width: 100%; }
  .lp44-secondary { justify-content: center; width: 100%; }
  .lp44-section-title h2,
  .lp44-shift-copy h2,
  .lp44-proof-copy h2,
  .lp44-offer-copy h2 { font-size: 38px; }
  .lp44-book-copy h2 { font-size: 48px; }
  .lp44-price-top { flex-direction: column; }
}


/* === Layer 45: one-column final CTA/form section === */
.flow-lp45 .lp45-book {
  padding: 112px 0 124px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 90, 31, .12), transparent 30%),
    linear-gradient(180deg, #fbf5eb 0%, #f4eadc 100%);
}
.flow-lp45 .lp45-book-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 42px;
}
.flow-lp45 .lp45-book-copy {
  width: min(880px, 100%);
  text-align: center;
}
.flow-lp45 .lp45-book-copy h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
  font-size: clamp(50px, 7vw, 92px);
  line-height: .92;
}
.flow-lp45 .lp45-book-copy p {
  max-width: 680px;
  margin: 22px auto 0;
  color: #526176;
  font-size: 18px;
}
.flow-lp45 .lp45-book-copy ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
}
.flow-lp45 .lp45-book-copy li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #172338;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(8,17,31,.09);
  box-shadow: 0 12px 34px rgba(8,17,31,.05);
}
.flow-lp45 .lp45-form-card {
  width: min(760px, 100%);
  padding: clamp(26px, 4vw, 44px) !important;
  border-radius: 34px !important;
  background: rgba(255,255,255,.92) !important;
  box-shadow: 0 38px 95px rgba(8,17,31,.16) !important;
}
.flow-lp45 .lp45-form-card > h2,
.flow-lp45 .lp45-form-card > p {
  text-align: center;
}
.flow-lp45 .lp45-form-card > h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.05em;
}
.flow-lp45 .lp45-form-card > p {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.flow-lp45 .lp45-form-card .booking-form {
  margin-top: 24px;
}
@media (max-width: 700px) {
  .flow-lp45 .lp45-book { padding: 76px 0 86px; }
  .flow-lp45 .lp45-book-stack { gap: 30px; }
  .flow-lp45 .lp45-book-copy { text-align: left; }
  .flow-lp45 .lp45-book-copy h2,
  .flow-lp45 .lp45-book-copy p { margin-left: 0; margin-right: 0; }
  .flow-lp45 .lp45-book-copy ul { justify-content: flex-start; }
  .flow-lp45 .lp45-form-card { padding: 22px !important; border-radius: 26px !important; }
}

/* === Layer 46: hard-replaced one-column final CTA/form section === */
.flow-final-cta-one-column-v46 {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 10vw, 150px) 0 clamp(96px, 11vw, 160px);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 90, 31, .12), transparent 26%),
    radial-gradient(circle at 84% 82%, rgba(8, 17, 31, .08), transparent 34%),
    linear-gradient(180deg, #fbf5ec 0%, #f3eadc 100%);
}
.flow-final-cta-one-column-v46::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 54px;
  width: min(980px, calc(100% - 36px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(8,17,31,.14), transparent);
}
.flow-final-cta-shell-v46 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: clamp(34px, 5vw, 58px) !important;
  max-width: 980px;
}
.flow-final-cta-copy-v46 {
  width: min(880px, 100%);
  text-align: center;
}
.flow-final-kicker-v46 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: #fff1e8;
  border: 1px solid rgba(255, 90, 31, .18);
  color: #bf4a19;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 950;
}
.flow-final-cta-copy-v46 h2 {
  max-width: 820px;
  margin: 20px auto 0;
  color: #07111f;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .9;
  letter-spacing: -.075em;
}
.flow-final-cta-copy-v46 p {
  max-width: 680px;
  margin: 24px auto 0;
  color: #526176;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}
.flow-final-trust-chips-v46 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
}
.flow-final-trust-chips-v46 li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #172338;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(8,17,31,.09);
  box-shadow: 0 12px 34px rgba(8,17,31,.05);
  font-size: 14px;
  font-weight: 900;
}
.flow-final-trust-chips-v46 li::before {
  content: "✦";
  margin-right: 8px;
  color: #ff5a1f;
  font-weight: 950;
}
.flow-final-form-card-v46 {
  width: min(640px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 34px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(8,17,31,.1);
  box-shadow: 0 38px 95px rgba(8,17,31,.16);
}
.flow-final-form-intro-v46 {
  text-align: center;
  margin-bottom: 24px;
}
.flow-final-form-intro-v46 h3 {
  margin: 0;
  color: #07111f;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -.055em;
}
.flow-final-form-intro-v46 p {
  max-width: 520px;
  margin: 12px auto 0;
  color: #68758a;
  line-height: 1.6;
}
.flow-final-form-card-v46 .booking-form {
  margin-top: 0;
}
.flow-final-form-card-v46 .btn-full {
  width: 100%;
}
/* Explicitly neutralize legacy side-by-side final CTA rules for this v46 section. */
.flow-final-cta-one-column-v46 .cta-wrap,
.flow-final-cta-one-column-v46 .lp44-book-grid,
.flow-final-cta-one-column-v46 .lp45-book-stack {
  display: block !important;
  grid-template-columns: none !important;
}
@media (max-width: 700px) {
  .flow-final-cta-one-column-v46 {
    padding: 76px 0 92px;
  }
  .flow-final-cta-copy-v46 {
    text-align: left;
  }
  .flow-final-cta-copy-v46 h2,
  .flow-final-cta-copy-v46 p {
    margin-left: 0;
    margin-right: 0;
  }
  .flow-final-trust-chips-v46 {
    justify-content: flex-start;
  }
  .flow-final-form-card-v46 {
    padding: 22px;
    border-radius: 26px;
  }
}


/* === Layer 47: widen final fit-call form to match main panel width === */
.flow-final-cta-one-column-v46.flow-final-cta-wide-v47 {
  padding-bottom: clamp(96px, 11vw, 156px);
}
.flow-final-cta-wide-v47 .flow-final-cta-shell-v46 {
  width: min(1180px, calc(100% - 56px));
  max-width: 1180px !important;
}
.flow-final-cta-wide-v47 .flow-final-form-card-v46 {
  width: min(980px, 100%) !important;
  max-width: 980px !important;
}
.flow-final-cta-wide-v47 .flow-final-form-card-v46 .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flow-final-cta-wide-v47 .flow-final-form-card-v46 .calendar-request {
  max-width: none;
}
.flow-final-cta-wide-v47 .flow-final-form-card-v46 textarea {
  min-height: 140px;
}
@media (max-width: 700px) {
  .flow-final-cta-wide-v47 .flow-final-cta-shell-v46 {
    width: min(100% - 32px, 1180px);
  }
  .flow-final-cta-wide-v47 .flow-final-form-card-v46 {
    width: 100% !important;
  }
  .flow-final-cta-wide-v47 .flow-final-form-card-v46 .form-grid {
    grid-template-columns: 1fr;
  }
}


/* === Layer 48: subtle performance-safe parallax/motion polish === */
.flow-lp48 .flow-parallax-target {
  --flow-parallax-y: 0px;
  transform: translate3d(0, var(--flow-parallax-y), 0);
  will-change: transform;
  transition: transform 80ms linear;
}
.flow-lp48 .lp44-hero-visual.flow-parallax-target {
  transform: translate3d(0, var(--flow-parallax-y), 0);
}
.flow-lp48 .lp44-proof-frame.flow-parallax-target {
  transform: translate3d(0, var(--flow-parallax-y), 0);
}
.flow-lp48 .lp44-shift.flow-parallax-glow-v48 {
  position: relative;
  overflow: hidden;
}
.flow-lp48 .lp44-shift.flow-parallax-glow-v48::before {
  content: "";
  position: absolute;
  inset: -18% -10% auto auto;
  width: min(560px, 62vw);
  height: min(560px, 62vw);
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,90,31,.19), rgba(255,90,31,.08) 34%, transparent 68%);
  filter: blur(18px);
  opacity: .72;
  transform: translate3d(0, var(--flow-parallax-glow-y, 0px), 0);
  will-change: transform;
}
.flow-lp48 .lp44-shift.flow-parallax-glow-v48 > .container {
  position: relative;
  z-index: 1;
}
.flow-lp48 .flow-final-cta-motion-v48 {
  position: relative;
  overflow: hidden;
}
.flow-lp48 .flow-final-cta-motion-v48::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: min(760px, 84vw);
  height: min(760px, 84vw);
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,90,31,.14), rgba(255,183,125,.08) 38%, transparent 70%);
  filter: blur(22px);
  opacity: .68;
  transform: translate3d(-50%, var(--flow-parallax-glow-y, 0px), 0);
  will-change: transform;
}
.flow-lp48 .flow-final-cta-motion-v48 .flow-final-cta-shell-v46 {
  position: relative;
  z-index: 1;
}
.flow-lp48 .lp44-hero-visual::after,
.flow-lp48 .lp44-proof-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.04), transparent 42%);
}
@media (max-width: 860px), (prefers-reduced-motion: reduce) {
  .flow-lp48 .flow-parallax-target {
    --flow-parallax-y: 0px !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
  .flow-lp48 .lp44-shift.flow-parallax-glow-v48::before,
  .flow-lp48 .flow-final-cta-motion-v48::after {
    transform: none !important;
    will-change: auto;
  }
}


/* flow-faq-after-simple-offer-v50: premium objection-handling FAQ below Simple Offer */
.flow-lp50 .lp50-faq {
  position: relative;
  overflow: hidden;
  padding: 86px 0 92px;
  background:
    radial-gradient(circle at 15% 0%, rgba(198, 80, 34, .14), transparent 34%),
    linear-gradient(180deg, #fffaf3 0%, #f7efe5 100%);
}
.flow-lp50 .lp50-faq::before {
  content: "";
  position: absolute;
  inset: 22px max(24px, calc((100vw - 1180px) / 2)) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 29, 49, .18), transparent);
  pointer-events: none;
}
.flow-lp50 .lp50-faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 52px;
  align-items: start;
}
.flow-lp50 .lp50-faq-heading {
  position: sticky;
  top: 96px;
}
.flow-lp50 .lp50-faq-heading h2 {
  margin: 14px 0 16px;
  max-width: 520px;
  color: #241d2f;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .92;
  letter-spacing: -.06em;
}
.flow-lp50 .lp50-faq-heading p {
  max-width: 470px;
  margin: 0;
  color: #665c69;
  font-size: 18px;
  line-height: 1.65;
}
.flow-lp50 .lp50-faq-list {
  display: grid;
  gap: 12px;
}
.flow-lp50 .lp50-faq-item {
  border: 1px solid rgba(37, 29, 49, .1);
  border-radius: 24px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 24px 70px rgba(37, 29, 49, .08);
  overflow: hidden;
}
.flow-lp50 .lp50-faq-item.is-open {
  border-color: rgba(198, 80, 34, .24);
  background: rgba(255, 255, 255, .92);
}
.flow-lp50 .lp50-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: #241d2f;
  text-align: left;
  font: inherit;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.25;
  cursor: pointer;
}
.flow-lp50 .lp50-faq-question:focus-visible {
  outline: 3px solid rgba(198, 80, 34, .32);
  outline-offset: -5px;
  border-radius: 22px;
}
.flow-lp50 .lp50-faq-question b {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #241d2f;
  color: #fff;
  font-size: 21px;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}
.flow-lp50 .lp50-faq-item.is-open .lp50-faq-question b {
  transform: rotate(45deg);
  background: #c65022;
}
.flow-lp50 .lp50-faq-answer {
  padding: 0 24px 24px;
}
.flow-lp50 .lp50-faq-answer p {
  margin: 0;
  max-width: 760px;
  color: #665c69;
  font-size: 16px;
  line-height: 1.7;
}
.flow-lp50 .lp44-offer + .lp50-faq {
  margin-top: 0;
}
@media (max-width: 960px) {
  .flow-lp50 .lp50-faq-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .flow-lp50 .lp50-faq-heading {
    position: static;
  }
  .flow-lp50 .lp50-faq-heading h2 {
    max-width: 720px;
  }
  .flow-lp50 .lp50-faq-heading p {
    max-width: 720px;
  }
}
@media (max-width: 640px) {
  .flow-lp50 .lp50-faq {
    padding: 64px 0 68px;
  }
  .flow-lp50 .lp50-faq-question {
    padding: 19px 18px;
    font-size: 16px;
  }
  .flow-lp50 .lp50-faq-answer {
    padding: 0 18px 20px;
  }
  .flow-lp50 .lp50-faq-answer p {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .flow-lp50 .lp50-faq-question b {
    transition: none;
  }
}


/* public_lp_faq_visual_polish_v52: premium FAQ panel after Simple Offer */
.flow-lp52 .lp52-faq {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 8vw, 96px) 0 clamp(70px, 8vw, 104px);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 90, 31, .12), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(7, 17, 31, .08), transparent 34%),
    linear-gradient(180deg, #f8f1e7 0%, #fffaf3 56%, #f4ebdf 100%);
}
.flow-lp52 .lp52-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .52) 50%, transparent 100%);
  opacity: .55;
  z-index: -2;
}
.flow-lp52 .lp52-faq::after {
  content: "";
  position: absolute;
  width: min(520px, 58vw);
  height: min(520px, 58vw);
  right: -180px;
  bottom: -260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 90, 31, .2), transparent 66%);
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
}
.flow-lp52 .lp52-faq-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, .86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 4.8vw, 64px);
  align-items: start;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 90, 31, .24), transparent 38%),
    linear-gradient(135deg, #07111f 0%, #0d1728 52%, #1c1022 100%);
  color: #fff;
  box-shadow:
    0 44px 120px rgba(7, 17, 31, .22),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  overflow: hidden;
}
.flow-lp52 .lp52-faq-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .07);
  pointer-events: none;
}
.flow-lp52 .lp52-faq-heading {
  position: relative;
  top: auto;
  z-index: 1;
}
.flow-lp52 .lp52-faq-heading .lp44-kicker {
  color: #ffb38f;
  background: rgba(255, 90, 31, .13);
  border-color: rgba(255, 122, 47, .25);
}
.flow-lp52 .lp52-faq-heading h2 {
  max-width: 560px;
  margin: 18px 0 18px;
  color: #fff;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: .9;
  letter-spacing: -.065em;
}
.flow-lp52 .lp52-faq-heading p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}
.flow-lp52 .lp52-faq-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(24px, 4vw, 38px);
}
.flow-lp52 .lp52-faq-proof-grid span {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.35;
}
.flow-lp52 .lp52-faq-proof-grid strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 14px;
  letter-spacing: -.01em;
}
.flow-lp52 .lp52-faq-panel {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  background: rgba(255, 250, 243, .96);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
  overflow: hidden;
}
.flow-lp52 .lp52-faq-panel-top {
  display: grid;
  gap: 7px;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 90, 31, .1), rgba(7, 17, 31, .04)),
    #fff7ed;
  border-bottom: 1px solid rgba(7, 17, 31, .08);
}
.flow-lp52 .lp52-faq-panel-top span {
  color: #c65022;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.flow-lp52 .lp52-faq-panel-top strong {
  max-width: 660px;
  color: #201827;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.flow-lp52 .lp52-faq-list {
  display: grid;
  gap: 0;
  padding: 8px;
}
.flow-lp52 .lp52-faq-item {
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
.flow-lp52 .lp52-faq-item + .lp52-faq-item {
  border-top: 1px solid rgba(7, 17, 31, .08);
  border-radius: 0;
}
.flow-lp52 .lp52-faq-item.is-open {
  border-color: transparent;
  background: linear-gradient(180deg, #fff 0%, #fff8f1 100%);
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(7, 17, 31, .08);
}
.flow-lp52 .lp52-faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: #17111f;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.flow-lp52 .lp52-faq-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #f3ebe0;
  color: #c65022;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.flow-lp52 .lp52-faq-question-text {
  color: #17111f;
  font-size: clamp(16px, 1.55vw, 19px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.022em;
}
.flow-lp52 .lp52-faq-question b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #07111f;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.flow-lp52 .lp52-faq-question:hover b {
  background: #ff5a1f;
}
.flow-lp52 .lp52-faq-question:focus-visible {
  outline: 3px solid rgba(255, 90, 31, .35);
  outline-offset: -6px;
  border-radius: 18px;
}
.flow-lp52 .lp52-faq-item.is-open .lp52-faq-question b {
  transform: rotate(45deg);
  background: #ff5a1f;
}
.flow-lp52 .lp52-faq-answer {
  padding: 0 22px 24px 70px;
}
.flow-lp52 .lp52-faq-answer p {
  max-width: 680px;
  margin: 0;
  color: #5f6675;
  font-size: 15.5px;
  line-height: 1.72;
}
.flow-lp52 .lp44-offer + .lp52-faq {
  margin-top: 0;
}
@media (max-width: 980px) {
  .flow-lp52 .lp52-faq-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .flow-lp52 .lp52-faq-proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .flow-lp52 .lp52-faq {
    padding: 56px 0 68px;
  }
  .flow-lp52 .lp52-faq-shell {
    padding: 22px;
    border-radius: 26px;
  }
  .flow-lp52 .lp52-faq-shell::before {
    display: none;
  }
  .flow-lp52 .lp52-faq-proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .flow-lp52 .lp52-faq-panel {
    border-radius: 22px;
  }
  .flow-lp52 .lp52-faq-question {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
    padding: 18px 16px;
  }
  .flow-lp52 .lp52-faq-number {
    display: none;
  }
  .flow-lp52 .lp52-faq-answer {
    padding: 0 16px 20px;
  }
}
@media (max-width: 460px) {
  .flow-lp52 .lp52-faq-proof-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .flow-lp52 .lp52-faq-question b {
    transition: none;
  }
}



/* public_lp_compact_faq_v53: compact cream accordion matching the reference treatment */
.flow-lp53 .flow-faq-compact {
  position: relative;
  padding: clamp(26px, 3.4vw, 42px) 0 clamp(34px, 4.2vw, 54px);
  background: #f4eee5;
}
.flow-lp53 .lp44-offer + .flow-faq-compact {
  margin-top: 0;
}
.flow-lp53 .flow-faq-compact-inner {
  max-width: 980px;
}
.flow-lp53 .flow-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.flow-lp53 .flow-faq-stack {
  display: grid;
  gap: 14px;
}
.flow-lp53 .flow-faq-card {
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, .12);
  border-radius: 20px;
  background: #f8f3ec;
  box-shadow: 0 14px 36px rgba(7, 17, 31, .045);
}
.flow-lp53 .flow-faq-card.is-open {
  background: #f7f1e9;
  border-color: rgba(7, 17, 31, .14);
  box-shadow: 0 18px 44px rgba(7, 17, 31, .055);
}
.flow-lp53 .flow-faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 26px;
  border: 0;
  background: transparent;
  color: #07111f;
  text-align: left;
  font: inherit;
  font-size: clamp(18px, 1.65vw, 22px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -.025em;
  cursor: pointer;
}
.flow-lp53 .flow-faq-question:focus-visible {
  outline: 3px solid rgba(255, 90, 31, .34);
  outline-offset: -6px;
  border-radius: 18px;
}
.flow-lp53 .flow-faq-caret {
  flex: 0 0 auto;
  width: 12px;
  margin-top: .08em;
  color: #07111f;
  font-size: .82em;
  line-height: 1;
  transition: transform .18s ease;
}
.flow-lp53 .flow-faq-card.is-open .flow-faq-caret {
  transform: translateY(1px);
}
.flow-lp53 .flow-faq-answer {
  padding: 0 30px 24px 48px;
}
.flow-lp53 .flow-faq-answer p {
  max-width: 890px;
  margin: 0;
  color: #6b7280;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.65;
  letter-spacing: -.01em;
}
.flow-lp53 .flow-faq-answer[hidden] {
  display: none !important;
}
@media (max-width: 720px) {
  .flow-lp53 .flow-faq-compact {
    padding: 22px 0 36px;
  }
  .flow-lp53 .flow-faq-stack {
    gap: 10px;
  }
  .flow-lp53 .flow-faq-card {
    border-radius: 16px;
  }
  .flow-lp53 .flow-faq-question {
    padding: 18px 18px;
    font-size: 17px;
  }
  .flow-lp53 .flow-faq-answer {
    padding: 0 18px 18px 38px;
  }
  .flow-lp53 .flow-faq-answer p {
    font-size: 15px;
    line-height: 1.58;
  }
}
@media (prefers-reduced-motion: reduce) {
  .flow-lp53 .flow-faq-caret {
    transition: none;
  }
}
