/* ============================================================
   TheraNEX Centre — Premium CSS
   Palette: #05050C | #F5F7FA | #123A8A | #2A73C9 | #18B7D9 | #39D9D6
   Fonts: Sora (titres) + Inter (corps)
   ============================================================ */

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

:root {
  --black:      #05050C;
  --white:      #F5F7FA;
  --blue-deep:  #123A8A;
  --blue:       #2A73C9;
  --cyan:       #18B7D9;
  --turquoise:  #39D9D6;
  --gray-light: #B8C8D6;
  --gray-mid:   #6B7E8F;
  --card-bg:    #ffffff;
  --section-light: #F5F7FA;
  --section-dark:  #060C1A;
  --gradient-main: linear-gradient(135deg, var(--blue-deep), var(--blue), var(--cyan));
  --gradient-accent: linear-gradient(135deg, var(--cyan), var(--turquoise));
  --shadow-sm: 0 2px 12px rgba(18,58,138,0.08);
  --shadow-md: 0 8px 32px rgba(18,58,138,0.12);
  --shadow-lg: 0 20px 60px rgba(5,5,12,0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.2; font-weight: 700; }
p { line-height: 1.75; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ===== CONTAINER ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 60%, var(--turquoise) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(24,183,217,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(24,183,217,0.5);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
}

.btn-full { width: 100%; justify-content: center; }

.btn-large {
  padding: 18px 40px;
  font-size: 17px;
}

/* ===== SECTION BASE ===== */
.section { padding: 100px 0; }
.section-light { background: var(--section-light); }
.section-dark { background: var(--section-dark); }

.section-tag {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 6px 14px;
  background: rgba(24,183,217,0.1);
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(24,183,217,0.2);
}
.section-tag-light { color: var(--turquoise); background: rgba(57,217,214,0.1); border-color: rgba(57,217,214,0.2); }

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px;
  color: var(--black);
}
.section-title-light { color: var(--white); }

.section-subtitle {
  font-size: 18px;
  color: var(--gray-mid);
  max-width: 680px;
  margin-bottom: 56px;
}
.section-body-light {
  font-size: 17px;
  color: rgba(245,247,250,0.72);
  margin-bottom: 32px;
  line-height: 1.75;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.navbar.scrolled {
  background: rgba(5,5,12,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}
.logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}
.logo-accent { color: var(--turquoise); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 100px;
  transition: var(--transition);
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
  color: white !important;
  padding: 9px 20px !important;
  box-shadow: 0 4px 16px rgba(24,183,217,0.3);
}
.nav-cta:hover {
  box-shadow: 0 6px 24px rgba(24,183,217,0.5) !important;
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 60% 40%, rgba(18,58,138,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(24,183,217,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(57,217,214,0.08) 0%, transparent 60%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0;
  animation: floatParticle var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: var(--op, 0.4); }
  90% { opacity: var(--op, 0.4); }
  50% { transform: translateY(-60px) scale(1.2); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turquoise);
  padding: 6px 14px;
  background: rgba(57,217,214,0.08);
  border: 1px solid rgba(57,217,214,0.2);
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--turquoise);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(245,247,250,0.65);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(245,247,250,0.6);
}
.trust-item i { color: var(--turquoise); font-size: 14px; }

/* Hero Visual */
.hero-visual {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.tablet-mockup {
  position: relative;
  width: 360px;
  background: rgba(18,58,138,0.15);
  border: 1.5px solid rgba(24,183,217,0.25);
  border-radius: 24px;
  padding: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(5,5,12,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}

.tablet-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(24,183,217,0.12) 0%, transparent 70%);
  z-index: -1;
  border-radius: 40px;
}

.tablet-screen { background: rgba(6,12,26,0.8); border-radius: 16px; overflow: hidden; }
.tablet-ui { padding: 20px; }

.tablet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.tablet-logo-small {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tablet-progress { text-align: right; }
.progress-label { font-size: 10px; color: rgba(245,247,250,0.4); margin-bottom: 4px; }
.progress-bar { width: 100px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gradient-accent); border-radius: 4px; transition: width 1s ease; }
.progress-value { font-size: 10px; color: var(--turquoise); font-weight: 600; margin-top: 2px; text-align: right; }

.tablet-exercise { text-align: center; }
.exercise-tag {
  display: inline-block;
  font-size: 10px;
  color: var(--cyan);
  background: rgba(24,183,217,0.1);
  border: 1px solid rgba(24,183,217,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.exercise-name {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.exercise-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 20px;
}
.exercise-figure { position: relative; display: flex; align-items: center; justify-content: center; }
.figure-body {
  width: 56px;
  height: 80px;
  background: linear-gradient(180deg, rgba(24,183,217,0.3), rgba(57,217,214,0.1));
  border: 1.5px solid rgba(57,217,214,0.4);
  border-radius: 28px;
  position: relative;
}
.figure-indicator {
  position: absolute;
  top: -8px;
  right: -8px;
}
.pulse-ring {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--turquoise);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
  top: -5px;
  left: -5px;
}
.pulse-dot {
  width: 14px;
  height: 14px;
  background: var(--turquoise);
  border-radius: 50%;
}
@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.exercise-meta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.meta-item {
  font-size: 11px;
  color: rgba(245,247,250,0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}
.meta-item i { color: var(--cyan); }

.tablet-nav-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  padding-bottom: 4px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.dot.active { background: var(--cyan); }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,247,250,0.4);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: white;
  border-bottom: 1px solid rgba(18,58,138,0.08);
  padding: 32px 0;
  box-shadow: var(--shadow-sm);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 12px 40px;
}
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--blue-deep);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-unit {
  font-size: 20px;
  color: var(--cyan);
}
.stat-label {
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 500;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(18,58,138,0.1);
}

/* ===== PROBLEM GRID ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.problem-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(18,58,138,0.07);
  transition: var(--transition);
  position: relative;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.problem-card-highlight {
  background: linear-gradient(135deg, var(--blue-deep), #0d2e6f);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(18,58,138,0.3);
}
.problem-card-highlight .problem-text h3,
.problem-card-highlight .problem-text p { color: white; }
.problem-card-highlight .problem-text p { color: rgba(255,255,255,0.7); }

.problem-icon {
  width: 52px;
  height: 52px;
  background: rgba(18,58,138,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--blue);
}
.problem-icon-glow {
  background: rgba(57,217,214,0.15);
  color: var(--turquoise);
  box-shadow: 0 0 20px rgba(57,217,214,0.2);
}
.problem-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}
.problem-text p { font-size: 14px; color: var(--gray-mid); line-height: 1.65; }
.problem-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 20px;
}
.problem-tag-red { background: rgba(239,68,68,0.1); color: #EF4444; }
.problem-tag-orange { background: rgba(245,158,11,0.1); color: #F59E0B; }
.problem-tag-green { background: rgba(57,217,214,0.15); color: var(--turquoise); }

/* ===== PROFILES GRID ===== */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.profile-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.profile-card:hover {
  background: rgba(24,183,217,0.07);
  border-color: rgba(24,183,217,0.2);
  transform: translateY(-4px);
}
.profile-icon {
  font-size: 24px;
  color: var(--cyan);
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  background: rgba(24,183,217,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-card h3 { font-size: 17px; color: white; margin-bottom: 10px; font-weight: 600; }
.profile-card p { font-size: 14px; color: rgba(245,247,250,0.55); line-height: 1.65; }

/* ===== STEPS ===== */
.steps-container {
  position: relative;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.steps-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), transparent);
}
.step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
}
.step-number {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--cyan);
  background: rgba(24,183,217,0.08);
  border: 1px solid rgba(24,183,217,0.2);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  letter-spacing: -0.02em;
}
.step-content { flex: 1; padding-top: 12px; }
.step-icon { font-size: 20px; color: var(--blue); margin-bottom: 12px; }
.step-content h3 { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.step-content p { font-size: 15px; color: var(--gray-mid); line-height: 1.75; max-width: 620px; }

/* ===== TECH SECTION ===== */
.tech-section { overflow: hidden; }
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tech-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.tech-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(245,247,250,0.75);
}
.feature-icon {
  width: 20px;
  height: 20px;
  background: rgba(57,217,214,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turquoise);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tech-card-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tech-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition);
}
.tech-card:hover { background: rgba(24,183,217,0.07); border-color: rgba(24,183,217,0.2); }
.tech-card-1 { z-index: 3; }
.tech-card-2 { z-index: 2; border-top: none; border-radius: 0; }
.tech-card-3 { z-index: 1; border-top: none; border-radius: 0 0 var(--radius-md) var(--radius-md); }

