/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

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

:root {
  /* === PRIMARY: Navy (from hero) === */
  --navy-900: #0a2817;
  --navy-800: #042F1D;
  --navy-700: #011409;
  --navy-600: #1C3A6B;
  --navy-500: #234A85;
  --navy-400: #2E5FA3;
  --navy-300: #4A7EC4;
  --navy-200: #8BADD6;
  --navy-100: #C5D7EB;
  --navy-50: #EDF2F8;
  /* === Accent: Green (CTA) === */
  --green-600: #16A34A;
  --green-500: #22C55E;
  --green-400: #4ADE80;
  /* === Accent: Orange/Amber (Urgency, Bonus) === */
  --orange-500: #F59E0B;
  --orange-400: #FBBF24;
  /* === Alert === */
  --red-600: #DC2626;
  --red-500: #EF4444;
  /* === Text === */
  --text-900: #0B1A2E;
  --text-700: #2A3B52;
  --text-500: #546A83;
  --text-400: #8599B0;
  --text-300: #B6C6D6;
  /* === Backgrounds === */
  --bg-white: #FFFFFF;
  --bg-50: #F5F7FA;
  --bg-100: #EDF2F8;
  --bg-warm: #FFFBF5;
  /* === Borders === */
  --border: #D6DFE9;
  --border-light: #EDF2F8;
  /* === Shadows === */
  --shadow-xs: 0 1px 2px rgba(10, 22, 40, 0.06);
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08), 0 1px 2px rgba(10, 22, 40, 0.04);
  --shadow-md: 0 4px 8px -1px rgba(10, 22, 40, 0.1), 0 2px 4px -2px rgba(10, 22, 40, 0.05);
  --shadow-lg: 0 10px 18px -3px rgba(10, 22, 40, 0.1), 0 4px 6px -4px rgba(10, 22, 40, 0.05);
  --shadow-xl: 0 20px 28px -5px rgba(10, 22, 40, 0.14), 0 8px 10px -6px rgba(10, 22, 40, 0.06);
  --shadow-2xl: 0 25px 50px -12px rgba(10, 22, 40, 0.28);
  /* === Radii === */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-700);
  background: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  color: var(--text-900);
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

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

/* ===== SECTION TAG ===== */
.stag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy-500);
  margin-bottom: 14px;
}

.stag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--navy-400);
  border-radius: 2px;
}

/* ===== TOP URGENCY BAR ===== */
.urgency-bar {
  background: linear-gradient(90deg, #DC2626, #EF4444, #DC2626);
  color: white;
  text-align: center;
  padding: 12px 16px;
  font-size: clamp(0.75rem, 2.2vw, 0.86rem);
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 1000;
  letter-spacing: 0.2px;
  background-size: 200% 100%;
  animation: urgency-slide 3s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

@keyframes urgency-slide {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.urgency-bar strong {
  font-weight: 800;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--navy-700) 100%);
  padding: clamp(40px, 8vw, 75px) 0 clamp(50px, 9vw, 85px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: white;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-headline {
  font-size: clamp(1.65rem, 4.8vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: white;
}

.hero-headline .hl-orange {
  color: var(--orange-400);
}

.hero-headline .hl-green {
  color: var(--green-400);
}

.hero-headline .hl-blue {
  color: var(--blue-300);
}

.hero-desc {
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 680px;
}

.hero-desc strong {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 700;
}

/* Hero Image placed directly below hero-desc */
.hero-product-img {
  width: 100%;
  max-width: 640px;
  margin: 10px auto 26px;
  display: flex;
  justify-content: center;
}

.hero-product-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.4s ease;
}

.hero-product-img img:hover {
  transform: translateY(-4px) scale(1.01);
}

.hero-bullets {
  list-style: none;
  margin: 0 auto 28px;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  max-width: 580px;
  width: 100%;
  padding: 0 10px;
}

.hero-bullets li {
  font-size: clamp(0.88rem, 2vw, 0.96rem);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.hero-bullets li .cb {
  color: var(--green-400);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
  flex-shrink: 0;
}

.hero-cta-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: white;
  padding: 18px 36px;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 2.5vw, 1.08rem);
  font-weight: 800;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4);
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 100%;
}

.hero-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: cta-shine 2.5s ease-in-out infinite;
}

