:root {
  --bg: #fbfcff;
  --ink: #07142d;
  --navy: #06152f;
  --muted: #667085;
  --blue: #3e8ada;
  --blue-dark: #2f80ed;
  --blue-soft: #ddecff;
  --line: #d7e8ff;
  --line-strong: #93c4fb;
  --soft: #f4f9ff;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(9, 27, 65, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  letter-spacing: -0.035em;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-bg {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 42%, #f8fbff 100%);
}

.site-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg width='1800' height='3000' viewBox='0 0 1800 3000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1630 -20C1500 140 1605 285 1510 420C1408 565 1230 535 1185 705C1142 875 1305 960 1282 1115C1255 1298 1010 1260 950 1445C888 1632 1078 1755 1010 1940C945 2120 710 2100 635 2290C552 2500 735 2600 660 2770' fill='none' stroke='%238fc5ff' stroke-opacity='.22' stroke-width='18' stroke-linecap='round'/%3E%3Cpath d='M170 855C18 965 268 1195 110 1310C-30 1410 80 1588 220 1520' fill='none' stroke='%238fc5ff' stroke-opacity='.18' stroke-width='18' stroke-linecap='round'/%3E%3Cpath d='M85 2220C260 2130 338 2345 205 2440C85 2525 105 2695 260 2735' fill='none' stroke='%238fc5ff' stroke-opacity='.16' stroke-width='18' stroke-linecap='round'/%3E%3C/svg%3E") center top / 1800px auto repeat-y;
}

.site-bg > * {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1120px, calc(100% - 44px));
  margin-inline: auto;
}

.container-narrow {
  width: min(980px, calc(100% - 44px));
  margin-inline: auto;
}

.container-wide {
  width: min(1280px, calc(100% - 44px));
  margin-inline: auto;
}

.results-container {
  width: min(1040px, calc(100% - 260px));
  margin-inline: auto;
}

.announcement {
  background: #ddecff;
  color: #5f6876;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 16px;
  letter-spacing: -0.02em;
}

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

.announcement a:hover {
  color: var(--blue);
}

.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 max(28px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(231, 237, 246, 0.82);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 44px;
  max-width: 260px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 54px;
  color: #111827;
  font-size: 17px;
  font-weight: 900;
  margin-left: auto;
}

.nav a:hover {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  background: #07142d;
  color: #ffffff;
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.section-pad {
  padding: 72px 0;
}

.hero {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 24px;
  padding-bottom: 36px;
}

.hero h1 {
  margin: 0 auto 12px;
  max-width: 780px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  color: #4a4a4a;
  letter-spacing: -0.065em;
}

.hero h1 .rocket {
  display: inline-block;
  font-size: 1.2em;
  margin-left: 8px;
  transform: translateY(4px);
}

.hero-sub {
  max-width: 720px;
  margin: 0 auto;
  color: #07142d;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.4;
  font-weight: 500;
}

.hero-card {
  margin: 34px auto 0;
  width: min(330px, 100%);
  text-align: left;
}

.hero-card-img {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d9dee8;
  box-shadow: 0 5px 14px rgba(9, 27, 65, 0.16);
}

.hero-card p {
  margin: 16px 0 0;
  color: #111827;
  font-size: 14px;
  line-height: 1.35;
}

.hero-card .btn {
  margin: 40px auto 0;
  display: flex;
}

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 14px 24px;
  min-height: 50px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 0;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  letter-spacing: -0.03em;
}

.btn::before {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -80%;
  width: 45%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
}

.btn:hover::before {
  left: 130%;
}

