/* ============================================================
   PROTOCOLO PRIMEIRAS SESSÕES™ — Landing Page Stylesheet
   ============================================================ */

/* ---- Variables ---- */
:root {
  --primary:        #2F5D62;
  --primary-dark:   #243F43;
  --primary-light:  #3D7A80;
  --secondary:      #F5F0E8;
  --secondary-dark: #EDE7DA;
  --accent:         #C97B63;
  --accent-dark:    #B06B55;
  --accent-light:   #D9907A;
  --text:           #3D3D3D;
  --text-light:     #666666;
  --text-lighter:   #999999;
  --white:          #FFFFFF;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.16);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width:      1100px;
  --section-gap:    96px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.25s ease;
  text-align: center;
}
.btn--sm   { font-size: 0.8rem;  padding: 10px 22px; }
.btn--lg   { font-size: 1rem;    padding: 16px 36px; }
.btn--xl   { font-size: 1.1rem;  padding: 20px 48px; }
.btn--full { width: 100%; }

.btn--accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 123, 99, 0.4);
}
.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 123, 99, 0.5);
}
.btn--accent:active { transform: translateY(0); }

.btn--white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ---- Badges ---- */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge--light  { background: rgba(255,255,255,0.2); color: white; border: 1px solid rgba(255,255,255,0.3); }
.badge--accent { background: rgba(201, 123, 99, 0.12); color: var(--accent); border: 1px solid rgba(201,123,99,0.3); }
.badge--white  { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.3); }

/* ---- Section Headers ---- */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  color: var(--text);
  margin-top: 12px;
}
.section-title--light { color: var(--white); }
.section-sub { margin-top: 16px; color: var(--text-light); font-size: 1rem; }
.section-sub--light { color: rgba(255,255,255,0.75); }

/* ---- Trust Badges ---- */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.trust-badges--centered { justify-content: center; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}
.trust-badge--dark {
  color: var(--text-light);
  background: var(--secondary);
  border-color: var(--secondary-dark);
}

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards;
}
.fade-in--delay  { animation-delay: 0.2s; }
.fade-in--delay2 { animation-delay: 0.4s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: var(--primary-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo {
  font-size: 0.95rem;
  color: white;
  line-height: 1.2;
  text-align: center;
}
.header__logo strong {
  font-size: 1rem;
  display: inline;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 96px 0 100px;
  overflow: hidden;
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  gap: 36px;
}
/* Text block */
.hero__text { color: white; width: 100%; }
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: white;
}
.hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}
.hero__subtitle strong { color: white; }

/* Mockup image */
.hero__visual { width: 100%; max-width: 680px; }
.hero__image-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.hero__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.hero__counter {
  position: absolute;
  bottom: -16px;
  right: 0;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.hero__counter-number { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.hero__counter-label  { font-size: 0.62rem; line-height: 1.3; font-weight: 500; }

/* CTA + checklist block */
.hero__actions { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.hero__checklist {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  align-self: center;
  text-align: left;
}
.hero__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.9);
}
.hero__checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6L5 9L10 3' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   PAIN
   ============================================================ */
.pain {
  background: var(--primary-dark);
  padding: var(--section-gap) 0;
}
.pain__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.pain__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: white;
  margin-bottom: 32px;
  line-height: 1.25;
}
.pain__inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}
.pain__highlight {
  background: rgba(255,255,255,0.08);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  text-align: left;
  margin: 32px 0 40px;
  color: rgba(255,255,255,0.9) !important;
}
.pain__highlight strong { color: white; }

/* ============================================================
   IDENTIFICATION
   ============================================================ */
.identification {
  background: var(--secondary);
  padding: var(--section-gap) 0;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.pain-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain-card__icon {
  width: 56px;
  height: 56px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}
.pain-card p { font-size: 0.95rem; color: var(--text); line-height: 1.5; }
.identification__cta-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text);
}
.identification__cta-text strong { color: var(--primary); }

/* ============================================================
   PRODUCT
   ============================================================ */
.product {
  background: white;
  padding: var(--section-gap) 0;
}
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.category-tag {
  background: var(--secondary);
  color: var(--text);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--secondary-dark);
  transition: all 0.2s ease;
}
.category-tag:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ---- Carousel ---- */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  background: var(--secondary);
}
.carousel__track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.carousel__slide {
  min-width: 100%;
  aspect-ratio: 400 / 565;
  overflow: hidden;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: var(--secondary);
  padding: 8px;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  color: var(--primary);
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
  z-index: 2;
}
.carousel__btn:hover { background: white; transform: translateY(-50%) scale(1.08); }
.carousel__btn--prev { left: 16px; }
.carousel__btn--next { right: 16px; }
.carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.carousel__dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.carousel__dots .dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.product__note {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-light);
  padding: 20px;
  background: var(--secondary);
  border-radius: var(--radius-md);
}
.product__note strong { color: var(--primary); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: var(--section-gap) 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.benefit-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.benefit-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent-light);
}
.benefit-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: white;
  margin-bottom: 10px;
}
.benefit-card p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ============================================================
   BRIDGE
   ============================================================ */
.bridge {
  background: var(--secondary);
  padding: var(--section-gap) 0;
}
.bridge__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.bridge__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.bridge__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.bridge__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}
.bridge__title em { display: block; color: var(--accent); font-style: italic; }
.bridge__content p {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
.bridge__content strong { color: var(--primary); }
.bridge__quotes {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
}
.bridge__quotes blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  padding: 6px 0;
}
.bridge__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* ============================================================
   DELIVERABLES
   ============================================================ */
