﻿:root {
  --brand-dark: #43494d;
  --brand-darker: #30363a;
  --brand-green: #7bd957;
  --brand-green-dark: #55b637;
  --text: #30363a;
  --muted: #66727a;
  --line: #dfe5e1;
  --paper: #ffffff;
  --concrete: #f3f6f2;
  --warm: #d5a24c;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(35, 42, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.5;
}

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

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

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

.narrow {
  width: min(860px, calc(100% - 40px));
}

.section-heading-center {
  text-align: center;
}

.section-heading-center h2 {
  margin-right: auto;
  margin-left: auto;
}

.section-dark,
.section-light,
.section-muted {
  padding: 86px 0;
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(67, 73, 77, 0.96), rgba(48, 54, 58, 0.98)),
    var(--brand-dark);
}

.section-light {
  background: var(--paper);
}

.section-muted {
  background: var(--concrete);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 74px;
  padding: 12px 24px;
  color: #fff;
  background: rgba(67, 73, 77, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 230px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 800;
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  color: var(--brand-darker);
  background: var(--brand-green);
  font-size: 0.9rem;
}

.button {
  position: relative;
  width: min(100%, 460px);
  min-width: 320px;
  min-height: 66px;
  padding: 0 82px 0 30px;
  border-radius: 999px;
  font-size: 1.08rem;
  line-height: 1;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.28);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: #16b91e;
  box-shadow: 0 13px 20px rgba(0, 0, 0, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #19c723;
}

.button::after {
  position: absolute;
  right: 8px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  background: var(--brand-darker);
  border-radius: 50%;
  content: "↗";
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

.button-secondary {
  color: #fff;
  background: var(--brand-dark);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 2.55vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding: 46px 0 64px;
}

.hero-grid {
  display: block;
}

.hero-copy {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy h1 {
  width: 100%;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.25;
}

.video-prompt-highlight {
  color: #e4bd23;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.cta-stack {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.98rem;
}

.section-dark .cta-benefits {
  color: rgba(255, 255, 255, 0.72);
}

.price-box .cta-benefits {
  color: #899196;
}

.cta-benefits > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.benefit-icon {
  display: inline-block;
  font-size: 0.9em;
  line-height: 1;
  opacity: 0.72;
  transform: translateY(-1px);
}

.mark-highlight {
  display: inline;
  color: #fff;
  background: var(--brand-green-dark);
  padding: 0.02em 0.12em 0.06em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.green-highlight {
  display: inline;
  color: #fff;
  background: var(--brand-green-dark);
  padding: 0.02em 0.12em 0.06em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.soft-yellow-highlight {
  display: inline;
  background: rgba(228, 189, 35, 0.42);
  padding: 0.02em 0.12em 0.06em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.green-text-highlight {
  color: var(--brand-green);
  font-weight: 900;
}

.microcopy {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.hero-video {
  position: relative;
  overflow: hidden;
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(67, 73, 77, 0.92), rgba(48, 54, 58, 0.98)),
    var(--brand-dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

.youtube-vsl-frame,
.youtube-vsl-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-vsl-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: default;
}

.youtube-vsl-sound-prompt {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 24px;
  color: #fff;
  cursor: pointer;
  background: rgba(85, 182, 55, 0.94);
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.youtube-vsl-sound-prompt strong {
  align-self: end;
  font-size: clamp(1.45rem, 3.6vw, 2.5rem);
  line-height: 1.05;
}

.youtube-vsl-sound-prompt .sound-icon {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  color: #fff;
  background: rgba(48, 54, 58, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
}

.youtube-vsl-sound-prompt .sound-icon svg {
  width: 62%;
  height: 62%;
  fill: none;
  stroke: currentColor;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.youtube-vsl-sound-prompt em {
  align-self: start;
  font-size: clamp(1.15rem, 2.6vw, 1.9rem);
  font-style: normal;
  font-weight: 900;
}

.youtube-vsl.is-sound-on .youtube-vsl-sound-prompt {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.youtube-vsl-error {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 26px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(30, 34, 36, 0.96);
  font-size: 0.92rem;
  line-height: 1.4;
  text-align: center;
}

.youtube-vsl-error[hidden] {
  display: none;
}

.youtube-vsl-controls {
  position: absolute;
  right: 18px;
  bottom: 26px;
  left: 18px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.youtube-vsl-controls button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  cursor: pointer;
  background: rgba(48, 54, 58, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 1.08rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
  transition: background 180ms ease, transform 180ms ease;
}

.youtube-vsl-controls button:hover,
.youtube-vsl-controls button:focus-visible {
  background: var(--brand-green-dark);
  transform: translateY(-2px);
}

.youtube-vsl-progress {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  overflow: hidden;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.youtube-vsl-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-green-dark));
  border-radius: inherit;
  box-shadow: 0 0 12px rgba(123, 217, 87, 0.75);
}

.split,
.offer-grid,
.lucas {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.method-split {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: start;
}

.method-title {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.method-kicker {
  margin-bottom: 0;
  color: var(--brand-darker);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
}

.method-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 390px);
  min-height: 150px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.method-logo img {
  width: min(100%, 300px);
}

.testimonials-section {
  background:
    linear-gradient(180deg, #fff 0%, #f4f8f3 100%);
}

.testimonials-inner {
  display: grid;
  gap: 42px;
}

.testimonials-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-heading h2 {
  margin-right: auto;
  margin-left: auto;
}

.testimonials-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: var(--text);
}

.video-testimonial {
  display: flex;
  justify-content: center;
}

.video-testimonial-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 310px);
  background: #111;
  border-radius: var(--radius);
}

.video-testimonial-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #111;
  border-radius: var(--radius);
}

.video-play-toggle {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  cursor: pointer;
  background: rgba(48, 54, 58, 0.88);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.video-play-toggle::before {
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid #fff;
  content: "";
}

.video-play-toggle:hover,
.video-play-toggle:focus-visible {
  background: rgba(85, 182, 55, 0.95);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-testimonial-frame.is-playing .video-play-toggle {
  opacity: 0;
  pointer-events: none;
}

.video-progress {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  height: 7px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.32);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(123, 217, 87, 0.26);
}

.video-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-green-dark));
  border-radius: inherit;
  box-shadow: 0 0 14px rgba(123, 217, 87, 0.82);
  transition: width 120ms linear;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 48px;
  align-items: center;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-stage {
  position: relative;
  min-height: 520px;
  perspective: 1000px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) translateY(18px) scale(0.92) rotateY(0deg);
  transition: opacity 450ms ease, transform 650ms cubic-bezier(.4, 1.7, .3, 1);
}

.testimonial-slide.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) translateY(0) scale(1) rotateY(0deg);
}

.testimonial-slide.is-prev,
.testimonial-slide.is-next {
  z-index: 2;
  opacity: 0.42;
}

.testimonial-slide.is-prev {
  transform: translateX(-42px) translateY(-22px) scale(0.9) rotateY(8deg);
}

.testimonial-slide.is-next {
  transform: translateX(42px) translateY(-22px) scale(0.9) rotateY(-8deg);
}

.testimonial-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(35, 42, 45, 0.22);
}

.testimonial-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.testimonial-kicker {
  margin-bottom: 12px;
  color: var(--brand-green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.testimonial-copy p {
  color: var(--text);
}

.testimonial-controls {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.testimonial-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  cursor: pointer;
  background: var(--brand-darker);
  border: 0;
  border-radius: 50%;
  font-size: 1.45rem;
  transition: background 180ms ease, transform 180ms ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  background: var(--brand-green-dark);
  transform: translateY(-2px);
}

.search-demand .section-heading-center {
  max-width: 820px;
  margin: 0 auto;
}

.search-source {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 0;
  padding: 8px 14px;
  color: var(--brand-darker);
  background: rgba(123, 217, 87, 0.2);
  border: 1px solid rgba(85, 182, 55, 0.38);
  border-radius: 999px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.search-demand-panel {
  overflow: hidden;
  max-width: 860px;
  margin: 34px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-demand-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.75fr) minmax(130px, 0.6fr);
  gap: 18px;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.search-demand-head {
  color: var(--brand-darker);
  background: #f7faf6;
  font-size: 0.84rem;
  font-weight: 800;
}

.search-demand-list {
  max-height: 332px;
  overflow-y: auto;
}

.search-demand-list .search-demand-row:last-child {
  border-bottom: 0;
}

.search-demand-row span {
  color: var(--text);
  font-weight: 700;
}

.search-demand-row strong {
  color: var(--brand-green-dark);
  font-size: 1.18rem;
  line-height: 1;
}

.search-demand-row em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.search-demand-note {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--text);
  text-align: center;
}

.video-placeholder {
  display: grid;
  place-items: center;
  min-height: 330px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.35rem;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(67, 73, 77, 0.92), rgba(48, 54, 58, 0.95)),
    var(--brand-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(75%, 420px);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

.feature-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.feature-panel {
  margin-top: 36px;
  padding: 34px 30px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-panel .feature-grid {
  margin-top: 0;
}

.feature-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 28px;
  padding-top: 12px;
}

.feature-progress::before {
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
  height: 8px;
  content: "";
  background: #e4f1df;
  border-radius: 999px;
}

.feature-progress::after {
  position: absolute;
  top: 17px;
  left: 0;
  width: 100%;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--brand-green-dark), var(--brand-green));
  border-radius: 999px;
  box-shadow:
    0 0 10px rgba(123, 217, 87, 0.85),
    0 0 24px rgba(123, 217, 87, 0.42),
    0 0 42px rgba(85, 182, 55, 0.26);
}

.feature-progress span {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 18px;
  height: 18px;
  background: var(--brand-green-dark);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(85, 182, 55, 0.28),
    0 0 12px rgba(123, 217, 87, 0.9),
    0 0 26px rgba(123, 217, 87, 0.38);
}

.content-grid article,
.compare-card,
.price-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-grid article {
  padding: 26px;
}

.feature-card {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: left;
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  object-fit: contain;
}

.feature-number {
  display: block;
  margin-bottom: 18px;
  color: var(--brand-green-dark);
  font-weight: 900;
}

.feature-card h3 {
  max-width: 220px;
  min-height: 2.36em;
  margin-bottom: 14px;
  color: var(--brand-green-dark);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  font-weight: 600;
  line-height: 1.18;
}

.feature-card p {
  max-width: 250px;
  margin-bottom: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}

.body-copy p {
  margin-bottom: 24px;
}

.check-list,
.audience-list,
.compare-card ul,
.price-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-box ul {
  text-align: left;
}

.check-list li,
.audience-list li,
.compare-card li,
.price-box li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.check-list li::before,
.audience-list li::before,
.compare-simple li::before,
.price-box li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--brand-green-dark);
  content: "✓";
  font-weight: 900;
}

.compare-hard li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #9a584f;
  content: "×";
  font-weight: 900;
}

.section-dark .check-list li,
.section-dark .price-box li {
  color: var(--text);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0 32px;
}

.steps article {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--brand-darker);
  font-weight: 900;
  background: var(--brand-green);
  border-radius: 50%;
}

