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

:root {
  /* Brand palette — Dark Premium Hybrid (Space Slate + Vibrant Gold-Orange) */
  --primary:          #080F1F;   /* Obsidian deep blue-black */
  --primary-dark:     #040810;
  --primary-mid:      #0F172A;   /* Rich slate blue */
  --primary-light:    #1E293B;   /* Slate gray */

  --gold:             #FFA000;   /* High-conversion bright amber/orange-gold */
  --gold-dark:        #E67E00;   /* Dark amber-orange */
  --gold-light:       #FFF7ED;   /* Soft orange light accent */
  --gold-glow:        rgba(255, 160, 0, 0.25);

  --red:              #EF4444;   /* Warm red */
  --green-wa:         #25D366;   /* WhatsApp green */
  --green-wa-dark:    #128C7E;

  --text-white:       #FFFFFF;
  --text-light:       rgba(255,255,255,0.95);
  --text-muted:       rgba(255,255,255,0.65);

  --text-dark:        #F8FAFC;   /* Light gray/white text on dark backgrounds */
  --text-body:        #CBD5E1;   /* Slate light text for body readability */
  --text-sub:         #94A3B8;   /* Muted text for captions/secondary info */

  --border-light:     rgba(255,255,255,0.10);
  --border-card:      rgba(255,255,255,0.08);

  --bg-white:         #080F1F;   /* Deepest background */
  --bg-gray:          #0F172A;   /* Dark slate background */

  --surface-light:    rgba(255, 255, 255, 0.03); /* Surface color for tables/cards */

  /* Typography */
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Radii */
  --radius-sm:   0.5rem;
  --radius-md:   0.75rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-2xl:  2rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --t-fast: 160ms;
  --t-base: 250ms;
  --t-slow: 400ms;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Selection */
::selection { background: var(--gold); color: var(--primary); }

/* ═══════════════════════════════════════════════
   FOCUS / A11Y
═══════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; max-width: 1280px; } }

/* ═══════════════════════════════════════════════
   SECTION SYSTEM
═══════════════════════════════════════════════ */
.section-light,
.section-white {
  padding: 5rem 0;
  background: var(--bg-white);
}
.section-white { background: var(--bg-white); }
.section-light { background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-gray) 100%); }

.section-cosmic {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, var(--primary) 100%);
  color: var(--text-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header-light .section-subtitle-text { color: rgba(255,255,255,0.7); }

.section-subtitle-text {
  font-size: 1.125rem;
  color: var(--text-sub);
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   HEADINGS — Gold underline system (from reference)
═══════════════════════════════════════════════ */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  position: relative;
  padding-bottom: 0.75rem;
}
h1::after, h2::after, h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 60px;
  background: var(--gold);
  border-radius: var(--radius-full);
}
.section-header h1::after,
.section-header h2::after {
  left: 50%;
  transform: translateX(-50%);
}
.section-header-light h2::after { background: var(--gold); }

h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

/* ═══════════════════════════════════════════════
   BUTTON SYSTEM
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-xl);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), background-color var(--t-base);
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(0.97) !important; }

/* Gold CTA */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: var(--primary);
  box-shadow: 0 4px 15px var(--gold-glow);
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.55);
  background-position: right center;
}
.btn-gold:hover::before { left: 100%; }

/* Gold Outline */
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 0 15px rgba(255,215,0,0.1);
}
.btn-outline-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
  border-color: transparent;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255,215,0,0.4);
}

/* Primary (Navy) */
.btn-primary {
  background: var(--primary);
  color: var(--text-white);
}
.btn-primary:hover {
  background: var(--primary-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,23,42,0.3);
}

