/* =========================================
   PULSE ADS TECHNOLOGY — Global Styles
   ========================================= */


/* ─── CSS Variables ─── */
:root {
  --color-bg-dark: #0f1117;
  --color-bg-dark2: #13151e;
  --color-bg-medium: #1a1d28;
  --color-bg-light: #f2f3f7;
  --color-bg-white: #ffffff;
  --color-blue: #3b82f6;
  --color-blue-hover: #2563eb;
  --color-blue-light: rgba(59, 130, 246, 0.12);
  --color-blue-glow: rgba(59, 130, 246, 0.3);
  --color-text-primary: #ffffff;
  --color-text-dark: #0f1117;
  --color-text-muted: #9ca3af;
  --color-text-body: #6b7280;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-light: rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.2);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 70px;
}

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

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.65;
}


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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4 {
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #000;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 800;
}

p {
  line-height: 1.6;
  font-weight: 400;
}

/* ─── Utility ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-blue);
  background: var(--color-blue-light);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-label.dark {
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.06);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--color-blue-glow);
}

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

.btn-outline:hover {
  background: var(--color-blue);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-large {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
}

.btn svg,
.btn .arrow {
  transition: transform 0.2s;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ─── Navigation ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(15, 17, 23, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.nav-logo img {
  height: 150px;
  width: auto;
  margin-top: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
  background: rgba(255, 255, 255, 0.14);
  font-weight: 600;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  background: none;
  transition: var(--transition);
}

.nav-lang:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(13, 15, 22, 0.97);
  backdrop-filter: blur(20px);
  padding: 1rem 1.5rem 2rem;
  border-bottom: 1px solid var(--color-border);
  flex-direction: column;
  gap: 0.5rem;
  z-index: 999;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile a:last-child {
  border: none;
}

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

.nav-mobile .btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

/* ─── Hero (Dark) ─── */
.hero {
  min-height: 100dvh;
  background: linear-gradient(135deg, #0f1117 0%, #13151e 50%, #0a0d18 100%);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 6rem 0 4rem;
}

.hero-content {
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: var(--color-blue);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.75;
}

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

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 13, 24, 0.7) 0%, transparent 60%);
}

/* Floating card on hero image */
.hero-floating-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(15, 17, 23, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.floating-card-icon {
  width: 40px;
  height: 40px;
  background: var(--color-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-card-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.floating-card-text span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── Sections shared ─── */
.section-light {
  background: var(--color-bg-light);
  padding: 6rem 0;
}

.section-dark {
  background: var(--color-bg-dark);
  padding: 6rem 0;
}

.section-dark2 {
  background: var(--color-bg-dark2);
  padding: 6rem 0;
}

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

.section-header p {
  font-size: 1.05rem;
  color: var(--color-text-body);
  margin-top: 0.75rem;
}

.section-header.dark-text h2,
.section-header.dark-text p {
  color: inherit;
}

.section-header h2 {
  margin-top: 0.5rem;
}

/* ─── Feature Cards (Light) ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue), #60a5fa);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-blue);
  font-size: 1.4rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--color-text-dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-body);
  line-height: 1.65;
}

/* ─── Pulse Story (Homepage) ─── */
.pulse-story {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1120px;
  margin: 0 auto;
}

.pulse-story-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.pulse-story-row.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.pulse-story-row.reverse .pulse-story-media {
  order: 2;
}

.pulse-story-row.reverse .pulse-story-copy {
  order: 1;
}

.pulse-story-media {
  position: relative;
  min-height: 320px;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
}

.pulse-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pulse-story-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.pulse-story-copy h3 {
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

.pulse-story-copy p {
  margin-bottom: 1rem;
  color: var(--color-text-body);
  font-size: 1rem;
  line-height: 1.8;
}

.pulse-story-copy p:last-child {
  margin-bottom: 0;
}

/* ─── Dark Feature Cards ─── */
.features-grid-dark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card-dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.feature-card-dark:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}

.feature-card-dark .feature-icon {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.feature-card-dark h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-card-dark p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* ─── How it works ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step-connector {
  position: absolute;
  top: 2.2rem;
  left: calc(25% - 0.5rem);
  right: calc(25% - 0.5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-blue) 20%, var(--color-blue) 80%, transparent 100%);
  opacity: 0.3;
  pointer-events: none;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.12);
}

.step-num.light-theme {
  background: #fff;
  color: var(--color-blue);
  box-shadow: 0 0 0 8px var(--color-blue-light);
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ─── Stats Banner ─── */
.stats-banner {
  background: linear-gradient(135deg, #1a1d28 0%, #0f1117 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-item .stat-num-blue {
  color: var(--color-blue);
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  display: block;
}

/* ─── Media section (split layout) ─── */
.split-section {
  padding: 6rem 0;
}

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-inner.reverse {
  display: flex !important;
  flex-direction: row-reverse;
}

.split-content {}

.split-content .section-label {
  margin-bottom: 0.75rem;
}

.split-content h2 {
  margin-bottom: 1rem;
}

.split-content p {
  color: var(--color-text-body);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.split-content.dark-mode p {
  color: rgba(255, 255, 255, 0.6);
}

.split-content.dark-mode h2 {
  color: #fff;
}

.split-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.split-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.split-point-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.7rem;
}

.split-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.split-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  display: block;
}

/* ─── Target Audience Cards ─── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.audience-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.audience-tag {
  display: inline-block;
  background: var(--color-blue-light);
  color: var(--color-blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.audience-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.audience-card p {
  font-size: 0.87rem;
  color: var(--color-text-body);
}

/* ─── Simulator Section ─── */
.simulator-section {
  background: var(--color-bg-light);
  padding: 6rem 0;
}

.simulator-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
}

.simulator-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.simulator-card>p {
  color: var(--color-text-body);
  margin-bottom: 2rem;
}

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

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

.sim-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.sim-group select,
.sim-group input[type="range"] {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--color-text-dark);
  outline: none;
  transition: var(--transition);
  background: #fff;
  appearance: none;
}

.sim-group select:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.sim-group input[type="range"] {
  padding: 0;
  border: none;
  accent-color: var(--color-blue);
  height: 6px;
  cursor: pointer;
}

.sim-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-body);
  margin-top: -0.25rem;
}

