:root {
  --ink: #24313c;
  --muted: #61717f;
  --paper: #fffaf0;
  --panel: #fffef9;
  --line: #e7e1d7;
  --orange: #ff6700;
  --green: #8be4a7;
  --blue: #78cdf0;
  --yellow: #ffe77a;
  --pink: #ff8db7;
  --shadow: 0 24px 60px rgba(36, 49, 60, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  hyphens: none;
  background:
    linear-gradient(rgba(255,255,255,.66) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.66) 1px, transparent 1px),
    var(--paper);
  background-size: 52px 52px;
}

.sales-page *,
.sales-page *::before,
.sales-page *::after {
  hyphens: none;
  word-break: normal;
}

body.funnel-page {
  min-height: 100vh;
  overflow-x: hidden;
}

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

.funnel-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
}

.funnel-logo {
  position: fixed;
  top: clamp(16px, 4vw, 34px);
  left: clamp(16px, 4vw, 44px);
  z-index: 5;
}

.funnel-logo img {
  display: block;
  width: clamp(150px, 18vw, 250px);
  height: auto;
}

.funnel-step {
  display: none;
  width: min(1080px, 100%);
  min-height: min(720px, calc(100vh - 120px));
  align-content: center;
  padding: clamp(28px, 6vw, 70px);
  border: 2px solid rgba(231, 225, 215, .96);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 231, 122, .68), rgba(139, 228, 167, .28)),
    rgba(255, 254, 249, .95);
  box-shadow: var(--shadow);
}

.funnel-step.is-active {
  display: grid;
  animation: funnel-in 260ms ease both;
}

@keyframes funnel-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.funnel-step h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.funnel-step p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: clamp(26px, 4vw, 44px);
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.5;
  font-weight: 800;
}

.funnel-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.funnel-options.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.funnel-option {
  min-height: 190px;
  padding: 26px;
  border: 2px solid rgba(231, 225, 215, .95);
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(36, 49, 60, .08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.funnel-option:hover,
.funnel-option:focus-visible {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 24px 46px rgba(255, 103, 0, .16);
  transform: translateY(-7px);
  outline: none;
}

.funnel-option span {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: .95;
  font-weight: 900;
}

.funnel-option small {
  display: block;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 900;
}

.funnel-back {
  width: fit-content;
  margin-top: 24px;
}

.funnel-number {
  display: grid;
  gap: 10px;
  max-width: 440px;
  margin-bottom: 24px;
  color: var(--ink);
  font-weight: 900;
}

.funnel-number input {
  width: 100%;
  min-height: 74px;
  padding: 0 22px;
  border: 2px solid var(--line);
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
}

.funnel-number input::-webkit-outer-spin-button,
.funnel-number input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.funnel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(255, 250, 240, .92);
  border-bottom: 1px solid rgba(231, 225, 215, .85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
}

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

.brand small {
  display: block;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.top-nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  font-weight: 900;
  white-space: nowrap;
}

.top-nav .nav-cta,
.button.primary {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 18px 38px rgba(255, 103, 0, .22);
}

.button.secondary {
  background: #fff;
}

.hero,
.section,
.sales-router,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.sales-router {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  margin-top: 34px;
  padding: clamp(22px, 4vw, 38px);
  border: 2px solid rgba(255, 103, 0, .2);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 231, 122, .72), rgba(139, 228, 167, .28)),
    rgba(255, 254, 249, .94);
  box-shadow: var(--shadow);
}

.router-copy {
  display: grid;
  align-content: center;
}

.router-copy h1 {
  max-width: 580px;
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 5.6vw, 5.4rem);
}

.router-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.5;
  font-weight: 800;
}

.router-form {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
}