/* Outline Primary */
.btn-outline-primary {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-primary:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Sizes */
.btn-sm  { font-size: 0.875rem; padding: 0.5rem 1.1rem; }
.btn-lg  { font-size: 1rem;     padding: 0.875rem 1.75rem; }
.btn-xl  { font-size: 1.125rem; padding: 1rem 2rem; }
.w-full  { width: 100%; }

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-wa) 0%, var(--green-wa-dark) 100%);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  animation: pulse-wa 2s ease-in-out infinite;
  transition: transform var(--t-base), box-shadow var(--t-base);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ═══════════════════════════════════════════════
   LANG TOGGLE
═══════════════════════════════════════════════ */
.lang-toggle {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
  font-family: var(--font);
}
.lang-btn.active {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 1px 6px rgba(255,215,0,0.4);
}
.lang-btn:hover:not(.active) {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid var(--border-light);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-white);
}
.logo-icon { color: var(--gold); font-size: 1.1rem; }
.logo-name { color: var(--text-white); }
.logo-accent { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-nav {
  display: none;
  gap: 1.5rem;
}
.header-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--t-fast);
}
.header-nav a:hover { color: var(--gold); }

@media (min-width: 768px) {
  .header-nav { display: flex; }
}

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.05) 40%, rgba(10,15,30,0.45) 100%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-white);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
}
.badge-glass {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-white);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.badge-shimmer {
  background: linear-gradient(90deg, var(--gold) 25%, #FFF8DC 50%, var(--gold) 75%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  color: var(--primary);
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Hero title */
.hero-title-wrap { margin-bottom: 1.5rem; }
.hero-title {
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding-bottom: 0;
}
.hero-title::after { display: none; }
.text-gold { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.stat-card:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,215,0,0.4);
  transform: translateY(-4px);
}
.stat-number {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.25rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

/* ═══════════════════════════════════════════════
   FEATURES SECTION
═══════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.feature-card {
  background: var(--bg-white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255,215,0,0.12), 0 6px 20px rgba(0,0,0,0.06);
}
.feature-icon {
  color: var(--gold);
  margin-bottom: 1rem;
}
.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  padding-bottom: 0;
}
.feature-title::after { display: none; }
.feature-text {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.65;
}

/* Stats banner */
.features-stats-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
}
.stats-banner-item { color: var(--text-white); }
.stats-banner-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.stats-banner-item p { font-size: 0.9rem; color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════════
   COMPARISON SECTION
═══════════════════════════════════════════════ */
.compare-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--surface-light);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  text-align: left;
}

.compare-table th,
.compare-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.compare-table th {
  font-weight: 700;
  color: var(--text-base);
  font-size: 1rem;
  background: rgba(15, 23, 42, 0.5);
}

.compare-table th:first-child {
  width: 25%;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* The Winner Column (Pure4K Stream) */
.col-winner {
  background: rgba(255, 215, 0, 0.05);
  border-left: 1px solid rgba(255, 215, 0, 0.2);
  border-right: 1px solid rgba(255, 215, 0, 0.2);
}

.compare-table th.col-winner {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  border-top: 3px solid var(--gold);
}

.compare-table td.col-winner {
  font-weight: 600;
  color: var(--gold);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.icon-check {
  color: #10b981; /* Emerald green */
  font-weight: bold;
}

.icon-cross {
  color: #ef4444; /* Red */
  font-weight: bold;
}

@media (max-width: 768px) {
  .compare-table th,
  .compare-table td {
    padding: 1rem 0.75rem;
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════════ */
.channel-list-btn {
  margin-top: 1.5rem;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.toggle-wrap {
  background: #E5E7EB;
  padding: 4px;
  border-radius: var(--radius-full);
  display: inline-flex;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}
.toggle-btn {
  position: relative;
  z-index: 1;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  transition: color var(--t-base);
}
.toggle-btn.active { color: var(--text-white); }
.toggle-slider {
  position: absolute;
  top: 4px;
  bottom: 4px;
  background: var(--gold);
  border-radius: var(--radius-full);
  transition: transform var(--t-slow) var(--ease-out), width var(--t-slow);
  left: 4px;
  width: calc(50% - 4px);
  box-shadow: 0 2px 8px rgba(255,215,0,0.4);
}
.toggle-slider.right { transform: translateX(100%); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: stretch;
}
.pricing-grid.hidden { display: none; }

.pricing-card {
  background: var(--bg-white);
  border: 2px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  position: relative;
  /* overflow: hidden; removed to allow badge to stick out */
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base), box-shadow var(--t-base);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255,215,0,0.15), 0 8px 30px rgba(0,0,0,0.08);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(255,215,0,0.2);
  transform: scale(1.02);
  background: linear-gradient(180deg, rgba(255, 160, 0, 0.12) 0%, var(--bg-white) 30%);
}
.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 24px 60px rgba(255,215,0,0.3);
}

.featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255,215,0,0.3);
}

