/* ========================================
   RAMADHAN DIGITAL LANDING PAGE
   Theme: Islami Elegan (Emerald + Gold)
   ======================================== */

:root {
  /* Colors */
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-50: #ecfdf5;
  --gold-500: #d4a017;
  --gold-400: #e6b422;
  --gold-300: #f0c75e;
  --gold-200: #f5d98b;
  --gold-100: #fdf3d7;
  --dark-900: #0f1a14;
  --dark-800: #1a2e23;
  --dark-700: #243b2f;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --white: #ffffff;
  --red-500: #ef4444;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-sm: 800px;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 30px rgba(212,160,23,0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

.container-sm {
  max-width: var(--container-sm);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 78, 59, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,160,23,0.2);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-300);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

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

.nav-cta {
  background: var(--gold-500) !important;
  color: var(--dark-900) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--gold-400) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--dark-900);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 35px rgba(212,160,23,0.4);
}

.btn-outline {
  border: 2px solid var(--gold-400);
  color: var(--gold-400);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold-400);
  color: var(--dark-900);
}

.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-xl { padding: 20px 48px; font-size: 1.15rem; border-radius: var(--radius-md); }
.btn-block { width: 100%; text-align: center; }

.btn-glow {
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 30px rgba(212,160,23,0.3); }
  50% { box-shadow: 0 4px 50px rgba(212,160,23,0.6); }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: linear-gradient(170deg, var(--dark-900) 0%, var(--emerald-900) 50%, var(--emerald-800) 100%);
  padding: 160px 0 100px;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(212,160,23,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(16,185,129,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(212,160,23,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-ornament-left {
  top: 10%;
  left: -150px;
  width: 400px;
  height: 400px;
}

.hero-ornament-right {
  bottom: 5%;
  right: -100px;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-brand-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(212,160,23,0.3);
}

.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-300);
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.gold-text {
  color: var(--gold-400);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: var(--white);
}

/* Countdown */
.countdown {
  margin-bottom: 40px;
}

.countdown-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.countdown-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  min-width: 80px;
}

.countdown-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
}

.countdown-unit {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-separator {
  font-size: 2rem;
  color: var(--gold-400);
  font-weight: 700;
}

/* Hero CTA */
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-300);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ========== SECTIONS COMMON ========== */
.section {
  padding: var(--section-padding);
}

.section-badge {
  display: inline-block;
  background: var(--gold-100);
  color: var(--gold-500);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-800);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-products,
.section-faq {
  text-align: center;
}

.section-pricing {
  text-align: center;
  background: var(--gray-100);
}

/* ========== PROBLEM SECTION ========== */
.section-problem {
  background: var(--gray-100);
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-800);
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========== SOLUTION BANNER ========== */
.section-solution {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--emerald-900), var(--emerald-800));
}

.solution-banner {
  text-align: center;
  padding: 20px;
}

.solution-banner h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1.5;
  font-weight: 600;
}

.solution-banner em {
  font-style: italic;
}

.solution-ornament {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  margin: 20px auto;
}

/* ========== PRODUCT CARDS ========== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  text-align: left;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-200);
}

.product-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.product-emoji {
  font-size: 3rem;
}

.product-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.product-badge {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-adult { background: #dbeafe; color: #1e40af; }
.badge-kids { background: #fce7f3; color: #9d174d; }
.badge-family { background: #ede9fe; color: #5b21b6; }
.badge-group { background: #fef3c7; color: #92400e; }

.product-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-800);
  margin-bottom: 4px;
}

.product-tagline {
  color: var(--gold-500);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 12px;
}

.product-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 700px;
}

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

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark-800);
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ========== PRODUCT PREVIEW ========== */
.product-preview {
  position: relative;
  max-width: 280px;
  margin: 0 auto 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-100);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.product-preview .preview-thumb {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
}

.product-preview .preview-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.product-preview.playing .preview-thumb {
  opacity: 0;
}

.product-preview.playing .preview-video {
  display: block;
}