.router-form fieldset {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.router-form legend,
.router-count > span {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.router-form label {
  cursor: pointer;
}

.router-form input[type="radio"] {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.router-form input[type="radio"] + span {
  display: grid;
  min-height: 56px;
  place-items: center;
  padding: 0 14px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.router-form input[type="radio"]:checked + span {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(255, 103, 0, .22);
}

.router-count {
  display: grid;
  gap: 8px;
}

.router-count input {
  min-height: 58px;
  width: 100%;
  padding: 0 18px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 900;
}

.router-result {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 20px;
  background: var(--yellow);
  border: 2px dashed rgba(255, 103, 0, .32);
}

.router-result strong {
  font-size: 1.35rem;
}

.router-result span {
  color: var(--muted);
  font-weight: 900;
  line-height: 1.35;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: 54px 0 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(2.97rem, 7.2vw, 6.12rem);
  line-height: .9;
  letter-spacing: 0;
  overflow-wrap: normal;
  hyphens: none;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.98rem, 4.5vw, 4.23rem);
  line-height: .95;
  letter-spacing: 0;
  overflow-wrap: normal;
  hyphens: none;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.13rem, 1.98vw, 1.53rem);
  line-height: 1.08;
  overflow-wrap: normal;
  hyphens: none;
}

.sales-page main > .section .eyebrow {
  color: var(--orange);
  font-size: .9rem;
}

.sales-page main > .section h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3.7vw, 3.8rem);
  line-height: 1.02;
}

.lead,
.section-head p,
.license-copy p,
.cta-section p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span,
.package-label {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 900;
}

.hero-board {
  position: relative;
  min-height: 560px;
}

.hero-board img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border: 16px solid #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-card {
  position: absolute;
  display: grid;
  gap: 4px;
  width: 170px;
  min-height: 140px;
  padding: 18px;
  border-radius: 26px;
  background: #fff;
  border: 3px dashed rgba(120, 205, 240, .82);
  box-shadow: var(--shadow);
}

.hero-card strong {
  color: var(--orange);
  font-size: 2.3rem;
  line-height: 1;
}

.hero-card span {
  color: var(--muted);
  font-weight: 900;
}

.card-top {
  top: 22px;
  left: -30px;
  transform: rotate(-6deg);
}

.card-bottom {
  right: -20px;
  bottom: 20px;
  background: var(--yellow);
  border-color: rgba(255, 103, 0, .35);
  transform: rotate(4deg);
}

.section {
  margin-bottom: 34px;
  padding: clamp(28px, 5vw, 54px);
  border: 2px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 254, 249, .9);
  box-shadow: 0 18px 48px rgba(36,49,60,.08);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, .9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.split-section > * {
  min-width: 0;
}

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

.problem-grid article {
  min-height: 218px;
  min-width: 0;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(36, 49, 60, .06);
}

.problem-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(1.17rem, 1.5vw, 1.5rem);
  line-height: 1.05;
}

.problem-grid p,
.package-card p,
.feature-card p,
.story-steps,
.quote-box p {
  color: var(--muted);
  line-height: 1.55;
}

.mini-icon {
  display: block;
  width: 34px;
  height: 10px;
  margin-bottom: 18px;
  border-radius: 999px;
}

.mini-icon.orange { background: var(--orange); }
.mini-icon.green { background: var(--green); }
.mini-icon.blue { background: var(--blue); }
.mini-icon.pink { background: var(--pink); }

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

.section-head.compact {
  margin-bottom: 18px;
}

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

.feature-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.feature-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.feature-card div {
  padding: 22px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 18px;
  align-items: stretch;
  background: linear-gradient(110deg, rgba(255,231,122,.9), rgba(139,228,167,.42));
}

.story-panel,
.quote-box {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
}

.story-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 24px;
  font-size: 1.1rem;
  font-weight: 800;
}

.quote-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 10px solid var(--green);
}

.quote-box strong {
  color: var(--orange);
  font-size: .92rem;
  text-transform: uppercase;
}

.quote-box p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.42rem);
  line-height: 1.32;
  font-weight: 900;
}

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

