:root {
  --orange: #f2a04b;
  --orange-soft: #fde8c7;
  --cream: #f3ebd7;
  --cream-soft: #f7f1e0;
  --cream-deep: #eee3c6;
  --ink: #0e1526;
  --ink-soft: #1a2333;
  --muted: #6b7382;
  --blue: #cfe4f3;
  --green: #22c55e;
  --green-dark: #16a34a;
  --red: #c52225;
  --white: #ffffff;
  --border: rgba(14, 21, 38, 0.08);
  --font-display: "Gabarito", sans-serif;
  --font-body: "Manrope", sans-serif;
  --shadow-green: 0 6px 9px rgba(34, 197, 94, 0.35);
  --shadow-card: 0 20px 50px rgba(14, 21, 38, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  color: var(--ink-soft);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
iframe {
  display: block;
}

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

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

button {
  color: inherit;
  font: inherit;
}

ul {
  list-style: none;
}

.gtm-frame {
  display: none;
  visibility: hidden;
}

html[data-experiment-variant="B"] main {
  display: flex;
  flex-direction: column;
}

html[data-experiment-variant="B"] .hero {
  order: 1;
}

html[data-experiment-variant="B"] .stats {
  order: 2;
}

html[data-experiment-variant="B"] .founder-offer {
  order: 3;
}

html[data-experiment-variant="B"] .trial {
  order: 4;
}

html[data-experiment-variant="B"] .problem {
  order: 5;
}

html[data-experiment-variant="B"] .features {
  order: 6;
}

html[data-experiment-variant="B"] .how {
  order: 7;
}

html[data-experiment-variant="B"] .urgency {
  order: 8;
}

html[data-experiment-variant="B"] .about {
  order: 9;
}

html[data-experiment-variant="B"] .faq {
  order: 10;
}

html[data-experiment-variant="B"] .final-cta {
  order: 11;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: 24px;
}

h1,
h2,
h3,
.stat-item strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(38px, 3.56vw, 51.2px);
  line-height: 1.08;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
}

.title-line {
  display: block;
}

.title-accent {
  color: var(--green);
  font-style: normal;
}

.heading-mixed {
  font-weight: 500;
}

.heading-mixed strong {
  font-weight: 800;
}

.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.faq-button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 10px 18px rgba(34, 197, 94, 0.32);
}

.btn-dark {
  color: var(--white);
  background: var(--ink);
}

.btn-red {
  width: 100%;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 6px 9px rgba(197, 34, 37, 0.35);
}

.btn-red:hover {
  background: #a91c20;
}

.btn-text {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-weight: 600;
}

.pill {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  padding: 8px 19px;
  border: 1px solid rgba(14, 21, 38, 0.06);
  border-radius: 999px;
  color: var(--ink);
  background: var(--cream-deep);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  white-space: normal;
}

.pill-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--orange);
}

.pill-light {
  background: rgba(255, 255, 255, 0.64);
}

.pill-red {
  color: #eeeeee;
  background: #dc2626;
}

.pill-dark {
  color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.09);
}

.section-white,
.section-cream,
.section-blue {
  padding-block: 120px;
}

.section-white {
  background: var(--white);
}

.section-cream {
  background: var(--cream-soft);
}

.section-blue {
  background: var(--blue);
}

