/* =============================================================================
   LeadX Security - Landing page
   Organized: variables -> reset/base -> layout -> header -> hero -> sections ->
   components -> utilities -> responsive
   ============================================================================= */

/* ---------- Variables ---------- */
:root {
  --header-h: 88px;
  --text: #151823;
  --text-muted: #646464;
  --text-soft: #888;
  --text-faint: #8A9A94;
  --green: #008744;
  --green-hover: #00743A;
  --green-soft: #EDF7F2;
  --green-mint: #8FE3B8;
  --blue: #0066DB;
  --blue-soft: #EAF4FF;
  --border: #E6EAEF;
  --border-soft: #ECF1F6;
  --surface: #fff;
  --band: #E8F1F2;
  --ink: #151515;
  --shadow-card: inset 0 0 0 1px #ECF1F6, 0 4px 22px #ECF1F6;
  --shadow-green: 0 10px 26px rgba(0, 135, 68, 0.22);
  --section-pad-x: 40px;
  --section-pad-y: 64px;
  --container: 1280px;
  --radius-card: 20px;
  --radius-btn: 10px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans",
    "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--surface);
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
.hero-title,
.section-title {
  font-weight: 500;
  color: var(--text);
}

p {
  color: var(--text);
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: var(--green-hover);
}

button {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

input,
textarea {
  border-radius: 12px;
  padding: 15px 16px;
  border: 1px solid var(--border);
  font-size: 16px;
  font-family: inherit;
  outline: none;
  width: 100%;
  background: var(--surface);
  color: var(--text);
}

input::placeholder,
textarea::placeholder {
  color: #b0b8bf;
}

input:focus,
textarea:focus {
  border-color: var(--green);
}

textarea {
  resize: vertical;
  min-height: 92px;
}

.g-recaptcha {
  transform-origin: left top;
}

[hidden] {
  display: none !important;
}

.text-green {
  color: var(--green);
}

.text-ink {
  color: var(--text);
}

/* ---------- Layout ---------- */
.page-wrap {
  width: 100%;
  overflow-x: hidden;
  background: var(--surface);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

.section-pad {
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
}

.band-flush {
  margin-top: 0;
}

.section {
  padding: var(--section-pad-y) var(--section-pad-x);
}

#outcomes,
#features,
#dashboard,
#plans,
#why,
#faq,
#contact,
#cta,
#top {
  scroll-margin-top: var(--header-h);
}

/* ---------- Header (3-col grid: brand | nav | CTAs) ---------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 60;
  background: transparent;
  border-bottom: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

#site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 1px 0 rgba(21, 24, 35, 0.06);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-brand img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-desktop {
  display: flex;
}

.nav-desktop-center {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
  /* Split leftover space equally: logo->nav ~ nav->CTAs */
  margin-left: auto;
  margin-right: auto;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--green);
}

.nav-link.is-active {
  color: var(--green);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  position: relative;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
  z-index: 1;
}

.mobile-menu {
  display: none;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu .nav-link {
  padding: 12px 0;
}

.mobile-menu .btn-nav-secondary,
.mobile-menu .btn-nav-primary {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.mobile-menu .btn-nav-primary {
  padding-left: 20px;
}

.btn-nav-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #fff !important;
  background: var(--text);
  border-radius: 100px;
  padding: 12px 22px;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-nav-secondary:hover {
  background: #2a2f3a !important;
  color: #fff !important;
}

.btn-nav-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #fff !important;
  background: var(--green);
  border-radius: 100px;
  padding: 8px 8px 8px 20px;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-nav-primary:hover {
  background: var(--green-hover) !important;
  color: #fff !important;
}

/* Keep nav CTA shape when both btn-nav-primary and btn-primary are present */
.btn-nav-primary.btn-primary {
  padding: 8px 8px 8px 20px;
  border-radius: 100px;
  box-shadow: none;
  gap: 12px;
}

.btn-nav-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-nav-arrow svg {
  display: block;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 16px 24px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  box-shadow: var(--shadow-green);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--green-hover) !important;
  color: #fff !important;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  background: var(--surface);
  border-radius: var(--radius-btn);
  padding: 16px 24px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  box-shadow: inset 0 0 0 1px var(--border);
}

.btn-outline:hover {
  box-shadow: inset 0 0 0 1px var(--green) !important;
  color: var(--text) !important;
}

.btn-arrow {
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  display: inline-block;
}

.btn-plan-premium {
  position: relative;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: var(--green);
  border-radius: var(--radius-btn);
  padding: 16px 24px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}

.btn-plan-elite {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-mint);
  color: var(--text);
  border-radius: var(--radius-btn);
  padding: 16px 24px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}