.package-card {
  padding: 26px;
  border: 2px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.package-card.highlighted {
  border-color: var(--green);
  background: linear-gradient(180deg, #ffffff, rgba(139, 228, 167, .22));
  box-shadow: var(--shadow);
}

.package-card h3 {
  margin-top: 18px;
  font-size: 2.07rem;
}

.package-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 800;
}

.license-section,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.license-flow {
  display: grid;
  gap: 14px;
}

.license-flow article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.license-flow strong {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.25rem;
}

.license-flow span {
  font-weight: 900;
}

.cta-section {
  margin-bottom: 70px;
  background: var(--yellow);
}

.cta-section .button {
  justify-self: end;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 54px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 176px;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .hero,
  .sales-router,
  .split-section,
  .story-section,
  .license-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-board {
    min-height: 430px;
  }

  .hero-board img {
    height: 390px;
  }

  .feature-lanes,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .cta-section .button {
    justify-self: start;
  }

  .funnel-options,
  .funnel-options.two-columns {
    grid-template-columns: 1fr;
  }

  .funnel-option {
    min-height: 132px;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .sales-router,
  .site-footer {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    padding: 14px 12px;
  }

  .funnel-shell {
    place-items: stretch;
    padding: 96px 12px 18px;
  }

  .funnel-step {
    min-height: calc(100vh - 114px);
    padding: 22px;
    border-radius: 18px;
  }

  .funnel-option {
    min-height: 104px;
    padding: 18px;
    border-radius: 18px;
  }

  .funnel-option span {
    margin-bottom: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 156px;
  }

  .top-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-nav a {
    min-height: 42px;
    padding: 0 10px;
    font-size: .92rem;
  }

  .sales-router {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
  }

  .router-form {
    padding: 14px;
  }

  .router-form fieldset {
    grid-template-columns: 1fr;
  }

  .router-form input[type="radio"] + span {
    min-height: 48px;
  }

  h1 {
    font-size: clamp(2.7rem, 13.5vw, 4.23rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9.9vw, 2.95rem);
  }

  .hero-board {
    min-height: 360px;
  }

  .hero-board img {
    height: 310px;
    border-width: 10px;
    border-radius: 20px;
  }

  .hero-card {
    width: 142px;
    min-height: 116px;
    padding: 14px;
  }

  .hero-card strong {
    font-size: 1.75rem;
  }

  .card-top {
    left: 4px;
    top: 4px;
  }

  .card-bottom {
    right: 2px;
    bottom: 8px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 22px;
    border-radius: 18px;
  }

  .license-flow article {
    grid-template-columns: 52px 1fr;
  }

  .license-flow strong {
    width: 46px;
    height: 46px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

/* Real sales page */
.sales-page .site-header {
  box-shadow: 0 10px 28px rgba(36, 49, 60, .06);
}

.sales-hero {
  width: min(100% - 48px, 1240px);
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 98px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .72fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.sales-hero h1 {
  max-width: 880px;
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 3.7vw, 3.8rem);
  line-height: 1.02;
}

.sales-hero .lead {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.18rem, 2.1vw, 1.55rem);
  line-height: 1.52;
  font-weight: 800;
}

.sales-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  border: 2px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.sales-hero-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.offer-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(36, 49, 60, .15);
}

.offer-card-content {
  padding: 28px;
}

.offer-card-content span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offer-card-content .product-number {
  display: block;
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.offer-card-content strong {
  display: block;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  line-height: 1;
}

.offer-card-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 800;
}

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

.included-grid article {
  min-height: 220px;
  padding: 24px;
  border: 2px solid rgba(231, 225, 215, .95);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 32px rgba(36, 49, 60, .07);
}

.included-grid strong {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.included-grid h3 {
  margin-bottom: 10px;
  font-size: 1.26rem;
}

.included-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, .74fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 231, 122, .72), rgba(139, 228, 167, .3)),
    rgba(255, 254, 249, .98);
}

.pricing-copy h2 {
  max-width: 780px;
}

.price-card {
  position: relative;
  padding: clamp(22px, 4vw, 36px);
  border: 2px solid rgba(36, 49, 60, .08);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.pricing-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 7px;
  margin-bottom: 24px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.pricing-switch button {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.pricing-switch button.is-active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 103, 0, .22);
}