.section-heading {
  display: flex;
  max-width: 1192px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-heading .pill {
  margin-bottom: 19px;
}

.section-heading p {
  max-width: 560px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.section-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.section-note {
  color: var(--muted);
  font-size: 13px;
}

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

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  background: var(--cream);
}

.header-inner {
  display: flex;
  min-height: 93px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: block;
  width: 164px;
  flex: 0 0 164px;
}

.brand img {
  width: 164px;
  height: 36px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(40px, 12vw, 180px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  position: relative;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.btn-header {
  width: 273px;
  flex: 0 0 273px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 10px;
  background: rgba(14, 21, 38, 0.05);
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 56px 88px;
  background: var(--cream);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -42%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 160, 75, 0.25), rgba(242, 160, 75, 0) 67%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 635px;
  align-items: center;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 14px;
}

.hero h1 {
  max-width: 578px;
  font-size: clamp(54px, 4.2vw, 60px);
  line-height: 1.05;
}

.hero-lead {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.hero-points li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.hero-video {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 596 / 427;
  background: #d9d9d9;
  box-shadow: 0 18px 45px rgba(14, 21, 38, 0.14);
}

.hero-video iframe,
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Stats */
.stats {
  padding-block: 39px 40px;
  background: var(--orange);
}

.stats-grid {
  display: grid;
  align-items: end;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-item {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  gap: 8px;
  padding-inline: 16px;
  text-align: center;
}

.stat-item strong {
  font-size: 41.6px;
  line-height: 1;
}

.stat-item span {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.stat-intro strong {
  font-size: 25.6px;
  line-height: 1.15;
}

/* Problem */
.problem-grid {
  min-height: 669px;
}

.problem-photo {
  height: 634px;
  overflow: hidden;
  border-radius: 22px;
}

.problem-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.problem-content .heading-mixed {
  font-weight: 500;
}

.problem-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.problem-list li > span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  color: #dc2626;
  background: #fee2e2;
  font-size: 15px;
  font-weight: 800;
}

/* Features */
.features-grid {
  display: grid;
  margin-top: 56px;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  min-height: 265px;
  padding: 36px;
  border: 1px solid rgba(14, 21, 38, 0.06);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(14, 21, 38, 0.04);
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 13px;
  color: var(--orange);
  background: var(--orange-soft);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* How it works */
.how {
  padding-block: 120px;
}

.steps-grid {
  display: grid;
  margin-top: 76px;
  gap: 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  text-align: center;
}

.step-number {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 10px 18px rgba(242, 160, 75, 0.24);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 14px;
}

.step-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.how .section-action {
  margin-top: 60px;
}

.how-heading {
  font-weight: 500;
}

/* Urgency and map */
.urgency {
  background: var(--green);
}

.urgency-grid {
  display: grid;
  min-height: 422px;
  align-items: center;
  gap: 64px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.urgency-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.urgency h2 {
  max-width: 560px;
}

.urgency p {
  max-width: 560px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.65;
}

.urgency .btn {
  margin-top: 28px;
}

.map-frame {
  width: 100%;
  height: 336px;
  overflow: hidden;
  border: 1px solid rgba(14, 21, 38, 0.14);
  background: #d9d9d9;
}

/* Founder offer */
.offer-grid {
  display: grid;
  align-items: center;
  gap: 56px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-copy > p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.offer-copy h2 {
  margin-top: 18px;
}

.offer-copy .heading-mixed {
  font-weight: 600;
}

.offer-list {
  display: flex;
  margin-top: 54px;
  flex-direction: column;
  gap: 18px;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
}

.offer-list li > span {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.offer-warning {
  margin-top: 18px;
  padding: 13px;
  border: 1px dashed var(--orange);
  border-radius: 14px;
  background: rgba(220, 38, 38, 0.22);
  font-size: 13px;
  line-height: 1.5;
}

.offer-card {
  padding: 40px;
  border-radius: 24px;
  color: rgba(255, 255, 255, 0.85);
  background: var(--ink);
  box-shadow: 0 24px 30px rgba(14, 21, 38, 0.18);
}

.offer-card-tag {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 40px;
  line-height: 1.26;
}

.offer-card > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.55;
}

.offer-card ul {
  display: flex;
  margin-block: 28px;
  flex-direction: column;
  gap: 16px;
}

.offer-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.55;
}

.offer-card li span {
  color: var(--green);
  font-weight: 800;
}

/* Trial */
.trial {
  min-height: 1060px;
  padding-block: 96px;
  color: rgba(255, 255, 255, 0.65);
  background: var(--ink);
}

.trial-inner {
  display: flex;
  max-width: 668px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.trial-number {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.trial-number strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.trial-number span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.trial-tag {
  margin-top: 28px;
  padding: 6px 15px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--cream-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trial h2 {
  margin-top: 13px;
  color: var(--white);
}

.trial-inner > p {
  max-width: 560px;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
}

.trial-list {
  display: flex;
  width: 400px;
  max-width: 100%;
  margin-top: 30px;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.trial-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.trial-list span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border: 1px solid rgba(242, 160, 75, 0.35);
  border-radius: 50%;
  color: var(--orange);
  background: rgba(242, 160, 75, 0.14);
  font-size: 11px;
}

.btn-trial {
  min-width: 373px;
  margin-top: 34px;
  color: #000000;
  font-size: 18px;
}

.trial small {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

/* About */
.about-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
}

.about-photo {
  height: 603px;
  overflow: hidden;
  border-radius: 22px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.about-content blockquote {
  padding: 8px 0 8px 21px;
  border-left: 3px solid var(--orange);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

.about-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-author > span {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: var(--orange);
}

.about-author div {
  display: flex;
  flex-direction: column;
}

.about-author strong {
  color: var(--ink);
  font-size: 14px;
}

.about-author small {
  color: var(--muted);
  font-size: 12px;
}

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

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.about-list span {
  color: var(--orange);
  font-weight: 800;
}

/* FAQ */
.faq-container {
  max-width: 980px;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(14, 21, 38, 0.06);
  border-radius: 16px;
  background: var(--white);
}

.faq-button {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-align: left;
}

.faq-button b {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-deep);
  font-size: 17px;
  transition: transform 180ms ease;
}

.faq-button[aria-expanded="true"] b {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq .section-action {
  margin-top: 32px;
}

/* Final CTA and footer */
.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 110px 123px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--ink);
}

.final-cta::after {
  position: absolute;
  right: -20%;
  bottom: -480px;
  left: -20%;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  content: "";
}

.final-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin-top: 19px;
  color: var(--white);
}

.final-cta h2 em {
  color: var(--orange);
  font-style: normal;
}

.final-cta p {
  max-width: 560px;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
}

.final-cta .btn {
  margin-top: 20px;
}

.final-cta small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.35);
  background: #182235;
}

.footer-inner {
  display: flex;
  min-height: 85px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
}

.footer-inner a::before {
  margin-right: 10px;
  content: "•";
}

.footer-inner a:hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 20px 45px rgba(34, 197, 94, 0.48), 0 8px 18px rgba(14, 21, 38, 0.18);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
}

@media (max-width: 1120px) {
  .nav-menu {
    gap: 40px;
  }

  .nav-links {
    gap: 22px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .offer-card h3 {
    font-size: 34px;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 92px;
  }

  .site-header {
    position: sticky;
    top: 0;
    box-shadow: 0 1px 0 rgba(14, 21, 38, 0.08);
  }

  .header-inner {
    min-height: 78px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 22px 24px 28px;
    border-top: 1px solid rgba(14, 21, 38, 0.08);
    background: var(--cream);
    box-shadow: 0 18px 35px rgba(14, 21, 38, 0.12);
  }

  .nav-menu.is-open {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-links a {
    padding-block: 13px;
    border-bottom: 1px solid rgba(14, 21, 38, 0.08);
  }

  .btn-header {
    width: 100%;
    flex-basis: auto;
  }

  .hero-grid,
  .split-grid,
  .urgency-grid,
  .offer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid {
    width: 100%;
    min-height: 0;
    gap: 54px;
  }

  .hero-content,
  .hero-video {
    min-width: 0;
  }

  .hero-content {
    max-width: 680px;
  }

  .hero-video {
    max-width: 680px;
  }

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

  .problem-photo,
  .about-photo {
    max-width: 600px;
    justify-self: center;
  }

  .problem-content,
  .about-content {
    max-width: 680px;
  }

  .problem-grid {
    min-height: 0;
  }

  .steps-grid {
    gap: 56px;
    grid-template-columns: 1fr;
  }

  .step-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .urgency-grid {
    padding-block: 72px;
  }

  .map-frame {
    height: 390px;
  }

  .offer-grid {
    max-width: 680px;
  }

  .offer-list {
    margin-top: 36px;
  }
}

@media (max-width: 680px) {
  .container {
    padding-inline: 20px;
  }

  .section-white,
  .section-cream,
  .section-blue,
  .how {
    padding-block: 76px;
  }

  h2 {
    font-size: 38px;
  }

  .brand,
  .brand img {
    width: 148px;
  }

  .brand {
    flex-basis: 148px;
  }

  .hero {
    padding-block: 44px 64px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    gap: 10px 16px;
  }

  .hero-points li {
    font-size: 12px;
  }

  .stats {
    padding-block: 48px;
  }

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

  .stat-item {
    padding-block: 18px;
    border-bottom: 1px solid rgba(14, 21, 38, 0.12);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .problem-photo,
  .about-photo {
    width: 100%;
    height: 470px;
  }

  .problem-grid,
  .about-grid {
    gap: 48px;
  }

  .features-grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
    padding: 28px;
  }

  .section-action .btn {
    width: 100%;
  }

  .steps-grid {
    margin-top: 56px;
  }

  .how .section-action {
    margin-top: 46px;
  }

  .urgency h2 {
    font-size: 40px;
  }

  .map-frame {
    height: 320px;
  }

  .offer-card {
    padding: 30px 24px;
  }

  .offer-card h3 {
    font-size: 34px;
  }

  .trial {
    min-height: 0;
    padding-block: 76px;
  }

  .trial-number strong {
    font-size: 112px;
  }

  .trial h2 {
    font-size: 40px;
  }

  .trial-inner > p {
    font-size: 15px;
  }

  .btn-trial {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }

  .about-content blockquote {
    font-size: 15px;
  }

  .faq-container {
    padding-inline: 14px;
  }

  .faq-list {
    margin-top: 36px;
  }

  .faq-button {
    min-height: 66px;
    padding: 16px;
  }

  .faq-answer {
    padding: 0 16px 18px;
  }

  .final-cta {
    padding-block: 84px;
  }

  .final-cta h2 {
    font-size: 40px;
  }

  .final-cta .btn {
    width: 100%;
  }

  .footer-inner {
    min-height: 100px;
    flex-direction: column;
    gap: 4px;
  }

  .footer-inner a::before {
    display: none;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
