/* ==========================================================================
   AXESKO SAAS LANDING PAGE - MODERN DESIGN SYSTEM
   Palette: Bleu Roi, Cyan Électrique, Vert Confiance, Blanc Pur
   ========================================================================== */

:root {
  /* Brand Colors */
  --primary: #1E40AF;
  --primary-hover: #1D4ED8;
  --primary-dark: #0F172A;
  --primary-deep: #172554;
  --primary-light: #EFF6FF;
  --primary-glow: rgba(37, 99, 235, 0.25);

  --accent: #0284C7;
  --accent-cyan: #06B6D4;
  --accent-light: #E0F2FE;

  --success: #10B981;
  --success-dark: #059669;
  --success-light: #ECFDF5;

  --warning: #F59E0B;
  --warning-light: #FEF3C7;

  --danger: #EF4444;
  --danger-light: #FEE2E2;

  --mtn-yellow: #FFCC00;
  --mtn-dark: #1F2937;
  --moov-blue: #0070BA;
  --celtiis-green: #00A651;

  /* Neutral Surface & Text */
  --bg-body: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F1F5F9;
  --text-main: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-color: #E2E8F0;
  --border-hover: #CBD5E1;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.35);

  /* Layout & Transitions */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==================== BASE RESET ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Garantit que l'attribut [hidden] masque toujours l'élément, même si une
   classe applique par ailleurs display:flex/grid (même spécificité — sans
   ceci, l'ordre des règles peut laisser l'élément visible). */
[hidden] { display: none !important; }

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

a:hover {
  color: var(--accent);
}

ul {
  list-style: none;
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, #1E40AF 0%, #0284C7 60%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success-dark) !important; }
.text-warning { color: var(--warning) !important; }
.text-accent { color: var(--accent) !important; }
.text-white { color: #FFFFFF !important; }
.text-muted { color: var(--text-muted) !important; }
.text-mtn { color: #D97706 !important; }

.font-bold { font-weight: 700; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  white-space: nowrap;
  user-select: none;
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
}

.btn-md {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 0.9rem 1.85rem;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 1.1rem 2.2rem;
  font-size: 1.15rem;
}

.btn-block {
  width: 100%;
}
/* Filet de sécurité : sur un très petit écran, le libellé d'un bouton pleine
   largeur peut rester plus large que le bouton lui-même (.btn a
   white-space:nowrap) — autant le laisser passer sur deux lignes proprement
   plutôt que déborder hors du bouton. */
.btn-block span { white-space: normal; text-align: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #2563EB 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(30, 64, 175, 0.45);
  color: #FFFFFF;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--primary-dark);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-card-alt);
  border-color: var(--border-hover);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-white {
  background: #FFFFFF;
  color: var(--primary-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  font-weight: 700;
}

.btn-white:hover {
  background: #F8FAFC;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.icon-xs { width: 16px; height: 16px; }
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 22px; height: 22px; }
.icon-lg { width: 28px; height: 28px; }

/* Pulse Glow Animation */
.pulse-effect {
  position: relative;
}

.pulse-effect::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(37, 99, 235, 0.5);
  animation: pulse-ring 2.2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  opacity: 0;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 0; }
  100% { transform: scale(1.1); opacity: 0; }
}

/* ==================== GLASS PANEL ==================== */
.glass-panel {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ==================== SITE HEADER / NAVBAR ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-md);
  padding: 0.3rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  max-width: 145px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  transition: transform var(--transition-fast), filter var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

.footer-logo-img {
  height: 52px;
  border-radius: 10px;
  background: #FFFFFF;
  padding: 3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* Navigation Links */
.desktop-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-body);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

/* Mobile Hamburger Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
}

.hamburger-btn .bar {
  width: 100%;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ==================== MOBILE DRAWER ==================== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.mobile-drawer.active {
  visibility: visible;
  opacity: 1;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  background: #FFFFFF;
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-bounce);
  overflow-y: auto;
}

.mobile-drawer.active .drawer-content {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.drawer-close-btn {
  font-size: 2rem;
  line-height: 1;
  color: var(--text-muted);
}

.drawer-nav {
  padding: 1.5rem 0;
  flex-grow: 1;
}

.drawer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.drawer-link:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.drawer-footer {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.drawer-contact-info {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.drawer-contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

/* ==================== 1. HERO SECTION ==================== */
.hero-section {
  position: relative;
  padding-top: 130px;
  padding-bottom: 70px;
  background: radial-gradient(circle at 15% 10%, rgba(224, 242, 254, 0.6) 0%, transparent 40%),
              radial-gradient(circle at 85% 30%, rgba(219, 234, 254, 0.5) 0%, transparent 45%),
              linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.shape-2 {
  position: absolute;
  bottom: 50px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.shape-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(148, 163, 184, 0.15) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.7;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  border: 1px solid #BFDBFE;
  padding: 0.35rem 1rem 0.35rem 0.4rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.badge-tag-brand {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--success);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.4; }
  100% { transform: scale(0.9); opacity: 1; }
}

.badge-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.play-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

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

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 18px;
  background-color: var(--border-color);
}

/* ==================== HERO VISUAL & DIRECTOR SHOWCASE ==================== */
.hero-visual {
  position: relative;
}

.visual-wrapper {
  position: relative;
  padding: 1.5rem 0.5rem 2rem 0;
}

.visual-glow {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, rgba(6, 182, 212, 0.18) 50%, transparent 80%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

/* 1. Director Showcase Card */
.director-showcase-card {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(226, 232, 240, 0.8);
  width: 100%;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -12px rgba(37, 99, 235, 0.22);
}

.director-img-container {
  position: relative;
  border-radius: calc(var(--radius-xl) - 4px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.director-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.director-showcase-card:hover .director-photo {
  transform: scale(1.03);
}

.img-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.45) 100%);
  pointer-events: none;
}

/* Director Caption Pill */
.director-caption-pill {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  color: #FFFFFF;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.caption-avatar {
  font-size: 1.15rem;
}

.caption-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.caption-sub {
  display: block;
  font-size: 0.68rem;
  color: #CBD5E1;
}

/* Floating Widgets on Photo */
.photo-floating-widget {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.22);
  animation: float-slow 4s ease-in-out infinite alternate;
}

@keyframes float-slow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.stat-widget-top {
  top: 14px;
  left: 14px;
}

.stat-widget-bottom {
  bottom: 65px;
  right: 14px;
  animation-delay: 1.5s;
}

.widget-icon-bg {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.widget-icon-bg svg {
  width: 18px;
  height: 18px;
}

.bg-emerald-light {
  background: #D1FAE5;
}

.widget-momo-badge {
  width: 32px;
  height: 32px;
  background: #FFCC00;
  color: #000000;
  font-size: 0.68rem;
  font-weight: 800;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.widget-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
}

.widget-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.2;
}

.widget-sub {
  display: block;
  font-size: 0.62rem;
  color: var(--text-light);
}

/* 2. Floating Phone Mockup */
.mockup-phone {
  position: absolute;
  right: -25px;
  bottom: -40px;
  width: 270px;
  background: #FFFFFF;
  border-radius: 36px;
  padding: 10px;
  border: 3px solid #0F172A;
  box-shadow: 0 25px 50px -10px rgba(15, 23, 42, 0.35);
  z-index: 2;
}

.animate-float {
  animation: floating-phone 4.5s ease-in-out infinite alternate;
}

@keyframes floating-phone {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.phone-screen {
  background: #F8FAFC;
  border-radius: 28px;
  padding: 0.85rem;
  position: relative;
  overflow: hidden;
  border: 1px solid #E2E8F0;
}

.phone-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.6rem;
  padding: 0 0.25rem;
}

.phone-app-header {
  margin-bottom: 0.75rem;
}

.phone-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.user-avatar-sm {
  font-size: 1.1rem;
}

.phone-app-name {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
}

.phone-child-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Phone Receipt Box */
.phone-receipt-box {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 0.85rem;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.receipt-check-icon {
  width: 32px;
  height: 32px;
  background: #D1FAE5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.4rem;
}

.receipt-check-icon svg {
  width: 18px;
  height: 18px;
}

.receipt-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-main);
}

.receipt-school {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.receipt-amount-display {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  padding: 0.35rem 0;
  border-top: 1px dashed var(--border-color);
  border-bottom: 1px dashed var(--border-color);
  margin-bottom: 0.5rem;
}

.receipt-meta {
  font-size: 0.68rem;
  text-align: left;
  margin-bottom: 0.65rem;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}

.phone-download-btn {
  width: 100%;
  background: #EFF6FF;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.45rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid #BFDBFE;
}

.phone-download-btn:hover {
  background: #DBEAFE;
}

/* Phone Notification Bubble */
.phone-notif-bubble {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: #1E293B;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  animation: notif-slide 3s ease-in-out infinite alternate;
}

@keyframes notif-slide {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

.notif-icon-bubble {
  font-size: 0.9rem;
}

.notif-sender {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.notif-msg {
  font-size: 0.6rem;
  color: #E2E8F0;
  line-height: 1.2;
}

/* Floating Badge MoMo */
.floating-badge-momo {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #FFFFFF;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}

.momo-dot {
  width: 10px;
  height: 10px;
  background: #10B981;
  border-radius: 50%;
}

/* ==================== OPERATORS PARTNERS BANNER ==================== */
.partners-banner {
  margin-top: 4.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.partners-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.partners-logos-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.partner-chip {
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.partner-chip:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.operator-icon {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 900;
}

.operator-icon.mtn { background: #FFCC00; color: #000000; }
.operator-icon.moov { background: #005DAA; color: #FFFFFF; }
.operator-icon.celtiis { background: #00A651; color: #FFFFFF; }
.operator-icon.visa { background: #1A1F71; color: #FFFFFF; }

/* ==================== COMMON SECTION STYLES ==================== */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  max-width: 780px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: #EFF6FF;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid #DBEAFE;
}

.section-title {
  font-size: 2.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==================== 2. SECTION « POURQUOI AXESKO ? » ==================== */
.section-why {
  background: #FFFFFF;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: #BFDBFE;
  box-shadow: 0 20px 35px -8px rgba(37, 99, 235, 0.12);
}

.card-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.bg-blue-light { background: #EFF6FF; }
.bg-emerald-light { background: #ECFDF5; }
.bg-amber-light { background: #FEF3C7; }
.bg-sky-light { background: #E0F2FE; }

.feature-icon {
  width: 28px;
  height: 28px;
}

.card-badge-step {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #E2E8F0;
  user-select: none;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.card-desc {
  color: var(--text-body);
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.card-checklist {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.card-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.card-checklist li:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==================== 3. SECTION « COMMENT ÇA MARCHE ? » ==================== */
.section-how {
  background: var(--bg-body);
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
}

.step-card {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: #BFDBFE;
}

.step-card-reverse {
  grid-template-columns: 1.25fr 1fr;
}

.step-card-reverse .step-visual {
  order: 2;
}

.step-card-reverse .step-content {
  order: 1;
}

.step-visual {
  position: relative;
}

.step-number-bubble {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, #2563EB 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(30, 64, 175, 0.3);
}

.step-illustration-box {
  background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  text-align: center;
}

.step-icon-big {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.75rem;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.step-icon-big svg {
  width: 32px;
  height: 32px;
}

.step-badge-sub {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.step-mock-content {
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 1rem;
  border: 1px solid #E2E8F0;
}

.mock-line {
  height: 8px;
  background: #E2E8F0;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.mock-line.full { width: 100%; }
.mock-line.half { width: 60%; }

.mock-tag-list {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.mock-tag {
  background: #EFF6FF;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.momo-selector-preview {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.momo-badge-small {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.momo-badge-small.mtn { background: #FFCC00; color: #000; }
.momo-badge-small.moov { background: #005DAA; color: #FFF; }
.momo-badge-small.celtiis { background: #00A651; color: #FFF; }

.mock-success-pill {
  background: #ECFDF5;
  color: var(--success-dark);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem;
  border-radius: 6px;
}

.mock-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
  height: 70px;
  margin-bottom: 0.75rem;
  padding-top: 0.5rem;
}

.bar-col {
  width: 24px;
  background: #CBD5E1;
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease;
}

.bar-col.active {
  background: linear-gradient(180deg, var(--success) 0%, var(--primary) 100%);
}

.mock-status-text {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
}

/* Step Content text */
.step-header-tag {
  margin-bottom: 0.75rem;
}

.step-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  background: #EFF6FF;
  color: var(--primary);
}

.step-pill.green {
  background: #ECFDF5;
  color: var(--success-dark);
}

.step-pill.blue {
  background: #E0F2FE;
  color: var(--accent);
}

.step-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.step-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.step-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.step-highlight svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==================== 4. SECTION « FONCTIONNALITÉS » ==================== */
.section-features {
  background: #FFFFFF;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  background: #FFFFFF;
  border-color: #93C5FD;
  transform: translateY(-5px);
  box-shadow: 0 16px 30px -6px rgba(37, 99, 235, 0.1);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon-box svg {
  width: 24px;
  height: 24px;
}

.f-blue { background: #EFF6FF; color: var(--primary); }
.f-cyan { background: #E0F2FE; color: var(--accent); }
.f-emerald { background: #ECFDF5; color: var(--success-dark); }
.f-amber { background: #FEF3C7; color: var(--warning); }
.f-rose { background: #FFE4E6; color: #E11D48; }
.f-indigo { background: #EEF2FF; color: #4F46E5; }
.f-teal { background: #CCFBF1; color: #0D9488; }
.f-violet { background: #F3E8FF; color: #7C3AED; }

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.feature-link {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}

/* ==================== 5. SECTION SIMULATEUR INTERACTIF ==================== */
.section-simulator {
  background: linear-gradient(180deg, var(--bg-body) 0%, #EFF6FF 100%);
}

.simulator-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  padding: 3.5rem;
  border-radius: var(--radius-xl);
  align-items: center;
}

.simulator-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.simulator-subtitle {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.sim-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.sim-control-group {
  display: flex;
  flex-direction: column;
}

.sim-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.sim-val-pill {
  background: var(--primary);
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 800;
}

.sim-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #CBD5E1;
  outline: none;
}

.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
  transition: transform var(--transition-fast);
}

.sim-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.4rem;
}

/* Results Box */
.simulator-results-box {
  background: #FFFFFF;
  border: 1.5px solid #BFDBFE;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}

.results-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  text-align: center;
}

.res-item {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.res-item.highlight {
  background: #ECFDF5;
  border-color: #A7F3D0;
}

.res-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.res-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
}

.res-note {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.25rem;
}

.res-row-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.res-row-dual .res-item {
  margin-bottom: 0;
  padding: 1rem;
}

.res-row-dual .res-value {
  font-size: 1.35rem;
}

.sim-footnote {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
}

/* ==================== 6. SECTION « TÉMOIGNAGES » ==================== */
.section-testimonials {
  background: #FFFFFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: var(--bg-body);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: #BFDBFE;
  background: #FFFFFF;
  box-shadow: var(--shadow-lg);
}

.featured-testimonial {
  background: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 20px 35px -8px rgba(37, 99, 235, 0.15);
}

.featured-tag {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
}

.testimonial-rating {
  color: #F59E0B;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.bg-blue-dark { background: var(--primary); }
.bg-emerald-dark { background: var(--success-dark); }
.bg-amber-dark { background: #D97706; }

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

.author-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

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

/* Impact stats row */
.impact-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.impact-stat {
  text-align: center;
}

.impact-num {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.impact-desc {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.impact-stat-divider {
  width: 1px;
  height: 45px;
  background-color: var(--border-color);
}

/* ==================== 7. SECTION FAQ ==================== */
.section-faq {
  background: var(--bg-body);
}

.faq-container {
  max-width: 860px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: #93C5FD;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.35rem 1.5rem;
}

.faq-answer p {
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ==================== 8. SECTION CTA FINALE ==================== */
.section-cta-final {
  padding: 40px 0;
  background: var(--bg-body);
}

.cta-banner {
  background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 50%, #0F172A 100%);
  border-radius: var(--radius-xl);
  padding: 4.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(30, 64, 175, 0.45);
}

.cta-bg-glow {
  position: absolute;
  top: -50%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.cta-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.cta-title {
  color: #FFFFFF;
  font-size: 2.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.cta-description {
  color: #E2E8F0;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.cta-guarantees {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  color: #93C5FD;
  font-size: 0.88rem;
  font-weight: 600;
  flex-wrap: wrap;
}

/* ==================== 9. SECTION CONTACT ==================== */
.section-contact {
  background: #FFFFFF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-heading {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.bg-blue { background: var(--primary); }
.bg-emerald { background: var(--success-dark); }
.bg-amber { background: #D97706; }
.bg-indigo { background: #4F46E5; }

.contact-item-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-item-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
}

.contact-item-val a {
  color: var(--text-main);
}

.contact-item-val a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form-panel {
  padding: 2.5rem;
  border: 1.5px solid var(--border-color);
}

.form-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.form-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-body);
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* ==================== 10. FOOTER ==================== */
.site-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 80px 0 30px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  margin-bottom: 1.25rem;
}

.footer-about-text {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: #94A3B8;
}

.footer-benin-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: #E2E8F0;
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.35rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #CBD5E1;
}

.footer-contact-info svg {
  color: #38BDF8;
  flex-shrink: 0;
}

.socials-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all var(--transition-fast);
}

.social-icon-link svg {
  width: 18px;
  height: 18px;
}

.social-icon-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  color: #FFFFFF;
}

.social-icon-link.whatsapp-social:hover {
  background: #25D366;
  border-color: #25D366;
}

/* Footer Bottom */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright strong {
  color: #FFFFFF;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-legal-links a {
  color: #94A3B8;
}

.footer-legal-links a:hover {
  color: #FFFFFF;
}

/* ==================== MODAL DE DÉMO ==================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-normal);
}

.modal-backdrop.active {
  visibility: visible;
  opacity: 1;
}

.modal-dialog {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.92);
  transition: transform var(--transition-bounce);
}

.modal-backdrop.active .modal-dialog {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-muted);
}

.modal-close-btn:hover {
  color: var(--text-main);
}

.modal-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.modal-icon-badge {
  width: 52px;
  height: 52px;
  background: #EFF6FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 0.85rem;
}

.modal-icon-badge svg {
  width: 26px;
  height: 26px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

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

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.modal-privacy-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
}

/* ==================== LOGIN MODAL & TABS ==================== */
.modal-dialog-login {
  max-width: 540px;
}

.login-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  background: var(--bg-card-alt);
  padding: 0.35rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.login-tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.login-tab-btn:hover {
  color: var(--text-main);
}

.login-tab-btn.active {
  background: #FFFFFF;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.form-check-row {
  margin: 0.25rem 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.forgot-pass-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

.forgot-pass-link:hover {
  text-decoration: underline;
}

.login-switch-footer {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}

.link-btn {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.link-btn:hover {
  text-decoration: underline;
  color: var(--accent);
}

/* ==================== TOAST NOTIFICATION ==================== */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 4000;
  background: #0F172A;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--success);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(150%);
  opacity: 0;
  transition: all var(--transition-bounce);
  max-width: 420px;
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 26px;
  height: 26px;
  background: var(--success);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.toast-text {
  font-size: 0.88rem;
  font-weight: 600;
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */
@media (max-width: 1100px) {
  .hero-title { font-size: 2.75rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .mockup-phone { width: 230px; right: -15px; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hamburger-btn { display: flex; }
  /* « Se connecter » reste directement accessible dans l'en-tête (icône
     seule, pour laisser la place au logo et au bouton hamburger) plutôt que
     d'être caché derrière un premier tap sur le menu. */
  #btn-login-header { padding: 0.55rem; }
  #btn-login-header span { display: none; }
  /* Le CTA "Commencer gratuitement" du header, lui, ne rentre plus à côté du
     logo et du bouton hamburger sur mobile — il reste disponible dans le
     tiroir de navigation (drawer-footer), pas besoin de le dupliquer ici. */
  .header-actions .open-demo-btn { display: none; }

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

  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-trust-bar { justify-content: center; }

  .visual-wrapper {
    max-width: 520px;
    margin: 0 auto;
  }

  .why-grid { grid-template-columns: 1fr; }
  
  .step-card,
  .step-card-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-card-reverse .step-visual { order: 0; }
  .step-card-reverse .step-content { order: 0; }

  .simulator-card {
    grid-template-columns: 1fr;
    padding: 2.25rem 1.5rem;
    gap: 2.5rem;
  }

  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  .hero-section { padding-top: 110px; padding-bottom: 50px; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.85rem; }
  .cta-title { font-size: 2rem; }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .mockup-phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 290px;
    margin: -1.5rem auto 0;
  }

  .photo-floating-widget {
    padding: 0.45rem 0.65rem;
  }

  .stat-widget-top {
    top: 8px;
    left: 8px;
  }

  .stat-widget-bottom {
    bottom: 50px;
    right: 8px;
  }

  .director-caption-pill {
    bottom: 8px;
    left: 8px;
    padding: 0.35rem 0.65rem;
  }

  .features-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .res-row-dual { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr; }

  .toast-notification {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .modal-backdrop { padding: 1rem; }
  .modal-dialog { padding: 1.75rem 1.25rem; max-height: 90vh; overflow-y: auto; }
  .modal-title { font-size: 1.3rem; }
}

/* ==================== MY SCHOOL STYLE HERO PHOTO BLOCK ==================== */

/* Adjust grid to give more weight to the photo side (like My School) */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
  min-height: 520px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
}

/* The outer photo container that fills the right side like My School */
.hero-photo-block {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

/* The photo wrapper: clips the image & clips rounded corners */
.hero-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 0 0 0 var(--radius-xl);
  overflow: hidden;
  box-shadow: -8px 8px 40px rgba(15, 23, 42, 0.18);
}

/* The director image: fills width & height, object-fit like My School */
.hero-director-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}

.hero-photo-wrap:hover .hero-director-img {
  transform: scale(1.03);
}

/* "LA DIRECTRICE" white label at bottom like My School */
.hero-director-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.65rem 1rem;
  border-top: 3px solid var(--primary);
}

/* Stat pills floating on the photo */
.hero-stat-pill {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 0.55rem 0.85rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
  animation: float-slow 4s ease-in-out infinite alternate;
}

.hero-stat-pill--top {
  top: 18px;
  left: -20px;
  animation-delay: 0s;
}

.hero-stat-pill--bottom {
  bottom: 70px;
  right: -12px;
  animation-delay: 1.5s;
}

.hsp-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hsp-icon svg {
  width: 18px;
  height: 18px;
}

.hsp-icon--green {
  background: #D1FAE5;
}

.hsp-badge-momo {
  width: 32px;
  height: 32px;
  background: #FFCC00;
  color: #000;
  font-size: 0.62rem;
  font-weight: 800;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hsp-label {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hsp-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.hsp-sub {
  display: block;
  font-size: 0.62rem;
  color: var(--text-light);
}

/* Left hero content: keep proper padding */
.hero-content {
  padding: 3rem 2.5rem 3rem 0;
  align-self: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo-block {
    min-height: 320px;
    height: 320px;
  }

  .hero-photo-wrap {
    min-height: 320px;
    border-radius: var(--radius-xl);
  }

  .hero-stat-pill--top {
    left: 12px;
  }

  .hero-stat-pill--bottom {
    right: 12px;
  }

  .hero-content {
    padding: 0 1rem;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero-photo-block {
    min-height: 260px;
    height: 260px;
  }

  .hero-photo-wrap {
    min-height: 260px;
  }

  .hero-stat-pill {
    padding: 0.4rem 0.6rem;
    font-size: 0.72rem;
  }

  .hero-director-label {
    font-size: 0.82rem;
    padding: 0.5rem 0.8rem;
  }
}

/* ==================== HERO MY-SCHOOL LAYOUT OVERRIDES ==================== */
/* Allow the hero section to not clip the photo */
.hero-section {
  overflow: visible;
  padding-bottom: 0;
}

/* The hero-container uses full width (like My School) but left side is padded container */
.hero-container {
  max-width: var(--container-max);
  padding-left: 1.5rem;
  padding-right: 0; /* No right padding: photo bleeds to the edge */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  min-height: 560px;
}

/* Left hero content gets back a bit of padding-right to breathe */
.hero-content {
  padding-right: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 3rem;
  align-self: center;
  /* Un enfant de grid refuse par défaut de rétrécir sous la largeur
     intrinsèque de son contenu (ex : un bouton au texte non coupable) —
     c'est ce qui poussait toute la hero hors de l'écran sur mobile. */
  min-width: 0;
}

/* Photo block stretches full height of hero */
.hero-visual {
  position: relative;
  align-self: stretch;
  overflow: visible;
  min-width: 0;
}

.hero-photo-block {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: var(--radius-xl) 0 0 0; /* Only top-left corner rounded */
  overflow: hidden;
}

.hero-director-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Pills are outside the photo, so hero-section must not clip them */
.hero-stat-pill--top {
  top: 20px;
  left: -10px; /* slightly outside the photo left edge */
}

.hero-stat-pill--bottom {
  bottom: 68px;
  right: 16px; /* inside the photo right edge */
}

@media (max-width: 900px) {
  .hero-section {
    overflow: hidden;
    padding-bottom: 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding-right: 1.5rem;
    min-height: auto;
    gap: 2rem;
  }

  .hero-content {
    padding-right: 0;
    order: 2;
    text-align: center;
  }

  .hero-visual {
    order: 1;
  }

  .hero-photo-block {
    min-height: 320px;
    height: 320px;
  }

  .hero-photo-wrap {
    min-height: 320px;
    border-radius: var(--radius-xl);
  }

  .hero-stat-pill--top {
    left: 12px;
  }
}

/* ==================== FLIP DIRECTOR PHOTO TO FACE THE TEXT ==================== */
.hero-director-img {
  transform: scaleX(-1); /* Mirror horizontally: face turns left toward the headline */
}

/* ==================== 2.5. SECTION « TARIFS » ==================== */
.section-pricing {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 50%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
}

.pricing-bg-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(6, 182, 212, 0.08) 50%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.pricing-card-wrapper {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border: 1.5px solid #BFDBFE;
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 20px 40px -12px rgba(30, 64, 175, 0.12), 0 0 0 1px rgba(219, 234, 254, 0.6);
}

.pricing-card-top {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing-badge-popular {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #1E40AF 0%, #0284C7 100%);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.pricing-main-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.pricing-rate-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #EFF6FF;
  border: 2px solid #93C5FD;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.5rem;
}

.rate-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #1E40AF 0%, #0284C7 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rate-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.pricing-statement {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-main);
  max-width: 680px;
  line-height: 1.35;
  text-align: center;
}

.pricing-zero-commitment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--primary);
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  margin-top: 0.35rem;
  flex-wrap: wrap;
}

.pzc-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--success-dark);
}

.pzc-dot {
  color: #86EFAC;
  font-size: 1.2rem;
}

/* Feature grid */
.pricing-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.p-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.p-feature-box:hover {
  background: #FFFFFF;
  border-color: #BFDBFE;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pf-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-icon svg {
  width: 22px;
  height: 22px;
}

.pf-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.pf-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0;
}

/* Important Note Callout */
.pricing-important-note {
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
  border: 1.5px solid #86EFAC;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.08);
}

.pin-icon-wrap {
  width: 46px;
  height: 46px;
  background: #10B981;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pin-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.pin-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #065F46;
  background: #D1FAE5;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.4rem;
}

.pin-text {
  font-size: 1.05rem;
  color: #064E3B;
  line-height: 1.5;
  margin-bottom: 0.4rem;
}

.pin-sub {
  display: block;
  font-size: 0.88rem;
  color: #047857;
  line-height: 1.5;
}

/* Bottom footer of pricing card */
.pricing-card-footer {
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.pricing-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.pricing-footer-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .pricing-card-wrapper {
    padding: 2rem 1.25rem;
  }

  .pricing-features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-statement {
    font-size: 1.25rem;
  }

  .rate-value {
    font-size: 2.8rem;
  }

  .pricing-zero-commitment {
    font-size: 0.95rem;
    flex-direction: column;
    gap: 0.35rem;
  }

  .pzc-dot {
    display: none;
  }

  .pricing-important-note {
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.25rem;
  }

  .pricing-cta-wrap {
    flex-direction: column;
    width: 100%;
  }

  .pricing-cta-wrap .btn {
    width: 100%;
  }
}