.btn-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--green);
  border-radius: var(--radius-btn);
  padding: 16px 26px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 16px 24px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.btn-outline.mt-auto {
  margin-top: auto;
  justify-content: center;
}

/* ---------- Eyebrow / badges ---------- */
.eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 100px;
  padding: 8px 14px;
}

.eyebrow--on-band {
  background: #fff;
}

.eyebrow--center {
  align-self: center;
}

.section-title {
  margin: 0;
  font-size: 38px;
  line-height: 1.2;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-title--md {
  font-size: 36px;
}

.section-title--sm {
  font-size: 34px;
}

.section-title--light {
  color: #fff;
}

.lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  text-wrap: pretty;
}

.lead--lg {
  font-size: 18px;
  line-height: 1.55;
}

.section-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto 44px;
}

.section-intro--plans {
  max-width: 900px;
  margin: 0 auto 56px;
}

.section-intro .lead {
  font-size: 18px;
  line-height: 1.55;
  max-width: 720px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    219deg,
    rgba(208, 246, 227, 0.55) 20%,
    rgba(235, 255, 245, 0.35) 62%,
    #fff 88%
  );
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  left: 50%;
  top: -400px;
  width: 1500px;
  height: 800px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(0, 255, 117, 0.2),
    rgba(222, 255, 253, 0.1),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  right: -140px;
  top: 140px;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: rgba(194, 224, 255, 0.22);
  filter: blur(12px);
  animation: lxPulse 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 80px;
  align-items: center;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 100px;
  padding: 7px 16px 7px 8px;
  box-shadow: inset 0 0 0 1px var(--border), 0 4px 22px #ecf1f6;
}

.hero-pill__badge {
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--green);
  border-radius: 100px;
  padding: 5px 10px;
}

.hero-pill__text {
  font-size: 16px;
  color: var(--text-muted);
}

.hero-title {
  margin: 0;
  font-size: 50px;
  line-height: 1.12;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__lede {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text);
  max-width: 580px;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero__trust {
  font-size: 16px;
  color: var(--text-soft);
  margin-top: 6px;
}

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

.hero-visual__glow {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 135, 68, 0.1), rgba(255, 255, 255, 0));
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
}

.hero-ring--outer {
  width: 390px;
  height: 390px;
  box-shadow: inset 0 0 0 1px #d3e9dd;
  animation: lxOrbit 34s linear infinite;
}

.hero-ring--inner {
  width: 296px;
  height: 296px;
  box-shadow: inset 0 0 0 1px #e1efe8;
  animation: lxOrbit 24s linear infinite reverse;
}

.hero-ring__dot {
  position: absolute;
  left: 50%;
  border-radius: 50%;
}

.hero-ring__dot--lg {
  top: -6px;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  background: var(--green);
}

.hero-ring__dot--sm {
  top: -5px;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  background: var(--green-mint);
}

