/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brown-900: #1a0f0a;
  --brown-800: #2c1a10;
  --brown-700: #3e2518;
  --brown-600: #5c3a24;
  --brown-500: #7a4e30;
  --brown-400: #a0704c;
  --brown-300: #c49a6c;
  --brown-200: #dfc3a0;
  --brown-100: #f0e4d4;
  --brown-50: #faf6f0;
  --gold: #d4a34a;
  --gold-light: #f0d68a;
  --gold-dark: #b8872e;
  --cream: #fdfaf5;
  --dark: #1a1a1a;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --red: #e74c3c;
  --green: #27ae60;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

img {
  max-width: 100%;
}

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

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 163, 74, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(212, 163, 74, 0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes steamRise {
  0% { opacity: 0; transform: translateY(0) scaleX(1); }
  15% { opacity: 1; }
  50% { opacity: 0.6; transform: translateY(-40px) scaleX(1.2); }
  100% { opacity: 0; transform: translateY(-80px) scaleX(0.8); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--brown-900);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(212, 163, 74, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 163, 74, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--brown-700);
  border-color: var(--brown-300);
}

.btn-outline:hover {
  background: var(--brown-700);
  color: var(--white);
  border-color: var(--brown-700);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(62, 37, 24, 0.2);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
  border-radius: 12px;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ========== CARD IMAGES ========== */
.card-img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--brown-100);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-card:hover .card-img img,
.feature-card:hover .card-img img {
  transform: scale(1.06);
}

/* ========== NAV ========== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(26, 15, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 3px;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.nav-cta {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--brown-900);
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--brown-900) 0%, #0d0705 40%, var(--brown-800) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
  z-index: 1;
  pointer-events: none;
}

/* Glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 163, 74, 0.15) 0%, transparent 70%);
  top: -10%;
  right: -10%;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 154, 108, 0.1) 0%, transparent 70%);
  bottom: -15%;
  left: -10%;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 163, 74, 0.12) 0%, transparent 70%);
  top: 40%;
  left: 20%;
  animation: float 6s ease-in-out infinite 1s;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  animation: fadeInUp 1s ease-out;
}

.hero-tag {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.hero-tag::before,
.hero-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-tag::before { left: -56px; }
.hero-tag::after { right: -56px; }

.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-sub {
  color: var(--brown-200);
  font-size: 1.25rem;
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-cta-group .btn-primary {
  animation: pulse 2.5s infinite;
}

.hero-cta-group .btn-ghost {
  color: var(--brown-200);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.hero-cta-group .btn-ghost:hover {
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(212, 163, 74, 0.4);
  border-radius: 20px;
  position: relative;
}

.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 4px;
  animation: float 2s ease-in-out infinite;
}

/* ========== SOCIAL BAR ========== */
.social-bar {
  background: var(--brown-800);
  border-bottom: 1px solid rgba(212, 163, 74, 0.15);
  padding: 16px 0;
  text-align: center;
  overflow: hidden;
}

.social-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.social-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brown-300);
  font-size: 0.85rem;
  font-weight: 500;
}

.social-bar-item .number {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ========== SECTIONS ========== */
.section {
  padding: 110px 0;
  position: relative;
}

.section-tag {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}

.section h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  text-align: center;
  margin-bottom: 16px;
  color: var(--brown-900);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin: 20px auto 0;
  border-radius: 3px;
}

/* ========== PROBLEM ========== */
.section-problem {
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.problem-card {
  background: linear-gradient(145deg, var(--brown-50), var(--cream));
  border: 1px solid var(--brown-100);
  border-radius: 20px;
  padding: 44px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #c0392b);
  opacity: 0;
  transition: opacity 0.3s;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--brown-800);
}

.problem-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== AGITATE ========== */
.section-agitate {
  background: linear-gradient(180deg, var(--brown-900) 0%, #0d0705 100%);
  color: var(--white);
  position: relative;
}

.section-agitate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--white), transparent);
  opacity: 0.03;
}

.section-agitate h2 {
  color: var(--white);
}

.agitate-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  margin-top: 60px;
  align-items: center;
}

.agitate-lead {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--brown-200);
  margin-bottom: 24px;
}

.agitate-text p {
  margin-bottom: 18px;
  color: var(--brown-200);
}

