/* ============================================================
   MÉTODO COLUNA POWER — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=DM+Sans:wght@400;500;700&display=swap');

/* ── Variáveis ─────────────────────────────────────────────── */
:root {
  --sage:          #6B8F71;
  --sage-dark:     #4A6B50;
  --sage-light:    #A8C5AD;
  --sage-pale:     #EAF2EB;
  --cream:         #F7F4EE;
  --white:         #FFFFFF;
  --charcoal:      #2C3832;
  --charcoal-light:#4A5550;
  --mist:          #D4E0D6;
  --emerald:       #3D7A5A;
  --emerald-light: #EBF5EF;
  --text:          #2C3832;
  --text-muted:    #6B7B70;
  --border:        #D4E0D6;
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'DM Sans', sans-serif;
  --radius-sm:     10px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --shadow-card:   0 8px 32px rgba(44,56,50,.10);
  --shadow-lift:   0 20px 60px rgba(44,56,50,.16);
  --shadow-green:  0 12px 40px rgba(107,143,113,.30);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utilitários ───────────────────────────────────────────── */
.container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: var(--emerald-light);
  color: var(--emerald);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ── Botões ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn--primary {
  background:
    linear-gradient(135deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 38%),
    linear-gradient(135deg, #6f9a6e 0%, #3d7a5a 55%, #245942 100%);
  color: var(--white);
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 18px 40px rgba(61,122,90,.34),
    inset 0 1px 0 rgba(255,255,255,.2);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 15%, rgba(255,255,255,.26) 50%, transparent 85%);
  z-index: 0;
  transform: translateX(-130%);
  transition: transform .7s ease;
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.08);
  z-index: 0;
  pointer-events: none;
}
.btn--primary:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 24px 56px rgba(61,122,90,.42),
    inset 0 1px 0 rgba(255,255,255,.24);
}
.btn--primary:hover::before {
  transform: translateX(130%);
}
.btn--outline {
  background: rgba(255,255,255,.12);
  color: var(--sage);
  border: 2px solid rgba(107,143,113,.4);
  box-shadow: 0 10px 30px rgba(44,56,50,.08);
}
.btn--outline:hover {
  background: rgba(234,242,235,.9);
  transform: translateY(-3px);
}
.btn--full { width: 100%; }
.btn--lg { padding: 22px 40px; font-size: 14px; }

.btn span[aria-hidden="true"] {
  display: inline-flex;
  transition: transform .25s ease;
}

.btn:hover span[aria-hidden="true"] {
  transform: translateX(4px);
}

/* ── Animações de entrada ──────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}
.fade-in.from-left  { transform: translateX(32px); }
.fade-in.from-right { transform: translateX(-32px); }
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── HEADER ────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2f5f46;
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 28px rgba(28,48,36,.18);
  transition: background .4s ease, backdrop-filter .4s ease, border-bottom .4s ease;
}
.header.scrolled {
  background: #2f5f46;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.header__logo-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.header__logo-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.header__logo-name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 6px 18px rgba(15,21,18,.22);
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 88px;
}
.hero__bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .28;
  filter: saturate(.86);
  transform: scale(1.02);
  z-index: 0;
  pointer-events: none;
}
.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero__bg-orb--1 {
  top: -80px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--sage-pale) 0%, transparent 70%);
  opacity: .8;
}
.hero__bg-orb--2 {
  bottom: 5%; left: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--mist) 0%, transparent 70%);
  opacity: .6;
}
.hero__bg-dots {
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image: radial-gradient(var(--sage) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.hero__grid > *,
.error-grid > *,
.included-grid > *,
.pricing-layout > *,
.pricing-highlight-grid > *,
.mockup-stats > * {
  min-width: 0;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero__title em {
  color: var(--sage);
  font-style: italic;
}
.hero__subtitle {
  font-size: 18px;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero__opening {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.hero__opening-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.hero__opening-shell {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0f1512;
  box-shadow: 0 28px 80px rgba(44,56,50,.18);
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
}

.hero__opening-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(15,21,18,0) 28%, rgba(15,21,18,.22) 100%);
  pointer-events: none;
}

.hero__opening-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audio-toggle {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(15,21,18,.72);
  color: var(--white);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
  overflow: hidden;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.audio-toggle__icon {
  display: none;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  pointer-events: none;
}

.audio-toggle__icon svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  max-width: 22px;
  max-height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audio-toggle[aria-pressed="true"] .audio-toggle__icon--on {
  display: inline-flex;
}

.audio-toggle[aria-pressed="false"] .audio-toggle__icon--off {
  display: inline-flex;
}

.audio-toggle:hover {
  transform: translateY(-2px);
  background: rgba(23,33,28,.84);
}

.audio-toggle[aria-pressed="true"] {
  background: rgba(61,122,90,.92);
  border-color: rgba(255,255,255,.26);
}

/* Caixa verde de sintomas */
.symptom-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
  background: linear-gradient(145deg, #3f7f5e 0%, #2f5f46 100%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  margin-bottom: 40px;
  box-shadow: 0 24px 64px rgba(61,122,90,.30);
  overflow: hidden;
}