.price-main {
  padding: 22px;
  margin-bottom: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(120, 205, 240, .18), rgba(255, 231, 122, .2));
}

.free-month {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--green);
  font-weight: 900;
}

.price-main strong {
  display: block;
  color: var(--orange);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .95;
}

.price-main small {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.price-main p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
}

.price-list li::before {
  content: "✓";
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  flex: 0 0 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-size: .85rem;
}

.checkout-button {
  width: 100%;
  min-height: 64px;
}

.checkout-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.45;
}

.faq .section-head {
  margin-bottom: 20px;
}

.legal-section {
  background:
    linear-gradient(135deg, rgba(120, 205, 240, .12), rgba(255, 231, 122, .2)),
    rgba(255, 254, 249, .98);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.legal-grid article {
  position: relative;
  padding: 22px;
  border: 2px solid rgba(231, 225, 215, .95);
  border-radius: 20px;
  background: rgba(255, 255, 255, .84);
  overflow: hidden;
}

.legal-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--orange);
}

.legal-grid article:nth-child(2)::before {
  background: var(--green);
}

.legal-grid article:nth-child(3)::before {
  background: var(--blue);
}

.legal-grid article:nth-child(4)::before {
  background: var(--pink);
}

.legal-grid h3 {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 1.25rem;
}

.legal-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.52;
}

.faq-item {
  border: 2px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .78);
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.faq-item.active .faq-answer {
  display: block;
}

.upgrade-hero-public .sales-hero-copy {
  max-width: 860px;
}

.upgrade-hero-card {
  min-height: 560px;
}

.offer-badge.inline {
  position: static;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  box-shadow: none;
}

.offer-badge.inline.blue {
  background: var(--blue);
}

.upgrade-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.upgrade-code-section {
  padding-top: 0;
}

.upgrade-code-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .74fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 2px solid rgba(255, 103, 0, .26);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 231, 122, .5), rgba(139, 228, 167, .24)),
    rgba(255, 255, 255, .9);
  box-shadow: 0 18px 42px rgba(36, 49, 60, .08);
}

.upgrade-code-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4.3vw, 4.3rem);
  line-height: .95;
}

.upgrade-code-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.upgrade-code-field {
  display: grid;
  gap: 9px;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.upgrade-code-field span {
  color: var(--ink);
  font-weight: 900;
}

.upgrade-code-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 2px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
}

.upgrade-code-field input:focus,
.upgrade-code-field input.needs-value {
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 103, 0, .14);
}

.upgrade-code-field small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
}

.upgrade-sales-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 38px);
  border: 2px solid rgba(231, 225, 215, .95);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(255, 250, 240, .9)),
    #fff;
  box-shadow: var(--shadow);
}

.upgrade-sales-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: var(--green);
}

.upgrade-sales-card.is-modules::before {
  background: var(--blue);
}

.upgrade-sales-card h3 {
  max-width: 12ch;
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.5vw, 4.15rem);
  line-height: .95;
}

.upgrade-sales-card > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.5;
}

.upgrade-sales-card .price-list {
  margin-top: auto;
}

.upgrade-sales-card .checkout-button {
  margin-top: 8px;
}

@media (max-width: 1180px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .problem-grid article {
    min-height: auto;
  }
}

@media (max-width: 980px) {
  .sales-hero,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .sales-hero {
    min-height: auto;
  }

  .sales-hero-card {
    min-height: auto;
  }

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

  .upgrade-product-grid {
    grid-template-columns: 1fr;
  }

  .upgrade-code-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .sales-hero {
    width: min(100% - 22px, 1240px);
    padding: 32px 0;
  }

  .sales-hero h1 {
    font-size: clamp(1.5rem, 6.9vw, 2.25rem);
    line-height: 1.04;
  }

  .sales-hero-card {
    border-radius: 20px;
  }

  .sales-hero-card img {
    height: 270px;
  }

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

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    gap: 18px;
  }

  .pricing-switch {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .checkout-button {
    white-space: normal;
    text-align: center;
  }
}