.deliverables {
  background: white;
  padding: var(--section-gap) 0;
}
.deliverables__layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text);
  padding: 12px 18px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--secondary-dark);
  transition: background 0.2s ease;
}
.checklist li:hover { background: var(--secondary-dark); }
.checklist li::before {
  content: '';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7L5.5 10L11.5 4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.checklist--bonus li::before {
  background-color: var(--accent);
}
.bonus-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 8px;
}
.bonus-divider::before, .bonus-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--secondary-dark);
}
.bonus-divider span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.deliverables__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.deliverables__images img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 3/4;
}

/* ============================================================
   BONUS
   ============================================================ */
.bonus {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: var(--section-gap) 0;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.bonus-card {
  display: flex;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease;
}
.bonus-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.bonus-card__image {
  width: 110px;
  min-width: 110px;
  overflow: hidden;
  background: rgba(0,0,0,0.15);
}
.bonus-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bonus-card__body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bonus-card__number {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: 0.08em;
}
.bonus-card__body h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: white;
  line-height: 1.35;
}
.bonus-card__body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-top: 2px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--secondary);
  padding: var(--section-gap) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  line-height: 0;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: white;
  padding: var(--section-gap) 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto 40px;
}
.pricing-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--secondary-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(47, 93, 98, 0.1), var(--shadow-md);
}
.pricing-card__ribbon {
  position: absolute;
  top: 22px;
  right: -30px;
  background: var(--accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 44px;
  transform: rotate(45deg);
}
.pricing-card__header {
  background: var(--primary);
  padding: 22px 28px;
  text-align: center;
}
.pricing-card--featured .pricing-card__header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.pricing-card__header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: white;
}
.pricing-card__mockup {
  background: var(--secondary);
  padding: 24px;
  text-align: center;
}
.pricing-card__mockup img {
  max-height: 180px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}
.pricing-card__body { padding: 24px 28px; }
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.4;
}
.pricing-card__features li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  background: var(--primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4.5 7.5L8 3' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-card__price {
  text-align: center;
  margin-bottom: 20px;
}
.price__from {
  display: block;
  font-size: 0.78rem;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.price__value {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1;
}
.price__installment {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 6px;
}
.pricing__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  max-width: 860px;
  margin: 0 auto;
}
.pricing__trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}
.pricing__trust svg { color: var(--primary); }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee {
  background: var(--secondary);
  padding: var(--section-gap) 0;
}
.guarantee__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}
.guarantee__badge svg {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 20px rgba(47, 93, 98, 0.3));
}
.guarantee__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--primary);
  margin-bottom: 16px;
}
.guarantee__content p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.7;
}
.guarantee__small { font-size: 0.9rem !important; color: var(--text-light) !important; font-style: italic; margin-top: 8px !important; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: white;
  padding: var(--section-gap) 0;
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--secondary);
  border: 1px solid var(--secondary-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq__item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__item[open] .faq__question { color: var(--primary); }
.faq__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 5.25L7 8.75L10.5 5.25' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq__item[open] .faq__icon {
  transform: rotate(180deg);
  background-color: var(--accent);
}
.faq__answer {
  padding: 0 24px 20px;
  border-top: 1px solid var(--secondary-dark);
}
.faq__answer p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  padding-top: 16px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: var(--section-gap) 0;
}
.final-cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta__inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}
.final-cta__inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary-dark);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__inner { text-align: center; }
.footer__brand { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 12px; }
.footer__legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  max-width: 640px;
  margin: 0 auto 8px;
  line-height: 1.6;
}
.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE — TABLET (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-gap: 72px; }

  /* hero is already single-column — only adjust padding */
  .hero { padding: 86px 0 64px; }

  .bridge__inner { grid-template-columns: 1fr; gap: 40px; }
  .bridge__image { max-width: 400px; margin: 0 auto; }
  .bridge__image img { aspect-ratio: 16/9; }

  .deliverables__layout { grid-template-columns: 1fr; gap: 40px; }
  .deliverables__images { position: static; max-width: 480px; margin: 0 auto; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 40px; }

  .guarantee__inner { flex-direction: column; text-align: center; gap: 32px; }

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

/* ============================================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-gap: 56px; }

  .header__logo { font-size: 0.82rem; }

  .hero { padding: 84px 0 60px; }
  .hero__title    { font-size: 1.45rem; }
  .hero__subtitle { font-size: 0.93rem; }
  .hero__visual { max-width: 100%; }

  .pain-grid { grid-template-columns: 1fr 1fr; }
  .pain-card { padding: 20px 14px; }

  .carousel__btn { width: 38px; height: 38px; font-size: 1.4rem; }
  .carousel__btn--prev { left: 8px; }
  .carousel__btn--next { right: 8px; }

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

  /* Testimonials: single column, full image width */
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
  }
  .testimonial-card {
    width: 100%;
    max-width: 100%;
  }
  .testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  .bonus-card { flex-direction: column; }
  .bonus-card__image { width: 100%; height: 160px; }
  .bonus-card__image img { height: 100%; }

  .pricing__trust { flex-direction: column; align-items: center; gap: 12px; }

  .guarantee__badge svg { width: 110px; height: 110px; }
  .guarantee__inner { gap: 24px; }

  .faq__question { font-size: 0.9rem; padding: 16px 18px; }
  .faq__answer { padding: 0 18px 16px; }

  .btn--xl { font-size: 1rem; padding: 16px 28px; }
}

@media (max-width: 420px) {
  .pain-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero__checklist li { font-size: 0.88rem; }
}