.symptom-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08) 0%, transparent 44%),
    radial-gradient(circle at top right, rgba(255,255,255,.16) 0%, transparent 34%);
  pointer-events: none;
}

.symptom-box::after {
  content: '';
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 18px;
  width: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
}
.symptom-box__label {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin-bottom: 18px;
}
.symptom-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.symptom-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  padding: 14px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.symptom-list li span {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.symptom-list li span::before {
  content: '\2713';
  font-weight: 700;
}

/* Hero image */
.hero__img-wrap {
  position: relative;
}
.hero__media-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(212,224,214,.8);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(44,56,50,.12);
  width: 100%;
  max-width: 100%;
}

.hero__media-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.hero__media-caption {
  padding: 20px 22px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal-light);
}

.hero__img {
  display: none;
}
.hero__img-overlay {
  display: none;
}
.hero__video-card {
  position: static;
  width: fit-content;
  margin-left: auto;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 16px 48px rgba(44,56,50,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero__play-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--emerald));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-green);
  cursor: pointer;
  border: none;
  transition: transform .3s;
}
.hero__play-btn:hover { transform: scale(1.08); }
.hero__play-icon {
  color: var(--white);
  font-size: 16px;
  margin-left: 4px;
}
.hero__video-info p:first-child {
  font-size: 13px; font-weight: 700; color: var(--charcoal);
}
.hero__video-info p:last-child {
  font-size: 12px; color: var(--text-muted);
}

/* ── SEÇÃO 2 — ERRO COMUM ──────────────────────────────────── */
.section-error {
  background:
    linear-gradient(135deg, #284536 0%, #1f3128 52%, #16211b 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.section-error__orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,143,113,.10) 0%, transparent 70%);
  pointer-events: none;
}
.section-error .section-tag { background: rgba(107,143,113,.15); color: var(--sage-light); }
.error-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Player */
.video-player {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a2420;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  aspect-ratio: 4 / 3;
  position: relative;
  cursor: default;
  width: 100%;
  max-width: 100%;
}
.video-player__inline-video,
.video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Error copy */
.error-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 28px;
}
.error-title em { color: var(--sage-light); font-style: italic; }
.error-support {
  font-size: 16px;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 24px;
}

.education-box {
  background: linear-gradient(135deg, rgba(107,143,113,.22) 0%, rgba(61,122,90,.18) 100%);
  border: 1px solid rgba(168,197,173,.22);
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  margin-bottom: 28px;
}

.education-box__title {
  font-size: 15px;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 16px;
}