.plan-duration {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0;
  text-align: center;
}
.plan-duration::after { display: none; }

.plan-price {
  margin-bottom: 1.5rem;
  text-align: center;
}
.price-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-dark);
}

.plan-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-body);
  font-weight: 500;
}
.check {
  color: var(--gold-dark);
  font-weight: 900;
  flex-shrink: 0;
}

.plan-instant {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-sub);
  font-weight: 600;
  margin-top: 0.75rem;
}

/* Pricing Bottom CTA */
.pricing-bottom-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: var(--text-white);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(15,23,42,0.2);
}
.pricing-bottom-cta h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--text-white);
  margin-bottom: 0.75rem;
  padding-bottom: 0;
}
.pricing-bottom-cta h3::after { display: none; }
.pricing-bottom-cta p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   TUTORIALS SECTION
═══════════════════════════════════════════════ */
.requirements-banner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--text-white);
}
.requirements-banner svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.requirements-banner strong { display: block; font-weight: 700; margin-bottom: 0.25rem; color: var(--gold); }
.requirements-banner p { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

.tutorials-list {
  max-width: 860px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tutorial-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--t-base);
}
.tutorial-item[open],
.tutorial-item:hover { border-color: rgba(255,215,0,0.4); }

.tutorial-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  background: transparent;
  transition: background var(--t-fast);
}
.tutorial-summary::-webkit-details-marker { display: none; }
.tutorial-summary::marker { display: none; }
.tutorial-summary:hover { background: rgba(255,255,255,0.05); }

.tutorial-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255,215,0,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.tutorial-summary-text { flex: 1; min-width: 0; }
.tutorial-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.15rem;
}
.tutorial-desc {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.chevron {
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease-out), color var(--t-base);
}
.tutorial-item[open] .chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.tutorial-steps {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-light);
}
.tutorial-steps ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
}
.tutorial-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--primary);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.tutorial-steps li p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.6;
  padding-top: 5px;
}

.tutorial-help-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1.5rem;
}
.tutorial-help-note svg { color: #4ade80; flex-shrink: 0; }
.tutorial-help-note p { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 500; line-height: 1.5; }

.tutorials-cta-wrap {
  text-align: center;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════
   REVIEWS SECTION
═══════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base), box-shadow var(--t-base);
}
.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255,215,0,0.12), 0 6px 20px rgba(0,0,0,0.06);
}
.review-card.featured-review {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(255, 160, 0, 0.12) 0%, var(--bg-white) 40%);
  box-shadow: 0 8px 30px rgba(255,215,0,0.15);
}

.review-stars {
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-style: normal;
}
.review-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}
.review-location {
  font-size: 0.75rem;
  color: var(--text-sub);
}

/* Rating summary */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--text-white);
  text-align: left;
}
.reviews-rating-big {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.rating-stars-big {
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
}
.reviews-rating-detail p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════
   FINAL CTA SECTION
═══════════════════════════════════════════════ */
.final-cta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding: 4rem 2rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.final-cta-card h2 {
  color: var(--text-white);
  margin-bottom: 1rem;
}
.final-cta-card h2::after { left: 50%; transform: translateX(-50%); }
.final-cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.final-cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.final-cta-trust span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.final-cta-trust span span { color: var(--gold); font-weight: 700; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--border-light);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-white);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--gold); }
.footer-legal {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-legal p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}
.footer-copy { color: rgba(255,255,255,0.25) !important; }