.tc-icon {
  width: 44px;
  height: 44px;
  background: rgba(24,183,217,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--cyan);
  flex-shrink: 0;
}
.tc-label { font-size: 11px; color: rgba(245,247,250,0.4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.tc-value { font-size: 15px; color: white; font-weight: 600; font-family: 'Sora', sans-serif; }

.tech-arrow {
  position: absolute;
  right: -20px;
  color: var(--cyan);
  font-size: 14px;
  opacity: 0.4;
}
.tech-arrow-1 { top: calc(33.3% - 8px); }
.tech-arrow-2 { top: calc(66.6% - 8px); }

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.benefit-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(18,58,138,0.07);
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(24,183,217,0.2); }
.benefit-card-large {
  grid-column: span 1;
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0A2259 100%);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(18,58,138,0.25);
}
.benefit-card-large h3, .benefit-card-large p { color: white; }
.benefit-card-large p { color: rgba(255,255,255,0.65); }
.benefit-icon-circle {
  width: 52px;
  height: 52px;
  background: rgba(24,183,217,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--cyan);
  margin-bottom: 20px;
}
.benefit-card-large .benefit-icon-circle {
  background: rgba(57,217,214,0.15);
  color: var(--turquoise);
}
.benefit-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--black); }
.benefit-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.7; }