@keyframes cta-shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.55);
}

/* ===== HERO STATS ===== */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.hero-stat-item {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-item:last-child {
  border-right: none;
}

.hero-stat-item .stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-item .stat-label {
  font-size: clamp(0.72rem, 1.8vw, 0.8rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* ===== GENERAL SECTIONS ===== */
.section {
  padding: clamp(50px, 8vw, 85px) 0;
  width: 100%;
}

.section.alt {
  background: var(--bg-50);
}

.section.dark {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: white;
}

.section.warm {
  background: var(--bg-warm);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(36px, 6vw, 50px);
}

.section-head h2 {
  font-size: clamp(1.5rem, 3.8vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.section-head h2 .acc {
  color: var(--navy-600);
}

.section-head h2 .acc-g {
  color: var(--green-600);
}

.section-head h2 .acc-o {
  color: var(--orange-500);
}

.section.dark .section-head h2 {
  color: white;
}

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

.section.dark .stag {
  color: var(--navy-200);
}

.section.dark .stag::before {
  background: var(--navy-200);
}

.section-head p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--text-500);
  line-height: 1.7;
}

/* ===== SIMULADOS CAROUSEL ===== */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* edge fade masks */
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  padding: 10px 0;
}

.carousel-track {
  display: flex;
  gap: 20px;
  /* 16 slides × (280px + 20px gap) = 4800px — half because we duplicate */
  animation: carousel-scroll 60s linear infinite;
  width: max-content;
  will-change: transform;
}

.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

.carousel-slide {
  flex-shrink: 0;
  width: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: white;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.carousel-slide:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-xl);
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: auto;
  object-fit: contain;
}

@keyframes carousel-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    /* Move exactly half the total width (16 slides) to loop seamlessly */
    transform: translateX(calc(-50%));
  }
}

/* ===== STEPS SECTION ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy-400), var(--navy-300));
  opacity: 0.25;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.25);
  transition: transform 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.08);
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-500);
  line-height: 1.6;
  max-width: 290px;
  margin: 0 auto;
}

/* ===== DELIVERY / ENTREGA GARANTIDA ===== */
.delivery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 50px);
  align-items: center;
}

.delivery-text h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.delivery-text p {
  font-size: clamp(0.88rem, 2vw, 0.95rem);
  color: var(--text-500);
  line-height: 1.7;
}

.delivery-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ===== BONUS SECTION ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bonus-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 32px) clamp(18px, 3vw, 24px);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.bonus-label {
  display: inline-block;
  align-self: flex-start;
  background: var(--orange-500);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.bonus-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.bonus-card p {
  font-size: 0.88rem;
  color: var(--text-500);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.bonus-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-600);
}

.bonus-value .line-through {
  text-decoration: line-through;
  color: var(--text-400);
  font-weight: 500;
}

.bonus-total {
  text-align: center;
  margin-top: 32px;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: var(--text-500);
}

.bonus-total strong {
  color: var(--green-600);
  font-weight: 700;
}

/* ===== FACEBOOK COMMENTS ===== */
.fb-comments-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: white;
  border: 1px solid #DDD;
  border-radius: var(--radius-md);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  box-shadow: var(--shadow-sm);
}

.fb-header {
  padding: 14px 16px;
  border-bottom: 1px solid #E4E6EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fb-header .fb-count {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1C1E21;
}

.fb-header .fb-sort {
  font-size: 0.8rem;
  color: #65676B;
}

.fb-comments-list {
  padding: 8px 0;
}

.fb-comment {
  display: flex;
  gap: 10px;
  padding: 10px 16px;
  align-items: flex-start;
}

.fb-comment.reply {
  margin-left: 48px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.fb-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.fb-comment.reply .fb-avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
}