.agitate-list {
  list-style: none;
  margin: 24px 0;
}

.agitate-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--brown-200);
  font-size: 1rem;
  line-height: 1.6;
  transition: transform 0.3s;
}

.agitate-list li:hover {
  transform: translateX(4px);
}

.agitate-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 1.1rem;
}

.agitate-highlight {
  background: linear-gradient(135deg, rgba(212, 163, 74, 0.1), rgba(212, 163, 74, 0.05));
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 12px 12px 0;
  font-size: 1.1rem;
  color: var(--gold-light) !important;
  backdrop-filter: blur(10px);
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 44px;
  text-align: center;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 163, 74, 0.3);
  transform: scale(1.02);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--brown-300);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ========== SOLUTION ========== */
.section-solution {
  background: var(--cream);
  position: relative;
}

.solution-sub {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--brown-100);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.feature-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 50px rgba(212, 163, 74, 0.12);
  transform: translateY(-6px);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--brown-800);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== PROCESS ========== */
.section-process {
  background: var(--white);
}

.process-grid {
  display: flex;
  gap: 0;
  margin-top: 60px;
  position: relative;
  justify-content: center;
}

.process-step {
  text-align: center;
  flex: 1;
  max-width: 250px;
  padding: 0 20px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--brown-200));
  z-index: 0;
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-900);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(212, 163, 74, 0.3);
}

.process-step h3 {
  font-size: 1.1rem;
  color: var(--brown-800);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.section-testimonials {
  background: linear-gradient(180deg, var(--cream), var(--white));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--brown-100);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--brown-100);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
  border-color: var(--gold);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brown-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  color: var(--brown-800);
  font-size: 0.95rem;
}

.testimonial-author-info span {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* ========== PRICING ========== */
.section-order {
  background: linear-gradient(180deg, var(--white) 0%, var(--brown-50) 100%);
  position: relative;
}

.order-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--brown-100);
  border-radius: 24px;
  padding: 44px 32px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.price-card.popular {
  border-color: var(--gold);
  transform: scale(1.06);
  box-shadow: 0 24px 60px rgba(212, 163, 74, 0.2);
  background: linear-gradient(180deg, var(--white) 0%, rgba(212, 163, 74, 0.03) 100%);
}

.price-card.popular:hover {
  transform: scale(1.06) translateY(-8px);
  box-shadow: 0 30px 70px rgba(212, 163, 74, 0.3);
}

.price-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.popular-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-900);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.7rem;
  margin-bottom: 12px;
}

.price-card h3 {
  font-size: 1.5rem;
  color: var(--brown-800);
  margin-bottom: 20px;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--brown-900);
  margin-bottom: 4px;
}

.price-original {
  color: var(--text-light);
  text-decoration: line-through;
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.price-card ul {
  list-style: none;
  margin: 28px 0;
  text-align: left;
}

.price-card li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}

.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ========== CHECKOUT MODAL ========== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: 24px;
  padding: 44px;
  width: 100%;
  max-width: 520px;
  position: relative;
  animation: modalSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlide {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal h2 {
  text-align: left;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--brown-50);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.2s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--brown-100);
  color: var(--text);
}

.selected-package {
  background: linear-gradient(135deg, var(--brown-50), rgba(212, 163, 74, 0.08));
  border: 1px solid var(--brown-200);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 28px;
  font-weight: 600;
  color: var(--brown-800);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brown-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--brown-200);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 163, 74, 0.12);
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group.half {
  flex: 1;
}

.order-summary {
  background: linear-gradient(135deg, var(--brown-50), rgba(212, 163, 74, 0.05));
  border-radius: 14px;
  padding: 24px;
  margin: 28px 0;
  border: 1px solid var(--brown-100);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text);
}

.summary-row .free {
  color: var(--green);
  font-weight: 600;
}

.summary-row.total {
  border-top: 2px solid var(--brown-200);
  margin-top: 8px;
  padding-top: 16px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brown-900);
}

.secure-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 14px;
}

/* ========== GUARANTEE ========== */
.section-guarantee {
  background: var(--white);
  padding: 90px 0;
}

