/* ===================================================
   AquaNeo — Main Stylesheet (Light Theme)
   =================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:            #ffffff;
  --bg-alt:        #f8fafc;
  --bg-card:       #ffffff;
  --text:          #0f172a;
  --text-sub:      #475569;
  --text-muted:    #94a3b8;
  --blue:          #0055ff;
  --green:         #00b96b;
  --gradient:      linear-gradient(135deg, #0055ff 0%, #00b96b 100%);
  --glass-border:  rgba(0, 85, 255, 0.1);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --shadow-card:   0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-hover:  0 12px 40px rgba(0, 85, 255, 0.14), 0 4px 12px rgba(0, 0, 0, 0.06);
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --section-pad:   120px 0;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container { max-width: 1160px; margin-inline: auto; padding-inline: 24px; }

.section { padding: var(--section-pad); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-sub);
  max-width: 580px;
  margin-bottom: 3.5rem;
  line-height: 1.75;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: var(--bg-card);
  border: 1px solid rgba(0, 85, 255, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 2px 14px rgba(0, 85, 255, 0.22);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 85, 255, 0.32), 0 0 0 4px rgba(0, 85, 255, 0.08);
}

.btn--ghost {
  background: transparent;
  color: var(--text-sub);
  border: 1.5px solid rgba(0, 85, 255, 0.2);
}

.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0, 85, 255, 0.03);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--gradient);
  color: #fff;
  padding: 9px 20px;
  font-size: 0.82rem;
  box-shadow: 0 2px 8px rgba(0, 85, 255, 0.2);
}

.btn--nav:hover {
  box-shadow: 0 4px 18px rgba(0, 85, 255, 0.3);
  transform: translateY(-1px);
}

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 85, 255, 0.08), 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo { display: flex; align-items: center; margin-right: auto; text-decoration: none; }

.nav__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1.5px solid var(--blue);
  box-shadow: 0 0 10px rgba(0, 85, 255, 0.2), 0 0 4px rgba(0, 185, 107, 0.15);
  background: #fff;
  transition: box-shadow var(--transition);
}

.nav__logo-wrap:hover {
  box-shadow: 0 0 18px rgba(0, 85, 255, 0.35), 0 0 8px rgba(0, 185, 107, 0.25);
}

.nav__logo-img { height: 38px; width: auto; display: block; }

.nav__links { display: flex; align-items: center; gap: 2rem; }

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-sub);
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--blue); }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 17px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 1rem;
  flex-shrink: 0;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Animation croix quand ouvert */
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Nav avec fond quand menu ouvert */
.nav.menu-open {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 85, 255, 0.08);
}

/* Dots des carousels mobiles */
.carousel-dots {
  display: none;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s, width 0.25s;
  flex-shrink: 0;
}

.carousel-dot.active {
  background: var(--blue);
  transform: scale(1.3);
}

/* Overlay menu mobile — attaché au body, hors du nav */
#mobileMenuOverlay {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: #ffffff;
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#mobileMenuOverlay.open {
  display: flex;
}

#mobileMenuOverlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

#mobileMenuOverlay ul a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
}

#mobileMenuOverlay ul a:hover {
  color: #0055ff;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 120px 24px 80px;
  max-width: 1160px;
  margin-inline: auto;
  overflow: visible;
}

.hero__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: #ffffff;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
}

.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 85, 255, 0.07) 0%, transparent 70%);
  top: -80px;
  right: -100px;
}

.hero__glow--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 185, 107, 0.06) 0%, transparent 70%);
  bottom: 0;
  left: -50px;
}

.hero__content { display: flex; flex-direction: column; gap: 1.5rem; z-index: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 85, 255, 0.05);
  border: 1px solid rgba(0, 85, 255, 0.18);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 460px;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* Hero Visual */
.hero__visual { display: flex; justify-content: center; align-items: center; z-index: 1; }

.bottle-wrap {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Product image */
.product-img-wrap {
  position: relative;
  z-index: 3;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
  background: #eef3ff;
  border: 1.5px solid rgba(0, 85, 255, 0.14);
  box-shadow:
    0 0 0 10px rgba(0, 85, 255, 0.04),
    0 12px 60px rgba(0, 85, 255, 0.1),
    0 0 80px rgba(0, 185, 107, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.07);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-img-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, transparent 50%, rgba(0, 85, 255, 0.05) 75%, rgba(0, 185, 107, 0.07) 100%);
  pointer-events: none;
}

/* Rings */
.ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring--1 {
  width: 330px; height: 330px;
  border: 1px solid rgba(0, 85, 255, 0.1);
  animation: ringPulse 4s ease-in-out infinite;
}