/* ===== PRICING ===== */
.pricing-container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 64px;
}
.pricing-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  box-shadow: 0 24px 64px rgba(5,5,12,0.3);
  min-width: 340px;
}
.pricing-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.pricing-name {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-mid);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}
.price-amount {
  font-family: 'Sora', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.04em;
}
.price-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8px;
}
.price-currency { font-size: 24px; font-weight: 700; color: var(--blue-deep); }
.price-period { font-size: 14px; color: var(--gray-mid); }
.pricing-desc { font-size: 14px; color: var(--gray-mid); margin-bottom: 28px; line-height: 1.65; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}
.pricing-features li i { color: var(--cyan); font-size: 14px; }
.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-light);
  margin-top: 12px;
}

.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.pricing-info-card:hover { background: rgba(24,183,217,0.06); border-color: rgba(24,183,217,0.15); }
.pi-icon {
  font-size: 20px;
  color: var(--cyan);
  margin-bottom: 12px;
}
.pricing-info-card h3 { font-size: 16px; color: white; font-weight: 600; margin-bottom: 8px; }
.pricing-info-card p { font-size: 13px; color: rgba(245,247,250,0.55); line-height: 1.65; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
  margin-top: 10px;
  transition: var(--transition);
}
.contact-link:hover { color: var(--turquoise); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: white;
  border: 1.5px solid rgba(18,58,138,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(24,183,217,0.2); }
.faq-item.active { border-color: rgba(24,183,217,0.3); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  transition: var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(18,58,138,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--blue);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.active .faq-icon {
  background: var(--cyan);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.75;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  background: var(--black);
  overflow: hidden;
  text-align: center;
  padding: 120px 0;
}
.cta-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(18,58,138,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 20% 80%, rgba(24,183,217,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 80% 20%, rgba(57,217,214,0.08) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; }
.cta-badge {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turquoise);
  padding: 6px 14px;
  background: rgba(57,217,214,0.08);
  border: 1px solid rgba(57,217,214,0.2);
  border-radius: 100px;
  margin-bottom: 24px;
}
.cta-title {
  font-size: clamp(32px, 4vw, 56px);
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.cta-subtitle {
  font-size: 18px;
  color: rgba(245,247,250,0.55);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-contact {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: rgba(245,247,250,0.45);
}
.cta-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,247,250,0.65);
  font-weight: 500;
  transition: var(--transition);
}
.cta-contact a:hover { color: var(--turquoise); }
.cta-contact i { color: var(--cyan); }

/* ===== FOOTER ===== */
.footer {
  background: #03030A;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
}
.footer-logo span {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
}
.footer-desc {
  font-size: 14px;
  color: rgba(245,247,250,0.4);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 320px;
}
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(245,247,250,0.35);
}
.footer-address i { color: var(--cyan); margin-top: 2px; flex-shrink: 0; }
.footer-nav h4, .footer-contact h4 {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(245,247,250,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-nav ul, .footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-contact a {
  font-size: 14px;
  color: rgba(245,247,250,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--turquoise); }
.footer-contact a i { color: var(--cyan); font-size: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(245,247,250,0.3);
  line-height: 1.5;
}
.footer-legal { font-size: 12px !important; color: rgba(245,247,250,0.2) !important; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO IMAGE ===== */
.hero-image-wrap {
  position: relative;
  width: 420px;
  height: 560px;
  flex-shrink: 0;
}

.hero-person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 32px 80px rgba(5,5,12,0.6), 0 0 0 1px rgba(24,183,217,0.15);
  position: relative;
  z-index: 1;
}

.hero-image-glow {
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse at center, rgba(24,183,217,0.18) 0%, transparent 70%);
  z-index: 0;
  border-radius: 40px;
  pointer-events: none;
}

.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(5,5,12,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(57,217,214,0.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  z-index: 2;
}

.hib-dot {
  width: 8px;
  height: 8px;
  background: var(--turquoise);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .tech-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-container { grid-template-columns: 1fr; }
  .pricing-card { min-width: auto; }
  .problem-grid { grid-template-columns: 1fr; }
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero { padding: 100px 0 72px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80vw;
    max-width: 360px;
    height: 100vh;
    background: rgba(5,5,12,0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 32px;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 18px; padding: 12px 0; width: 100%; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links .nav-cta { padding: 12px 0 !important; background: none !important; box-shadow: none !important; color: var(--turquoise) !important; }
  .nav-burger { display: flex; }

  .hero-title { font-size: 36px; }
  .hero-cta-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .stats-grid { gap: 0; }
  .stat-item { padding: 12px 16px; flex: 1; }
  .stat-divider { display: none; }

  .profiles-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card-large { grid-column: span 1; }

  .steps-line { display: none; }
  .step { flex-direction: column; gap: 16px; padding-left: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero-trust { gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 30px; }
  .section-title { font-size: 26px; }
  .pricing-card { padding: 32px 24px; }
}

/* ===== CLARIFICATION BAR ===== */
.clarif-bar {
  background: #0A1020;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 18px 0;
}
.clarif-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.clarif-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  white-space: nowrap;
}
.clarif-no { color: rgba(245,247,250,0.45); }
.clarif-no i { color: #E05555; }
.clarif-yes { color: var(--turquoise); font-weight: 600; }
.clarif-yes i { color: var(--turquoise); }
.clarif-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ===== STEPS CTA ===== */
.steps-cta {
  text-align: center;
  margin-top: 56px;
}

/* ===== EXPERIENCE GRID ===== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.exp-card {
  background: white;
  border: 1.5px solid rgba(18,58,138,0.07);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.exp-card:hover {
  border-color: rgba(24,183,217,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.exp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(18,58,138,0.08), rgba(24,183,217,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--cyan);
  margin: 0 auto 18px;
}
.exp-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.exp-card p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.65;
}

/* ===== PROFILE TAG ===== */
.profile-tag {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(24,183,217,0.12);
  border: 1px solid rgba(24,183,217,0.2);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ===== DIFF TABLE ===== */
.diff-table-wrap {
  margin-top: 56px;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.diff-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 14px;
}
.diff-table th, .diff-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(18,58,138,0.06);
}
.diff-table th:first-child, .diff-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--black);
  width: 38%;
  padding-left: 28px;
}
.diff-table thead tr {
  background: linear-gradient(135deg, #060C1A, #0E1E3A);
}
.diff-table thead th {
  color: rgba(245,247,250,0.55);
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.diff-col-yes {
  color: var(--turquoise) !important;
  background: rgba(57,217,214,0.08) !important;
}
.diff-col-no { color: rgba(245,247,250,0.35) !important; }
.diff-table tbody tr:nth-child(even) { background: rgba(18,58,138,0.02); }
.diff-table tbody tr:hover { background: rgba(24,183,217,0.04); }
.diff-yes { color: #22C55E; font-size: 16px; }
.diff-no  { color: #EF4444; font-size: 16px; }
.diff-mid { color: #F59E0B; font-size: 14px; }
.diff-table td:last-child { background: rgba(57,217,214,0.04); }

/* ===== RESPONSIVE NOUVELLES SECTIONS ===== */
@media (max-width: 1024px) {
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-table { font-size: 13px; }
  .diff-table th, .diff-table td { padding: 13px 14px; }
}
@media (max-width: 768px) {
  .clarif-grid { justify-content: flex-start; gap: 4px 0; }
  .clarif-item { font-size: 12px; padding: 6px 14px; }
  .clarif-divider { display: none; }
  .experience-grid { grid-template-columns: 1fr; }
  .diff-table-wrap { border-radius: var(--radius-md); }
  .diff-table th:first-child, .diff-table td:first-child { width: 42%; padding-left: 14px; }
  .diff-table th, .diff-table td { padding: 12px 8px; font-size: 12px; }
}