.hero-score {
  position: relative;
  width: 224px;
  height: 224px;
  border-radius: 40px;
  background: linear-gradient(155deg, #fff, #f7fbf9);
  box-shadow: inset 0 0 0 1px #e6efea, 0 30px 70px rgba(19, 44, 33, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  animation: lxFloat 8s ease-in-out infinite;
}

.hero-score__value {
  font-size: 34px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-score__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-score__label {
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.hero-chip {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: inset 0 0 0 1px #ecf1f6, 0 14px 36px rgba(19, 44, 33, 0.1);
}

.hero-chip--dark {
  background: var(--ink);
  box-shadow: 0 14px 36px rgba(19, 44, 33, 0.18);
}

.hero-chip--login {
  left: -4px;
  top: 76px;
}

.hero-chip--scan {
  right: -6px;
  bottom: 120px;
}

.hero-chip--fw {
  left: 40px;
  bottom: 46px;
}

.hero-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hero-chip__dot--green {
  background: var(--green);
  animation: lxSheen 2.4s ease-in-out infinite;
}

.hero-chip__dot--blue {
  background: var(--blue);
  animation: lxSheen 2.4s ease-in-out infinite 0.8s;
}

.hero-chip__dot--mint {
  background: var(--green-mint);
}

.hero-chip__label {
  font-size: 14px;
  color: var(--text);
}

.hero-chip--dark .hero-chip__label {
  color: #fff;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  position: relative;
  max-width: var(--container);
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  border-radius: var(--radius-card);
  padding: 32px;
  background: #fff;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-card--accent {
  background: var(--green);
  box-shadow: 0 22px 56px rgba(0, 135, 68, 0.2);
  position: relative;
  overflow: hidden;
}

.stat-card__blob {
  position: absolute;
  right: -70px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.stat-card__num {
  font-size: 46px;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.02em;
}

.stat-card--accent .stat-card__num,
.stat-card--accent .stat-card__title {
  position: relative;
  color: #fff;
}

.stat-card__title {
  font-size: 20px;
  color: var(--text);
  line-height: 1.3;
}

.stat-card__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.stat-card--accent .stat-card__body {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}

/* ---------- Outcomes ---------- */
.outcomes-head {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}

.outcomes-head__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.outcomes-head > .lead {
  padding-top: 56px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.outcome-card {
  border-radius: var(--radius-card);
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.outcome-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.outcome-card__icon {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 135, 68, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  background-color: var(--green);
}

.outcome-card__icon svg {
  display: block;
  flex-shrink: 0;
}

.outcome-card__num {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #c3cdd6;
}

.outcome-card__title {
  font-size: 22px;
  color: var(--text);
  line-height: 1.3;
  text-wrap: pretty;
  min-height: 58px;
}

.outcome-card__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  text-wrap: pretty;
}

.card-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(19, 44, 33, 0.08);
}

/* ---------- Features ---------- */
.features-band {
  width: 100%;
  background: var(--band);
  padding: 88px 70px;
}

.features-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.feature-tab {
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  padding: 12px 24px;
  transition: all 0.2s ease;
  background: #fff;
  color: #5e6c68;
}

.feature-tab.is-active {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 135, 68, 0.24);
}

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

.feature-card {
  border-radius: 18px;
  background: #fff;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card > span {
  display: block;
  padding: 20px 0 12px 0;
  font-weight: bold;
}

.feature-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon svg {
  display: block;
  flex-shrink: 0;
}

.feature-card__title {
  font-size: 19px;
  color: var(--text);
  line-height: 1.3;
  text-wrap: pretty;
}

.feature-card__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  text-wrap: pretty;
}

.plan-badge {
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 6px 11px;
}

.plan-basic {
  background: var(--green-soft);
  color: var(--green);
}

.plan-premium {
  background: var(--blue-soft);
  color: var(--blue);
}

.plan-elite {
  background: var(--ink);
  color: var(--green-mint);
}

/* ---------- Dashboard ---------- */
.dashboard-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.dashboard-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.panel-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  border: none;
  border-radius: 16px;
  padding: 18px 22px;
  transition: box-shadow 0.2s ease;
  background: #fff;
  font-family: inherit;
  box-shadow: inset 0 0 0 1px #ecf1f6;
}

.panel-btn .panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #d6dde3;
}