.ring--2 {
  width: 362px; height: 362px;
  border: 1px solid rgba(0, 185, 107, 0.07);
  animation: ringPulse 4s ease-in-out 0.5s infinite;
}

.ring--3 {
  width: 392px; height: 392px;
  border: 1px solid rgba(0, 85, 255, 0.04);
  animation: ringPulse 4s ease-in-out 1s infinite;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.97); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
  animation: scrollLinePulse 2s ease-in-out infinite;
}

@keyframes scrollLinePulse {
  0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
  50% { opacity: 0.8; transform: scaleX(1); }
}

/* ===================================================
   CONCEPT
   =================================================== */
.concept { background: var(--bg-alt); }

.concept__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.concept-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.concept-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.concept-card__icon { width: 52px; height: 52px; flex-shrink: 0; }

.concept-card h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }

.concept-card p { font-size: 0.9rem; color: var(--text-sub); line-height: 1.7; }

/* ===================================================
   HOW IT WORKS
   =================================================== */
.how { background: var(--bg); }

.steps { display: flex; align-items: center; gap: 0; }

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 2.5rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(0, 85, 255, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.step__number {
  font-size: 3rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 85, 255, 0.18);
  line-height: 1;
}

.step__icon { width: 64px; height: 64px; }

.step h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); }

.step p { font-size: 0.9rem; color: var(--text-sub); line-height: 1.65; }

.step__connector {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
  flex-shrink: 0;
}

.connector-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 85, 255, 0.25), transparent);
}

.connector-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 8px rgba(0, 85, 255, 0.3);
}

/* ===================================================
   TECHNOLOGY
   =================================================== */
.tech { background: var(--bg-alt); position: relative; overflow: hidden; }

.tech::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0, 85, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.tech__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.tech__diagram {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

.diagram-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.diagram-ring--outer {
  width: 320px; height: 320px;
  border: 1px solid rgba(0, 85, 255, 0.12);
  animation: rotateRing 20s linear infinite;
}

.diagram-ring--mid {
  width: 220px; height: 220px;
  border: 1px solid rgba(0, 185, 107, 0.18);
  animation: rotateRing 14s linear infinite reverse;
}

.diagram-ring--inner {
  width: 140px; height: 140px;
  border: 1px solid rgba(0, 85, 255, 0.22);
  animation: rotateRing 8s linear infinite;
  background: radial-gradient(circle, rgba(0, 85, 255, 0.03) 0%, transparent 70%);
}

@keyframes rotateRing {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.diagram-core {
  position: relative;
  z-index: 3;
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
  box-shadow: 0 0 40px rgba(0, 85, 255, 0.2), 0 8px 24px rgba(0, 85, 255, 0.15);
}

.diagram-label {
  position: absolute;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.diagram-label--top    { top: -8px;  left: 50%; transform: translateX(-50%); }
.diagram-label--right  { right: -80px; top: 50%; transform: translateY(-50%); }
.diagram-label--bottom { bottom: -8px; left: 50%; transform: translateX(-50%); }
.diagram-label--left   { left: -80px; top: 50%; transform: translateY(-50%); }

.diagram-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 6px rgba(0, 85, 255, 0.5);
}

.dp--1 { top: 10%; left: 50%; animation: orbit1 4s linear infinite; }
.dp--2 { top: 50%; left: 10%; animation: orbit1 6s linear infinite reverse; }
.dp--3 { top: 80%; right: 20%; animation: orbit1 5s linear infinite 1s; }
.dp--4 { top: 30%; right: 10%; animation: orbit1 7s linear infinite 0.5s; }

@keyframes orbit1 {
  0%   { transform: translate(0, 0);   opacity: 1; }
  25%  { transform: translate(20px, -20px); opacity: 0.7; }
  50%  { transform: translate(0, -40px);  opacity: 0.3; }
  75%  { transform: translate(-20px, -20px); opacity: 0.7; }
  100% { transform: translate(0, 0);   opacity: 1; }
}

/* Specs */
.tech__specs { display: flex; flex-direction: column; gap: 2rem; }

.spec-item { display: flex; flex-direction: column; gap: 8px; }

.spec-bar {
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 100px;
  overflow: hidden;
}

.spec-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.spec-info { display: flex; justify-content: space-between; align-items: center; }

.spec-name { font-size: 0.85rem; color: var(--text-sub); }

.spec-val { font-size: 0.85rem; font-weight: 700; color: var(--blue); }

.tech__badges { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }

.tech-badge {
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-sub);
  letter-spacing: 0.05em;
  background: var(--bg-card);
  border: 1px solid rgba(0, 85, 255, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ===================================================
   ECOLOGICAL IMPACT
   =================================================== */
.eco { background: var(--bg); }

.eco__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 4rem; }

.eco-stat {
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.eco-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.eco-stat__number { display: flex; align-items: baseline; justify-content: center; gap: 4px; }

.counter {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.eco-stat__unit { font-size: 1.4rem; font-weight: 700; color: var(--green); }

.eco-stat p { font-size: 0.85rem; color: var(--text-sub); line-height: 1.5; }

.eco__pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.eco-pillar { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }

.eco-pillar__icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 85, 255, 0.04);
  border: 1px solid rgba(0, 85, 255, 0.12);
  border-radius: 50%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow var(--transition);
}

.eco-pillar:hover .eco-pillar__icon { box-shadow: 0 0 20px rgba(0, 85, 255, 0.12); }

.eco-pillar h4 { font-size: 0.9rem; font-weight: 600; color: var(--text); }

/* ===================================================
   USE CASES
   =================================================== */
.usecases { background: var(--bg-alt); }

.usecases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.usecase-card {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.usecase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.usecase-card:hover::before { opacity: 1; }

.usecase-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.usecase-card__icon { font-size: 2rem; line-height: 1; }

.usecase-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); }

.usecase-card p { font-size: 0.88rem; color: var(--text-sub); line-height: 1.65; }

/* ===================================================
   GLOBAL IMPACT
   =================================================== */
.global { background: var(--bg); }

.global__inner {
  padding: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(0, 85, 255, 0.04) 0%, rgba(0, 185, 107, 0.04) 100%);
  border: 1px solid rgba(0, 85, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.global__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; width: 100%; margin-top: 1rem; }

.global-stat { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }

.global-stat__num {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.global-stat__label { font-size: 0.85rem; color: var(--text-sub); text-align: center; line-height: 1.5; }

/* ===================================================
   TEAM
   =================================================== */
.team { background: var(--bg-alt); }

.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.team-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 85, 255, 0.08) 0%, rgba(0, 185, 107, 0.08) 100%);
  border: 1.5px solid rgba(0, 85, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); }

