/* ==========================================================================
   THE90 — LUXURY HIGH-CONVERTING DESIGN SYSTEM (BRAND DARK RED EDITION)
   Palette: Pitch Obsidian (#060608, #0b0b10), Rich Velvet (#121218),
            Deep Brand Red (#8b0d14 / #b91c1c), Electric Crimson Slash (#e50914 / #f87171),
            Titanium White (#ffffff), Soft Silver (#9da3af)
   Directly sampled from Mohcine Chahir's THE90 Official Brand Asset
   Bi-Directional: Native RTL (Arabic) & LTR (French, English)
   ========================================================================== */

:root {
  /* Pitch Obsidian & Charcoal Canvas */
  --bg-color: #060608;
  --bg-secondary: #0c0c11;
  --bg-card: rgba(16, 16, 22, 0.75);
  --bg-card-hover: rgba(24, 24, 34, 0.9);
  --bg-elevated: #15151e;
  
  /* Text System */
  --text-color: #ffffff;
  --text-secondary: #9da3af;
  --text-muted: #64748b;
  --text-dim: #475569;
  
  /* Official Brand Dark Red Palette (Sampled from Logo Asset) */
  --accent-color: #b91c1c;
  --accent-red: #dc2626;
  --accent-bright: #e50914;
  --accent-hover: #f81824;
  --accent-light: #f87171;
  --accent-dark: #70090e;
  --accent-darker: #4a0509;
  
  /* Glows & Transparency */
  --accent-glow: rgba(229, 9, 20, 0.32);
  --accent-glow-subtle: rgba(185, 28, 28, 0.18);
  --accent-subtle: rgba(185, 28, 28, 0.09);
  
  /* Functional Accents */
  --whatsapp-color: #25D366;
  --whatsapp-hover: #128C7E;
  --success-color: #10b981;
  --danger-color: #ef4444;
  
  /* Typography */
  --font-main: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Syne', 'Cairo', sans-serif;
  
  /* Micro-Borders & Surfaces */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(220, 38, 38, 0.32);
  --border-accent-strong: rgba(229, 9, 20, 0.6);
  
  /* Shadows & Depth */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 16px 36px -10px rgba(0, 0, 0, 0.75);
  --shadow-glow: 0 0 35px -5px rgba(220, 38, 38, 0.32);
  --shadow-glow-lg: 0 0 60px -10px rgba(229, 9, 20, 0.38);
  
  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: 
    radial-gradient(ellipse 90% 45% at 50% -10%, rgba(185, 28, 28, 0.13) 0%, transparent 65%),
    radial-gradient(circle 550px at 95% 45%, rgba(112, 9, 14, 0.05) 0%, transparent 60%),
    radial-gradient(circle 550px at 5% 75%, rgba(112, 9, 14, 0.05) 0%, transparent 60%);
  background-attachment: fixed;
}

/* RTL / LTR Helpers */
[dir="rtl"] {
  text-align: right;
}

[dir="ltr"] {
  text-align: left;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--accent-light);
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #0a0405 0%, #1a080a 50%, #0a0405 100%);
  border-bottom: 1px solid rgba(220, 38, 38, 0.25);
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #fecaca;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-bright);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7); }
  70% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 0 8px rgba(229, 9, 20, 0); }
  100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