.comparison {
  display: grid;
  gap: 34px;
}

.comparison-heading {
  text-align: center;
}

.comparison-heading h2 {
  margin-right: auto;
  margin-left: auto;
}

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

.compare-card {
  padding: 30px;
}

.compare-hard {
  background: #fff0ee;
  border-color: #efc8c2;
}

.compare-simple {
  background: #edfbe8;
  border-color: rgba(123, 217, 87, 0.8);
}

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

.included-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.included-line span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: var(--brand-darker);
  font-weight: 800;
  background: rgba(123, 217, 87, 0.24);
  border: 1px solid rgba(85, 182, 55, 0.32);
  border-radius: var(--radius);
}

.included-line img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.guarantee-block {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.guarantee-icon {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.audience-list {
  columns: 2;
  column-gap: 32px;
}

.audience-showcase {
  overflow: hidden;
}

.audience-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.audience-intro h2 {
  margin-right: auto;
  margin-left: auto;
}

.audience-intro p {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  color: var(--text);
}

.audience-intro p + p {
  margin-top: -6px;
}

.audience-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: min(1040px, 100%);
  margin: 42px auto 0;
}

.audience-pill-cloud span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  color: var(--brand-darker);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(35, 42, 45, 0.08);
}

.audience-pill-cloud span::before {
  margin-right: 8px;
  color: var(--brand-green-dark);
  content: "✓";
  font-weight: 900;
}

