/* Clean rebuild of the get.trueops.com funnel. Values were read off the
   original page's stylesheet and verified against section-by-section
   screenshots of the live site; markup and CSS are hand-written — no
   GoHighLevel code. */

/* ---- Fonts (self-hosted Satoshi, as on the original) ---- */
@font-face {
  font-family: "Satoshi";
  src:
    url("../fonts/satoshi-regular.woff2") format("woff2"),
    url("../fonts/satoshi-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src:
    url("../fonts/satoshi-medium.woff2") format("woff2"),
    url("../fonts/satoshi-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src:
    url("../fonts/satoshi-bold.woff2") format("woff2"),
    url("../fonts/satoshi-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src:
    url("../fonts/satoshi-italic-webfont.woff2") format("woff2"),
    url("../fonts/satoshi-italic-webfont.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #1a0f29; /* main section background */
  --ink-alt: #211334; /* alternate section background */
  --ink-footer: #170c27;
  --panel: #2d223b; /* feature cards */
  --panel-review: #372a47; /* review-wall cards */
  --text-dim: #d1cfd4;
  --cyan: #00c4f0;
  --purple: #9642f7;
  --teal: #23cca2;
  --stars-red: #ed3e23;
  --gradient: linear-gradient(90deg, var(--cyan) 0%, var(--purple) 100%);
  --glass: linear-gradient(
    270.05deg,
    rgba(255, 255, 255, 0.1) 0.01%,
    rgba(241, 241, 241, 0.3) 99.94%
  );
  --glass-card: linear-gradient(
    110.17deg,
    rgba(255, 255, 255, 0.05) 1.82%,
    rgba(255, 255, 255, 0.1) 100%
  );
  --card-shadow: 10px 14px 24px 0 #00000026;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* keep anchor targets clear of the sticky header */
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

em {
  font-style: italic;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.625rem 1.25rem;
  background: var(--cyan);
  color: var(--ink);
  font-weight: 700;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0.5rem;
}

/* ---- Layout ---- */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

.h-section {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #fff;
}

.h-section em {
  color: var(--purple);
}

/* Glass pill (eyebrows: DOES AMAZON OWE YOU MONEY?, HOW IT WORKS:, NOTE:, …) */
.pill {
  display: inline-block;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  background: var(--glass);
  border: 1px solid rgba(170, 170, 170, 0.5);
  border-radius: 125px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* ---- Gradient CTA button + trusted-by caption ---- */
.btn {
  display: table; /* block-level box that shrinks to content and centers */
  margin: 0 auto;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  line-height: 23px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: var(--gradient);
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  transition:
    filter 0.15s ease,
    transform 0.15s ease;
}

.btn:hover {
  filter: brightness(1.07);
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.btn-header {
  font-size: 15px;
  font-weight: 500;
  padding: 15px 28px;
  margin: 0;
  display: inline-block;
}

.cta-block {
  text-align: center;
  margin-top: 50px;
}

/* Avatars and the TRUSTED BY caption sit inline under the button */
.cta-avatars {
  display: inline-block;
  width: 59px;
  vertical-align: middle;
  margin: 14px 8px 0 0;
}

.trusted-by {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  margin-top: 14px;
  text-align: center;
}

/* ---- Header (sticky bar overlaying content, like the original) ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(26, 15, 41, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 20px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-logo img {
  display: block;
  width: 199px;
  height: auto;
}

.header-nav {
  display: flex;
  gap: 40px;
  margin-left: auto;
}

.header-nav a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  text-decoration: none;
}

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

.header-cta {
  margin-left: 40px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: var(--ink);
  text-align: center;
}

.mobile-menu a {
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

/* ---- Hero ---- */
.hero {
  background: var(--ink) url("../images/bg-hero.png") no-repeat center / cover;
  padding: 61px 0 60px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-copy {
  flex: 1 1 52%;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin-top: 20px;
}

.hero-title em {
  color: var(--purple);
}

.hero-sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  margin: 16px 0 30px;
}

.hero .btn {
  margin: 0;
  padding: 16px 25px;
}

.hero-trust {
  margin-top: 6px;
}

.hero-trust .cta-avatars {
  margin-left: 0;
}

.hero-image {
  flex: 1 1 48%;
}

.hero-image img {
  display: block;
  width: 485px;
  max-width: 100%;
  margin-left: auto;
}

/* ---- Award-badge strip (static single row) ---- */
.badge-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 20px;
}

.badge-strip img {
  width: 72px;
  min-width: 0;
  flex: 0 1 auto;
  height: auto;
}

/* ---- "This Is Why 1,600+ ..." (dark cards) ---- */
.section-why {
  background-color: var(--ink-alt);
  padding: 62px 0 81px;
}

.section-why .h-section {
  max-width: 588px;
  margin: 50px auto 0;
}

.why-cards {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  flex: 1 1 0;
  background-color: var(--panel);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  padding: 36px 30px 40px;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  margin-top: 20px;
}

.why-card p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dim);
  margin-top: 13px;
}

/* ---- Testimonials (white cards) ---- */
.section-testimonials {
  background-color: var(--ink);
  padding: 75px 0 87px;
}

.section-testimonials .h-section {
  max-width: 660px;
  margin: 0 auto;
}

/* three independent column stacks, so short cards pack like the original */
.testimonial-grid {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  align-items: flex-start;
}

.testimonial-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tcard {
  background-color: #fff;
  color: #444;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.tcard blockquote {
  font-style: italic;
}

/* photo-on-top variant */
.tcard-photo {
  padding-bottom: 24px;
  text-align: center;
}

.tcard-photo .tcard-img {
  display: block;
  width: 100%;
}

.tcard-photo .stars {
  width: 154px;
  margin: -19px auto 0;
  position: relative;
}

.tcard-photo blockquote {
  margin: 24px 0 0;
  padding: 0 30px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}

.tcard-photo figcaption {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
}

/* stars-top variant */
.tcard-quote {
  padding: 35px 28px 36px;
  text-align: left;
}

.tcard-quote .tcard-stars {
  width: 111px;
}

.tcard-quote blockquote {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}

.tcard-quote figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
}

.tcard-quote figcaption img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

/* ---- How it works (stacked glass step cards) ---- */
.section-how {
  background: var(--ink) url("../images/bg-how-it-works.png") no-repeat center /
    cover;
  padding: 90px 0 94px;
  text-align: center;
}

.how-hero {
  display: block;
  width: 289px;
  margin: 0 auto 40px;
}

.section-how .h-section {
  margin-top: 23px;
}

.how-intro {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-dim);
  text-align: left;
}

.how-intro p + p {
  margin-top: 1em;
}

.h-steps {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 41px;
}

.steps {
  list-style: none;
  margin: 46px auto 0;
  padding: 0;
  max-width: 645px;
  text-align: left;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  background: var(--glass-card);
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  padding: 22px 26px 26px;
}

.step + .step {
  margin-top: 46px;
}

/* cyan ↓ connector between cards */
.step + .step::before {
  content: "";
  position: absolute;
  top: -35px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300c4f0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14'/%3E%3Cpath d='m19 12-7 7-7-7'/%3E%3C/svg%3E")
      center / 20px no-repeat,
    var(--ink-alt);
}

.step-label {
  grid-column: 1;
  justify-self: start;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--glass);
  border-radius: 50px;
  padding: 2px 14px;
  margin-bottom: 10px;
}

.step img {
  grid-column: 1;
  width: 56px;
  height: 56px;
  margin: 4px 0 0 8px;
}

.step h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.step p {
  grid-column: 2;
  grid-row: 2;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ---- Video + key benefits (stacked glass rows) ---- */
.section-benefits {
  background-color: var(--ink-alt);
  padding: 100px 0 78px;
}

.video-embed {
  position: relative;
  max-width: 860px;
  margin: 0 auto 50px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.benefits {
  list-style: none;
  margin: 40px auto 0;
  padding: 0;
  max-width: 700px;
}

.benefit {
  display: grid;
  grid-template-columns: 88px 1fr 70px;
  align-items: center;
  background: var(--glass-card);
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  padding: 26px 24px 26px 30px;
}

.benefit + .benefit {
  margin-top: 20px;
}

.benefit img {
  width: 52px;
  height: 52px;
}

.benefit h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.benefit h3 .benefit-body {
  display: block;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dim);
  margin-top: 8px;
}

.benefit-bonus h3 {
  color: var(--cyan);
  text-transform: uppercase;
}

.benefit-bonus h3 .benefit-body {
  text-transform: none;
}

.benefit-num {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff33;
  text-align: right;
  align-self: start;
}

/* ---- Pricing ---- */
.section-pricing {
  background: var(--ink) url("../images/bg-pricing.png") no-repeat center /
    cover;
  padding: 91px 0 80px;
  text-align: center;
}

.pill.pricing-title {
  font-size: 26px;
  font-weight: 700;
  padding: 5px 26px;
}

.pricing-figure {
  display: table;
  margin: 10px auto 0;
  padding: 12px 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  font-size: 78px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--cyan);
}

.pricing-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dim);
  margin-top: 35px;
}