.fb-bubble {
  background: #F0F2F5;
  border-radius: 18px;
  padding: 10px 14px;
  flex: 1;
  max-width: 520px;
  word-break: break-word;
}

.fb-bubble .fb-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #050505;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.fb-bubble .fb-name .author-badge {
  background: var(--navy-600);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--radius-full);
}

.fb-bubble .fb-text {
  font-size: 0.85rem;
  color: #050505;
  line-height: 1.45;
  margin-top: 2px;
}

.fb-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 3px 0 0 14px;
  font-size: 0.72rem;
  color: #65676B;
  font-weight: 600;
  flex-wrap: wrap;
}

.fb-actions span:not(.fb-time):not(.fb-like-count) {
  cursor: pointer;
}

.fb-actions span:not(.fb-time):not(.fb-like-count):hover {
  text-decoration: underline;
}

.fb-actions .fb-time {
  font-weight: 400;
}

.fb-like-count {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.72rem;
  color: #65676B;
  font-weight: 400;
  margin-left: auto;
}

.fb-like-count .fb-like-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--navy-600);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
}

.fb-plugin-footer {
  padding: 11px 16px;
  border-top: 1px solid #E4E6EB;
  text-align: center;
  font-size: 0.74rem;
  color: #65676B;
}

.fb-plugin-footer a {
  color: #385898;
  font-weight: 600;
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(28, 58, 107, 0.18), var(--shadow-xl);
  transform: scale(1.02);
}

.price-card.featured .price-highlight {
  background: linear-gradient(90deg, var(--navy-800), var(--navy-700));
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-card-header {
  padding: 26px 24px 0;
  text-align: center;
}

.price-card-header img {
  max-width: 300px;
  margin: auto;
  margin-bottom: 15px;
}

.price-card-header .price-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-900);
  margin-bottom: 4px;
  text-align: center;
}

.price-card-header .price-old {
  font-size: 0.88rem;
  color: var(--text-400);
  text-align: center;
}

.price-card-header .price-old .strike {
  text-decoration: line-through;
}

.price-amount {
  padding: 10px 24px 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  text-align: center;
}

.price-amount .currency {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-900);
}

.price-amount .value {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--text-900);
  line-height: 1;
}

.price-amount .cents {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-900);
}

.price-sub {
  padding: 0 24px 18px;
  font-size: 0.82rem;
  color: var(--text-500);
  text-align: center;
}

.price-features {
  padding: 0 24px 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-700);
  line-height: 1.4;
}

.price-features li .pf-check {
  color: var(--green-500);
  font-weight: 800;
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.price-features li .pf-cross {
  color: var(--red-500);
  font-weight: 800;
  font-size: 0.95rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.price-features li .pf-bonus {
  color: var(--orange-500);
}

.price-features li.pf-disabled {
  color: var(--text-400);
  opacity: 0.65;
}

.price-features li.pf-disabled .pf-strike {
  text-decoration: line-through;
}

.price-card-footer {
  padding: 0 24px 28px;
}

.price-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 800;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-btn.primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: white;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.price-btn.primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: cta-shine 2.5s ease-in-out infinite;
}

.price-btn.secondary {
  background: var(--navy-800);
  color: white;
}

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

.pricing-footer {
  text-align: center;
  margin-top: 24px;
}

.pricing-footer p {
  font-size: 0.85rem;
  color: var(--text-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pricing-note {
  text-align: center;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--text-400);
  font-style: italic;
}

/* ===== PAIN POINTS ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 840px;
  margin: 0 auto;
}

.pain-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: clamp(18px, 3vw, 24px);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.pain-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--navy-400);
  transform: translateY(-3px);
}

.pain-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: var(--radius-md);
  background: var(--navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pain-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.35;
}

.pain-card p {
  font-size: 0.85rem;
  color: var(--text-500);
  line-height: 1.5;
}

/* ===== KIT CONTENTS ===== */
.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.kit-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 22px 18px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.kit-card.highlight {
  border-color: var(--navy-400);
  background: linear-gradient(180deg, var(--navy-50), white);
}

.kit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.kit-card-emoji {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.kit-card-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-500);
  margin-bottom: 6px;
}

.kit-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.kit-card p {
  font-size: 0.8rem;
  color: var(--text-500);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.kit-tags {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.kit-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  background: var(--bg-100);
  color: var(--text-500);
}

.kit-tag.green {
  background: var(--navy-50);
  color: var(--navy-700);
}

.kit-summary {
  margin-top: 40px;
  background: var(--bg-50);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--border);
}

.kit-summary-icon {
  font-size: 2.5rem;
}

.kit-summary-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.kit-summary-text p {
  font-size: 0.88rem;
  color: var(--text-500);
  line-height: 1.5;
}

.kit-summary .hero-cta {
  font-size: 0.92rem;
  padding: 14px 28px;
  white-space: nowrap;
}

/* ===== GUARANTEE ===== */
.guarantee-banner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-xl);
  border: 2px solid var(--orange-400);
}