.sim-result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--color-blue-light);
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: none;
}

.sim-result.visible {
  display: block;
}

.sim-result-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1;
}

.sim-result p {
  font-size: 0.85rem;
  color: var(--color-text-body);
  margin-top: 0.4rem;
}

/* ─── Driver Benefits ─── */
.driver-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.driver-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.driver-benefit:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(59, 130, 246, 0.25);
}

.driver-benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 1.15rem;
}

.driver-benefit h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.driver-benefit p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ─── CTA Section ─── */
.cta-section {
  background: linear-gradient(135deg, #0f1117 0%, #13151e 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer ─── */
footer {
  background: #0a0c14;
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: -1rem;
  margin-left: -15px;
  margin-top: -40px;
}

.footer-logo img {
  height: 150px;
  width: auto;
}

.footer-logo span {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 0.6rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── Page headers ─── */
.page-hero {
  background: linear-gradient(135deg, #0f1117 0%, #13151e 60%, #0a0d18 100%);
  padding: calc(var(--nav-height) + 5rem) 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ─── Pricing Cards ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.pricing-card.featured {
  background: var(--color-bg-dark);
  border-color: var(--color-blue);
  color: #fff;
  box-shadow: 0 0 0 1px var(--color-blue), 0 24px 64px rgba(59, 130, 246, 0.2);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pricing-badge {
  display: inline-block;
  background: var(--color-blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1;
  margin: 1rem 0;
}

.pricing-card.featured .price {
  color: #60a5fa;
}

.pricing-card .price-note {
  font-size: 0.82rem;
  color: var(--color-text-body);
  margin-bottom: 1.5rem;
}

.pricing-card.featured .price-note {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--color-text-body);
}

.pricing-card.featured .pricing-feature {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-feature .check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: #facc15;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue), #60a5fa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ─── Contact Form ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

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

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: #fff;
  outline: none;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select option {
  background: #1a1d28;
  color: #fff;
}

/* ─── Video Section ─── */
.video-section {
  padding: 0;
  position: relative;
}

.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.video-wrap video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-blue);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.play-btn:hover {
  transform: scale(1.08);
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.65s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* Intersection Observer reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {

  .features-grid,
  .features-grid-dark {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-connector {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .split-inner {
    gap: 3rem;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-right .btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    overflow: hidden;
  }




  .hero-visual {
    display: none;
  }

  .hero-stats {
    gap: 1.25rem;
  }

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

  .pulse-story-row,
  .pulse-story-row.reverse {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .pulse-story-row.reverse .pulse-story-media,
  .pulse-story-row.reverse .pulse-story-copy {
    order: initial;
  }

  .pulse-story-media {
    min-height: 220px;
  }

  .pulse-story-copy h3 {
    font-size: 1.2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }

  .split-inner.reverse {
    display: grid !important;
    direction: ltr;
  }

  .split-inner .split-img-wrap {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .split-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }



  .driver-benefits {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.75rem !important;
    justify-content: center;
  }

  .cta-actions > div {
    flex: 1;
    min-width: 0;
  }

  .cta-actions .btn {
    width: 100%;
    padding: 0.7rem 0.5rem !important;
    font-size: 0.85rem !important;
    justify-content: center;
    gap: 0.4rem !important;
  }

  .cta-actions .btn svg {
    width: 16px;
    height: 16px;
    margin-right: 0 !important;
  }

  .cta-actions p {
    font-size: 0.75rem !important;
    white-space: nowrap;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-light,
  .section-dark,
  .section-dark2 {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .simulator-card {
    padding: 1.5rem;
  }
}

/* =========================================
   FULLSCREEN SECTIONS — fs-* classes
   ========================================= */

/* ─── SLIDE 1 : HERO PLEIN ÉCRAN ─── */
.fs-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.fs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fs-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 13, 24, 0.88) 0%,
    rgba(10, 13, 24, 0.6) 55%,
    rgba(10, 13, 24, 0.3) 100%
  );
}

.fs-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: calc(var(--nav-height) + 3rem) 2rem 4rem;
  margin-left: 6vw;
}

.fs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.fs-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b82f6;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.fs-hero-content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.fs-highlight {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fs-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.fs-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.fs-btn-white {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.fs-btn-white:hover {
  background: rgba(255, 255, 255, 0.22);
}

.fs-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fs-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.fs-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.3rem;
  display: block;
}

.fs-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fs-scroll-icon {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  position: relative;
}

.fs-scroll-icon::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.6);
  animation: scroll-bounce 1.6s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ─── SLIDE 2 : SECTION DUO (Uber style) ─── */
.fs-duo {
  background: #fff;
  padding: 0;
}

.fs-duo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.fs-duo-row-rev {
  direction: rtl;
}

.fs-duo-row-rev > * {
  direction: ltr;
}

.fs-duo-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fs-duo-text h2 {
  color: var(--color-text-dark);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0.25rem 0;
}

.fs-duo-text p {
  color: var(--color-text-body);
  font-size: 1.05rem;
  line-height: 1.8;
}

.fs-duo-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.fs-duo-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.fs-duo-img:hover img {
  transform: scale(1.04);
}

.fs-duo-divider {
  max-width: 1100px;
  margin: 0 auto;
  height: 1px;
  background: var(--color-border-light);
  margin-left: auto;
  margin-right: auto;
}

.fs-duo-perks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.fs-duo-perk {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-dark);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.fs-duo-perk:last-child {
  border-bottom: none;
}

/* ─── LAYOUT EDGE (style Uber) ─── */
.fs-edge-row {
  display: grid;
  grid-template-columns: 1fr 55%;
  min-height: 480px;
  overflow: hidden;
}

.fs-edge-row-rev {
  grid-template-columns: 55% 1fr;
}

.fs-edge-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: 5rem 5rem 5rem 8vw;
}

.fs-edge-row-rev .fs-edge-text {
  padding: 5rem 8vw 5rem 5rem;
}

.fs-edge-text .section-label {
  align-self: flex-start;
}

.fs-edge-text h2 {
  color: var(--color-text-dark);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  margin: 0;
  font-weight: 900;
}

.fs-edge-text p {
  color: var(--color-text-body);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0.5rem 0 0.5rem;
  font-weight: 400;
}

.fs-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(0,0,0,0.25);
  transition: var(--transition);
}

.fs-link-cta:hover {
  color: var(--color-blue);
  text-decoration-color: var(--color-blue);
}

.fs-edge-img {
  overflow: hidden;
  position: relative;
}

.fs-edge-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}

.fs-edge-img:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .fs-edge-row,
  .fs-edge-row.fs-edge-row-rev {
    grid-template-columns: 1fr;
  }

  .fs-edge-img {
    height: 280px;
    order: -1;
  }

  .fs-edge-text,
  .fs-edge-row-rev .fs-edge-text {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .fs-duo-row,
  .fs-duo-row.fs-duo-row-rev {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  .fs-duo-img img {
    height: 260px;
  }
}

/* ─── SLIDES 2 & 3 : SPLIT 50/50 ─── */
.fs-split {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 55% 45%;
}

.fs-split-rev {
  grid-template-columns: 45% 55%;
}

.fs-split-img {
  position: relative;
  overflow: hidden;
}

.fs-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.fs-split:hover .fs-split-img img {
  transform: scale(1.03);
}

.fs-split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(242, 243, 247, 0.4) 100%);
}

.fs-overlay-warm {
  background: linear-gradient(to left, transparent 60%, rgba(15, 17, 23, 0.4) 100%);
}

.fs-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3.5rem;
  background: var(--color-bg-light);
}

.fs-split-text-dark {
  background: var(--color-bg-dark);
}

.fs-split-text h2 {
  margin: 0.75rem 0 1.25rem;
  color: var(--color-text-dark);
}

.fs-split-text p {
  color: var(--color-text-body);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.fs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 2rem;
}

.fs-tag {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--color-blue);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.fs-perks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}

.fs-perk {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--color-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ─── SLIDE 4 : STEPS DARK ─── */
.fs-steps {
  min-height: 100dvh;
  background: var(--color-bg-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.fs-steps-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fs-steps-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.fs-steps-inner {
  padding: 5rem 1.5rem;
  position: relative;
  z-index: 1;
}

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

.fs-step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.fs-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  opacity: 0;
  transition: var(--transition);
}

.fs-step-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.3);
}

.fs-step-card:hover::before {
  opacity: 1;
}

.fs-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 auto 0.75rem;
  box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.1);
}

