/* ==========================================================================
   MEGA PACK DIGITAL - LANDING PAGE STYLES
   Dark Mode UI/UX, High-Conversion CSS Design System
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #0d0d11;
  --bg-card: #121826;
  --bg-card-hover: #1a2236;
  --bg-surface: #182032;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-gold: #ffd200;
  --gold-glow: rgba(255, 210, 0, 0.25);
  
  --accent-red: #e63946;
  --red-glow: rgba(230, 57, 70, 0.3);
  
  --wa-green: #25d366;
  --wa-green-hover: #20ba5a;
  --wa-green-glow: rgba(37, 211, 102, 0.4);

  --border-color: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(255, 210, 0, 0.3);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --max-width: 1200px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-gold {
  color: var(--text-gold);
  text-shadow: 0 0 12px var(--gold-glow);
}

.text-red {
  color: var(--accent-red);
}

.text-green {
  color: var(--wa-green);
}

.highlight-bg {
  background: linear-gradient(135deg, rgba(255, 210, 0, 0.15) 0%, rgba(230, 57, 70, 0.15) 100%);
  border: 1px solid var(--border-gold);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 4rem 0;
  position: relative;
}

/* Top Urgency Header Bar */
.top-urgency-bar {
  background: linear-gradient(90deg, #e63946 0%, #b91c1c 100%);
  color: #ffffff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px var(--red-glow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-urgency-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* HERO SECTION */
.hero {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background: radial-gradient(circle at 50% 20%, rgba(255, 210, 0, 0.08) 0%, rgba(13, 13, 17, 1) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.4);
  color: #ff6b6b;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* Timer Box */
.timer-card {
  background: rgba(18, 24, 38, 0.9);
  border: 1px solid rgba(255, 210, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
}

.timer-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.timer-display {
  display: flex;
  gap: 0.75rem;
}

.time-block {
  background: #090c14;
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 60px;
}

.time-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-gold);
  line-height: 1;
}

.time-text {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Hero Price Box */
.hero-price-box {
  background: linear-gradient(145deg, rgba(24, 32, 50, 0.9), rgba(18, 24, 38, 0.95));
  border: 2px solid var(--text-gold);
  box-shadow: 0 0 25px var(--gold-glow);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  text-align: center;
}

.price-strike {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-gold);
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-gold);
  line-height: 1;
}

.price-tag {
  background: var(--accent-red);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-sub {
  font-size: 0.85rem;
  color: #10b981;
  font-weight: 700;
  margin-top: 0.4rem;
}

/* PayPal & International CTA Buttons */
.btn-cta-paypal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #0070ba 0%, #003087 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px rgba(0, 112, 186, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 196, 255, 0.3);
  margin-top: 0.85rem;
}

.btn-cta-paypal:hover {
  transform: translateY(-3px) scale(1.01);
  background: linear-gradient(135deg, #0084dd 0%, #0040b3 100%);
  box-shadow: 0 10px 30px rgba(0, 112, 186, 0.6);
}

.btn-cta-paypal .btn-title {
  color: #ffffff;
}

.btn-cta-paypal .btn-subtext {
  color: #e0f2fe;
}

.paypal-badge {
  background: #ffc439;
  color: #003087;
  font-weight: 900;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  margin-left: 0.4rem;
}

.hero-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.price-country-item {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.5rem;
  text-align: center;
}

.price-country-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}

.price-country-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-gold);
}

@media (max-width: 576px) {
  .hero-price-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA BUTTONS */
.btn-cta-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-green-hover) 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px var(--wa-green-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.btn-cta-primary:hover {
  transform: translateY(-3px) scale(1.01);
  background: linear-gradient(135deg, #28e06f 0%, #1eab52 100%);
}

.btn-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.btn-subtext {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* Hero Guarantees Grid */
.hero-guarantees {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.guarantee-item svg {
  color: var(--wa-green);
  flex-shrink: 0;
}

/* Hero Visual / Mockup Column */
.hero-media-wrapper {
  position: relative;
}

.hero-img-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.hero-img-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-img-container:hover img {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  background: rgba(18, 24, 38, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.badge-top-left {
  top: -15px;
  left: -15px;
}

.badge-bottom-right {
  bottom: -15px;
  right: -15px;
}

.badge-icon {
  font-size: 1.75rem;
}

.badge-text-main {
  font-weight: 800;
  color: var(--text-gold);
  font-size: 1rem;
  line-height: 1.1;
}

.badge-text-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* SECTION TITLES */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.section-tag {
  color: var(--text-gold);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* SECTION 2: 13 CATEGORIES GRID */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--text-gold), var(--accent-red));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

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

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.card-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(255, 210, 0, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border: 1px solid rgba(255, 210, 0, 0.2);
}

.card-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: var(--text-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-list {
  list-style: none;
  margin-top: 0.5rem;
}

.card-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.card-list li::before {
  content: "•";
  color: var(--text-gold);
  font-weight: bold;
}

/* SECTION 3: WHO IS THIS FOR */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.audience-card {
  background: linear-gradient(160deg, #151c2d 0%, #0d121d 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.audience-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.audience-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.audience-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* SECTION 4: VALUE COMPARISON */
.comparison-container {
  max-width: 900px;
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.comparison-table th, .comparison-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.comparison-table th {
  background: #090d16;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--border-color);
}

.comparison-table td:first-child {
  font-weight: 600;
}

.table-highlight-row {
  background: rgba(255, 210, 0, 0.08) !important;
}

.table-highlight-row td {
  border-top: 2px solid var(--text-gold);
  border-bottom: 2px solid var(--text-gold) !important;
}

.badge-winner {
  background: var(--text-gold);
  color: #000;
  font-weight: 900;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
}

/* SECTION 5: STEP BY STEP */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--text-gold), #e67e22);
  color: #000;
  font-weight: 900;
  font-size: 1.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px var(--gold-glow);
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.step-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* SECTION 6: FAQ ACCORDION */
.faq-container {
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  color: var(--text-gold);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), opacity 0.25s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 1.5rem 1.25rem 1.5rem;
  transition: max-height 0.35s ease-in-out, opacity 0.35s ease 0.1s, padding 0.35s ease;
}

/* FINAL CTA BOX */
.final-cta-box {
  background: radial-gradient(circle at 50% 50%, rgba(255, 210, 0, 0.12) 0%, rgba(18, 24, 38, 1) 80%);
  border: 2px solid var(--text-gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 50px rgba(255, 210, 0, 0.15);
}

.final-cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-cta-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* FOOTER */
footer {
  background: #07090e;
  border-top: 1px solid var(--border-color);
  padding: 2rem 0 5rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* STICKY MOBILE BOTTOM BAR */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(9, 13, 22, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
}

.sticky-price {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-gold);
}

.btn-sticky {
  background: var(--wa-green);
  color: white;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 15px var(--wa-green-glow);
}

/* MEDIA QUERIES (Responsive Design) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .hero-media-wrapper {
    max-width: 550px;
    margin: 0 auto;
  }

  .badge-top-left {
    top: 10px;
    left: 10px;
  }

  .badge-bottom-right {
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

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

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

  .final-cta-title {
    font-size: 1.85rem;
  }

  .timer-card {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .comparison-table th, .comparison-table td {
    padding: 0.85rem 0.75rem;
    font-size: 0.85rem;
  }

  .price-amount {
    font-size: 2.8rem;
  }
}