.error-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.error-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(107,143,113,.2);
}
.error-card__icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a65, #ff5f57);
  box-shadow: 0 0 18px rgba(255,95,87,.28);
  flex-shrink: 0;
  margin-top: 6px;
}
.error-card p {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}
.error-cta-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--sage-light);
  margin-bottom: 24px;
  line-height: 1.5;
}
.method-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.method-pill {
  padding: 8px 16px;
  background: rgba(107,143,113,.12);
  border: 1px solid rgba(107,143,113,.28);
  border-radius: 50px;
  font-size: 13px;
  color: var(--sage-light);
}

.method-pill::before {
  content: '\2713';
  margin-right: 8px;
  color: var(--white);
  font-weight: 700;
}

/* ── SEÇÃO 3 — COMO FUNCIONA ───────────────────────────────── */
.section-how {
  background: var(--cream);
  padding: 120px 0;
  position: relative;
}
.section-how::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mist), transparent);
}
.section-center { text-align: center; margin-bottom: 72px; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { color: var(--sage); font-style: italic; }
.section-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 56px;
}
.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(247,244,238,.92) 100%);
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(212,224,214,.9);
  box-shadow: 0 18px 48px rgba(44,56,50,.08);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--emerald) 100%);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(61,122,90,.16);
  border-color: var(--sage-light);
}
.step-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.step-card__icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 18px 34px rgba(61,122,90,.22);
  flex-shrink: 0;
}
.step-card__icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.step-card__num-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.step-card__num-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.step-card__num {
  min-width: 58px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(107,143,113,.12);
  border: 1px solid rgba(107,143,113,.18);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: var(--emerald);
}
.step-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 12px;
}
.step-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.step-card--diagnostico .step-card__icon {
  background: linear-gradient(135deg, #5e8f74 0%, #3d7a5a 100%);
}
.step-card--postura .step-card__icon {
  background: linear-gradient(135deg, #699180 0%, #4d6e5b 100%);
}
.step-card--ativacao .step-card__icon {
  background: linear-gradient(135deg, #3f8a66 0%, #2d6e54 100%);
}
.step-card--mobilidade .step-card__icon {
  background: linear-gradient(135deg, #7b9f6e 0%, #537b4f 100%);
}
.step-card--forca .step-card__icon {
  background: linear-gradient(135deg, #4f8f7d 0%, #2e6b60 100%);
}
.step-card--manutencao .step-card__icon {
  background: linear-gradient(135deg, #648d74 0%, #406851 100%);
}
.how-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--emerald) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-green);
}
.how-banner__text p:first-child {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.how-banner__text p:last-child {
  font-size: 15px;
  color: rgba(255,255,255,.8);
}

/* ── SEÇÃO 4 — O QUE ESTÁ INCLUÍDO ────────────────────────── */
.section-included {
  position: relative;
  background: var(--white);
  padding: 120px 0;
  overflow: hidden;
}

.section-included::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.84) 45%, rgba(255,255,255,.90) 100%);
  z-index: 0;
}

.included__bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .16;
  filter: saturate(.88);
  transform: scale(1.03);
  z-index: 0;
  pointer-events: none;
}

.section-included .container {
  position: relative;
  z-index: 1;
}
.included-grid {
  max-width: 980px;
  margin: 0 auto;
}
.included-copy {
  max-width: 100%;
}
.included-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 16px;
}
.included-title em { color: var(--sage); font-style: italic; }
.included-lead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.included-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.included-item {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  border: 1px solid var(--mist);
  transition: transform .2s;
}
.included-item:hover { transform: translateX(6px); }
.included-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(61,122,90,.22);
}

.included-item__icon::before {
  content: '\2713';
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}
.included-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.included-item__desc { font-size: 13px; color: var(--text-muted); }

/* SECAO 5 - DEPOIMENTOS */
.section-testimonials {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(168,197,173,.24) 0%, rgba(168,197,173,0) 34%),
    linear-gradient(180deg, #f7f4ee 0%, #eef4ef 100%);
  overflow: hidden;
}