.panel-btn .panel-label {
  font-family: inherit;
  font-size: 17px;
  color: var(--text);
}

.panel-btn .panel-arrow {
  margin-left: auto;
  width: 9px;
  height: 9px;
  border-top: 2px solid;
  border-right: 2px solid;
  border-color: #d6dde3;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.panel-btn.is-active {
  box-shadow: inset 0 0 0 2px var(--green), 0 10px 28px rgba(19, 44, 33, 0.07);
}

.panel-btn.is-active .panel-dot {
  background: var(--green);
}

.panel-btn.is-active .panel-arrow {
  border-color: var(--green);
}

.dash-browser {
  border-radius: 28px;
  background: #fff;
  padding: 18px;
  box-shadow: inset 0 0 0 1px #ecf1f6, 0 30px 80px rgba(19, 44, 33, 0.12);
  overflow: hidden;
}

.dash-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.dash-browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d6dde3;
}

.dash-browser-url {
  margin-left: 8px;
  font-family: inherit;
  font-size: 11px;
  color: var(--text-faint);
}

.dash-browser-hint {
  margin-left: auto;
  font-family: inherit;
  font-size: 11px;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dash-browser-hint__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 135, 68, 0.25);
}

.dash-shot {
  display: none;
  margin: 0;
}

.dash-shot.is-active {
  display: block;
}

.dash-frame {
  background: #f4f6f8;
  overflow: hidden;
  position: relative;
  height: min(480px, 58vh);
  border-radius: 16px 16px 0 0;
  cursor: pointer;
}

.dash-frame img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(var(--dash-y, 0px));
  transition: transform var(--dash-dur, 0.8s) var(--dash-ease, cubic-bezier(0.25, 1, 0.5, 1));
  will-change: transform;
}

.dash-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 24, 33, 0.85);
  color: #fff;
  font-size: 12px;
  font-family: inherit;
  font-weight: 600;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.dash-shot.is-active .dash-frame:hover .dash-hint {
  opacity: 0;
}

.dash-caption {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 16px;
  background: #fff;
  border-top: 1px solid #eef1f4;
}

.dash-caption-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dash-caption strong {
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
}

.dash-caption .dash-pill {
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 100px;
  padding: 6px 10px;
}

.dash-caption p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}

/* ---------- Plans ----------
   Original static card look (rounded independent cards: white/green/dark),
   now driven by real package data from the LeadXForms API. */
.plans-duration-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.plans-duration {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.plan-duration-label {
  font-size: 16px;
  color: var(--text-soft);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}

.plan-duration-label.is-active {
  color: var(--text);
  font-weight: 600;
}

.plan-duration-label .save-badge {
  color: var(--green);
  font-weight: 700;
}

.billing-switch {
  position: relative;
  display: inline-flex;
  width: 55px;
  height: 26px;
  cursor: pointer;
}

.billing-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.billing-switch__track {
  position: absolute;
  inset: 0;
  background: #e2e8f0;
  border-radius: 999px;
  transition: background 0.25s ease;
}

.billing-switch__track::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease;
}

.billing-switch input:checked + .billing-switch__track {
  background: var(--green);
}