.fs-step-emoji {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.fs-step-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.fs-step-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ─── SLIDE 5 : FULL IMAGE ANNONCEURS ─── */
.fs-fullimg {
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.fs-fullimg-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fs-fullimg-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fs-fullimg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 13, 24, 0.92) 0%,
    rgba(10, 13, 24, 0.7) 50%,
    rgba(10, 13, 24, 0.3) 100%
  );
}

.fs-fullimg-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 5rem 6vw;
  display: flex;
  align-items: center;
}

.fs-fullimg-card {
  max-width: 540px;
}

.fs-fullimg-card h2 {
  color: #fff;
  margin: 0.75rem 0 1.25rem;
}

.fs-fullimg-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.fs-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.fs-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.fs-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── SLIDE 6 : CHAUFFEURS SPLIT ─── */
.fs-driver {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fs-driver-img {
  position: relative;
  overflow: hidden;
}

.fs-driver-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.fs-driver:hover .fs-driver-img img {
  transform: scale(1.03);
}

.fs-driver-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(242, 243, 247, 0.5) 100%);
}

.fs-driver-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3.5rem;
  background: var(--color-bg-light);
}

.fs-driver-content h2 {
  color: var(--color-text-dark);
  margin: 0.75rem 0 1.25rem;
}

.fs-driver-content > p {
  color: var(--color-text-body);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.fs-driver-perks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.fs-driver-perk {
  display: block;
}

.fs-driver-perk strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.2rem;
}

