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

:root {
  /* Brand palette — Hub Galaxy (navy + gold) */
  --primary:          #0F172A;
  --primary-dark:     #070e1f;
  --primary-mid:      #1E293B;
  --primary-light:    #334155;

  --gold:             #FFD700;
  --gold-dark:        #FFA500;
  --gold-light:       #FFF8DC;
  --gold-glow:        rgba(255, 215, 0, 0.4);

  --green-wa:         #25D366;
  --green-wa-dark:    #128C7E;

  --text-white:       #FFFFFF;
  --text-light:       rgba(255,255,255,0.85);
  --text-muted:       rgba(255,255,255,0.55);

  --text-dark:        #0F172A;
  --text-body:        #374151;
  --text-sub:         #6B7280;

  --border-light:     rgba(255,255,255,0.15);
  --border-card:      #E5E7EB;

  --bg-white:         #FFFFFF;
  --bg-gray:          #F8F9FA;

  /* 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%, #f1f5f9 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.5) 0%, rgba(0,0,0,0.4) 50%, rgba(15,23,42,0.85) 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 (Hub Galaxy) */
.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, #FFFBEB 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, #FFFBEB 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; }