.section-testimonials::before,
.section-testimonials::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
}

.section-testimonials::before {
  width: 260px;
  height: 260px;
  right: -120px;
  top: 72px;
  background: rgba(107,143,113,.12);
}

.section-testimonials::after {
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: 48px;
  background: rgba(61,122,90,.10);
}

.testimonials-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.testimonials-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 18px;
}

.testimonials-title em {
  color: var(--sage);
  font-style: italic;
}

.testimonials-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}

.testimonials-highlight {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(107,143,113,.18);
  box-shadow: 0 18px 40px rgba(44,56,50,.08);
}

.testimonials-highlight strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--emerald);
}

.testimonials-highlight span {
  display: block;
  color: var(--text-muted);
  line-height: 1.65;
}

.testimonials-carousel {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(255,255,255,.96) 0%, rgba(234,242,235,.96) 100%);
  border: 1px solid rgba(107,143,113,.18);
  box-shadow: var(--shadow-lift);
}

.testimonials-carousel__viewport {
  overflow: hidden;
  border-radius: 24px;
}

.testimonials-carousel__track {
  display: flex;
  transition: transform .7s ease;
  will-change: transform;
}

.testimonials-slide {
  min-width: 100%;
  flex: 0 0 100%;
}

.testimonials-slide__frame {
  min-height: clamp(420px, 58vw, 760px);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(245,249,246,.98) 100%);
  border: 1px solid rgba(212,224,214,.9);
  border-radius: 24px;
}

.testimonials-slide__frame img {
  width: 100%;
  height: 100%;
  max-height: clamp(376px, 52vw, 700px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 36px rgba(44,56,50,.10));
}

.testimonials-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.testimonials-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.testimonials-carousel__dot,
.testimonials-carousel__arrow {
  border: none;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, opacity .25s ease, box-shadow .25s ease;
}

.testimonials-carousel__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(107,143,113,.26);
}

.testimonials-carousel__dot.is-active {
  background: var(--emerald);
  box-shadow: 0 0 0 6px rgba(61,122,90,.12);
}

.testimonials-carousel__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--emerald);
  box-shadow: 0 14px 30px rgba(44,56,50,.10);
  font-size: 18px;
}

.testimonials-carousel__dot:hover,
.testimonials-carousel__arrow:hover {
  transform: translateY(-2px);
}

.testimonials-carousel__dot:focus-visible,
.testimonials-carousel__arrow:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
}

/* Mockup produto */
.product-mockup {
  position: relative;
}
.mockup-screen {
  background: linear-gradient(145deg, var(--sage-pale) 0%, var(--mist) 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lift);
  width: 100%;
  max-width: 100%;
}
.mockup-window {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}
.mockup-dots { display: flex; gap: 6px; margin-bottom: 16px; }
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.mockup-thumb {
  width: 80px; height: 58px;
  background: linear-gradient(135deg, var(--sage), var(--emerald));
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.mockup-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.mockup-line {
  height: 9px;
  background: var(--mist);
  border-radius: 4px;
}
.mockup-line--sm { width: 60%; }
.mockup-line--md { width: 80%; }
.mockup-line--lg { width: 95%; }
.mockup-items { display: flex; flex-direction: column; gap: 4px; }
.mockup-item {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  align-items: center;
}
.mockup-item--active { background: var(--sage-pale); }
.mockup-item__icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
}
.mockup-item__icon--active { background: var(--sage); }
.mockup-item__icon--default { background: var(--mist); }
.mockup-item__lines { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.mockup-item__badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.mockup-item__badge--active {
  background: linear-gradient(135deg, var(--sage), var(--emerald));
  color: var(--white);
}
.mockup-item__badge--default { background: var(--mist); color: var(--text-muted); }
.mockup-stats {
  display: flex;
  gap: 10px;
}
.mockup-stat {
  flex: 1;
  padding: 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  text-align: center;
}
.mockup-stat__value {
  font-size: 20px;
  font-weight: 700;
  color: var(--sage);
}
.mockup-stat__label {
  font-size: 11px;
  color: var(--text-muted);
}
.mockup-badge {
  position: absolute;
  top: -20px; right: -20px;
  background: var(--emerald);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(61,122,90,.35);
}
.mockup-badge__stars { font-size: 12px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.mockup-badge__text { font-size: 11px; color: rgba(255,255,255,.8); }

/* ── SEÇÃO 5 — PREÇO ──────────────────────────────────────── */
.section-pricing {
  background: linear-gradient(180deg, var(--sage-pale) 0%, var(--cream) 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.section-pricing__orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,143,113,.07) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-wrap {
  max-width: 1320px;
  margin: 0 auto;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 36px;
  align-items: stretch;
}

.pricing-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}

.pricing-title em { color: var(--sage); font-style: italic; }

.pricing-lead {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.7;
}

.pricing-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.pricing-highlight-card {
  position: relative;
  padding: 22px 18px 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(168,197,173,.38);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(61,122,90,.10);
  overflow: hidden;
}

.pricing-highlight-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--sage) 0%, var(--emerald) 100%);
}