.guarantee-box {
  background: linear-gradient(135deg, var(--brown-50) 0%, rgba(212, 163, 74, 0.08) 100%);
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.guarantee-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 163, 74, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.guarantee-box h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.guarantee-box p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== FAQ ========== */
.section-faq {
  background: var(--cream);
}

.faq-list {
  max-width: 700px;
  margin: 50px auto 0;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown-800);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 22px;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ========== FINAL CTA ========== */
.section-final-cta {
  background: linear-gradient(135deg, var(--brown-900) 0%, #0d0705 50%, var(--brown-800) 100%);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section-final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 163, 74, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.section-final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.section-final-cta p {
  color: var(--brown-200);
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.section-final-cta .btn {
  position: relative;
  z-index: 1;
  animation: pulse 2.5s infinite;
}

/* ========== FOOTER ========== */
.footer {
  background: #0a0604;
  color: var(--brown-300);
  padding: 52px 0 24px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--brown-400);
}

.footer-links {
  display: flex;
  gap: 36px;
}

.footer-links a {
  color: var(--brown-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 0.8rem;
  color: var(--brown-500);
}

/* ========== FLOATING BUTTONS ========== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  font-size: 1.8rem;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .problem-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .agitate-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .price-card.popular {
    transform: none;
    order: -1;
  }

  .price-card.popular:hover {
    transform: translateY(-8px);
  }

  .nav {
    padding: 16px 20px;
  }

  .nav.scrolled {
    padding: 12px 20px;
  }

  .hero-tag::before,
  .hero-tag::after {
    display: none;
  }

  .modal {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .guarantee-box {
    padding: 40px 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

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

  .process-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .process-step::after {
    display: none;
  }

  .social-bar-inner {
    gap: 24px;
  }

  .floating-whatsapp {
    bottom: 80px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .section-final-cta {
    padding: 80px 0;
  }

  .countdown-inner {
    flex-direction: column;
    gap: 12px;
  }

  .sticky-inner {
    padding: 0 16px;
  }

  .sticky-text span {
    display: none;
  }

  .exit-modal {
    padding: 32px 24px;
    margin: 20px;
  }

  .countdown-bar {
    top: 56px;
  }
}

/* ========== COUNTDOWN TIMER ========== */
.countdown-bar {
  background: linear-gradient(135deg, #1a0f0a, #2c1a10);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(212, 163, 74, 0.2);
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-text {
  color: var(--brown-200);
  font-size: 0.9rem;
  font-weight: 500;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.countdown-block {
  text-align: center;
}

.countdown-num {
  display: inline-block;
  background: rgba(212, 163, 74, 0.15);
  border: 1px solid rgba(212, 163, 74, 0.3);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 6px 10px;
  border-radius: 6px;
  min-width: 42px;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  display: block;
  color: var(--brown-400);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.countdown-sep {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* ========== LIVE COUNTER ========== */
.live-counter {
  text-align: center;
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  display: inline-block;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(231, 76, 60, 0); }
}

/* ========== UPSELL BOX ========== */
.upsell-box {
  background: linear-gradient(135deg, rgba(212, 163, 74, 0.06), rgba(212, 163, 74, 0.02));
  border: 1.5px dashed var(--gold);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.upsell-check {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.upsell-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.upsell-info {
  flex: 1;
}

.upsell-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--brown-800);
  margin-bottom: 2px;
}

.upsell-info p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

.upsell-price {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.95rem;
  white-space: nowrap;
}

/* ========== EXIT INTENT POPUP ========== */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.exit-overlay.active {
  display: flex;
}

.exit-modal {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  animation: modalSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.exit-modal h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--brown-900);
}

.exit-modal p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.discount-code {
  background: linear-gradient(135deg, var(--brown-900), var(--brown-800));
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  letter-spacing: 6px;
  padding: 18px 32px;
  border-radius: 12px;
  margin: 20px 0;
  cursor: pointer;
  transition: transform 0.2s;
  user-select: all;
}

.discount-code:hover {
  transform: scale(1.02);
}

.exit-sub {
  font-size: 0.8rem !important;
  color: var(--brown-400) !important;
  margin-bottom: 20px !important;
}

/* ========== STICKY CTA BAR ========== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 15, 10, 0.97);
  backdrop-filter: blur(12px);
  z-index: 98;
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid rgba(212, 163, 74, 0.15);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-text {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-text strong {
  font-size: 1rem;
}

.sticky-text span {
  color: var(--brown-300);
  font-size: 0.85rem;
}