.product-preview.playing .preview-play {
  opacity: 0;
  pointer-events: none;
}

.preview-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.3s ease;
  z-index: 2;
}

.preview-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.preview-play svg {
  width: 100%;
  height: 100%;
}

/* ========== PRICING ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-200);
}

.pricing-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pricing-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-for {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 20px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-700);
}

.pricing-features {
  text-align: left;
  margin-bottom: 24px;
}

.pricing-features li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  position: relative;
  padding-left: 20px;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald-500);
  font-weight: 700;
}

/* Bundle Card */
.bundle-card {
  position: relative;
  background: linear-gradient(135deg, var(--emerald-900), var(--emerald-800));
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  overflow: hidden;
}

.bundle-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(212,160,23,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.bundle-ribbon {
  position: absolute;
  top: 28px;
  right: -40px;
  background: var(--red-500);
  color: var(--white);
  padding: 8px 64px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: rotate(45deg);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.bundle-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 48px;
  align-items: center;
}

.bundle-left {
  flex: 1;
  text-align: left;
}

.bundle-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.bundle-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

.bundle-includes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bundle-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
}

.bundle-right {
  flex-shrink: 0;
  text-align: center;
  min-width: 280px;
}

.bundle-pricing {
  margin-bottom: 20px;
}

.bundle-original {
  display: block;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}

.bundle-price {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1.2;
}

.bundle-save {
  display: inline-block;
  background: rgba(239,68,68,0.2);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
}

.bundle-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ========== TESTIMONIALS ========== */
.section-testimonials {
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-screenshot {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.testimonial-screenshot:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-screenshot img {
  width: 100%;
  display: block;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-img {
  max-width: 420px;
  max-height: 90vh;
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.lightbox-close:hover {
  opacity: 1;
}

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

.faq-list {
  text-align: left;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-800);
  text-align: left;
  transition: var(--transition);
}

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

.faq-toggle {
  font-size: 1.5rem;
  color: var(--gold-500);
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== CTA FINAL ========== */
.section-cta-final {
  padding: 80px 0 100px;
  background: linear-gradient(170deg, var(--dark-900) 0%, var(--emerald-900) 100%);
  text-align: center;
}

.cta-final-card {
  position: relative;
  padding: 20px;
}

.cta-final-card h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-final-card > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 550px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-ornament {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  margin: 24px auto;
}

.cta-final-price {
  margin-bottom: 24px;
}

.cta-original {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  margin-right: 12px;
}

.cta-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-300);
}

.cta-guarantee {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.cta-guarantee span {
  margin-right: 4px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark-900);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(212,160,23,0.15);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-400);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-logo {
  height: 28px;
  width: auto;
  border-radius: 6px;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

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

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bundle-content {
    flex-direction: column;
    text-align: center;
  }

  .bundle-left {
    text-align: center;
  }

  .bundle-includes {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--emerald-900);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(212,160,23,0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 130px 0 80px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .countdown-item {
    min-width: 60px;
    padding: 12px 10px;
  }

  .countdown-number {
    font-size: 1.6rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

  .solution-banner h2 {
    font-size: 1.4rem;
  }

  .product-card {
    padding: 28px;
  }

  .product-title {
    font-size: 1.4rem;
  }

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

  .bundle-card {
    padding: 32px 24px;
  }

  .bundle-title {
    font-size: 1.5rem;
  }

  .bundle-price {
    font-size: 2.2rem;
  }

  .bundle-ribbon {
    top: 22px;
    right: -42px;
    font-size: 0.7rem;
    padding: 6px 56px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin: 0 auto;
  }

  .cta-final-card h2 {
    font-size: 1.8rem;
  }

  .cta-price {
    font-size: 2.2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .countdown-timer {
    gap: 4px;
  }

  .countdown-item {
    min-width: 50px;
    padding: 10px 6px;
  }

  .countdown-number {
    font-size: 1.3rem;
  }

  .countdown-separator {
    font-size: 1.3rem;
  }
}
