/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #1aab87;
  --green-dark: #138a6c;
  --orange: #f7941d;
  --orange-dark: #d97b0c;
  --bg: #f5f7fa;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOPBAR ===== */
.topbar {
  background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.03em;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: white;
  box-shadow: 0 6px 24px rgba(247, 148, 29, 0.45);
}

.btn--primary:hover {
  box-shadow: 0 10px 32px rgba(247, 148, 29, 0.55);
}

.btn--green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(26, 171, 135, 0.40);
}

.btn--green:hover {
  box-shadow: 0 10px 28px rgba(26, 171, 135, 0.50);
}

.btn--orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.45);
}

.btn--orange:hover {
  box-shadow: 0 10px 28px rgba(247, 148, 29, 0.55);
}

.btn--lg {
  padding: 20px 48px;
  font-size: 1.15rem;
}

.btn--full {
  width: 100%;
  display: block;
}

/* Pulse animation */
@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.6);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(247, 148, 29, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(247, 148, 29, 0);
  }
}

.pulse {
  animation: pulse-shadow 2s infinite;
}

/* ===== SECTION HELPERS ===== */
.section__tag {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section__title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section__sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 48px;
}

.highlight {
  color: var(--green);
}

.highlight-orange {
  color: var(--orange);
}

.strike {
  text-decoration: line-through;
  color: #999;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2f44 60%, #0f3460 100%);
  color: white;
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(26, 171, 135, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__tag {
  display: inline-block;
  background: rgba(26, 171, 135, 0.18);
  border: 1px solid rgba(26, 171, 135, 0.4);
  color: #5ef0c8;
  border-radius: 50px;
  padding: 7px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero__headline {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  margin: 0 auto 36px;
}

.hero__trust {
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.br-lg {
  display: none;
}

@media (min-width: 768px) {
  .br-lg {
    display: inline;
  }
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: white;
  padding: 80px 0;
  text-align: center;
}

.video-mockup {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  position: relative;
  cursor: pointer;
}

.video-mockup__thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  inset: 0;
}

.video-play-btn svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s;
}

.video-mockup:hover .video-play-btn svg {
  transform: scale(1.1);
}

.video-mockup__overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.video-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hidden {
  display: none;
}

/* ===== PAIN SECTION ===== */
.pain-section {
  background: linear-gradient(135deg, #fff1f1 0%, #fff8f0 100%);
  padding: 80px 0;
}

.pain-section .section__title {
  color: #c0392b;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.pain-card {
  background: white;
  border-radius: 14px;
  padding: 20px 24px;
  border-left: 4px solid #e74c3c;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}

.pain-card:hover {
  transform: translateY(-3px);
}

.pain-cta {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text);
}

/* ===== RECEIVE SECTION ===== */
.receive-section {
  padding: 90px 0;
  background: white;
}

.receive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.receive-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(26, 171, 135, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.receive-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.receive-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.receive-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.receive-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
}

/* ===== BONUS SECTION ===== */
.bonus-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  padding: 90px 0;
}

.bonus-section .section__tag {
  color: #5ef0c8;
}

.bonus-section .section__title {
  color: white;
}

.bonus-section .section__sub {
  color: rgba(255, 255, 255, 0.7);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  color: white;
  backdrop-filter: blur(10px);
  transition: transform 0.2s, background 0.2s;
}

.bonus-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.bonus-card--hot {
  border-color: rgba(247, 148, 29, 0.5);
  background: rgba(247, 148, 29, 0.08);
}

.bonus-badge {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.bonus-badge--hot {
  background: var(--orange);
}

.bonus-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.bonus-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.bonus-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 16px;
}

.bonus-value {
  font-size: 0.9rem;
}

.bonus-value strong {
  color: #5ef0c8;
}

/* ===== PREVIEW / GALLERY SECTION ===== */
.preview-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f0faf7 0%, #fff 100%);
}

.preview-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.preview-tab {
  background: white;
  border: 2px solid rgba(26, 171, 135, 0.25);
  border-radius: 50px;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.preview-tab:hover {
  border-color: var(--green);
  color: var(--green);
}

.preview-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.preview-slides {
  position: relative;
  min-height: 300px;
}

.preview-slide {
  display: none;
  animation: fadeSlide 0.4s ease;
}

.preview-slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preview-img-wrap {
  background: #1a1a2e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
  border: 2px solid rgba(26, 171, 135, 0.2);
}

.preview-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s;
}

.preview-img-wrap:hover img {
  transform: scale(1.015);
}

.preview-caption {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.preview-caption h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.preview-caption p {
  font-size: 0.97rem;
  color: var(--text-muted);
}

.preview-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26, 171, 135, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.preview-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

/* ===== PLANS SECTION ===== */
.plans-section {
  padding: 90px 0;
  background: var(--bg);
}

/* ===== PREMIUM PLAN CARDS (pcard) ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 32px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto 52px;
}

.pcard {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.12);
  background: white;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.18);
}

/* Green card */
.pcard--green {
  border: 2px solid rgba(26, 171, 135, 0.3);
}

.pcard--green:hover {
  box-shadow: 0 28px 72px rgba(26, 171, 135, 0.25);
}

/* Orange card */
.pcard--orange {
  border: 2px solid var(--orange);
  box-shadow: 0 16px 56px rgba(247, 148, 29, 0.2);
}

.pcard--orange:hover {
  box-shadow: 0 28px 72px rgba(247, 148, 29, 0.35);
}

/* MAIS POPULAR badge */
.pcard__badge {
  background: linear-gradient(90deg, #ff6b00 0%, var(--orange) 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  padding: 9px 16px;
}

/* card top / header */
.pcard__top {
  background: linear-gradient(135deg, #0d2a1f 0%, #1aab87 100%);
  padding: 32px 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pcard__top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.pcard__top--orange {
  background: linear-gradient(135deg, #7a2d00 0%, var(--orange) 100%);
}

.pcard__icon {
  font-size: 2.6rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.pcard__name {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: white;
  margin-bottom: 6px;
}

.pcard__name--white {
  color: white;
}

.pcard__tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.pcard__tagline--white {
  color: rgba(255, 255, 255, 0.8);
}

/* card body */
.pcard__body {
  padding: 26px 28px 0;
}

.pcard__inc-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.pcard__inc-label--orange {
  color: var(--orange);
}

.pcard__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 20px;
}

.pcard__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
}

.pcard__list li em {
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.88rem;
}

.pcard__list li strong {
  font-weight: 700;
}

.pcl-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(26, 171, 135, 0.12);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

.pcl-check--orange {
  background: rgba(247, 148, 29, 0.12);
  color: var(--orange);
}

/* Bonus box */
.pcard__bonus-box {
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e0 100%);
  border: 1.5px solid rgba(247, 148, 29, 0.3);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 4px;
}

.pcard__bonus-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 12px;
}

.pcard__bonus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pcard__bonus-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.93rem;
  color: var(--text);
}

.pbl-val {
  background: rgba(247, 148, 29, 0.15);
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.pcard__savings {
  text-align: center;
  font-size: 0.85rem;
  color: #c0392b;
  font-weight: 600;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(247, 148, 29, 0.2);
}

.pcard__savings strong {
  font-weight: 800;
}

/* card footer */
.pcard__footer {
  padding: 20px 28px 28px;
  text-align: center;
}

.pcard__price-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.pcard__old-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2px;
}

.pcard__off {
  background: #e74c3c;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.pcard__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  margin-bottom: 4px;
}

.pcard__currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.pcard__currency--orange {
  color: var(--orange);
}

.pcard__amount {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

.pcard__amount--green {
  color: var(--green);
}

.pcard__amount--orange {
  color: var(--orange);
}

.pcard__cents {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  align-self: flex-end;
  margin-bottom: 8px;
}

.pcard__installment {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* CTA button */
.pcb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 24px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pcb svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.pcb:hover {
  transform: translateY(-2px);
}

.pcb:hover svg {
  transform: translateX(4px);
}

.pcb--green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  box-shadow: 0 6px 22px rgba(26, 171, 135, 0.42);
}

.pcb--green:hover {
  box-shadow: 0 10px 30px rgba(26, 171, 135, 0.55);
}

.pcb--orange {
  background: linear-gradient(135deg, #ff8c00 0%, var(--orange-dark) 100%);
  color: white;
  box-shadow: 0 6px 22px rgba(247, 148, 29, 0.5);
}

.pcb--orange:hover {
  box-shadow: 0 10px 30px rgba(247, 148, 29, 0.65);
}

.pcard__safety {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.pcard__safety--orange {
  color: rgba(247, 148, 29, 0.8);
}

/* ===== GUARANTEE ===== */
.guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  border-radius: var(--radius);
  padding: 24px 32px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border: 2px solid rgba(26, 171, 135, 0.2);
}

.guarantee__icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.guarantee h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.guarantee p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 90px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: #f39c12;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  padding: 90px 0;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: white;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 90px 0;
  background: var(--bg);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(26, 171, 135, 0.04);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: #0d1b2a;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 48px 20px 32px;
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.footer__text {
  font-size: 0.85rem;
  margin-bottom: 8px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--green);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 56px;
  }

  .hero__headline {
    font-size: 1.9rem;
  }

  .hero__sub {
    font-size: 0.97rem;
  }

  .btn--lg {
    padding: 16px 28px;
    font-size: 1rem;
  }

  .video-section,
  .pain-section,
  .receive-section,
  .bonus-section,
  .plans-section,
  .testimonials-section,
  .cta-section,
  .faq-section {
    padding: 60px 0;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .guarantee {
    flex-direction: column;
    text-align: center;
  }

  .guarantee__icon {
    font-size: 2rem;
  }

  .section__title {
    font-size: 1.55rem;
  }

  .plan-price__value {
    font-size: 3.2rem;
  }
}

@media (max-width: 480px) {
  .topbar {
    font-size: 0.77rem;
  }

  .hero__tag {
    font-size: 0.77rem;
  }

  .hero__headline {
    font-size: 1.65rem;
  }

  .btn--lg {
    padding: 15px 22px;
    font-size: 0.95rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .receive-grid {
    grid-template-columns: 1fr;
  }
}