.fs-driver-perk p {
  font-size: 0.85rem;
  color: var(--color-text-body);
  margin: 0;
}

/* ─── SLIDE 7 : ZIG-ZAG ─── */
.fs-zigzag {
  background: #fff;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.fs-zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80dvh;
  align-items: center;
}

.fs-zigzag-item.fs-rev {
  background: var(--color-bg-light);
}

.fs-zigzag-content {
  padding: 5rem 6vw;
}

.fs-zigzag-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-text-dark);
  margin: 0 0 1rem;
  line-height: 1.05;
  font-weight: 900;
}

.fs-zigzag-content p {
  color: var(--color-text-body);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 520px;
  font-weight: 400;
}

.fs-zigzag-media {
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fs-media-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.fs-media-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
}

.fs-floating-card {
  position: absolute;
  z-index: 5;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float-slow 4s ease-in-out infinite;
}

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

.fs-floating-card.br {
  bottom: -2rem;
  right: -2rem;
}

.fs-floating-card.bl {
  bottom: -2rem;
  left: -2rem;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--color-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
}

.card-txt strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.2;
}

.card-txt span {
  font-size: 0.8rem;
  color: var(--color-text-body);
}

@media (max-width: 992px) {
  .fs-zigzag-item {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2rem 0;
  }
  
  .fs-zigzag-item.fs-rev .fs-zigzag-media {
    order: -1;
  }
  
  .fs-zigzag-content {
    padding: 3rem 2rem;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  
  .fs-zigzag-media {
    padding: 2rem 3rem;
  }

  .fs-floating-card.br,
  .fs-floating-card.bl {
    bottom: -1rem;
    right: 1.5rem;
    left: auto;
  }
}

/* ─── SLIDE 8 : CTA FINAL ─── */
.fs-cta {
  min-height: 40dvh;
  background: #fff;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.fs-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.fs-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ─── RESPONSIVE FULLSCREEN ─── */
@media (max-width: 900px) {
  .fs-split,
  .fs-split-rev {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .fs-split-img {
    height: 55vw;
    min-height: 300px;
  }

  .fs-split-img-overlay {
    background: linear-gradient(to bottom, transparent 50%, rgba(242, 243, 247, 0.3) 100%);
  }

  .fs-overlay-warm {
    background: linear-gradient(to bottom, transparent 50%, rgba(15, 17, 23, 0.3) 100%);
  }

  .fs-split-text {
    padding: 3rem 2rem;
  }

  .fs-driver {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .fs-driver-img {
    height: 55vw;
    min-height: 300px;
  }

  .fs-driver-content {
    padding: 3rem 2rem;
  }

  .fs-fullimg-content {
    padding: 5rem 2rem;
  }

  .fs-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fs-hero-content {
    margin-left: 0;
    padding: calc(var(--nav-height) + 2rem) 1.5rem 3rem;
  }

  .fs-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .fs-steps-grid {
    grid-template-columns: 1fr;
  }

  .fs-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .fs-actions {
    flex-direction: column;
  }

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

  .fs-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .fs-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .fs-hero-content h1 {
    font-size: 2.4rem;
  }
}

/* ─── Overlapping Gallery (Uber Style) ─── */
.overlapping-gallery {
  display: flex;
  align-items: center;
  gap: 6rem;
  padding: 8rem 0;
  min-height: 700px;
}

.gallery-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.gallery-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  font-weight: 950;
  color: #000;
  letter-spacing: -0.04em;
}

.gallery-content p {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.5;
  max-width: 480px;
}

.gallery-visual {
  flex: 1.2;
  position: relative;
  height: 550px;
}

.gallery-img {
  position: absolute;
  width: 320px;
  height: 440px;
  border-radius: 48px; /* High rounded corners like Uber */
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.12);
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), z-index 0s;
  cursor: pointer;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-img:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 1;
}

.gallery-img:nth-child(2) {
  top: 60px;
  left: 120px;
  z-index: 2;
}

.gallery-img:nth-child(3) {
  top: 120px;
  left: 240px;
  z-index: 3;
}

.gallery-img:nth-child(4) {
  top: 180px;
  left: 360px;
  z-index: 4;
}

.gallery-img:hover {
  transform: translateY(-20px) scale(1.02);
  z-index: 10 !important;
  box-shadow: 0 60px 120px rgba(0,0,0,0.2);
}

@media (max-width: 1100px) {
  .overlapping-gallery {
    flex-direction: column;
    text-align: center;
    gap: 8rem;
    padding: 6rem 1.5rem;
  }
  
  .gallery-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gallery-visual {
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    position: relative;
  }
  
  .gallery-img {
    width: 200px;
    height: 280px;
  }
  
  .gallery-img:nth-child(1) { left: 10%; }
  .gallery-img:nth-child(2) { left: 25%; }
  .gallery-img:nth-child(3) { left: 40%; }
  .gallery-img:nth-child(4) { left: 55%; }
}

@media (max-width: 600px) {
  .overlapping-gallery {
    gap: 3rem;
    padding: 6rem 1rem;
    min-height: auto;
  }
  
  .gallery-visual {
    display: none; /* Removed images on mobile as requested */
  }

  .gallery-content {
    text-align: center;
    max-width: 100%;
  }

  .gallery-content h2 {
    font-size: 2.2rem;
  }
}




/* ─── SECTION MINI ÉTAPES (Style Capture) ─── */
.fs-mini-steps {
  position: relative;
  background: #080a12;
  padding: 8rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fs-mini-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

/* Ligne pointillée horizontale */
.fs-mini-steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed rgba(255, 255, 255, 0.55);
  z-index: 0;
}

.fs-mini-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.fs-mini-icon {
  width: 80px;
  height: 80px;
  background: rgba(120, 124, 136, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.fs-mini-icon svg,
.fs-mini-icon-svg {
  width: 38px;
  height: 38px;
  display: block;
}

.fs-mini-icon-text {
  font-size: 2rem;
  line-height: 1;
  display: block;
}

.fs-mini-step:hover .fs-mini-icon {
  transform: translateY(-5px) scale(1.03);
  background: rgba(148, 152, 164, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

.fs-mini-copy {
  max-width: 220px;
  text-align: center;
}

.fs-mini-copy h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.fs-mini-copy p {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 768px) {
  .fs-mini-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1rem;
  }
  .fs-mini-steps-grid::before {
    display: none;
  }
}

/* ─── Targeting Section (Contextual) ─── */
.targeting-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
  min-height: 500px;
}

.targeting-diagram {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ctx-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}

.targeting-copy {
  flex: 1;
}

.targeting-copy h2 {
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.targeting-copy p {
  color: var(--color-text-body);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.targeting-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.targeting-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.tl-icon {
  width: 42px;
  height: 42px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.targeting-list li strong {
  display: block;
  font-weight: 700;
  color: #000;
}

/* Connectors Animation */
.ctx-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 2.5s ease forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .targeting-layout {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .targeting-diagram {
    order: 1;
  }
  .targeting-copy {
    order: 2;
  }
  .targeting-copy h2 {
    margin-left: auto;
    margin-right: auto;
  }
  .targeting-list li {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ─── Targeting V2 (Radar & Glassmorphism) ─── */
.targeting-v2 {
  background: radial-gradient(circle at center, #ffffff, #f8f9ff);
  padding: 10rem 0;
  overflow: hidden;
}

.targeting-layout-v2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

/* Radar Container */
.radar-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.radar-glass {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.1);
  box-shadow: 0 40px 100px rgba(59, 130, 246, 0.08);
}

.radar-svg {
  width: 100%;
  height: 100%;
}

.radar-ring {
  fill: none;
  stroke: rgba(59, 130, 246, 0.1);
  stroke-width: 1;
}

/* Glass Cards */
.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.8rem 1.2rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  animation: floatCard 4s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #0f172a;
}

.glass-card-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  flex-shrink: 0;
}

.glass-card-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.g-city { top: 12%; left: 50%; transform: translateX(-50%); }
.g-food { top: 35%; right: -5%; animation-delay: 0.5s; }
.g-tourism { bottom: 15%; right: 5%; animation-delay: 1s; }
.g-premium { bottom: 10%; left: 10%; animation-delay: 1.5s; }
.g-nightlife { top: 25%; left: 0%; animation-delay: 2s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-10px) translateX(-50%); }
}

/* Special float for non-centered cards */
.g-food, .g-tourism, .g-premium, .g-nightlife { animation-name: floatCardSimple; }
@keyframes floatCardSimple {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Copy V2 */
.badge-v2 {
  color: var(--color-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.targeting-copy-v2 h2 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-blue), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 1.2rem;
  color: var(--color-text-body);
  margin-bottom: 3rem;
}

.targeting-features-v2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.t-feat {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.t-feat-icon {
  width: 48px;
  height: 48px;
  background: #f0f4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.t-feat-text strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.t-feat-text span {
  color: var(--color-text-body);
  font-size: 0.95rem;
}

.cta-v2 { display: flex; align-items: center; gap: 2rem; }
.cta-note { font-size: 0.85rem; color: var(--color-text-muted); }

/* Marker Dots Animation */
.marker-dot {
  animation: pulseMarker 2s ease-out infinite;
}

@keyframes pulseMarker {
  0% { r: 6; opacity: 1; }
  100% { r: 15; opacity: 0; }
}

@media (max-width: 1024px) {
  .targeting-layout-v2 {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  .targeting-copy-v2 h2 { font-size: 2.5rem; }
  .t-feat { text-align: left; }
  .cta-v2 { flex-direction: column; gap: 1rem; }
}

@media (max-width: 600px) {
  .radar-glass {
    max-width: 280px;
    margin: 0 auto;
  }
  .glass-card {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 10px;
  }
  .g-food { right: -2%; }
  .g-nightlife { left: -2%; }
  
  .targeting-copy-v2 h2 { font-size: 2rem; }
}


/* ─── Estimator Section ─── */
.estimator-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  background: #fff;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.05);
}

.estimator-controls {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.control-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.range-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

input[type="range"] {
  flex: 1;
  height: 6px;
  background: #eef2ff;
  border-radius: 10px;
  appearance: none;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--color-blue);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.15);
  transition: all 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.2);
}

.range-val {
  min-width: 120px;
  font-weight: 700;
  color: var(--color-blue);
}

select#select-intensity {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #eef2ff;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.result-card {
  background: #0f172a;
  color: #fff;
  padding: 2.5rem;
  border-radius: 24px;
  height: 100%;
}

.res-head {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.res-price {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.res-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.res-stat strong {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.res-stat span {
  font-size: 1.1rem;
  font-weight: 600;
}

@media (max-width: 991px) {
  .estimator-grid {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

/* ─── Estimator V3 (Screenshot Style) ─── */
.estimator-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.custom-select, .custom-input {
  width: 100%;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  appearance: none;
}

.custom-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.25rem;
  padding-right: 3.5rem;
}

.custom-select:focus, .custom-input:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.insight-box {
  display: flex;
  gap: 1.25rem;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  align-items: center;
  margin-top: 1rem;
}

.insight-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.insight-box p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.sim-result-full {
  margin-top: 2rem;
  padding: 2.5rem;
  background: #0f172a;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  /* hidden by default? No, let's keep it visible or show it on input */
}

.res-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.res-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.res-sub {
  font-size: 1.1rem;
  color: #60a5fa;
  font-weight: 600;
}

/* ─── Premium Simulator Design Enhancements ─── */
#estimateur {
  position: relative;
  background: #ffffff;
}

#estimateur::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.estimator-grid {
  border: 1px solid rgba(0,0,0,0.05);
}

.control-group label {
  color: #1e293b;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

/* Custom Range Styling */
input[type="range"]#v5-vehicles,
input[type="range"]#v5-up,
input[type="range"]#v5-days {
  height: 8px;
  background: #f1f5f9;
}

input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  background: #fff;
  border: 2px solid var(--color-blue);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.range-val {
  background: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: #1e293b;
}

.range-val span {
  font-size: 1.1rem;
  color: var(--color-blue);
}

/* Result Card Enhancements */
.result-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.res-price {
  background: linear-gradient(to bottom, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}

.res-stat strong {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.res-stat span {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  font-size: 0.9rem;
}

.result-card-free {
  position: relative;
  overflow: hidden;
  gap: 2rem;
  padding: 3rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.22), transparent 34%),
    radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.18), transparent 40%),
    linear-gradient(145deg, #081120 0%, #0f172a 46%, #16233a 100%);
}

.result-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 70%);
  top: -90px;
  right: -70px;
  pointer-events: none;
}

.result-orb-soft {
  width: 170px;
  height: 170px;
  top: auto;
  right: auto;
  bottom: -70px;
  left: -40px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, rgba(96, 165, 250, 0) 70%);
}

.result-kicker {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.result-card-free .v5-res-block {
  position: relative;
  z-index: 1;
}

.result-card-free .res-price {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin: 1rem 0 0;
  font-size: clamp(4rem, 7vw, 5.5rem);
  line-height: 0.92;
}

.res-price-plus {
  font-size: 0.42em;
  line-height: 1.1;
  opacity: 0.9;
  margin-top: 0.3rem;
}

.result-card-free .res-label {
  margin-top: 0.9rem;
  margin-bottom: 0;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
}

.result-caption {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
}

.result-chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  gap: 0.45rem;
  width: fit-content;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.result-chip-label {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.result-chip strong {
  font-size: 1.1rem;
  color: #fff;
}

.result-free-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.result-free-block {
  padding: 1.35rem 1.4rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
}

.result-free-block-alt {
  margin-top: 1.25rem;
  background: rgba(96, 165, 250, 0.09);
}

.result-free-label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}

.result-free-block strong {
  display: block;
  margin-top: 0.65rem;
  font-size: 1.8rem;
  line-height: 1.1;
  color: #fff;
}

.result-free-block p {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
}

.result-footnote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}

/* ─── Estimator V6 (Compact Version) ─── */
.estimator-v6-container {
  max-width: 850px;
  margin: 0 auto;
}

#estimateur {
  padding: 6rem 0 !important;
}

