@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700;900&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  --blue:        #3a7bd5;
  --blue-light:  #5b9de8;
  --purple:      #7b2ff7;
  --pink:        #e8176e;
  --pink-light:  #ff4d8f;
  --grad:        linear-gradient(135deg, #3a7bd5 0%, #7b2ff7 50%, #e8176e 100%);
  --grad-h:      linear-gradient(135deg, #5b9de8 0%, #9b4fff 50%, #ff4d8f 100%);
  --grad-soft:   linear-gradient(135deg, rgba(58,123,213,.08) 0%, rgba(123,47,247,.06) 50%, rgba(232,23,110,.08) 100%);
  --bg:          #f5f6fa;
  --bg-card:     #ffffff;
  --bg-card2:    #f0f2fb;
  --border:      rgba(58,123,213,.15);
  --border-h:    rgba(123,47,247,.35);
  --text:        #1a1a2e;
  --text-2:      #3d3d5c;
  --text-muted:  #7880a0;
  --shadow-sm:   0 2px 12px rgba(58,123,213,.10);
  --shadow-md:   0 8px 32px rgba(58,123,213,.14);
  --shadow-lg:   0 20px 60px rgba(58,123,213,.18);
  --shadow-pink: 0 8px 30px rgba(232,23,110,.22);
  --radius:    18px;
  --radius-sm: 10px;
  --tr:        all .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: .95rem;
  cursor: pointer; text-decoration: none;
  border: none; transition: var(--tr);
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-pink); }
.btn-primary:hover { background: var(--grad-h); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(232,23,110,.30); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--purple); font-weight: 700; }
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-2px); }
.btn-sm { padding: 9px 22px; font-size: .85rem; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 90px 0; }
.section-label {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--grad-soft);
  color: var(--purple); padding: 6px 16px; border-radius: 50px;
  border: 1px solid rgba(123,47,247,.2); margin-bottom: 16px;
}
.section-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 16px;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(245,246,250,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.navbar-logo img { height: 38px; }
.navbar-logo span {
  font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 1.35rem;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.navbar-nav { display: flex; align-items: center; gap: 2px; list-style: none; }
.navbar-nav a {
  color: var(--text-2); text-decoration: none;
  font-size: .9rem; font-weight: 600;
  padding: 8px 14px; border-radius: 8px; transition: var(--tr);
}
.navbar-nav a:hover { color: var(--purple); background: var(--grad-soft); }
.navbar-actions { display: flex; gap: 10px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--tr); display: block; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 70px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 50%, rgba(58,123,213,.07) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 15% 70%, rgba(232,23,110,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--grad); border-radius: 2px; }
.hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 22px;
}
.hero-desc { color: var(--text-2); font-size: 1.08rem; line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.hero-stat-value {
  font-family: 'Exo 2', sans-serif; font-size: 1.6rem; font-weight: 900;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat-label { font-size: .78rem; color: var(--text-muted); font-weight: 600; }

/* Hero mockup */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-mockup {
  width: 100%; max-width: 460px;
  background: var(--bg-card); border-radius: 24px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border); overflow: hidden;
}
.hero-mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 18px; background: var(--bg-card2); border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-url {
  flex: 1; background: var(--bg); border-radius: 6px;
  padding: 5px 12px; font-size: .73rem; color: var(--text-muted); margin-left: 10px;
}
.hero-mockup-body { padding: 22px; }
.mockup-tabs { display: flex; gap: 6px; margin-bottom: 16px; }
.mockup-tab {
  padding: 5px 14px; border-radius: 6px; font-size: .75rem; font-weight: 700;
  cursor: pointer; transition: var(--tr);
  background: var(--bg-card2); color: var(--text-muted); border: 1px solid var(--border);
}
.mockup-tab.active { background: var(--grad); color: #fff; border-color: transparent; }
.mockup-doc {
  background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 18px;
}
.mockup-doc-header {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 2px solid;
  border-image: var(--grad) 1;
}
.mockup-doc-title { font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: .9rem; }
.mockup-doc-title span { display: block; font-size: .65rem; color: var(--text-muted); font-family: 'Nunito', sans-serif; font-weight: 400; }
.mockup-lines { display: flex; flex-direction: column; gap: 6px; }
.ml { height: 7px; border-radius: 4px; background: var(--bg-card2); }
.ml.s { width: 45%; } .ml.m { width: 70%; } .ml.l { width: 90%; } .ml.xl { width: 100%; }
.ml.accent { background: linear-gradient(90deg, var(--blue), var(--purple)); opacity: .25; }
.mockup-total {
  margin-top: 14px; padding-top: 10px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.mockup-total-label { font-size: .72rem; font-weight: 700; color: var(--text-muted); }
.mockup-total-val { font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 1rem; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-floating {
  position: absolute; background: var(--bg-card); border-radius: 12px;
  padding: 10px 16px; box-shadow: var(--shadow-md); border: 1px solid var(--border);
  font-size: .78rem; font-weight: 700; display: flex; align-items: center; gap: 8px;
}
.hero-floating.f1 { top: -14px; right: -16px; animation: float 4s ease-in-out infinite; }
.hero-floating.f2 { bottom: 16px; left: -24px; animation: float 4s 2s ease-in-out infinite; }
.fi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }

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

/* ── CATEGORIES ── */
.cat-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-top: 48px;
}
.cat-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px 16px;
  text-align: center; cursor: pointer; text-decoration: none;
  color: var(--text); transition: var(--tr); position: relative; overflow: hidden;
}
.cat-card::before { content: ''; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: var(--tr); }
.cat-card:hover { border-color: var(--border-h); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cat-card:hover::before { opacity: 1; }
.cat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 14px; position: relative;
}
.cat-name { font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
.cat-count { font-size: .75rem; color: var(--text-muted); }

/* ── DOCS GRID ── */
.docs-section { background: var(--bg-card2); }
.docs-filter { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 40px; }
.filter-btn {
  padding: 8px 20px; border-radius: 50px;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--text-muted); font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: .85rem; cursor: pointer; transition: var(--tr);
}
.filter-btn.active, .filter-btn:hover { background: var(--grad); color: #fff; border-color: transparent; }
.docs-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.doc-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--tr);
  cursor: pointer; text-decoration: none; color: var(--text);
  display: flex; flex-direction: column;
}
.doc-card:hover { border-color: var(--border-h); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.doc-card-top {
  height: 90px; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; position: relative; overflow: hidden;
}
.doc-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.doc-card-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.doc-card-title { font-weight: 700; font-size: .98rem; margin-bottom: 6px; }
.doc-card-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.doc-card-footer {
  padding: 13px 18px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.doc-badge {
  font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
  background: var(--grad-soft); color: var(--purple);
  border: 1px solid rgba(123,47,247,.15);
}
.doc-cta { font-size: .82rem; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 4px; transition: var(--tr); }
.doc-card:hover .doc-cta { color: var(--pink); gap: 8px; }

/* ── HOW IT WORKS ── */
.how { background: var(--bg); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 56px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 33px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink));
  opacity: .2; z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Exo 2', sans-serif; font-size: 1.4rem; font-weight: 900;
  margin: 0 auto 20px; box-shadow: var(--shadow-pink); transition: var(--tr);
}
.step:hover .step-num { transform: scale(1.1); }
.step-icon { font-size: 1.6rem; margin-bottom: 8px; }
.step-title { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.step-desc { font-size: .83rem; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg-card2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.testi-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: var(--tr);
}
.testi-card:hover { border-color: var(--border-h); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi-stars { color: #f5a623; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: .9rem; line-height: 1.7; color: var(--text-2); margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .88rem; }
.testi-role { font-size: .75rem; color: var(--text-muted); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--grad); padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 50%, rgba(255,255,255,.06) 0%, transparent 70%);
}
.cta-banner .section-title { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 32px; }

/* ── FOOTER ── */
footer { background: #111122; color: rgba(255,255,255,.6); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 36px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .85rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-weight: 700; font-size: .88rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .84rem; transition: var(--tr); }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
.fade-up   { animation: fadeUp .6s .0s ease both; }
.fade-up-2 { animation: fadeUp .6s .15s ease both; }
.fade-up-3 { animation: fadeUp .6s .3s ease both; }
.fade-up-4 { animation: fadeUp .6s .45s ease both; }
[data-reveal] { opacity:0; transform:translateY(28px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].visible { opacity:1; transform:none; }
[data-reveal-delay="1"] { transition-delay:.1s; }
[data-reveal-delay="2"] { transition-delay:.2s; }
[data-reveal-delay="3"] { transition-delay:.3s; }
[data-reveal-delay="4"] { transition-delay:.4s; }
[data-reveal-delay="5"] { transition-delay:.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-mockup { max-width: 380px; margin: 0 auto; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .navbar-nav, .navbar-actions .btn-outline { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 0; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-floating { display: none; }
}

/* ═══════════════════════════════════════════
   PAGES INTÉRIEURES — header commun
═══════════════════════════════════════════ */
.page-hero {
  padding: 120px 0 64px;
  background: linear-gradient(135deg, rgba(58,123,213,.06) 0%, rgba(123,47,247,.04) 50%, rgba(232,23,110,.06) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .section-label { margin-bottom: 14px; }
.page-hero .section-title { margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   TARIFS
═══════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 56px; align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.pricing-card.popular {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple), var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.pricing-popular-badge {
  position: absolute; top: 0; right: 0;
  background: var(--grad); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 0 var(--radius) 0 var(--radius);
}
.pricing-name { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.pricing-desc { font-size: .82rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.pricing-price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 6px; }
.pricing-amount { font-family: 'Exo 2', sans-serif; font-size: 2.6rem; font-weight: 900; line-height: 1; }
.pricing-amount.grad { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pricing-period { font-size: .82rem; color: var(--text-muted); margin-bottom: 4px; }
.pricing-dl { font-size: .78rem; color: var(--purple); font-weight: 700; margin-bottom: 24px; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { font-size: .85rem; display: flex; align-items: center; gap: 10px; }
.pricing-features li .pf-icon { font-size: .9rem; flex-shrink: 0; }
.pricing-features li.off { color: var(--text-muted); }
.pricing-faq { margin-top: 72px; }
.pricing-faq-title { font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 1.6rem; margin-bottom: 32px; text-align: center; }
.pricing-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pfaq-item { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 20px; }
.pfaq-q { font-weight: 700; font-size: .9rem; margin-bottom: 8px; }
.pfaq-a { font-size: .83rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 56px; padding: 72px 0 90px; align-items: start;
}
.contact-info-title { font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 1.5rem; margin-bottom: 12px; }
.contact-info-sub { color: var(--text-muted); font-size: .92rem; line-height: 1.7; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-soft); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 3px; }
.contact-item-val { font-weight: 600; font-size: .9rem; }
.contact-form-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
.contact-form-title { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 1.2rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none; padding: 16px 20px; border-radius: var(--radius-sm);
  background: rgba(40,200,100,.1); border: 1.5px solid rgba(40,200,100,.3);
  color: #1a7a40; font-size: .88rem; font-weight: 600; margin-top: 16px;
}

/* ═══════════════════════════════════════════
   À PROPOS
═══════════════════════════════════════════ */
.about-section { padding: 72px 0 90px; }
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 80px; }
.about-visual {
  border-radius: var(--radius); overflow: hidden;
  background: var(--grad-soft); border: 1.5px solid var(--border);
  padding: 48px; display: flex; align-items: center; justify-content: center;
  min-height: 280px; flex-direction: column; gap: 16px;
}
.about-visual-logo { font-size: 4rem; }
.about-visual-txt { font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 1.6rem; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-visual-sub { font-size: .82rem; color: var(--text-muted); }
.about-text .section-label { margin-bottom: 12px; }
.about-text .section-title { margin-bottom: 14px; }
.about-text p { color: var(--text-2); font-size: .95rem; line-height: 1.75; margin-bottom: 14px; }
.about-values { margin-top: 56px; }
.about-values-title { font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 1.6rem; text-align: center; margin-bottom: 40px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; transition: var(--tr); }
.value-card:hover { border-color: var(--border-h); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.value-title { font-weight: 700; font-size: .98rem; margin-bottom: 8px; }
.value-desc { font-size: .83rem; color: var(--text-muted); line-height: 1.6; }
.team-section { margin-top: 72px; }
.team-title { font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 1.6rem; text-align: center; margin-bottom: 40px; }
.team-card { max-width: 320px; margin: 0 auto; background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 32px; text-align: center; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 1.6rem; margin: 0 auto 16px; }
.team-name { font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.team-role { font-size: .82rem; color: var(--purple); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: .83rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-section { padding: 72px 0 90px; max-width: 800px; margin: 0 auto; }
.faq-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: var(--tr); }
.faq-item.open { border-color: var(--border-h); }
.faq-question {
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 700; font-size: .93rem; gap: 16px; user-select: none;
  transition: var(--tr);
}
.faq-question:hover { color: var(--purple); }
.faq-chevron { font-size: .8rem; transition: transform .3s ease; flex-shrink: 0; color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--purple); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: .88rem; color: var(--text-2); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 16px; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-cta-box { margin-top: 56px; background: var(--grad-soft); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 36px; text-align: center; }
.faq-cta-box h3 { font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 1.3rem; margin-bottom: 10px; }
.faq-cta-box p { font-size: .9rem; color: var(--text-muted); margin-bottom: 20px; }

/* ═══════════════════════════════════════════
   CONNEXION / INSCRIPTION
═══════════════════════════════════════════ */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 100px 5% 60px;
  background: linear-gradient(135deg, rgba(58,123,213,.06) 0%, rgba(123,47,247,.04) 50%, rgba(232,23,110,.06) 100%);
}
.auth-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 48px; width: 100%; max-width: 460px;
  box-shadow: var(--shadow-lg);
}
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo img { height: 44px; }
.auth-title { font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 1.7rem; text-align: center; margin-bottom: 6px; }
.auth-sub { text-align: center; color: var(--text-muted); font-size: .88rem; margin-bottom: 32px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { font-size: .78rem; color: var(--text-muted); font-weight: 600; }
.auth-switch { text-align: center; margin-top: 24px; font-size: .85rem; color: var(--text-muted); }
.auth-switch a { color: var(--purple); font-weight: 700; text-decoration: none; }
.auth-switch a:hover { color: var(--pink); }
.plan-selector { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.plan-option { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: var(--tr); }
.plan-option:hover { border-color: var(--border-h); }
.plan-option input[type=radio] { accent-color: var(--purple); width: 16px; height: 16px; }
.plan-option-info { flex: 1; }
.plan-option-name { font-weight: 700; font-size: .88rem; }
.plan-option-detail { font-size: .76rem; color: var(--text-muted); }
.plan-option-price { font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: .95rem; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.plan-option.selected { border-color: var(--purple); background: var(--grad-soft); }
.input-icon-wrap { position: relative; }
.input-icon-wrap input { padding-left: 42px; }
.input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: .95rem; pointer-events: none; }
.btn-block { width: 100%; justify-content: center; }
.form-hint { font-size: .76rem; color: var(--text-muted); margin-top: 8px; }
.terms-check { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; color: var(--text-2); }
.terms-check input { margin-top: 2px; accent-color: var(--purple); }
.terms-check a { color: var(--purple); text-decoration: none; }

/* ═══════════════════════════════════════════
   RESPONSIVE PAGES
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { transform: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .pricing-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
  .auth-card { padding: 32px 24px; }
}
