:root {
  --blue: #075de8;
  --blue-dark: #063c99;
  --navy: #061b5c;
  --navy-2: #041344;
  --ink: #0a1740;
  --muted: #51607c;
  --pale: #f1f6ff;
  --line: #dbe5f7;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(4, 42, 112, 0.13);
  --radius: 16px;
  --header-height: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f7faff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(1180px, calc(100% - 42px)); margin-inline: auto; }
.scroll-target { scroll-margin-top: calc(var(--header-height) + 18px); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.hidden { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid #e8eef8;
  backdrop-filter: blur(10px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; min-width: 235px; }
.brand-star { color: var(--blue); font-size: 42px; line-height: 1; transform: rotate(-8deg); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { color: #0960d4; font-size: 23px; letter-spacing: -.6px; }
.brand-copy small { color: #075de8; font-size: 13px; font-weight: 700; margin-top: 3px; }
.main-nav { display: flex; align-items: center; gap: 25px; font-size: 14px; font-weight: 700; }
.main-nav a { text-decoration: none; white-space: nowrap; }
.main-nav a:not(.nav-cta):hover { color: var(--blue); }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, #063b9d, #0869fb);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 7px 14px rgba(2, 76, 205, .18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.nav-cta { padding: 12px 22px; }
.button:hover, .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(2, 76, 205, .24); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--navy); }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #063783 0%, #0759d4 55%, #0d6dff 100%);
  color: #fff;
  padding: 55px 0 30px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 47% 0 0;
  background: linear-gradient(180deg, rgba(247,250,255,.98), #f7faff);
  z-index: 0;
}
.hero-shape { position: absolute; z-index: 0; color: rgba(255,255,255,.12); font-size: 74px; }
.hero-shape-one { left: 47%; top: 8%; }
.hero-shape-two { right: 3%; top: 12%; font-size: 110px; }
.hero-shape-three { left: 40%; top: 28%; font-size: 55px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.08fr; gap: 52px; align-items: start; }
.hero-copy h1 { margin: 0; font-size: clamp(50px, 6vw, 76px); line-height: .98; letter-spacing: -2px; }
.hero-copy h2 { margin: 10px 0 13px; font-size: clamp(25px, 3vw, 36px); line-height: 1.12; }
.heading-rule { width: 210px; height: 1px; background: rgba(255,255,255,.32); margin-bottom: 18px; }
.hero-intro { margin: 0 0 14px; font-size: 20px; line-height: 1.35; }
.hero-points { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 8px; font-size: 16px; font-weight: 700; }
.hero-points li { display: flex; align-items: center; gap: 10px; }
.tick { width: 22px; height: 22px; display: inline-grid; place-items: center; border-radius: 50%; background: #fff; color: #0d57ca; font-weight: 900; flex: 0 0 auto; }
.pricing-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr 1px 1fr;
  gap: 17px;
  align-items: center;
  padding: 19px 22px 33px;
  color: var(--ink);
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-width: 520px;
}
.price-icon { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--blue); }
.price-icon svg { width: 38px; height: 38px; }
.price-main h3 { margin: 0; font-size: 16px; }
.price-main p { margin: 1px 0 0; display: flex; align-items: baseline; gap: 5px; }
.currency { color: #0a2b7a; font-size: 52px; font-weight: 800; line-height: 1; letter-spacing: -2px; }
.per-month { font-size: 18px; font-weight: 700; }
.price-divider { align-self: stretch; background: #d9e2f1; }
.price-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; font-size: 15px; font-weight: 700; }
.price-list li { color: #111; }
.price-list li::first-letter { color: var(--blue); }
.cancel-line { position: absolute; left: 106px; bottom: 11px; margin: 0; color: var(--blue); font-size: 16px; font-weight: 800; }
.primary-action-wrap { max-width: 520px; display: flex; justify-content: center; padding: 18px 0; }
.button-primary { min-width: 255px; padding: 13px 24px; font-size: 18px; gap: 18px; }
.button-primary span { font-size: 28px; line-height: .5; }
.activation-card { max-width: 520px; color: var(--ink); background: rgba(255,255,255,.98); border-radius: 13px; box-shadow: var(--shadow); padding: 17px 28px 20px; text-align: center; }
.activation-card p { margin: 0 0 10px; font-size: 16px; font-weight: 800; }
.button-activate { width: 100%; padding: 13px 20px; font-size: 19px; }
.hero-visual { padding-top: 5px; }
.hero-visual > img { width: 100%; max-width: 620px; margin-left: auto; border-radius: 0; }
.trust-stack { display: grid; gap: 10px; width: 320px; margin: 18px 58px 0 auto; }
.trust-card { min-height: 64px; display: grid; grid-template-columns: 58px 1fr; align-items: center; padding: 8px 18px; color: #111; background: rgba(255,255,255,.97); border-radius: 10px; box-shadow: 0 6px 18px rgba(27,64,122,.13); font-weight: 700; }
.trust-icon { color: var(--blue); display: grid; place-items: center; }
.trust-icon svg { width: 37px; height: 37px; }

.main-content { padding: 0 0 0; background: #f7faff; }
.white-panel { margin-top: -2px; padding: 22px 18px 0; background: #fff; border-radius: 14px 14px 0 0; box-shadow: 0 4px 24px rgba(28,65,122,.06); }
.details-grid { display: grid; grid-template-columns: 1.12fr .88fr; }
.included, .how-it-works { padding: 0 30px 20px; }
.how-it-works { border-left: 1px solid var(--line); }
.white-panel h2 { margin: 0 0 22px; text-align: center; color: #092369; font-size: 22px; }
.feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); row-gap: 28px; column-gap: 10px; }
.feature-item { text-align: center; }
.feature-icon { display: inline-grid; place-items: center; color: var(--blue); margin-bottom: 7px; }
.feature-icon svg { width: 37px; height: 37px; }
.feature-item h3 { margin: 0; font-size: 11px; line-height: 1.28; color: #111; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.steps li { display: grid; grid-template-columns: 37px 1fr; align-items: center; gap: 13px; }
.steps li > span { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; }
.steps p { margin: 0; color: #111; font-size: 14px; }
.businesses { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 20px 18px; }
.businesses h2 { margin-bottom: 23px; }
.business-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
.business-grid article { text-align: center; color: #111; }
.business-grid span { display: inline-grid; color: var(--blue); margin-bottom: 8px; }
.business-grid svg { width: 42px; height: 42px; }
.business-grid p { margin: 0; font-size: 11px; line-height: 1.25; }
.bottom-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 22px; padding: 16px 14px 20px; }
.faq-section, .contact-section { min-height: 430px; }
.faq-section h2, .contact-section h2 { margin-bottom: 14px; }
.faq-list { border: 1px solid #e0e6f0; border-radius: 8px; overflow: hidden; }
details { border-bottom: 1px solid #e5e9f1; background: #fff; }
details:last-child { border-bottom: 0; }
summary { position: relative; cursor: pointer; list-style: none; padding: 13px 38px 13px 16px; color: #111; font-size: 12px; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "⌄"; position: absolute; right: 15px; top: 10px; color: var(--navy); font-size: 16px; }
details[open] summary::after { transform: rotate(180deg); top: 14px; }
details p { margin: 0; padding: 0 16px 14px; color: var(--muted); font-size: 12px; }
.contact-section { padding: 16px 22px 20px; background: linear-gradient(135deg, #eef5ff, #f6f9ff); border-radius: 10px; }
.contact-section > p { margin: -5px 0 14px; font-size: 12px; color: #111; }
.contact-section > p strong { color: var(--blue); }
form { display: grid; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form label { display: grid; gap: 5px; color: #111; font-size: 11px; }
input, select, textarea { width: 100%; border: 1px solid #dfe6f2; border-radius: 3px; background: #fff; color: #111; padding: 10px 11px; font: inherit; font-size: 12px; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(7,93,232,.12); }
textarea { resize: vertical; min-height: 90px; }
fieldset { border: 0; padding: 0; margin: 0; }
legend { font-size: 11px; color: #111; margin-bottom: 4px; }
.inline-option { display: inline-flex; align-items: center; gap: 5px; margin-right: 20px; }
.inline-option input { width: auto; accent-color: var(--blue); }
.form-submit { width: 66%; margin: 1px auto 0; padding: 10px 18px; font-size: 15px; }
form small { text-align: center; color: #111; font-size: 10px; }

.site-footer { background: linear-gradient(110deg, #073479, #041545); color: #fff; padding: 24px 0 10px; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .9fr .95fr 1fr; gap: 36px; }
.footer-grid > section:not(:first-child) { border-left: 1px solid rgba(255,255,255,.2); padding-left: 34px; }
.footer-logo { min-width: 0; margin-bottom: 9px; }
.footer-logo .brand-star { color: #fff; font-size: 34px; }
.footer-logo .brand-copy strong { color: #fff; font-size: 18px; }
.footer-logo .brand-copy small { color: #fff; font-size: 10px; }
.footer-brand p { max-width: 240px; font-size: 12px; margin: 0 0 15px; }
.footer-grid h2 { margin: 0 0 10px; font-size: 14px; color: #fff; text-align: left; }
.footer-grid a, .footer-grid span { display: block; width: fit-content; margin: 4px 0; color: #fff; text-decoration: none; font-size: 12px; }
.footer-grid a:hover { text-decoration: underline; }
.socials { display: flex; gap: 10px; }
.socials a { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #0d70ff; font-weight: 800; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid rgba(255,255,255,.22); margin-top: 20px; padding-top: 9px; font-size: 10px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #fff; text-decoration: none; }
.footer-bottom span { margin: 0 15px; }

/* Supporting pages */
.subpage { min-height: calc(100vh - 260px); padding: 70px 0; background: linear-gradient(180deg, #f0f6ff, #fff); }
.subpage-card { max-width: 800px; margin: auto; background: #fff; padding: 42px; border-radius: var(--radius); box-shadow: var(--shadow); }
.subpage-card h1 { color: var(--navy); margin-top: 0; }
.subpage-card h2 { margin-top: 28px; color: var(--navy); }
.subpage-card .button { padding: 14px 25px; margin-top: 15px; }
.payment-summary { margin: 24px 0; padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--pale); }
.payment-summary strong { color: var(--blue); }
.notice { color: #52617c; font-size: 13px; }

@media (max-width: 1050px) {
  .main-nav { gap: 15px; }
  .hero-grid { gap: 20px; }
  .trust-stack { margin-right: 10px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .business-grid { grid-template-columns: repeat(4, 1fr); row-gap: 24px; }
}

@media (max-width: 860px) {
  :root { --header-height: 64px; }
  .container { width: min(100% - 28px, 760px); }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: #fff;
    box-shadow: 0 12px 25px rgba(0,0,0,.12);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 8px; }
  .nav-cta { margin-top: 6px; }
  .brand-copy strong { font-size: 20px; }
  .brand { min-width: auto; }
  .hero { padding-top: 40px; }
  .hero::after { inset: 55% 0 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-visual { order: 0; }
  .hero-visual > img { margin: auto; max-width: 590px; }
  .trust-stack { grid-template-columns: repeat(3, 1fr); width: 100%; margin: 15px 0 5px; }
  .trust-card { grid-template-columns: 45px 1fr; padding: 10px; font-size: 12px; }
  .pricing-card, .activation-card, .primary-action-wrap { max-width: none; }
  .details-grid, .bottom-grid { grid-template-columns: 1fr; }
  .how-it-works { border-left: 0; border-top: 1px solid var(--line); padding-top: 26px; }
  .included, .how-it-works { padding-left: 10px; padding-right: 10px; }
  .faq-section, .contact-section { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > section:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 20px, 540px); }
  .brand-star { font-size: 33px; }
  .brand-copy strong { font-size: 17px; }
  .brand-copy small { font-size: 10px; }
  .hero { padding-top: 25px; }
  .hero::after { inset: 48% 0 0; }
  .hero-visual { display: none; }
  .hero-copy h1 { font-size: 48px; }
  .hero-copy h2 { font-size: 26px; }
  .hero-intro { font-size: 17px; }
  .desktop-only { display: none; }
  .hero-points { font-size: 14px; }
  .pricing-card { grid-template-columns: 58px 1fr; gap: 12px; padding: 17px 16px 45px; }
  .price-icon { width: 54px; height: 54px; }
  .price-divider { display: none; }
  .price-list { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); gap: 7px; font-size: 12px; }
  .currency { font-size: 44px; }
  .per-month { font-size: 15px; }
  .cancel-line { left: 16px; right: 16px; text-align: center; font-size: 14px; }
  .trust-stack { display: none; }
  .white-panel { padding-left: 7px; padding-right: 7px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; gap: 10px; }
  .form-submit { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > section:not(:first-child) { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); padding: 18px 0 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .subpage-card { padding: 28px 22px; }
}

/* Version 2 approved homepage refinements */
.brand-copy small {
  color: var(--blue-dark);
}

.price-main {
  position: relative;
  padding-top: 19px;
}

.saving-badge {
  position: absolute;
  top: -8px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: #ffd739;
  color: #10204d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .3px;
  white-space: nowrap;
}

.old-price {
  margin: 3px 0 -1px;
  color: #71809d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.old-price span {
  text-decoration-line: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: #57647c;
}

.current-price {
  margin-top: 3px !important;
}

/* Match the approved open spacing above and below Businesses We Serve. */
.businesses {
  margin-top: 34px;
  margin-bottom: 34px;
}

/* Keep the footer domain on a true second line, even on narrow layouts. */
.footer-logo {
  align-items: flex-start;
}

.footer-logo .brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.footer-logo .brand-copy small {
  display: block;
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 580px) {
  .price-main { padding-top: 18px; }
  .saving-badge { top: -7px; }
  .businesses { margin-top: 26px; margin-bottom: 26px; }
}

/* Version 3 legal-page additions */
.legal-page { line-height: 1.7; }
.legal-page h3 { color: var(--navy); margin: 22px 0 8px; }
.legal-page ul { padding-left: 22px; }
.legal-page li { margin: 7px 0; }
.checkout-terms { margin: 22px 0 2px; font-size: 14px; line-height: 1.6; }
.checkout-terms a { color: var(--blue); font-weight: 700; }