.estimator-v6-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.v6-group:nth-child(1),
.insight-box-v6 {
  grid-column: span 2;
}

.v6-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.v6-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v6-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}

.v6-select, .v6-input-small {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
}

.v6-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.v6-input-small {
  width: 70px;
  text-align: center;
  padding: 0.5rem;
}

.v6-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.2rem;
}

.insight-box-v6 {
  grid-column: span 2;
  display: flex;
  padding: 1rem 1.25rem;
  gap: 0.8rem;
  background: #f1f5f9;
  border-radius: 16px;
  align-items: center;
  margin-top: 0.5rem;
}

.insight-box-v6 p {
  margin: 0;
  font-size: 0.85rem;
  color: #475569;
}

/* Results V6 Compact */
.v6-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.v6-res-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

.v6-res-icon {
  color: #94a3b8;
  margin-bottom: 1rem;
}

.v6-res-icon svg {
  width: 20px;
  height: 20px;
}

.v6-res-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.v6-res-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.v6-res-sub {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
}

/* Strength Bar Compact */
.v6-strength-container {
  margin-top: 1.5rem;
}

.v6-strength-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
}

.v6-strength-track {
  height: 8px;
  background: #f1f5f9;
  border-radius: 10px;
  overflow: hidden;
}

.v6-strength-fill {
  height: 100%;
  background: var(--color-blue);
  width: 0%;
  transition: width 0.5s ease;
}