.pricing-checklist {
  list-style: none;
  margin: 30px auto 0;
  padding: 0;
  max-width: 420px;
  text-align: left;
}

.pricing-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--glass-card);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
}

.pricing-checklist li + li {
  margin-top: 15px;
}

.pricing-checklist img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.pricing-checklist .bonus-label {
  color: var(--purple);
  font-weight: 700;
}

.pricing-footnote {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dim);
  margin-top: 35px;
}

.pricing-footnote a {
  color: #fff;
}

/* ---- Founder letter ---- */
.section-letter {
  background-color: var(--ink-alt);
  padding: 80px 0 78px;
}

.section-letter .h-section {
  max-width: 656px;
  margin: 0 auto;
}

.letter-body {
  max-width: 600px;
  margin: 60px auto 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-dim);
}

.letter-body p + p {
  margin-top: 1.4em;
}

.letter-callout {
  max-width: 608px;
  margin: 40px auto;
  padding: 28px 32px;
  background: var(--glass-card);
  border-radius: 15px;
  box-shadow: var(--card-shadow);
}

.letter-callout .callout-title {
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 14px;
}

.letter-callout ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dim);
}

.letter-callout li {
  padding-left: 34px;
  background: url("../images/check-circle.svg") no-repeat left 4px / 22px;
}