@media (min-width: 900px) {
  .footer-inner { flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════ */
.hidden { display: none !important; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 639px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }
  .final-cta-buttons { flex-direction: column; align-items: stretch; }
  .reviews-summary { flex-direction: column; text-align: center; }
  .features-stats-banner { grid-template-columns: 1fr; }
  .hero-stats { gap: 0.5rem; }
}

/* ═══════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════ */
@media print {
  .site-header, .whatsapp-float, .hero-overlay, .scroll-indicator { display: none; }
  body { background: #fff; color: #000; }
  .section-cosmic { background: #1a2847 !important; color: #fff; }
}

/* Language specific visibility for static content */
html[lang="en"] .lang-fr { display: none !important; }
html[lang="fr"] .lang-en { display: none !important; }

/* ═══════════════════════════════════════════════
   CRO ELEMENTS (MEDIA BUYER OPTIMIZATIONS)
═══════════════════════════════════════════════ */

/* Top Urgency Banner */
.top-urgency-banner {
  background: linear-gradient(90deg, #ff4e50 0%, #f9d423 100%);
  color: #111;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 1000;
  position: relative;
  text-transform: uppercase;
  animation: bg-pulse 2s infinite alternate;
}

@keyframes bg-pulse {
  from { filter: brightness(1); }
  to { filter: brightness(1.15); }
}

/* High Conversion Action Button */
.btn-action {
  background: linear-gradient(135deg, #00FF87 0%, #60EFFF 100%);
  color: #0F172A;
  box-shadow: 0 4px 15px rgba(0, 255, 135, 0.4);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-action:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 255, 135, 0.6);
  background: linear-gradient(135deg, #60EFFF 0%, #00FF87 100%);
}

/* Anchor Pricing (Strike-through) */
.price-strike {
  font-size: 1.2rem;
  color: var(--text-sub);
  text-decoration: line-through;
  margin-right: 0.5rem;
  font-weight: 600;
}
.price-discount-badge {
  background: #ff4e50;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
  vertical-align: middle;
  margin-left: 8px;
}

/* Trust Stars */
.trust-stars-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}
.trust-stars {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.2rem;
}
.trust-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Payment Logos */
.payment-logos {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
  opacity: 0.8;
}
.payment-logos img {
  height: 24px;
}



/* ══════════════════════════════════════════
   CHECKOUT MODAL
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 30, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}

.modal-content {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  animation: slideUp 0.3s forwards;
  text-align: center;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #0f172a;
}

.modal-header h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #0f172a;
}

#modal-plan-info {
  color: #475569;
  font-size: 0.9rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#modal-plan-info strong {
  color: var(--primary);
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #334155;
  font-weight: 500;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 12px 15px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #0f172a;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.2);
}

#submitCheckout {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

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

.form-row { display: flex; gap: 15px; }
.form-row .form-group { flex: 1; }


/* ══════════════════════════════════════════
   PRICING BUTTONS ENHANCEMENT
══════════════════════════════════════════ */
.pricing-card .open-checkout-modal {
  padding: 18px 24px !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eab308 0%, #d97706 100%) !important;
  color: #fff !important;
  box-shadow: 0 10px 25px -5px rgba(234, 179, 8, 0.5) !important;
  transition: all 0.3s ease !important;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-card .open-checkout-modal:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 15px 30px -5px rgba(234, 179, 8, 0.7) !important;
  background: linear-gradient(135deg, #facc15 0%, #ea580c 100%) !important;
}

.pricing-card.featured .open-checkout-modal {
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(234, 179, 8, 0); }
  100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0); }
}


/* ══════════════════════════════════════════
   MOBILE & DESKTOP UX/UI OPTIMIZATIONS
══════════════════════════════════════════ */

/* Prevent horizontal scroll globally */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Ensure comparison table is scrollable on small screens */
.comparison-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
  padding-bottom: 10px;
}

table.comparison-table {
  min-width: 600px; /* Forces scroll on mobile */
  width: 100%;
}

/* Checkout Modal Mobile Optimization */
.modal-content {
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px !important;
  width: 95% !important;
}

/* Mobile specific overrides */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 2.2rem !important; line-height: 1.2 !important; }
  h2 { font-size: 1.8rem !important; }
  .section-subtitle-text { font-size: 1rem !important; }

  /* Hero Section */
  .hero {
    padding: 3rem 1rem !important;
    text-align: center;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Form Layout */
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-group {
    width: 100%;
  }

  /* Pricing Cards Stacking */
  .pricing-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .pricing-card {
    width: 100%;
    max-width: 400px;
  }

  /* Header / Navigation */
  .site-header {
    padding: 10px 15px;
  }
  .main-nav {
    display: none; /* Hide nav links on mobile to save space */
  }
  
  /* Feature Grid */
  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Desktop specific overrides */
@media (min-width: 769px) {
  /* Pricing Cards Horizontal Layout */
  .pricing-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
  }
  .pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
  }
  .pricing-card.featured {
    transform: scale(1.05);
    z-index: 10;
  }
  
  /* Feature Grid */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}