.pricing-highlight-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.pricing-highlight-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.pricing-note-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(61,122,90,.12) 0%, rgba(107,143,113,.05) 100%);
  border: 1px solid rgba(107,143,113,.22);
}

.pricing-note-strip__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-note-strip p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal-light);
}

.pricing-card {
  background: linear-gradient(160deg, rgba(255,255,255,.96) 0%, rgba(247,244,238,.94) 100%);
  border-radius: 30px;
  padding: 34px 34px 30px;
  box-shadow: 0 34px 90px rgba(61,122,90,.16), inset 0 1px 0 rgba(255,255,255,.8);
  border: 1px solid rgba(168,197,173,.34);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(107,143,113,.18) 0%, transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.14) 0%, transparent 28%);
  pointer-events: none;
}

.pricing-card__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, #e6f6eb 0%, #d4ebd8 100%);
  color: var(--emerald);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid rgba(61,122,90,.12);
  box-shadow: 0 12px 28px rgba(61,122,90,.12);
}

.pricing-card__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 10px;
}

.pricing-card__headline {
  max-width: 440px;
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.18;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.pricing-card__price-wrap {
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(168,197,173,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  margin-bottom: 20px;
}

.pricing-card__old {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-card__currency {
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
}

.pricing-card__amount {
  font-family: var(--font-serif);
  font-size: 96px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: .92;
}

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

.pricing-card__installment strong { color: var(--sage); }

.pricing-card__divider {
  height: 1px;
  margin: 20px 0 22px;
  background: linear-gradient(90deg, transparent 0%, rgba(168,197,173,.7) 20%, rgba(168,197,173,.7) 80%, transparent 100%);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}

.pricing-features li {
  font-size: 15px;
  color: var(--charcoal-light);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,.64);
  border-radius: 16px;
  border: 1px solid rgba(212,224,214,.65);
}

.pricing-features li::before {
  content: '\2713';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage), var(--emerald));
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card__cta-wrap {
  margin-bottom: 18px;
}

.pricing-card__cta-note {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
}

.pricing-card__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.pricing-card__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(61,122,90,.08);
  color: var(--emerald);
  font-size: 12px;
  font-weight: 700;
}

.pricing-card__trust-item::before {
  content: '\25CF';
  font-size: 8px;
}

.pricing-card__guarantee {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 12px;
}