.team-role {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.team-card p { font-size: 0.85rem; color: var(--text-sub); line-height: 1.6; }

/* ===================================================
   FINAL CTA
   =================================================== */
.cta-section { background: var(--bg-alt); position: relative; overflow: hidden; }

.cta-section__bg { position: absolute; inset: 0; pointer-events: none; }

.cta-glow { position: absolute; border-radius: 50%; filter: blur(100px); }

.cta-glow--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 85, 255, 0.07) 0%, transparent 70%);
  top: -100px; left: 50%; transform: translateX(-50%);
}

.cta-glow--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0, 185, 107, 0.06) 0%, transparent 70%);
  bottom: 0; right: 10%;
}

/* Layout 2 colonnes */
.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

/* Colonne gauche — visuel + tableau coût */
.cta-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta-capsule-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #eef3ff;
  border: 1.5px solid rgba(0, 85, 255, 0.14);
  box-shadow: 0 0 0 10px rgba(0,85,255,0.04), 0 12px 60px rgba(0,85,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}

.cta-capsule-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
}

.cta-capsule-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,185,107,0.1) 0%, transparent 70%);
  z-index: -1;
}

/* Tableau coût de revient */
.cta-cost-box {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-cost-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.cta-cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.cta-cost-table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0 0 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.cta-cost-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: var(--text);
}

.cost-num { color: var(--text-muted); font-size: 0.8rem; }

.price-tag {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.cta-cost-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Colonne droite — offres */
.cta-offers {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-offer {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.cta-offer--alt {
  background: var(--bg-alt);
}

.cta-offer__badge {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.cta-offer__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 0.5rem;
}

.cta-offer__price { display: flex; align-items: baseline; gap: 0.4rem; }

.cta-offer__amount {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-offer__unit { font-size: 0.82rem; color: var(--text-muted); }

.cta-offer__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-sub);
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta-form__row { width: 100%; display: flex; gap: 0.75rem; }

.cta-form input[type="email"] {
  flex: 1;
  background: #fff;
  border: 1.5px solid rgba(0, 85, 255, 0.15);
  border-radius: 100px;
  padding: 14px 22px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cta-form input[type="email"]::placeholder { color: var(--text-muted); }

.cta-form input[type="email"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
}

.cta-form__note { font-size: 0.78rem; color: var(--text-muted); }

.cta-form__success {
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 600;
  padding: 12px 20px;
  background: rgba(0, 185, 107, 0.07);
  border: 1px solid rgba(0, 185, 107, 0.22);
  border-radius: var(--radius-md);
  width: 100%;
  text-align: center;
}

.cta-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}