/* ══════════════════════════════════════════
   BACKGROUND IMAGE OPTIMIZATIONS
══════════════════════════════════════════ */
.hero-section {
  background-image: linear-gradient(rgba(15, 23, 42, 0.80), rgba(15, 23, 42, 0.92)), url('../assets/hero-bg.jpg') !important;
  background-size: cover !important;
  background-position: center top !important;
  background-attachment: scroll !important;
  color: #fff;
}

#tutoriels {
  background-image: linear-gradient(rgba(15, 23, 42, 0.90), rgba(15, 23, 42, 0.98)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1920&q=80') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
}

/* Ensure text inside tutorials section is light for contrast */
#tutoriels h2, 
#tutoriels p, 
#tutoriels .section-subtitle-text, 
#tutoriels .tutorial-help-note p {
  color: #f8fafc !important;
}

#tutoriels .tutorial-tab {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.2) !important;
}

#tutoriels .tutorial-tab.active {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

#tutoriels .tutorial-content {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #e2e8f0 !important;
}

#tutoriels .tutorial-content h3 {
  color: #fff !important;
}

#tutoriels .tutorial-content li {
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

#tutoriels .step-num {
  background: var(--primary) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════════
   SMS-STYLE REVIEW CARDS
══════════════════════════════════════════ */
.review-sms {
  padding: 20px !important;
  border-radius: 16px !important;
  border: 1px solid #e2e8f0 !important;
  background: #fff !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sms-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sms-meta {
  flex: 1;
}

.sms-meta .review-name {
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
}

.sms-meta .review-location {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 2px;
}

.sms-bubble {
  background: #f1f5f9;
  border-radius: 0 16px 16px 16px;
  padding: 14px 16px;
  position: relative;
}

.sms-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid #f1f5f9;
  border-left: 8px solid transparent;
}

.sms-bubble p {
  margin: 0;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
}

.sms-date {
  font-size: 0.78rem;
  color: #94a3b8;
  padding-left: 4px;
}

.sms-date strong {
  color: #16a34a;
}

/* Featured review gets a subtle gold border */
.featured-review.review-sms {
  border: 2px solid #f59e0b !important;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15) !important;
}

/* ══════════════════════════════════════════
   SCROLL-DRIVEN ANIMATIONS & MICRO-ANIMATIONS
   Modern CSS: no external dependencies
══════════════════════════════════════════ */