/* Thank you page */
.thankyou-shell {
  width: min(100% - 48px, 1040px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) 0;
}

.thankyou-card {
  padding: clamp(28px, 5vw, 62px);
  border: 2px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 231, 122, .35), rgba(139, 228, 167, .2)),
    rgba(255, 254, 249, .98);
  box-shadow: var(--shadow);
}

.thankyou-card h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(2.7rem, 6.3vw, 5.6rem);
  line-height: .92;
}

.thankyou-card .lead {
  max-width: 850px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.5;
  font-weight: 800;
}

.thankyou-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(24px, 4vw, 38px) 0;
}

.thankyou-status div,
.thankyou-steps article {
  border: 2px solid rgba(231, 225, 215, .95);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
}

.thankyou-status div {
  padding: 18px;
}

.thankyou-status span,
.thankyou-status strong {
  display: block;
}

.thankyou-status span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.thankyou-status strong {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.25;
  overflow-wrap: normal;
}

.thankyou-steps {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

.thankyou-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.thankyou-info article {
  padding: 20px;
  border: 2px solid rgba(231, 225, 215, .95);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
}

.thankyou-info h2 {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 1.08rem;
}

.thankyou-info p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.thankyou-steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 18px;
}

.thankyou-steps article > strong {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--orange);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.thankyou-steps h2 {
  margin: 0 0 6px;
  font-size: 1.22rem;
}

.thankyou-steps p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.48;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.thankyou-actions .button {
  min-height: 58px;
}

.thankyou-hint {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 5px solid var(--orange);
  border-radius: 14px;
  background: rgba(255, 255, 255, .68);
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .thankyou-shell {
    width: min(100% - 22px, 1040px);
    padding: 24px 0;
  }

  .thankyou-card {
    border-radius: 20px;
  }

  .thankyou-status,
  .thankyou-info,
  .thankyou-steps article {
    grid-template-columns: 1fr;
  }

  .thankyou-actions .button {
    width: 100%;
  }
}


/* Demo request form */
.demo-request-page main {
  padding-bottom: 3rem;
}
.demo-request-section {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.demo-request-card {
  background: #fff;
  border: 1px solid rgba(39, 49, 58, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(116, 81, 42, 0.08);
  padding: 2rem 2rem 1.75rem;
}
@media (min-width: 640px) {
  .demo-request-card {
    padding: 2.4rem 2.6rem 2rem;
  }
}
.demo-request-card h1 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.15;
  color: #27313a;
}
.demo-request-lead {
  margin: 0 0 1.75rem;
  color: #65717c;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 36rem;
}
.demo-request-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.demo-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.15rem;
}
@media (min-width: 560px) {
  .demo-fields {
    grid-template-columns: 1fr 1fr;
  }
}
.demo-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
.demo-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #27313a;
  margin: 0;
}
.demo-field .req,
.demo-check .req {
  color: #ff6a00;
}
.demo-field input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  color: #27313a;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(39, 49, 58, 0.14);
  background: #fafbfc;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.demo-field input::placeholder {
  color: #9aa3ab;
}
.demo-field input:focus {
  outline: none;
  border-color: rgba(255, 106, 0, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}
.demo-checks {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.25rem;
}
.demo-check {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.75rem;
  align-items: start;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  color: #3d4750;
  cursor: pointer;
}
.demo-check input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.15rem 0 0;
  accent-color: #ff6a00;
  flex-shrink: 0;
}
.demo-check a {
  color: #3776a8;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.demo-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding-top: 0.35rem;
}
.demo-actions .button {
  min-width: 12rem;
}
.demo-request-form .form-note {
  margin: 0;
  font-size: 0.85rem;
  color: #65717c;
  font-weight: 400;
}
.form-error {
  background: #fef3f2;
  border: 1px solid #fecdca;
  color: #b42318;
  padding: 12px 14px;
  border-radius: 14px;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.demo-field .optional {
  font-weight: 500;
  color: #9aa3ab;
  font-size: 0.82rem;
}