/* ==========================================================================
   Luxury Sticky Navbar
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(6, 6, 8, 0.9);
  padding: 13px 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-accent);
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--accent-light);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Nav Right & Links */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-bright);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  padding: 3px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 5px 10px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  transition: var(--transition);
  font-family: inherit;
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.active {
  background: linear-gradient(135deg, #e50914 0%, #990d16 100%);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
}

/* ==========================================================================
   Luxury High-Converting Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  font-family: inherit;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #e50914 0%, #990d16 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f81824 0%, #bd121b 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229, 9, 20, 0.6);
  color: #ffffff;
}

.btn-pulse {
  animation: cta-glow 2.5s infinite;
}

@keyframes cta-glow {
  0% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(229, 9, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

.btn-nav-cta {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-xs);
}

.btn-hero-cta {
  padding: 17px 38px;
  font-size: 1.15rem;
  border-radius: var(--radius-md);
  letter-spacing: 0.01em;
  font-weight: 800;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(185, 28, 28, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 1.6rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-title {
  font-size: clamp(2.3rem, 5.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 1.4rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}

.text-gradient-red,
.text-gradient-gold {
  background: linear-gradient(135deg, #ffffff 15%, #fca5a5 50%, #e50914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-desc {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.2rem;
  font-weight: 400;
  line-height: 1.75;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-sub-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.hero-sub-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-sub-badges i {
  color: var(--accent-bright);
}

/* Hero Visual Showcase */
.hero-visual-wrap {
  margin-top: 3.5rem;
  position: relative;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(220, 38, 38, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), var(--shadow-glow);
  background: var(--bg-secondary);
}

.hero-visual-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-visual-card:hover .hero-visual-img {
  transform: scale(1.015);
}

.visual-badge-left {
  position: absolute;
  bottom: 1.5rem;
  background: rgba(8, 8, 12, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(220, 38, 38, 0.32);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-card);
}

[dir="rtl"] .visual-badge-left {
  right: 1.5rem;
  left: auto;
}
[dir="ltr"] .visual-badge-left {
  left: 1.5rem;
  right: auto;
}

.visual-badge-right {
  position: absolute;
  top: 1.5rem;
  background: linear-gradient(135deg, #e50914 0%, #990d16 100%);
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 18px rgba(229, 9, 20, 0.5);
}

[dir="rtl"] .visual-badge-right {
  left: 1.5rem;
  right: auto;
}
[dir="ltr"] .visual-badge-right {
  right: 1.5rem;
  left: auto;
}

/* Stats Bar */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.6rem 1rem;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-num span {
  color: var(--accent-light);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ==========================================================================
   Sections Shared System
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.25rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Transformation Split Graphic */
.graphic-banner-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  margin-bottom: 3.5rem;
}

.graphic-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Reality Check: Scannable Comparison Cards
   ========================================================================== */
.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.comparison-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.comparison-card.card-pain {
  background: rgba(14, 14, 18, 0.8);
  border-top: 4px solid #475569;
}

.comparison-card.card-gain {
  background: linear-gradient(180deg, rgba(185, 28, 28, 0.09) 0%, rgba(16, 16, 22, 0.88) 100%);
  border: 1px solid rgba(220, 38, 38, 0.35);
  border-top: 4px solid var(--accent-bright);
  box-shadow: var(--shadow-glow);
}

.card-top-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.card-pill {
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.card-pain .card-pill {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.card-gain .card-pill {
  background: rgba(185, 28, 28, 0.18);
  color: var(--accent-light);
  border: 1px solid rgba(220, 38, 38, 0.35);
}

.card-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.items-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.items-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.icon-x {
  color: var(--danger-color);
  font-weight: bold;
  font-size: 1.15rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.icon-check {
  color: var(--accent-bright);
  font-weight: bold;
  font-size: 1.15rem;
  line-height: 1.4;
  flex-shrink: 0;
}

/* ==========================================================================
   The 3 Phases Roadmap
   ========================================================================== */
.phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.phase-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.phase-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.phase-card.phase-featured {
  background: linear-gradient(180deg, rgba(185, 28, 28, 0.09) 0%, rgba(16, 16, 22, 0.88) 100%);
  border-color: var(--border-accent);
}

.phase-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--accent-bright);
  margin-bottom: 0.5rem;
}

.phase-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(185, 28, 28, 0.14);
  color: var(--accent-light);
  border: 1px solid rgba(220, 38, 38, 0.28);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  width: fit-content;
}

.phase-heading {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.phase-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.phase-checklist {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.phase-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phase-checklist i {
  color: var(--accent-bright);
  font-size: 0.85rem;
}

/* ==========================================================================
   The 5 Pillars Strip
   ========================================================================== */
.pillars-five-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.pillar-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.25rem;
  text-align: center;
  transition: var(--transition);
}

.pillar-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.pillar-icon-box {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(185, 28, 28, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.28);
  border-radius: 50%;
  color: var(--accent-light);
  font-size: 1.25rem;
}

.pillar-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.pillar-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   Interactive Calculator
   ========================================================================== */
.calculator-box {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), var(--shadow-glow);
}

.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}

.calc-group label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.calc-slider-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.calc-slider {
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 7px;
  border-radius: var(--radius-full);
  background: #252530;
  outline: none;
  transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e50914 0%, #990d16 100%);
  cursor: pointer;
  box-shadow: 0 0 14px var(--accent-bright);
  transition: transform 0.15s;
  border: 2px solid #ffffff;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.18);
}

.calc-display {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  min-width: 80px;
  text-align: center;
}

.calc-results-grid {
  background: rgba(185, 28, 28, 0.08);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.calc-metric-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--accent-bright);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.calc-metric-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ==========================================================================
   Inside THE90 Features
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.feature-box {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition);
}