/* 1. Fade + Slide Up on scroll (base class) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay helpers */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* Slide in from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide in from right */
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* 2. Native Scroll-Driven Animations for modern browsers */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    /* Section headers fade in */
    .section-header {
      animation: fadeSlideUp auto linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }

    /* Pricing cards fan in */
    .pricing-card {
      animation: cardReveal auto ease-out both;
      animation-timeline: view();
      animation-range: entry 0% entry 50%;
    }

    /* Review cards */
    .review-sms {
      animation: fadeSlideUp auto linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    translate: 0 40px;
  }
}

@keyframes cardReveal {
  from {
    opacity: 0;
    scale: 0.9;
    translate: 0 30px;
  }
}

/* 3. Hero Section Entrance Animations */
.hero-title {
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.hero-subtitle {
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.hero-desc {
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}
.hero-buttons {
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}
.trust-bar, .hero-stats {
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    translate: 0 30px;
  }
}

/* 4. Number Counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 5. Premium Button Hover Pulse */
.btn-action, .btn-gold {
  position: relative;
  overflow: hidden;
}
.btn-action::after, .btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s ease;
  pointer-events: none;
}
.btn-action:hover::after, .btn-gold:hover::after {
  transform: translateX(200%) skewX(-15deg);
}

/* 6. Feature cards hover lift */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}

/* 7. Pricing card hover lift */
.pricing-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.pricing-card:not(.featured):hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px -10px rgba(0,0,0,0.15) !important;
}

/* 8. Sticky header fade-in on scroll */
.site-header {
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: rgba(15, 23, 42, 0.97) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3) !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* 9. Avatar shimmer effect */
.review-avatar {
  position: relative;
  overflow: hidden;
}
.review-avatar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

/* 10. Floating animation for hero stats */
.stat-item {
  animation: floatStat 4s ease-in-out infinite;
}
.stat-item:nth-child(2) { animation-delay: 1.3s; }
.stat-item:nth-child(3) { animation-delay: 2.6s; }

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

/* 11. Comparison table row highlight on hover */
.comparison-table tr:not(:first-child):hover {
  background: rgba(234, 179, 8, 0.05);
  transition: background 0.2s;
}

/* 12. Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-delay: 0.01ms !important;
  }
}

/* ══════════════════════════════════════════
   HIGH-CONVERTING MODAL — CRO OPTIMIZED
══════════════════════════════════════════ */
.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.modal-header h3 {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.2;
  margin-bottom: 8px;
}

.modal-plan-display {
  font-size: 0.95rem;
  color: #475569;
  padding: 10px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  margin-top: 10px;
}

.modal-trust-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  background: #f0fdf4;
  border-radius: 8px;
  padding: 10px;
  margin: 15px 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #15803d;
}

/* Submit button — big, loud, impossible to miss */
.btn-checkout-submit {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  margin-top: 15px;
  box-shadow: 0 8px 25px -5px rgba(22, 163, 74, 0.5);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-checkout-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -5px rgba(22, 163, 74, 0.65);
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.btn-checkout-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.modal-guarantee {
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 12px;
  line-height: 1.5;
}

/* Pricing cards — add guarantee badge */
.pricing-card::after {
  content: '✅ Risk-Free Trial';
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: #16a34a;
  font-weight: 600;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
}

/* ══════════════════════════════════════════
   VISUAL DEVICE PICKER
══════════════════════════════════════════ */
.device-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 12px 8px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
}

.device-card svg {
  width: 44px;
  height: 44px;
}

.device-card:hover {
  border-color: #eab308;
  background: #fefce8;
  color: #92400e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.2);
}