.pricing-card__guarantee::before {
  content: '\2713';
  margin-right: 6px;
  color: var(--sage);
  font-weight: 700;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  padding: 48px 24px;
  text-align: center;
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer__credit {
  font-size: 12px;
  color: rgba(255,255,255,.62);
  letter-spacing: .04em;
}

/* ── RESPONSIVIDADE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero__grid { gap: 42px; padding: 64px 0; }
  .error-grid,
  .included-grid,
  .testimonials-grid { gap: 52px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .hero__grid,
  .error-grid,
  .testimonials-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-copy {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .testimonials-carousel {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .pricing-highlight-grid { grid-template-columns: 1fr; }
  .pricing-note-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .pricing-note-strip__label,
  .pricing-card__badge {
    max-width: 100%;
  }
  .hero__video-card { position: static; margin-top: 16px; }
  .how-banner { flex-direction: column; text-align: center; }
  .mockup-badge { display: none; }
}

@media (max-width: 768px) {
  .testimonials-grid {
    justify-items: center;
  }
  .section-testimonials .fade-in,
  .section-testimonials .fade-in.from-left,
  .section-testimonials .fade-in.from-right {
    opacity: 1;
    transform: none;
  }
  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    max-width: 100%;
  }
  .hero__title,
  .section-title,
  .included-title,
  .pricing-title,
  .error-title,
  .pricing-card__headline,
  .pricing-card__installment,
  .pricing-note-strip p,
  .footer__copy,
  .footer__credit,
  .error-card p,
  .included-item__desc,
  .pricing-features li {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .section-tag,
  .pricing-note-strip__label,
  .pricing-card__badge,
  .pricing-card__trust-item,
  .mockup-item__badge,
  .method-pill {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .header {
    padding: 12px 16px;
    gap: 10px;
  }
  .header__logo-title {
    gap: 8px;
    row-gap: 6px;
  }
  .header__logo-kicker {
    font-size: 11px;
    padding: 5px 10px;
    letter-spacing: .14em;
  }
  .header__logo-name {
    font-size: clamp(18px, 5.4vw, 24px);
    letter-spacing: .04em;
  }
  .header .btn {
    display: inline-flex;
    padding: 12px 16px;
    font-size: 11px;
    letter-spacing: .08em;
  }
  .hero {
    min-height: auto;
    padding-top: 82px;
  }
  .hero__opening { margin-bottom: 26px; }
  .hero__opening-cta { margin-top: 16px; }
  .hero__opening-shell,
  .hero__media-card,
  .video-player { border-radius: 22px; }
  .audio-toggle {
    width: 48px;
    height: 48px;
    right: 14px;
    bottom: 14px;
  }
  .audio-toggle__icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
  .audio-toggle__icon svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
  }
  .hero__opening-cta .btn,
  .section-included .btn,
  .how-banner .btn,
  .pricing-card__cta-wrap .btn {
    width: 100%;
    max-width: 100%;
  }
  .hero__grid { padding: 40px 0 24px; }
  .hero__title { line-height: 1.18; margin-bottom: 18px; }
  .hero__subtitle { font-size: 16px; margin-bottom: 22px; }
  .symptom-box {
    min-height: auto;
    padding: 28px 24px 28px 28px;
    margin-bottom: 24px;
  }
  .symptom-list { gap: 12px; }
  .symptom-list li {
    font-size: 16px;
    padding: 12px 14px;
  }
  .hero__media-image { aspect-ratio: 16 / 9; }
  .hero__media-caption {
    padding: 18px 18px 20px;
    font-size: 14px;
  }
  .section-error,
  .section-how,
  .section-included,
  .section-testimonials,
  .section-pricing { padding: 92px 0; }
  .section-center { margin-bottom: 48px; }
  .section-lead,
  .included-lead,
  .pricing-lead,
  .error-cta-text { font-size: 16px; }
  .error-card,
  .included-item { padding: 14px 14px; }
  .included-item {
    gap: 12px;
    align-items: flex-start;
  }
  .included-item__icon {
    width: 38px;
    height: 38px;
  }
  .section-testimonials {
    background:
      radial-gradient(circle at top center, rgba(168,197,173,.22) 0%, rgba(168,197,173,0) 36%),
      linear-gradient(180deg, #eff4ef 0%, #f7f4ee 100%);
  }
  .section-testimonials::before,
  .section-testimonials::after {
    display: none;
  }
  .testimonials-copy {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
  }
  .testimonials-carousel {
    width: min(100%, 380px);
    max-width: 100%;
    margin: 0 auto;
    padding: 14px;
    border-radius: 30px;
    background: linear-gradient(180deg, #314b3d 0%, #24392d 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow:
      0 24px 60px rgba(36,57,45,.28),
      inset 0 1px 0 rgba(255,255,255,.14);
  }
  .testimonials-carousel__viewport {
    width: 100%;
  }
  .testimonials-slide {
    display: flex;
    justify-content: center;
  }
  .testimonials-slide__frame {
    width: 100%;
    min-height: min(74vh, 680px);
    min-height: min(74svh, 680px);
    aspect-ratio: 9 / 16;
    padding: 10px;
    border-radius: 22px;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(247,244,238,.98) 0%, rgba(233,241,235,.98) 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
  }
  .testimonials-slide__frame img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .testimonials-carousel__controls {
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
  }
  .testimonials-carousel__dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,.24);
  }
  .testimonials-carousel__dot.is-active {
    background: var(--white);
    box-shadow: 0 0 0 5px rgba(255,255,255,.12);
  }
  .testimonials-carousel__arrow {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.12);
    color: var(--white);
    box-shadow: none;
  }
  .mockup-screen {
    padding: 20px;
    border-radius: 22px;
  }
  .mockup-window { padding: 16px; }
  .pricing-card {
    padding: 30px 22px 24px;
    border-radius: 24px;
  }
  .pricing-card__badge {
    position: static;
    display: inline-flex;
    justify-content: center;
    width: 100%;
    white-space: normal;
    text-align: center;
    margin-bottom: 18px;
  }
  .pricing-card__headline {
    font-size: 28px;
    max-width: none;
    text-align: center;
  }
  .pricing-card__eyebrow,
  .pricing-card__old,
  .pricing-card__installment {
    text-align: center;
  }
  .pricing-card__price-wrap {
    padding: 18px 18px 16px;
  }
  .pricing-card__price {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pricing-note-strip {
    padding: 16px 18px;
    border-radius: 20px;
  }
  .pricing-note-strip__label {
    white-space: normal;
    text-align: center;
  }
  .pricing-card__trust-item {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .pricing-card__guarantee { text-align: center; }
  .step-card {
    padding: 24px 22px;
    border-radius: 22px;
  }
  .step-card__top { align-items: flex-start; }
  .step-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }
  .step-card__title { font-size: 18px; }
  .step-card__desc { font-size: 14px; }
  .video-player { aspect-ratio: 16 / 10; }
  .how-banner { padding: 26px 20px; }
  .pricing-card__amount { font-size: 72px; }
  .pricing-card__badge {
    font-size: 11px;
    padding: 7px 18px;
  }
  .btn--lg { padding: 16px 24px; font-size: 13px; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .header {
    padding: 12px 14px;
  }
  .header__logo-title {
    gap: 6px 8px;
    flex-direction: column;
  }
  .header__logo-kicker {
    font-size: 10px;
    padding: 5px 8px;
    letter-spacing: .12em;
  }
  .header__logo-name { font-size: clamp(18px, 6vw, 22px); }
  .steps-grid { grid-template-columns: 1fr; }
  .hero {
    padding-top: 78px;
  }
  .hero__opening {
    margin-bottom: 22px;
  }
  .hero__opening-shell {
    border-radius: 18px;
    aspect-ratio: 16 / 12;
  }
  .hero__opening-cta { margin-top: 14px; }
  .hero__grid {
    gap: 32px;
    padding: 30px 0 20px;
  }
  .section-error,
  .section-how,
  .section-included,
  .section-testimonials,
  .section-pricing { padding: 76px 0; }
  .hero__title { font-size: clamp(30px, 8.2vw, 40px); }
  .hero__media-image { aspect-ratio: 16 / 10; }
  .video-player { aspect-ratio: 16 / 12; }
  .section-center { margin-bottom: 40px; }
  .section-lead,
  .included-lead,
  .pricing-lead,
  .error-support,
  .error-cta-text { font-size: 15px; }
  .pricing-wrap { max-width: 100%; }
  .pricing-highlight-card {
    padding: 18px 16px 16px;
    border-radius: 18px;
  }
  .pricing-card__headline { font-size: 24px; }
  .pricing-card__price { justify-content: center; }
  .pricing-card {
    padding: 26px 16px 22px;
  }
  .testimonials-carousel {
    width: 100%;
    max-width: 380px;
    padding: 14px;
    border-radius: 30px;
  }
  .testimonials-carousel__viewport,
  .testimonials-slide__frame {
    border-radius: 22px;
  }
  .testimonials-slide__frame {
    width: 100%;
    min-height: 520px;
    aspect-ratio: 9 / 16;
    padding: 10px;
  }
  .testimonials-slide__frame img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .testimonials-carousel__controls {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .testimonials-carousel__dots {
    order: -1;
    width: 100%;
    gap: 8px;
  }
  .testimonials-carousel__arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .pricing-card__price-wrap {
    padding: 16px 14px;
  }
  .how-banner {
    padding: 22px 16px;
  }
  .audio-toggle {
    width: 44px;
    height: 44px;
    right: 10px;
    bottom: 10px;
  }
  .audio-toggle__icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
  .audio-toggle__icon svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    max-width: 18px;
    max-height: 18px;
  }
  .step-card__top {
    align-items: flex-start;
  }
  .step-card__num-wrap {
    align-items: flex-start;
  }
  .mockup-screen { padding: 16px; }
  .mockup-window { padding: 14px; }
  .mockup-row {
    gap: 10px;
    margin-bottom: 14px;
  }
  .mockup-thumb {
    width: 64px;
    height: 48px;
  }
  .mockup-stats {
    flex-direction: column;
  }
  .hero__video-card {
    left: 0;
    right: 0;
    border-radius: 14px;
    padding: 12px;
    gap: 10px;
  }
  .hero__play-btn { width: 44px; height: 44px; }
  .hero__video-info p:first-child { font-size: 12px; }
  .hero__video-info p:last-child { font-size: 11px; }
  .section-title,
  .included-title,
  .pricing-title,
  .error-title { font-size: clamp(25px, 8vw, 34px); }
  .pricing-card__amount { font-size: 58px; }
  .pricing-card__currency { font-size: 24px; }
  .pricing-features li {
    font-size: 14px;
    padding: 12px;
  }
  .pricing-card__cta-note { font-size: 12px; }
  .method-pill { font-size: 12px; }
  .footer { padding: 38px 16px; }
  .footer__copy,
  .footer__credit { line-height: 1.6; }
}

@media (max-width: 480px) {
  .audio-toggle {
    width: 40px;
    height: 40px;
    right: 8px;
    bottom: 8px;
  }
  .audio-toggle__icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }
  .audio-toggle__icon svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
  }
  .header .btn {
    font-size: 10px;
    padding: 10px 12px;
  }
  .pricing-card__trust-item {
    width: 100%;
    justify-content: center;
  }
  .section-tag {
    font-size: 11px;
    letter-spacing: .1em;
    padding: 6px 14px;
  }
  .hero__subtitle { font-size: 15px; }
  .symptom-box {
    min-height: auto;
    padding: 24px 18px 24px 22px;
  }
  .symptom-box::after {
    left: 12px;
    top: 18px;
    bottom: 18px;
  }
  .symptom-list li { font-size: 15px; }
  .pricing-card__badge {
    font-size: 10px;
    padding: 6px 12px;
    max-width: calc(100% - 32px);
    text-align: center;
  }
  .pricing-card__amount { font-size: 52px; }
}