.billing-switch input:checked + .billing-switch__track::before {
  transform: translateX(29px);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(var(--plan-count, 3), minmax(0, 360px));
  justify-content: center;
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.pricing-card--basic {
  background: #fff;
  box-shadow: var(--shadow-card);
}

.pricing-card--premium {
  background: var(--green);
  box-shadow: 0 26px 64px rgba(0, 135, 68, 0.24);
  position: relative;
  overflow: hidden;
}

.pricing-card--elite {
  background: var(--ink);
}

.pricing-card__blob {
  position: absolute;
  right: -80px;
  top: -100px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.pricing-card__best {
  position: relative;
  align-self: flex-start;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: #fff;
  border-radius: 100px;
  padding: 7px 13px;
}

.pricing-card__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card--premium .pricing-card__head {
  position: relative;
}

.pricing-card__name {
  font-size: 30px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.pricing-card--premium .pricing-card__name,
.pricing-card--elite .pricing-card__name {
  color: #fff;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-card__amount {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.pricing-card--premium .pricing-card__amount,
.pricing-card--elite .pricing-card__amount {
  color: #fff;
}

.pricing-card__period {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  opacity: 0.6;
}

.pricing-card--premium .pricing-card__period,
.pricing-card--elite .pricing-card__period {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  text-wrap: pretty;
}

.pricing-card--premium .pricing-card__desc {
  color: rgba(255, 255, 255, 0.86);
}

.pricing-card--elite .pricing-card__desc {
  color: rgba(255, 255, 255, 0.62);
}

.pricing-card__chip {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 100px;
  padding: 8px 14px;
  align-self: flex-start;
}

.pricing-card--premium .pricing-card__chip {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.pricing-card--elite .pricing-card__chip {
  color: var(--green-mint);
  background: rgba(143, 227, 184, 0.14);
}

.pricing-card__rule {
  height: 1px;
  background: #f1f4f7;
}

.pricing-card--premium .pricing-card__rule {
  position: relative;
  background: rgba(255, 255, 255, 0.16);
}

.pricing-card--elite .pricing-card__rule {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pricing-card--premium .pricing-card__list {
  position: relative;
}

.pricing-card__no-features {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  opacity: 0.55;
}

.pricing-card--premium .pricing-card__no-features,
.pricing-card--elite .pricing-card__no-features {
  color: #fff;
  opacity: 0.6;
}

.plan-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.plan-check__icon {
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pricing-card--premium .plan-check__icon {
  background: rgba(255, 255, 255, 0.9);
}

.pricing-card--elite .plan-check__icon {
  background: rgba(143, 227, 184, 0.16);
}

.plan-check__tick {
  width: 7px;
  height: 4px;
  border-left: 1.6px solid var(--green);
  border-bottom: 1.6px solid var(--green);
  transform: rotate(-45deg);
  margin-top: -2px;
}

.pricing-card--elite .plan-check__tick {
  border-left-color: var(--green-mint);
  border-bottom-color: var(--green-mint);
}

.plan-check__text {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
}

.pricing-card--premium .plan-check__text,
.pricing-card--elite .plan-check__text {
  color: #fff;
}

@media (max-width: 1199px) {
  .plans-grid {
    grid-template-columns: minmax(0, 380px);
    gap: 28px;
    justify-content: center;
  }
}

/* ---------- Why ---------- */
.why-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.why-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-copy .lead {
  max-width: 640px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
}

.why-point__icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.why-point__tick {
  width: 8px;
  height: 4px;
  border-left: 1.8px solid var(--green);
  border-bottom: 1.8px solid var(--green);
  transform: rotate(-45deg);
  margin-top: -2px;
}

.why-point__text {
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-muted);
  text-wrap: pretty;
}

.why-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-stat {
  border-radius: var(--radius-card);
  background: #f7faf8;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-stat__label {
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.why-stat__value {
  font-size: 28px;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.01em;
}

.why-stat__value--lg {
  font-size: 40px;
  line-height: 1.1;
  color: var(--green);
  letter-spacing: -0.02em;
}

/* ---------- FAQ ---------- */
.faq-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s ease;
  background: #fcfdfd;
  box-shadow: inset 0 0 0 1px #ecf1f6;
}

.faq-item.is-open {
  background: #fff;
  box-shadow: inset 0 0 0 1px #c7e6d5, 0 14px 36px rgba(19, 44, 33, 0.07);
}

.faq-item__btn {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
}

.faq-item__q {
  font-family: inherit;
  font-size: 21px;
  line-height: 1.35;
  color: var(--text);
  text-wrap: pretty;
}

.faq-icon {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-right: 2px solid #151515;
  border-bottom: 2px solid #151515;
  transition: transform 0.25s ease, margin-top 0.25s ease;
  transform: rotate(45deg);
  margin-top: -4px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(-135deg);
  margin-top: 6px;
}

.faq-answer {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  max-width: 780px;
  text-wrap: pretty;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ---------- Contact ---------- */
.contact-band {
  width: 100%;
  background: var(--band);
  padding: 80px 70px;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-aside .lead {
  max-width: 26ch;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.contact-perk {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-perk__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-perk__tick {
  width: 8px;
  height: 4px;
  border-left: 1.8px solid var(--green);
  border-bottom: 1.8px solid var(--green);
  transform: rotate(-45deg);
  margin-top: -2px;
}

.contact-perk__text {
  font-size: 16px;
  color: #5e6c68;
}

.live-match {
  margin-top: 12px;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(19, 44, 33, 0.07);
}

.live-match__bar {
  display: block;
  height: 4px;
  background: #edf1ef;
  position: relative;
}

.live-match__progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 100px;
  transition: width 0.35s ease;
  background: var(--green);
  width: var(--match-pct, 0%);
}

.live-match__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.live-match__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.live-match__label {
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.live-match__features {
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 100px;
  padding: 6px 12px;
}

.live-match__plan {
  display: flex;
  align-items: center;
  gap: 16px;
}

.live-match__icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-match__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.live-match__name {
  font-size: 24px;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
}

.live-match__tagline {
  font-size: 14px;
  color: var(--text-soft);
}

.live-match__benefit {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  text-wrap: pretty;
}

.live-match__meter {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.live-match__segs {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meter-seg {
  flex: 1;
  height: 8px;
  border-radius: 100px;
  transition: background 0.25s ease;
  background: #edf1ef;
}

.meter-seg.is-filled {
  background: var(--green);
}

.live-match__pct {
  font-size: 12px;
  color: var(--text-faint);
}

/* ---------- Form ---------- */
#lead-form {
  border-radius: 28px;
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: inset 0 0 0 1px var(--border), 0 20px 50px rgba(19, 44, 33, 0.06);
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-step__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-step__label {
  font-size: 19px;
  color: var(--text);
}

.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-req {
  color: var(--green);
}

.form-hint {
  font-size: 12px;
  color: var(--text-soft);
}

.form-rule {
  height: 1px;
  background: #f1f4f7;
}

.plan-pick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  border: none;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.18s ease;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--border);
  font-family: inherit;
  width: 100%;
}

.plan-card.is-selected {
  background: var(--green-soft) !important;
  box-shadow: inset 0 0 0 2px var(--green) !important;
}

.plan-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1.6px #d6dde3;
}

.plan-card.is-selected .plan-radio {
  box-shadow: inset 0 0 0 5px var(--green);
}

.plan-name {
  font-family: inherit;
  font-size: 18px;
  line-height: 1.2;
  color: var(--text);
}

.plan-card.is-selected .plan-name {
  color: var(--green);
}

.plan-card__tag {
  font-family: inherit;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-muted);
}

.plan-card__count {
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-faint);
}

#form-message {
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
}

#form-message.is-error {
  color: #b42318;
  background: #fef3f2;
}

#form-message.is-success {
  color: var(--green);
  background: var(--green-soft);
}

#form-success {
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--green);
  background: var(--green-soft);
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.form-submit-note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 300px;
}

/* ---------- Final CTA ---------- */
.final-cta-inner {
  width: 100%;
  background: var(--green);
  padding: 88px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  position: relative;
  overflow: hidden;
}

.final-cta__blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.final-cta__blob--bl {
  left: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
}

.final-cta__blob--tr {
  right: -90px;
  top: -140px;
  width: 340px;
  height: 340px;
}

.final-cta__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  max-width: 1122px;
  margin: 0 auto;
}

.final-cta__copy .lead {
  max-width: 660px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.final-cta__actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.watermark-wrap {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.watermark {
  font-size: 142px;
  line-height: 1.32;
  color: #aaaaaa;
  opacity: 0.08;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid #f4f4f4;
  background: #fff;
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 70px 40px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 380px;
}

.footer-brand__link {
  display: inline-flex;
  align-items: center;
}

.footer-brand__logo {
  height: 48px;
  width: auto;
  display: block;
}

.footer-navs {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col__title {
  font-size: 20px;
  color: var(--text-muted);
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col__links a {
  font-size: 16px;
  color: var(--text-soft);
}

.footer-col__links a:hover {
  color: var(--green);
}

.footer-bar {
  border-top: 1px solid #d8d8d8;
}

.footer-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 26px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bar__copy {
  font-size: 18px;
  line-height: 1.4;
  color: #868686;
}

.footer-bar__links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-bar__links a {
  font-size: 18px;
  color: #868686;
}

.footer-bar__links a:hover {
  color: var(--green);
}

/* ---------- Animations ---------- */
@keyframes lxPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.06);
  }
}

@keyframes lxFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes lxOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes lxSheen {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-grid {
    gap: 40px;
    grid-template-columns: 360px 1fr;
  }
  .nav-desktop-center {
    gap: 22px;
  }
  .header-inner {
    padding: 20px 28px;
  }
}

@media (max-width: 960px) {
  :root {
    --section-pad-x: 20px;
    --section-pad-y: 48px;
  }

  .header-inner {
    display: flex;
    padding: 16px 20px;
    gap: 12px;
  }

  .nav-desktop {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .mobile-menu.is-open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 20px 20px;
    border-top: 1px solid rgba(244, 244, 244, 0.9);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .hero-grid,
  .outcomes-head,
  .dashboard-grid,
  .why-grid,
  .faq-grid,
  .contact-grid,
  .plans-grid,
  .stat-strip,
  .outcomes-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

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

  .hero-visual {
    height: 320px !important;
    max-width: 420px;
    margin: 0 auto;
  }

  .section-pad,
  .section,
  .hero {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .features-band,
  .contact-band {
    padding: 48px 20px !important;
  }

  .final-cta-inner {
    padding: 56px 24px !important;
  }

  .hero-title {
    font-size: clamp(38px, 6vw, 50px) !important;
  }

  .section-title {
    font-size: clamp(32px, 5vw, 38px) !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .form-2col,
  .plan-pick-grid {
    grid-template-columns: 1fr !important;
  }

  .faq-side {
    position: static !important;
  }

  .dash-frame {
    height: min(380px, 55vh) !important;
  }

  #lead-form {
    padding: 24px !important;
  }

  .outcomes-head > .lead {
    padding-top: 0 !important;
  }
}

@media (max-width: 720px) {
  .features-grid {
    grid-template-columns: 1fr !important;
  }

  .features-tabs {
    flex-wrap: wrap;
    justify-content: flex-start !important;
  }

  .plan-pick-grid {
    grid-template-columns: 1fr !important;
  }

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

  .watermark {
    font-size: 56px !important;
    height: auto !important;
  }

  .dash-browser {
    padding: 12px !important;
    border-radius: 20px !important;
  }

  .dash-browser-hint {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 4px;
  }

  .header-brand img {
    height: 36px !important;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad-x: 16px;
    --section-pad-y: 40px;
  }

  .hero-visual {
    display: none !important;
  }

  .features-band,
  .contact-band {
    padding: 40px 16px !important;
  }

  .final-cta-inner {
    padding: 44px 16px !important;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: stretch !important;
  }

  #form-submit {
    width: 100%;
    justify-content: center;
  }

  .g-recaptcha {
    transform: scale(0.92);
  }

  .panel-btn {
    padding: 14px 16px !important;
  }
}