.device-card.selected {
  border-color: #eab308;
  background: linear-gradient(135deg, #fefce8, #fef9c3);
  color: #92400e;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

.device-card.selected svg rect,
.device-card.selected svg circle {
  filter: brightness(1.1);
}

@media (max-width: 480px) {
  .device-picker {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .device-card {
    padding: 10px 5px;
    font-size: 0.72rem;
  }
  .device-card svg {
    width: 36px;
    height: 36px;
  }
}

/* ══════════════════════════════════════════
   DARK PREMIUM HIGH-CONVERSION OVERRIDES
══════════════════════════════════════════ */

/* Base & Typography Fixes for Dark Mode */
.feature-title,
.plan-duration,
.review-name,
.faq-question {
  color: #FFFFFF !important;
}

/* Header — Glassmorphic Dark */
.site-header {
  background: rgba(8, 15, 31, 0.85) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}
.site-header.scrolled {
  background: rgba(8, 15, 31, 0.96) !important;
}
.logo-icon { color: #FFA000 !important; }
.logo-accent { color: #FFA000 !important; }

/* Nav links */
.nav-link { color: rgba(255, 255, 255, 0.8) !important; }
.nav-link:hover { color: #FFA000 !important; }

/* Primary sections (cosmic) — Elegant dark gradient */
.section-cosmic {
  background: linear-gradient(135deg, #080F1F 0%, #0F172A 50%, #1E293B 100%) !important;
}

/* CTA buttons — High-converting orange-gold/amber */
.btn-gold {
  background: linear-gradient(135deg, #FFA000 0%, #E67E00 100%) !important;
  color: #080F1F !important;
  border-color: #FFA000 !important;
  box-shadow: 0 4px 15px rgba(255, 160, 0, 0.4) !important;
  font-weight: 800 !important;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #FFB300 0%, #FFA000 100%) !important;
  box-shadow: 0 8px 30px rgba(255, 160, 0, 0.6) !important;
}

.btn-outline-gold {
  border-color: #FFA000 !important;
  color: #FFA000 !important;
  background: transparent !important;
}
.btn-outline-gold:hover {
  background: linear-gradient(135deg, #FFA000 0%, #E67E00 100%) !important;
  color: #080F1F !important;
}

.btn-action {
  background: linear-gradient(135deg, #FF6F00 0%, #E65100 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4) !important;
  font-weight: 800 !important;
}
.btn-action:hover {
  background: linear-gradient(135deg, #FF8F00 0%, #FF6F00 100%) !important;
  box-shadow: 0 8px 30px rgba(255, 111, 0, 0.6) !important;
}

/* Checkout submit button */
.btn-checkout-submit {
  background: linear-gradient(135deg, #FFA000 0%, #E67E00 100%) !important;
  color: #080F1F !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 25px -5px rgba(255, 160, 0, 0.5) !important;
}
.btn-checkout-submit:hover {
  background: linear-gradient(135deg, #FFB300 0%, #FFA000 100%) !important;
  box-shadow: 0 12px 30px -5px rgba(255, 160, 0, 0.7) !important;
}

/* Modal specific overrides (pricing button trigger) */
.pricing-card .open-checkout-modal {
  background: linear-gradient(135deg, #FFA000 0%, #E67E00 100%) !important;
  color: #080F1F !important;
  box-shadow: 0 10px 25px -5px rgba(255, 160, 0, 0.5) !important;
}
.pricing-card .open-checkout-modal:hover {
  background: linear-gradient(135deg, #FFB300 0%, #FFA000 100%) !important;
  box-shadow: 0 15px 30px -5px rgba(255, 160, 0, 0.7) !important;
}

/* Section header underline */
.section-header h2::after {
  background: linear-gradient(90deg, #FFA000, #FF6F00) !important;
}

/* Pricing featured card border & badge */
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(255, 160, 0, 0.12) 0%, var(--bg-white) 30%) !important;
  border-color: #FFA000 !important;
}
.featured-badge {
  background: linear-gradient(135deg, #FFA000, #E67E00) !important;
  color: #080F1F !important;
}

/* Price discount badge */
.price-discount-badge {
  background: #EF4444 !important;
  color: #FFFFFF !important;
}

/* Icon / Highlight color */
.check { color: #FFA000 !important; }
.pricing-card.featured .check { color: #FFA000 !important; }
.trust-icon { color: #FFA000 !important; }

/* Footer */
.site-footer {
  background: #050914 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}