.letter-callout li + li {
  margin-top: 10px;
}

.letter-signoff {
  max-width: 600px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.letter-signoff img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
}

.letter-name {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.letter-role {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-dim);
  margin-top: 5px;
}

/* ---- Connect today checklist ---- */
.section-connect {
  background: var(--ink-alt) url("../images/bg-connect.png") no-repeat center /
    cover;
  padding: 80px 0 78px;
  text-align: center;
}

.section-connect .pill {
  font-size: 19px;
  padding: 6px 32px;
  margin-top: 25px;
}

.connect-sub {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dim);
  margin-top: 14px;
}

.feature-checklist {
  list-style: none;
  margin: 33px auto 0;
  padding: 0;
  max-width: 900px;
  text-align: left;
}

.feature-checklist li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 23px 30px 22px 26px;
  margin-top: 30px;
  background: var(--glass-card);
  border-radius: 15px;
  box-shadow: var(--card-shadow);
}

.feature-checklist img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.feature-checklist h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.feature-checklist h3.bonus {
  color: var(--purple);
}

.feature-checklist p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ---- Guarantee ---- */
.section-guarantee {
  background-color: var(--ink-alt);
  padding: 100px 0 78px;
}

.guarantee-badge {
  display: block;
  margin: 0 auto 20px;
  width: 180px;
}

.guarantee-copy {
  max-width: 760px;
  margin: 25px auto 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-dim);
}

.guarantee-copy p + p {
  margin-top: 1em;
}

.guarantee-note {
  max-width: 760px;
  margin: 15px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
}

.guarantee-note .pill {
  font-size: 18px;
  line-height: 1.9;
  padding: 0 28px;
  flex-shrink: 0;
}

.guarantee-note p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dim);
}

/* ---- Review wall ---- */
.section-reviews {
  background-color: var(--ink);
  padding: 100px 0 85px;
}

.reviews-logo {
  display: block;
  margin: 0 auto 20px;
  width: 74px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.review {
  margin: 0;
  background-color: var(--panel-review);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--stars-red);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.review blockquote {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: #fff;
}

.review figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.review figcaption > img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.review .reviewer-tag {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--teal);
}

.review .review-g2 {
  width: 34px;
  height: 34px;
  margin-left: auto;
  border-radius: 0;
}

/* ---- Comparison table (TrueOps = highlighted purple column) ---- */
.section-compare {
  background: var(--ink-alt) url("../images/bg-compare.png") no-repeat center /
    cover;
  padding: 90px 0 78px;
}

.table-scroll {
  overflow-x: auto;
  margin-top: 50px;
}

.compare {
  width: 100%;
  max-width: 760px;
  min-width: 640px;
  margin: 0 auto;
  border-collapse: collapse;
}

.compare th,
.compare td {
  padding: 22px 18px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.compare .row-label {
  text-align: left;
  font-weight: 700;
}

.compare thead th {
  border-bottom: none;
  font-size: 17px;
  font-weight: 700;
  vertical-align: middle;
}

.compare tr:last-child td,
.compare tr:last-child th {
  border-bottom: none;
}

/* highlighted TrueOps column */
.compare .col-trueops {
  background-color: #4b1d96;
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.compare thead .col-trueops {
  border-radius: 12px 12px 0 0;
}

.compare tr:last-child .col-trueops {
  border-radius: 0 0 12px 12px;
}

.compare thead .col-trueops img {
  width: 129px;
  vertical-align: middle;
}

.compare .col-diy {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.compare td img {
  width: 26px;
  height: 26px;
  vertical-align: middle;
}

/* ---- 9 reasons ---- */
.section-reasons {
  background-color: var(--ink-alt);
  padding: 100px 0 78px;
}

.section-reasons .h-section {
  max-width: 520px;
  margin: 0 auto;
}

.reasons {
  list-style: none;
  margin: 15px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.reason {
  background-color: var(--panel);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  padding: 40px 20px 30px;
  margin-top: 15px;
}

.reason > img {
  display: block;
  margin: 0 auto 20px;
  width: 60px;
  height: 60px;
}

.reason-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.reason-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background-color: var(--purple);
  color: #fff;
  font-size: 17px;
  font-weight: 400;
}

.reason h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  padding-top: 4px;
}

.reason p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-dim);
  margin-top: 12px;
  padding-left: 45px;
  padding-right: 10px;
}