.lucas {
  align-items: start;
}

.lucas-photo {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: var(--brand-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lucas-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.offer {
  scroll-margin-top: 88px;
}

.offer-grid {
  align-items: stretch;
}

.price-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 22px;
  padding: 32px;
  color: var(--text);
  text-align: center;
}

.price-box img {
  width: 260px;
}

.bonus-offer {
  width: 100%;
  padding: 10px;
  background: #111;
  border: 1px solid rgba(123, 217, 87, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(35, 42, 45, 0.14);
}

.bonus-offer img {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
}

.price {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price span,
.price small {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.price .launch-label {
  display: inline-block;
  width: auto;
  margin-bottom: 12px;
  padding: 0.12em 0.28em 0.18em;
  color: var(--brand-darker);
  background: #e4bd23;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
}

.price .old-price {
  margin-bottom: 4px;
  color: #e02020;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

.price-label {
  margin-bottom: 2px;
}

.price strong {
  display: block;
  color: var(--brand-green-dark);
  font-size: clamp(3.6rem, 7vw, 5rem);
  line-height: 1;
}

.cash-note {
  margin-top: 4px;
  color: var(--brand-green-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.installment-note {
  margin-top: 8px;
  color: var(--brand-darker);
  font-size: 1.08rem;
  font-weight: 800;
}

.price small {
  margin-top: 10px;
  font-size: 0.88rem;
  line-height: 1.35;
}

.faq {
  width: min(900px, calc(100% - 40px));
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(35, 42, 45, 0.07);
}

details + details {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

details p {
  padding: 0 22px 22px;
  margin: 0;
}

.center {
  text-align: center;
}

.center h2 {
  margin-right: auto;
  margin-left: auto;
}

.whatsapp-help {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
  margin: 22px auto 0;
  padding: 18px 22px;
  color: var(--text);
  background: #f1fbef;
  border: 1px solid rgba(123, 217, 87, 0.65);
  border-radius: var(--radius);
}

.whatsapp-help p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: #fff;
  background: #16b91e;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(22, 185, 30, 0.24);
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  color: #fff;
  background: #19c723;
  transform: translateY(-2px);
}

.site-footer {
  padding: 32px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner img {
  width: 180px;
}

@media (max-width: 980px) {
  .split,
  .method-split,
  .video-testimonial,
  .testimonial-carousel,
  .offer-grid,
  .lucas {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .steps article {
    min-height: 220px;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow,
  .faq {
    width: min(100% - 30px, 1120px);
  }

  .section-dark,
  .section-light,
  .section-muted {
    padding: 52px 0;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand img {
    width: 160px;
  }

  h1 {
    font-size: clamp(1.38rem, 6.15vw, 1.78rem);
  }

  h2 {
    font-size: clamp(1.62rem, 7.4vw, 2.18rem);
    line-height: 1.12;
  }

  h3,
  p {
    overflow-wrap: break-word;
  }

  .hero {
    padding: 34px 0 46px;
  }

  .hero-copy h1 {
    width: min(100%, 330px);
    max-width: 100%;
    margin-bottom: 10px;
    line-height: 1.1;
    text-wrap: balance;
  }

  .mark-highlight,
  .green-highlight {
    padding: 0.04em 0.12em 0.08em;
    line-height: 1.16;
  }

  .hero-subtitle {
    max-width: 320px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .hero-subtitle br {
    display: none;
  }

  .button {
    width: min(100%, 300px);
    min-width: 0;
    min-height: 58px;
    padding: 0 60px 0 18px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .button::after {
    right: 7px;
    width: 44px;
    height: 44px;
    font-size: 1.62rem;
  }

  .hero-actions {
    order: 4;
    align-items: stretch;
    width: 100%;
    margin: 18px 0 0;
  }

  .hero-video {
    order: 3;
    width: min(100%, 300px);
    margin-bottom: 0;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  }
  .youtube-vsl-controls {
    right: 12px;
    bottom: 22px;
    left: 12px;
  }

  .youtube-vsl-controls button {
    width: 42px;
    height: 42px;
    font-size: 0.96rem;
  }
  .youtube-vsl-sound-prompt {
    gap: 6px;
    padding: 14px;
  }

  .youtube-vsl-sound-prompt strong {
    font-size: 1.18rem;
  }

  .youtube-vsl-sound-prompt .sound-icon {
    width: 56px;
    height: 56px;
  }

  .youtube-vsl-sound-prompt em {
    font-size: 1.02rem;
  }

  .cta-stack {
    width: 100%;
  }

  .cta-benefits {
    gap: 10px 16px;
    font-size: 0.84rem;
    line-height: 1.2;
  }

  .section-cta {
    margin-top: 28px;
  }

  .feature-grid,
  .steps,
  .content-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    position: relative;
    padding: 24px 18px 24px 38px;
  }

  .feature-grid {
    gap: 24px;
  }

  .feature-progress {
    position: absolute;
    top: 26px;
    bottom: 26px;
    left: 16px;
    display: block;
    width: 10px;
    margin-top: 0;
    padding-top: 0;
  }

  .feature-progress::before,
  .feature-progress::after {
    top: 0;
    left: 50%;
    right: auto;
    width: 6px;
    height: 100%;
    transform: translateX(-50%);
  }

  .feature-progress span {
    position: absolute;
    left: 50%;
    width: 14px;
    height: 14px;
    border-width: 3px;
    transform: translateX(-50%);
  }

  .feature-progress span:nth-child(1) {
    top: 0;
  }

  .feature-progress span:nth-child(2) {
    top: 33.33%;
  }

  .feature-progress span:nth-child(3) {
    top: 66.66%;
  }

  .feature-progress span:nth-child(4) {
    bottom: 0;
  }

  .feature-card h3 {
    max-width: none;
    min-height: 0;
    margin-bottom: 6px;
    font-size: 1.08rem;
  }

  .feature-card p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .method-split {
    gap: 28px;
    text-align: center;
  }

  .method-title {
    align-items: center;
    gap: 18px;
  }

  .method-kicker {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .method-logo {
    min-height: 118px;
    padding: 20px;
  }

  .method-logo img {
    width: min(100%, 235px);
  }

  .body-copy {
    text-align: left;
  }

  .audience-list {
    columns: 1;
  }

  .audience-intro {
    text-align: left;
  }

  .audience-intro h2,
  .audience-intro p {
    margin-right: 0;
    margin-left: 0;
  }

  .audience-pill-cloud {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-top: 28px;
  }

  .audience-pill-cloud span {
    justify-content: flex-start;
    width: 100%;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.88rem;
    white-space: normal;
  }

  .testimonial-carousel {
    gap: 24px;
    padding: 16px;
  }

  .video-testimonial-frame {
    width: min(78vw, 285px);
  }

  .testimonial-stage {
    min-height: min(82vw, 430px);
  }

  .testimonial-slide.is-prev,
  .testimonial-slide.is-next {
    opacity: 0;
  }

  .testimonial-copy {
    align-items: center;
    text-align: center;
  }

  .testimonial-copy h3 {
    font-size: 1.75rem;
  }

  .testimonial-copy p {
    font-size: 0.98rem;
  }

  .testimonial-controls {
    margin-top: 18px;
  }

  .search-source {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .search-demand-panel {
    margin-top: 28px;
  }

  .search-demand-head {
    display: none;
  }

  .search-demand-list {
    max-height: 360px;
  }

  .search-demand-row {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding: 15px 16px;
  }

  .search-demand-row span {
    grid-column: 1 / -1;
    font-size: 0.98rem;
  }

  .search-demand-row strong {
    font-size: 1.12rem;
  }

  .search-demand-row strong::before {
    color: var(--muted);
    content: "Buscas mensais: ";
    font-size: 0.78rem;
    font-weight: 700;
  }

  .search-demand-row em::before {
    color: var(--muted);
    content: "3 meses: ";
    font-size: 0.78rem;
    font-weight: 700;
  }

  .search-demand-note {
    font-size: 0.98rem;
  }

  .steps {
    gap: 14px;
    margin: 28px 0 28px;
  }

  .steps article,
  .compare-card {
    padding: 22px 20px;
  }

  .steps article {
    min-height: auto;
  }

  .steps span {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
  }

  .comparison {
    gap: 24px;
  }

  .compare-grid {
    gap: 14px;
  }

  .guarantee-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee-icon {
    margin: 0 auto;
  }

  .lucas-photo {
    min-height: 420px;
  }

  .lucas-photo img {
    min-height: 420px;
    object-position: center top;
  }

  .price-box {
    gap: 18px;
    padding: 26px 18px;
  }

  .price-box img {
    width: min(100%, 220px);
  }

  .price {
    width: 100%;
    padding-top: 16px;
  }

  .price .launch-label {
    font-size: 0.9rem;
  }

  .price .old-price {
    font-size: 1.35rem;
  }

  .price strong {
    font-size: clamp(2.9rem, 15vw, 3.45rem);
  }

  .cash-note {
    font-size: 1.05rem;
  }

  .installment-note {
    font-size: 0.98rem;
  }

  .price small {
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}