.btn-primary {
  background: linear-gradient(135deg, #9dccff, #3e8ada 72%, #5b6670);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(62, 138, 218, 0.24);
}

.btn-soft {
  background: #86bdf2;
  color: #ffffff;
  border: 3px solid rgba(147, 196, 251, .65);
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(62, 138, 218, 0.18);
}

.btn-large {
  min-width: 210px;
  width: 210px;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 15px;
  min-height: 45px;
}

.page-hero {
  text-align: center;
  padding: 48px 0 28px;
}

.page-hero.compact {
  padding: 34px 0 24px;
}

.page-hero h1 {
  margin: 0 auto 14px;
  max-width: 1100px;
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1.04;
  color: var(--ink);
  letter-spacing: -0.065em;
}

.page-hero h1 strong,
.link-accent {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.08em;
}

.page-sub {
  max-width: 1000px;
  margin: 0 auto;
  color: #07142d;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.42;
  font-weight: 500;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 15px;
}

.media-shell {
  width: min(980px, calc(100% - 44px));
  margin: 20px auto 40px;
  border: 2px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  padding: 12px;
  box-shadow: var(--shadow);
}

.media-shell.vsl-media {
  width: min(980px, calc(100% - 44px));
  margin-bottom: 26px;
}

.media-bar {
  background: var(--blue);
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 11px 16px;
}

.media-bar a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.embed-wrap {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.embed-wrap iframe {
  width: 100%;
  max-width: 100%;
  display: block;
}

.quicktrack-embed iframe {
  height: 506px;
}

.vsl-embed iframe {
  height: 552px;
}

.book-button-row {
  text-align: center;
  margin: 24px 0 62px;
}

.book-button-row .btn {
  min-width: 238px;
  min-height: 55px;
  font-size: 15.75px;
  line-height: 1.08;
  flex-direction: column;
  padding: 12px 22px;
}

.book-button-row .btn small {
  display: block;
  margin-top: 4px;
  font-size: 13.65px;
  font-weight: 500;
}

.result-box,
.notice-card {
  border: 2px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, .68);
  padding: 42px 42px;
  text-align: center;
  box-shadow: 0 18px 60px rgba(9, 27, 65, .05);
}

.result-box {
  width: min(1180px, 100%);
  margin-inline: auto;
  padding: 46px 42px 42px;
}

.result-box p,
.notice-card p {
  margin: 0 0 24px;
  color: #4b5565;
  font-size: 18px;
  line-height: 1.7;
}

.result-box .main-line {
  font-size: 20px;
  line-height: 1.75;
  color: #111827;
}

.result-box .main-line .link-accent {
  font-weight: 900;
}

.result-box .middle-line {
  margin-top: 34px;
  margin-bottom: 40px;
  color: #667085;
}

.result-box .middle-line strong {
  color: #76a9b7;
  text-decoration: none;
}

.result-box .middle-line em {
  display: inline-block;
  color: #9aa1ad;
  font-size: 15px;
  line-height: 1.35;
  margin-top: 2px;
}

.result-box .guarantee {
  font-size: 26px;
  margin-bottom: 30px;
}

.result-box small,
.muted-note {
  display: block;
  color: #8c95a3;
  font-size: 15px;
  line-height: 1.4;
  margin-top: 52px;
}

.section-head {
  text-align: center;
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.08;
}

.section-head p {
  margin: 0 auto;
  max-width: 780px;
  color: #536072;
  font-size: 18px;
  line-height: 1.5;
}

.numbers-img {
  width: min(760px, 100%);
  margin: 0 auto 36px;
}

.vsl-numbers {
  width: min(860px, 100%);
}

.vsl-result-links {
  text-align: center;
  font-size: 20px;
}

.vsl-result-links a {
  color: var(--blue);
  text-decoration: underline;
  font-size: 23px;
}

.vsl-hero h1 {
  font-size: clamp(30px, 3.1vw, 44px);
  max-width: 1280px;
  white-space: nowrap;
  color: var(--ink);
}

.vsl-hero .page-sub {
  white-space: nowrap;
  font-size: clamp(13px, .95vw, 16px);
}

.results-hero {
  padding: 80px 0 10px;
}

.results-hero .eyebrow {
  font-size: 20px;
  margin-bottom: 18px;
}

.results-hero h1 {
  font-size: clamp(34px, 3.9vw, 58px);
}

.results-hero .numbers-img {
  width: min(820px, 100%);
  margin-top: 20px;
  margin-bottom: 36px;
}

.results-stack {
  display: grid;
  gap: 46px;
}

.results-stack figure {
  margin: 0;
}

.results-stack figcaption {
  font-size: 23px;
  line-height: 1.45;
  margin-bottom: 12px;
  font-weight: 500;
}

.results-stack figcaption strong {
  font-weight: 500;
}

.results-stack figure > p {
  font-size: 22px;
  line-height: 1.45;
  margin: 0 0 14px;
}

.results-stack img {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  border-radius: 6px;
  box-shadow: 0 12px 36px rgba(9, 27, 65, .08);
}

.results-logo {
  width: 150px !important;
  max-width: 150px !important;
  margin-left: 0 !important;
  box-shadow: none !important;
  margin-bottom: 36px;
}

.logo-cloud {
  margin-top: 24px;
  text-align: center;
}

.logo-cloud .eyebrow {
  font-size: 20px;
}

.logo-cloud img {
  margin: 20px auto 0;
  opacity: .62;
}

.businesses-cloud img {
  width: 105%;
  max-width: 105%;
  margin-left: -2.5%;
}

.partners-cloud img {
  width: 110%;
  max-width: 110%;
  margin-left: -5%;
}

.progress-wrap {
  max-width: 720px;
  margin: 24px auto 36px;
}

.progress {
  overflow: hidden;
  height: 34px;
  border: 1px solid #d8dfe8;
  border-radius: 11px;
  background: #ffffff;
  box-shadow: inset 0 2px 8px rgba(9, 27, 65, .08), 0 7px 18px rgba(9, 27, 65, .08);
}

.progress-bar {
  width: 60%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  background: repeating-linear-gradient(45deg, #3e8ada, #3e8ada 18px, #5ea0e8 18px, #5ea0e8 36px);
}

.ty-hero {
  padding-top: 30px;
  padding-bottom: 28px;
}

.ty-hero .brand-logo {
  height: 58px;
}

.ty-hero h1 {
  font-size: clamp(33px, 3.65vw, 54px);
  max-width: 980px;
}

.ty-hero .eyebrow {
  font-size: 15px;
  margin-bottom: 10px;
}

.ty-card {
  padding: 32px 38px;
  transform: scale(.94);
  transform-origin: top center;
}

.ty-card p {
  font-size: 16px;
}

.ty-card > p:first-child strong {
  font-size: 18px;
}

.ty-card > p:first-child {
  max-width: 900px;
  margin-inline: auto;
}

.check-list {
  text-align: left;
  margin: 26px auto 0;
  max-width: 940px;
  display: grid;
  gap: 16px;
}

.check-list h2 {
  font-size: 24px;
  margin: 0 0 8px;
}

.check-list p {
  margin: 0;
  color: #07142d;
  font-size: 16px;
  line-height: 1.48;
}

.check-list span {
  color: var(--blue);
  font-weight: 900;
}

.check-list .soft {
  color: #9a9a9a;
  font-style: italic;
}

.check-list .danger {
  color: #ef4444;
}

.quicktrack-logo {
  height: 54px;
  margin: 0 auto;
}

.quicktrack-hero {
  padding-top: 14px;
  padding-bottom: 18px;
}

.quicktrack-hero .eyebrow {
  margin-top: 18px !important;
  margin-bottom: 10px;
  font-size: 15.75px;
}

.quicktrack-hero h1 {
  font-size: clamp(31.5px, 3.57vw, 50.4px);
  max-width: 1240px;
  white-space: nowrap;
}

.quicktrack-hero .page-sub {
  font-size: clamp(14.7px, .966vw, 16.8px);
  font-weight: 500;
  max-width: 760px;
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 74px;
  align-items: start;
  justify-content: center;
  width: min(760px, 100%);
  margin: 46px auto 82px;
  text-align: center;
}

.install-card .btn {
  width: 100%;
  min-height: 58px;
  border-radius: 14px;
  font-size: 18px;
  line-height: 1.08;
  white-space: normal;
  padding: 12px 18px;
  flex-direction: column;
}

.install-card .btn span {
  display: block;
  font-weight: 900;
}

.install-card .btn small {
  display: block;
  margin-top: 5px;
  font-size: 15px;
  font-weight: 500;
}

.install-card img {
  margin: 24px auto 0;
  max-height: 72px;
  object-fit: contain;
}

.final-copy {
  text-align: center;
  color: #07142d;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 120px;
}

.final-copy .soft-bold {
  color: #5d6470;
  font-weight: 900;
}

.final-copy .quick-link {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 900;
}

.notice-card.booking-card {
  border-style: dotted;
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: 42px 42px 30px;
}

.booking-card h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
  margin: 0 0 20px;
}

.booking-card > p:not(.eyebrow) {
  max-width: 930px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.55;
  color: #8a8a8a;
}

.calendly-wrap {
  width: min(1040px, 100%);
  margin: 30px auto 0;
  overflow: hidden;
  border-radius: 10px;
}

.calendly-inline-widget {
  width: 100%;
}

.footer {
  padding: 100px 0 126px;
  background: transparent;
  color: #9aa1ad;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  color: #767676;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.footer-links a {
  color: #767676;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-links a:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  color: #9aa1ad;
  font-weight: 400;
}

.footer p {
  font-size: 13px;
  line-height: 1.45;
  max-width: 1180px;
  margin: 14px auto;
  color: #9aa1ad;
  font-weight: 400;
}

.footer .copyright {
  font-weight: 400;
}

@media (max-width: 1200px) {
  .quicktrack-hero h1,
  .vsl-hero h1,
  .vsl-hero .page-sub {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 76px;
    padding-inline: 16px;
  }

  .brand-logo {
    height: 36px;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e7edf6;
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .section-pad {
    min-height: auto;
    padding: 58px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .media-shell {
    width: min(100% - 28px, 980px);
    padding: 8px;
  }

  .result-box,
  .notice-card {
    padding: 30px 20px;
  }

  .businesses-cloud img,
  .partners-cloud img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .results-container {
    width: min(100% - 44px, 1220px);
  }

  .install-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    width: min(360px, 100%);
  }

  .install-card .btn {
    font-size: 18px;
  }

  .install-card .btn small {
    font-size: 15px;
  }

  .ty-card {
    transform: none;
  }
}

@media (max-width: 560px) {
  .container,
  .container-narrow,
  .container-wide,
  .results-container {
    width: min(100% - 28px, 1120px);
  }

  .announcement {
    font-size: 11px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 31px;
  }

  .hero-sub,
  .page-sub {
    font-size: 15px;
  }

  .hero-card {
    margin-top: 36px;
  }

  .media-bar {
    font-size: 11px;
    letter-spacing: .08em;
  }

  .quicktrack-embed iframe {
    height: 460px;
  }

  .vsl-embed iframe {
    height: 500px;
  }

  .book-button-row .btn {
    min-width: 0;
    width: auto;
    max-width: 52vw;
    padding-left: 18px;
    padding-right: 18px;
    margin-inline: auto;
  }

  .progress-bar {
    width: 68%;
    font-size: 11px;
    white-space: nowrap;
  }

  .results-stack figcaption {
    font-size: 18px;
    line-height: 1.35;
  }

  .results-stack figure > p {
    font-size: 18px;
    line-height: 1.35;
  }

  .results-stack img {
    width: 80%;
    max-width: 80%;
    margin-inline: auto;
  }

  .results-logo {
    width: 120px !important;
    max-width: 120px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-links {
    font-size: 15px;
  }

  .footer p {
    font-size: 12px;
  }
}