/* ---- Urgency (glass card) ---- */
.section-warning {
  background: var(--ink-alt) url("../images/bg-warning.png") no-repeat center /
    cover;
  padding: 80px 0 85px;
}

.warning-card {
  max-width: 758px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--glass-card);
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.warning-card .h-section {
  padding-top: 30px;
  margin-bottom: 25px;
}

.warning-copy {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-dim);
  text-align: left;
  padding-bottom: 30px;
}

.warning-copy p + p {
  margin-top: 1em;
}

/* ---- TrueOps is for you if ---- */
.section-foryou {
  background-color: var(--ink-alt);
  padding: 80px 0 78px;
}

.foryou-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 30px;
}

.foryou-copy {
  flex: 0 0 46%;
}

.foryou-copy h3 {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  padding-bottom: 20px;
}

.foryou-copy p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.77;
  color: var(--text-dim);
  padding-bottom: 20px;
}

.foryou-arrow {
  display: block;
  width: 104px;
  margin-left: auto;
}

.foryou-image {
  flex: 1 1 54%;
  padding: 10px 5px;
}

/* ---- FAQ ---- */
.section-faq {
  background: var(--ink-alt) url("../images/bg-faq.png") no-repeat center /
    cover;
  padding: 100px 0 90px;
}

.faq {
  margin-top: 40px;
}

.faq details {
  max-width: 773px;
  margin: 0 auto 15px;
  background: var(--glass-card);
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 26px 18px 26px 44px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: url("../images/faq-plus.svg") no-repeat center / contain;
}

.faq details[open] summary::after {
  background-image: url("../images/faq-minus.svg");
}

.faq-body {
  padding: 0 35px 35px 44px;
}

.faq-body p,
.faq-body li {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-dim);
  max-width: 95%;
}

.faq-body p + p {
  margin-top: 1em;
}

.faq-body ol {
  margin: 1em 0;
  padding-left: 1.5em;
}

/* ---- Final CTA (purple section) ---- */
.section-final {
  background-color: var(--purple);
  padding: 100px 0 78px;
  text-align: center;
}

.final-badge {
  display: block;
  margin: 0 auto 25px;
  width: 150px;
}

.section-final .h-section {
  max-width: 624px;
  margin: 0 auto;
}

.final-copy {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: #efe6ff;
  margin-top: 20px;
}

.section-final .cta-block {
  margin-top: 30px;
}

/* ---- Footer ---- */
.site-footer {
  background-color: var(--ink-footer);
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #fff;
}

.footer-note {
  max-width: 584px;
  margin: 10px auto 5px;
  text-align: left;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 10px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
}

.site-footer a {
  color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .h-section,
  .hero-title {
    font-size: 32px;
  }

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

  .nav-toggle {
    display: block;
  }

  .site-header.nav-open .mobile-menu {
    display: flex;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-image img {
    margin: 0 auto;
  }

  .badge-strip {
    flex-wrap: wrap;
    gap: 16px;
  }

  .why-cards,
  .testimonial-grid {
    flex-direction: column;
  }

  .step {
    grid-template-columns: 72px 1fr;
  }

  .benefit {
    grid-template-columns: 64px 1fr 48px;
    padding: 22px 18px;
  }

  .benefit-num {
    font-size: 36px;
  }

  .reviews,
  .reasons {
    grid-template-columns: 1fr;
  }

  .foryou-item {
    flex-direction: column;
  }

  .foryou-copy {
    flex-basis: auto;
  }

  .foryou-arrow {
    display: none;
  }

  .pricing-figure {
    font-size: 56px;
  }

  .faq summary {
    padding: 25px 10px 18px 17px;
    font-size: 20px;
    line-height: 28px;
  }

  .faq-body {
    padding: 0 15px 15px 17px;
  }

  .warning-card {
    padding: 40px 20px;
  }

  .guarantee-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-row {
    flex-direction: column;
    gap: 6px;
  }

  .footer-note {
    text-align: center;
  }
}