.feature-box:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.feature-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(185, 28, 28, 0.14);
  border: 1px solid rgba(220, 38, 38, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--accent-light);
}

.feature-text h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.feature-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Creator Quote Box */
.creator-box {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 3.25rem;
  max-width: 900px;
  margin: 4.5rem auto 0;
  position: relative;
  box-shadow: var(--shadow-card);
}

.creator-quote-icon {
  position: absolute;
  top: 1.5rem;
  font-size: 3.5rem;
  color: rgba(220, 38, 38, 0.16);
  line-height: 1;
}

[dir="rtl"] .creator-quote-icon {
  left: 2rem;
}
[dir="ltr"] .creator-quote-icon {
  right: 2rem;
}

.creator-content {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.creator-content p {
  margin-bottom: 1.15rem;
}

.creator-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
}

.creator-img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid var(--accent-bright);
  object-fit: cover;
}

.creator-titles h5 {
  font-size: 1.15rem;
  font-weight: 800;
}

.creator-titles span {
  font-size: 0.86rem;
  color: var(--accent-light);
  font-weight: 600;
}

/* ==========================================================================
   Urgency / Countdown
   ========================================================================== */
.scarcity-card {
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.12) 0%, rgba(14, 14, 20, 0.95) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), var(--shadow-glow);
}

.countdown-wrap {
  display: inline-flex;
  gap: 1.25rem;
  margin: 2.25rem 0;
}

.countdown-unit {
  background: rgba(8, 8, 12, 0.92);
  border: 1px solid rgba(220, 38, 38, 0.28);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  min-width: 85px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.countdown-digits {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.countdown-label {
  font-size: 0.78rem;
  color: var(--accent-light);
  font-weight: 700;
  margin-top: 0.35rem;
}

/* ==========================================================================
   FAQ Accordions
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.faq-card.active {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.faq-header {
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  user-select: none;
}

.faq-icon {
  color: var(--accent-bright);
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.faq-card.active .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.75rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-card.active .faq-body {
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */
.final-section {
  padding: 6.5rem 0 5rem;
  text-align: center;
}

.final-card {
  background: radial-gradient(circle at 50% 50%, rgba(185, 28, 28, 0.14) 0%, rgba(14, 14, 20, 0.96) 75%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 4.5rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), var(--shadow-glow);
  max-width: 940px;
  margin: 0 auto;
}

/* ==========================================================================
   Floating Bar & Quick Actions
   ========================================================================== */
.floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(8, 8, 11, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-accent);
  padding: 0.85rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
}

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

.floating-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.floating-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-thumb {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-accent);
}

/* WhatsApp Floating Bubble */
.floating-whatsapp {
  position: fixed;
  bottom: 85px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--whatsapp-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

[dir="rtl"] .floating-whatsapp {
  left: 24px;
}
[dir="ltr"] .floating-whatsapp {
  right: 24px;
}

.floating-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 3.5rem 0 2rem;
  background-color: #050507;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 1.5rem 0;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: linear-gradient(135deg, #e50914 0%, #990d16 100%);
  color: #ffffff;
  border-color: var(--accent-bright);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.45);
}

.footer-links-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links-row a {
  color: var(--text-secondary);
  font-weight: 600;
}

.footer-links-row a:hover {
  color: var(--accent-bright);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .comparison-container,
  .phases-grid {
    grid-template-columns: 1fr;
  }
  .pillars-five-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  .hero-section {
    padding: 3rem 0 2rem;
  }
  .btn-hero-cta {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.05rem;
  }
  .calc-inputs {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .calc-results-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .calculator-box {
    padding: 1.75rem 1.25rem;
  }
  .pillars-five-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .stat-card {
    padding: 1.15rem 0.6rem;
  }
  .stat-num {
    font-size: 1.8rem;
  }
  .countdown-wrap {
    gap: 0.5rem;
  }
  .countdown-unit {
    min-width: 65px;
    padding: 0.75rem 0.5rem;
  }
  .countdown-digits {
    font-size: 1.6rem;
  }
  .floating-left {
    display: none;
  }
  .floating-bar .btn {
    width: 100%;
  }
  .creator-box {
    padding: 2rem 1.25rem;
  }
}