@media (max-width: 768px) {
  .estimator-v6-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }
  #estimateur {
    padding: 3rem 0 !important;
    overflow: hidden;
  }

  .estimator-v6-form {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .v6-group:nth-child(1),
  .v6-group:nth-child(5),
  .insight-box-v6 {
    grid-column: span 1;
  }
  .v6-group {
    gap: 0.4rem;
  }
  .v6-select,
  .v6-input-small {
    padding: 0.65rem 1rem;
  }
  .insight-box-v6 {
    padding: 0.75rem 1rem;
    margin-top: 0;
  }

  /* Grid results mobile re-arrangement */
  .v6-result-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  
  .v6-res-card {
    aspect-ratio: 1 / 1 !important; /* Square format */
    padding: 1rem 0.5rem !important;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 0; /* Critical for grid stability */
    overflow: hidden;
  }

  .v6-res-card:nth-child(3) {
    grid-column: 1 / span 2 !important;
    width: calc(50% - 0.375rem) !important; /* Centered square matching others */
    margin: 0 auto !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
  }

  .v6-res-val {
    font-size: 1.4rem !important;
    word-break: break-all;
  }

  .v6-res-title {
    font-size: 0.75rem !important;
    line-height: 1.2;
    margin-bottom: 0 !important;
  }

  .v6-res-sub {
    display: none !important;
  }
}



/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2100;
  width: calc(100% - 48px);
  max-width: 380px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-right: 4px solid var(--color-blue);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateX(130%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateX(0);
}

.cookie-banner h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--color-text-dark);
}

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--color-text-body);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-actions .btn {
  flex: 1;
  padding: 0.65rem;
  font-size: 0.85rem;
  justify-content: center;
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-left: none;
    border-top: 4px solid var(--color-blue);
    padding: 1.25rem;
    transform: translateY(100%);
  }
  .cookie-banner.visible {
    transform: translateY(0);
  }
}