.guarantee-icon {
  min-width: 70px;
  text-align: center;
  flex-shrink: 0;
}

.guarantee-icon .shield {
  font-size: 3.5rem;
  display: block;
}

.guarantee-details h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.22rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.guarantee-details p {
  font-size: clamp(0.85rem, 2vw, 0.92rem);
  color: #78350F;
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  gap: 16px;
}

.faq-q h4 {
  font-size: clamp(0.88rem, 2.2vw, 0.96rem);
  font-weight: 700;
  color: var(--text-900);
  flex: 1;
}

.faq-q .faq-arrow {
  font-size: 1.2rem;
  color: var(--navy-600);
  transition: transform 0.3s ease;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 250px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 0.9rem;
  color: var(--text-500);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-section {
  padding: clamp(55px, 8vw, 85px) 0;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.final-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.final-section .container {
  position: relative;
  z-index: 2;
}

.final-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
  line-height: 1.25;
}

.final-section h2 .hl-orange {
  color: var(--orange-400);
}

.final-section p {
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.final-badges {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 24px);
  margin-top: 24px;
  flex-wrap: wrap;
}

.final-badge {
  font-size: clamp(0.75rem, 1.8vw, 0.84rem);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== FOOTER ===== */
.footer {
  background: #060E1A;
  color: rgba(255, 255, 255, 0.45);
  padding: 26px 0;
  text-align: center;
  font-size: 0.78rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer-links {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Tablets & Small Desktops (<= 1024px) */
@media (max-width: 1024px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat-item:nth-child(2) {
    border-right: none;
  }

  .hero-stat-item:nth-child(3),
  .hero-stat-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .carousel-slide {
    width: 240px;
  }

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

  .steps-grid::before {
    display: none;
  }

  .delivery-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .delivery-text {
    max-width: 600px;
    margin: 0 auto;
  }

  .delivery-img img {
    max-width: 520px;
    margin: 0 auto;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .price-card.featured {
    transform: none;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .kit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kit-summary {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .kit-summary-icon {
    margin: 0 auto;
  }
}

/* Tablets (<= 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .carousel-slide {
    width: 220px;
  }

  .guarantee-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .guarantee-icon {
    min-width: unset;
  }

  .fb-comment.reply {
    margin-left: 32px;
  }
}

/* Mobile Devices (<= 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .hero-bullets {
    padding: 0;
  }

  .hero-cta {
    width: 100%;
    padding: 16px 20px;
  }

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

  .fb-comment {
    padding: 8px 12px;
  }

  .fb-comment.reply {
    margin-left: 20px;
  }

  .fb-bubble {
    padding: 8px 12px;
  }

  .fb-avatar {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .fb-comment.reply .fb-avatar {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .final-badges {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .kit-summary .hero-cta {
    width: 100%;
  }
}

/* Extra Small Screens (<= 360px) */
@media (max-width: 360px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .price-amount .value {
    font-size: 2.4rem;
  }
}