/* ===== VARIABLES ===== */
:root {
  --pink: #f472b6;
  --pink-light: #fdf2f8;
  --lavender: #a78bfa;
  --lavender-light: #f5f3ff;
  --mint: #34d399;
  --mint-light: #ecfdf5;
  --peach: #fb923c;
  --peach-light: #fff7ed;
  --yellow: #fbbf24;

  --dark: #0f0f0f;
  --dark-2: #1a1a1a;
  --grey: #6b7280;
  --grey-light: #f9fafb;
  --border: #e5e7eb;

  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.10);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-sans); color: var(--dark); background: #fff; overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
em { font-style: italic; color: var(--pink); }
p { line-height: 1.7; color: var(--grey); }

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* ===== UTILITY ===== */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.solution-tag { color: var(--mint); background: var(--mint-light); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header p { margin-top: 16px; font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.btn-ghost {
  display: inline-block;
  color: var(--dark);
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 1rem;
  border: 2px solid var(--border);
  transition: border-color .2s, transform .2s;
}
.btn-ghost:hover { border-color: var(--dark); transform: translateY(-2px); }
.btn-large { padding: 20px 44px; font-size: 1.1rem; }

/* ===== NAV ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: background .3s, box-shadow .3s;
}
#nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; }
.logo span { color: var(--pink); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--grey); transition: color .2s; }
.nav-links a:hover { color: var(--dark); }
.btn-nav {
  background: var(--dark) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .875rem !important;
  transition: transform .2s, box-shadow .2s !important;
}
.btn-nav:hover { transform: translateY(-1px) !important; box-shadow: 0 8px 20px rgba(0,0,0,.15) !important; }
.lang-toggle {
  display: flex; align-items: center; gap: 4px;
  background: none; border: 1.5px solid var(--border);
  border-radius: 100px; padding: 5px 12px;
  cursor: pointer; font-family: var(--font-sans);
  transition: border-color .2s;
}
.lang-toggle:hover { border-color: var(--dark); }
.lang-opt {
  font-size: .78rem; font-weight: 600; color: var(--grey);
  cursor: pointer; transition: color .2s; padding: 0 2px;
}
.lang-opt.active { color: var(--dark); }
.lang-sep { font-size: .78rem; color: var(--border); }

.burger { display: none; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .35; animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 { width: 500px; height: 500px; background: var(--pink); top: -100px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: var(--lavender); bottom: -80px; left: -80px; animation-delay: -3s; }
.blob-3 { width: 300px; height: 300px; background: var(--mint); top: 50%; right: 30%; animation-delay: -5s; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(.95); }
}
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero .container {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  width: 100%; max-width: 800px; margin: 0 auto;
  padding: 80px 48px; box-sizing: border-box;
  position: relative; z-index: 2;
}
.hero-content { width: 100%; }

.hero-intro {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 32px;
}
.hero-intro-line {
  width: 32px; height: 1px; background: var(--pink);
}
.hero-badge {
  display: inline-flex; align-items: center;
  font-size: .82rem; font-weight: 600;
  color: var(--pink); letter-spacing: .06em;
  border: 1.5px solid var(--pink-light);
  background: var(--pink-light);
  padding: 6px 16px; border-radius: 100px;
}

h1 em { font-style: italic; }
.hero-sub {
  font-size: 1.15rem; line-height: 1.75;
  margin: 28px auto 44px; max-width: 560px;
  color: var(--grey);
}
.hero-sub strong { color: var(--dark); font-weight: 700; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }

.hero-trust {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  padding-top: 32px; border-top: 1px solid var(--border); width: 100%;
}
.hero-trust-item { display: flex; flex-direction: column; align-items: center; }
.hero-trust-num {
  font-size: 1.8rem; font-weight: 800;
  font-family: var(--font-serif); color: var(--dark);
  line-height: 1;
}
.hero-trust-label { font-size: .75rem; color: var(--grey); margin-top: 5px; }
.hero-trust-sep { width: 1px; height: 36px; background: var(--border); }

/* ===== HERO VISUAL ===== */
.hero-visual { flex: 0 0 420px; position: relative; z-index: 2; }

.hero-card-wrap {
  position: relative; width: 100%; padding-bottom: 20px;
}

.warm-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #EDE3D8;
  box-shadow: 0 24px 60px rgba(100,60,20,.10);
  overflow: hidden;
  animation: warmFloat 6s ease-in-out infinite;
}
@keyframes warmFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.warm-card-top {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid #F5EDE4;
  background: #FDFAF7;
}
.warm-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #C4855A, #E8A87C);
  color: #fff; font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.warm-card-meta strong { display: block; font-size: .82rem; color: var(--dark); }
.warm-card-meta span { font-size: .72rem; color: #B5A090; }
.warm-status {
  margin-left: auto; width: 8px; height: 8px;
  border-radius: 50%; background: #5DB87A;
  box-shadow: 0 0 0 3px rgba(93,184,122,.2);
}

.warm-card-img {
  height: 160px;
  background: linear-gradient(135deg, #F2E8DC 0%, #EAD5C0 50%, #E8C9A8 100%);
  position: relative;
}
.warm-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(255,255,255,.4));
}

.warm-card-body { padding: 20px; }
.warm-line {
  height: 8px; border-radius: 100px;
  background: #F0E6DA; margin-bottom: 10px;
}
.warm-line.w70 { width: 70%; }
.warm-line.w50 { width: 50%; }
.warm-btn {
  margin-top: 16px; padding: 11px 20px;
  background: #1E150E; color: #fff;
  border-radius: 100px; font-size: .82rem; font-weight: 600;
  text-align: center;
}

/* floating stats */
.warm-float {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid #EDE3D8;
  border-radius: 14px; padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(100,60,20,.10);
  font-size: .78rem;
}
.warm-float strong { display: block; font-weight: 700; color: var(--dark); line-height: 1.2; }
.warm-float small { color: #B5A090; }
.warm-float svg { color: #C4855A; flex-shrink: 0; }
.warm-float-tl { top: -16px; left: -24px; animation: warmFloat 5s ease-in-out infinite .5s; }
.warm-float-br { bottom: 8px; right: -24px; animation: warmFloat 5s ease-in-out infinite 1s; }

/* deco dots */
.warm-deco {
  position: absolute; border-radius: 50%;
}
.warm-deco-1 {
  width: 80px; height: 80px;
  background: radial-gradient(circle, #E8C9A8, transparent);
  top: -40px; right: -20px; opacity: .6;
}
.warm-deco-2 {
  width: 50px; height: 50px;
  background: radial-gradient(circle, #C4855A, transparent);
  bottom: -10px; left: -10px; opacity: .3;
}

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .72rem; color: #B5A090; letter-spacing: .08em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(#B5A090, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:.4;transform:scaleY(.6)} }

@media (max-width: 1024px) {
  .hero .container { flex-direction: column; gap: 56px; padding-top: 48px; }
  .hero-visual { flex: none; width: 100%; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .warm-float-tl { left: 0; }
  .warm-float-br { right: 0; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 32px 0;
  background: var(--grey-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar .container { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trust-label { font-size: .8rem; color: var(--grey); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; white-space: nowrap; }
.trust-logos { display: flex; gap: 40px; flex-wrap: wrap; }
.trust-logos span { font-size: .92rem; color: var(--grey); font-weight: 500; opacity: .7; white-space: nowrap; }

/* ===== PROBLEM ===== */
.problem { background: #fff; }

.ps-header {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  align-items: end;
  margin-bottom: 48px;
}
.ps-col-label { }
.ps-col-label h2 { margin-top: 12px; }
.ps-arrow-col { }

.ps-rows { display: flex; flex-direction: column; gap: 0; }

.ps-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  gap: 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.ps-row:last-child { border-bottom: 1px solid var(--border); }

.ps-pain, .ps-solution {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ps-pain { padding-right: 24px; }
.ps-solution {
  padding-left: 24px;
  background: var(--grey-light);
  border-radius: var(--radius-sm);
  padding: 20px 20px 20px 20px;
}

.ps-arrow {
  text-align: center;
  font-size: 1.2rem;
  color: var(--pink);
  font-weight: 700;
}

.pain-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
}
.ps-pain strong, .ps-solution strong { display: block; font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.ps-pain p, .ps-solution p { font-size: .88rem; margin: 0; }

.check-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--mint-light); color: var(--mint);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; margin-top: 2px;
}

/* legacy - keep for other uses */
.pain-list, .solution-list { margin-top: 32px; display: flex; flex-direction: column; gap: 28px; }
.pain-list li, .solution-list li { display: flex; gap: 16px; }
.pain-list strong, .solution-list strong { display: block; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.pain-list p, .solution-list p { font-size: .92rem; margin: 0; }

@media (max-width: 768px) {
  .ps-header { grid-template-columns: 1fr; gap: 32px; }
  .ps-header .ps-arrow-col { display: none; }
  .ps-row { grid-template-columns: 1fr; gap: 12px; }
  .ps-arrow { text-align: left; }
  .ps-pain { padding-right: 0; }
  .ps-solution { padding-left: 16px; }
}

/* ===== SERVICES ===== */
.services { background: var(--grey-light); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.services-grid--3 { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: #fff; border-radius: var(--radius);
  padding: 40px; border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card.featured {
  background: var(--dark); color: #fff;
  border-color: var(--dark);
}
.service-card.featured p,
.service-card.featured .service-features li { color: rgba(255,255,255,.7); }
.service-card.featured h3 { color: #fff; }
.service-card.featured .service-price { color: #fff; border-color: rgba(255,255,255,.15); }
.service-card.featured .service-price strong { color: var(--pink); }
.service-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--pink); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
}
.service-num { font-size: .72rem; font-weight: 700; letter-spacing: .12em; color: var(--grey); margin-bottom: 12px; }
.service-card.featured .service-num { color: rgba(255,255,255,.35); }
.service-benefit-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 600;
  color: var(--pink); background: var(--pink-light);
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.35rem; margin-bottom: 14px; line-height: 1.2; }
.service-lead { font-size: .95rem; margin-bottom: 24px; }
.service-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.service-features li { font-size: .875rem; color: var(--grey); }
.service-card.featured .service-features li { color: rgba(255,255,255,.7); }
.service-price { font-size: .9rem; color: var(--grey); border-top: 1px solid var(--border); padding-top: 20px; margin-bottom: 20px; }
.service-price strong { font-size: 1.2rem; color: var(--dark); }
.service-card.featured .service-price strong { color: var(--pink); }
.btn-service {
  display: block; text-align: center;
  padding: 13px 20px; border-radius: 100px;
  font-size: .9rem; font-weight: 600;
  border: 2px solid var(--dark); color: var(--dark);
  transition: background .2s, color .2s, transform .2s;
}
.btn-service:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }
.btn-service--light { background: #fff; color: var(--dark); border-color: #fff; }
.btn-service--light:hover { background: var(--pink); border-color: var(--pink); color: #fff; }
.services-note {
  display: flex; align-items: center; gap: 14px;
  margin-top: 40px; padding: 24px 28px;
  background: #fff; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.services-note span { font-size: 1.4rem; flex-shrink: 0; }
.services-note p { font-size: .92rem; margin: 0; }
.services-note a { color: var(--dark); font-weight: 600; border-bottom: 1px solid currentColor; }
@media (max-width: 900px) {
  .services-grid--3 { grid-template-columns: 1fr; }
}

/* ===== PORTFOLIO ===== */
.portfolio { background: #fff; }

.portfolio-filters {
  display: flex; justify-content: center; gap: 10px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 22px; border-radius: 100px;
  font-size: .875rem; font-weight: 600;
  border: 2px solid var(--border); color: var(--grey);
  transition: all .2s; cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--dark); color: #fff; border-color: var(--dark);
}

.portfolio-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.portfolio-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-card.hidden { display: none; }

.portfolio-img {
  position: relative; height: 240px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.portfolio-mockup {
  width: 200px; display: flex; flex-direction: column; gap: 10px;
  padding: 20px; background: rgba(255,255,255,.7);
  border-radius: var(--radius-sm); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.8);
}
.mock-bar { height: 8px; border-radius: 100px; }
.mock-img { height: 60px; border-radius: var(--radius-sm); background: rgba(0,0,0,.05); }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mock-block { height: 40px; border-radius: var(--radius-sm); }
.mock-cta { text-align: center; padding: 8px 12px; border-radius: 100px; color: #fff; font-size: .75rem; font-weight: 700; margin-top: 4px; }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(15,15,15,.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.btn-portfolio {
  background: #fff; color: var(--dark);
  padding: 12px 24px; border-radius: 100px;
  font-weight: 700; font-size: .9rem;
  transition: transform .2s;
}
.btn-portfolio:hover { transform: scale(1.05); }

.portfolio-info { padding: 24px; background: #fff; }
.portfolio-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.ptag {
  font-size: .75rem; font-weight: 700; padding: 4px 12px;
  border-radius: 100px; background: var(--grey-light); color: var(--grey);
}
.portfolio-info h3 { font-size: 1.15rem; margin-bottom: 8px; }
.portfolio-info p { font-size: .9rem; margin-bottom: 16px; }
.portfolio-results {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 700; color: var(--mint);
  background: var(--mint-light); padding: 5px 14px; border-radius: 100px;
}

.portfolio-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.portfolio-img--cover {
  padding: 0;
  height: 300px;
}
.portfolio-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.portfolio-cta {
  text-align: center; margin-top: 56px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.portfolio-cta p { font-size: 1.05rem; color: var(--grey); }

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ===== PROCESS ===== */
.process { background: #fff; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-step { padding: 0 24px; }
.step-num {
  font-size: 2.5rem; font-weight: 900; color: var(--pink-light);
  font-family: var(--font-serif); line-height: 1; margin-bottom: 16px;
}
.step-line {
  height: 2px; background: linear-gradient(90deg, var(--pink), var(--lavender));
  margin-bottom: 24px; border-radius: 1px; position: relative;
}
.step-line::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px; background: var(--lavender);
  border-radius: 50%;
}
.step-line.last::after { display: none; }
.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-content p { font-size: .9rem; }
.step-duration { margin-top: 12px; font-size: .8rem; font-weight: 600; color: var(--pink); background: var(--pink-light); display: inline-block; padding: 4px 12px; border-radius: 100px; }

/* ===== RÉSULTATS ===== */
.resultats { background: var(--grey-light); }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.testimonial-card {
  background: #fff; border-radius: var(--radius);
  padding: 36px; border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card.featured-review { background: var(--dark); color: #fff; border-color: var(--dark); }
.testimonial-card.featured-review p { color: rgba(255,255,255,.8); }
.testimonial-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: .95rem; font-style: italic; margin-bottom: 24px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: .95rem; }
.testimonial-card.featured-review .testimonial-author strong { color: #fff; }
.testimonial-author span { font-size: .82rem; color: var(--grey); }
.testimonial-card.featured-review .testimonial-author span { color: rgba(255,255,255,.6); }

.metrics-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--dark); border-radius: var(--radius);
  padding: 48px 0; overflow: hidden;
}
.metric {
  text-align: center; padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.metric:last-child { border-right: none; }
.metric-num { font-size: 2.4rem; font-weight: 700; color: #fff; font-family: var(--font-serif); line-height: 1; }
.metric-label { font-size: .8rem; font-weight: 400; color: rgba(255,255,255,.5); margin-top: 10px; }

/* ===== TARIFS ===== */
.tarifs { background: #fff; }
.tarifs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tarif-card {
  border-radius: var(--radius);
  padding: 40px;
  border: 2px solid var(--border);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.tarif-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tarif-card.popular { border-color: var(--dark); background: var(--dark); }
.tarif-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff;
  font-size: .75rem; font-weight: 700;
  padding: 5px 16px; border-radius: 100px; white-space: nowrap;
}
.tarif-header { margin-bottom: 32px; }
.tarif-name { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--grey); margin-bottom: 12px; }
.tarif-card.popular .tarif-name { color: rgba(255,255,255,.6); }
.tarif-price { margin-bottom: 10px; }
.price-num { font-size: 3rem; font-weight: 900; font-family: var(--font-serif); color: var(--dark); line-height: 1; }
.tarif-card.popular .price-num { color: #fff; }
.price-currency { font-size: 1.5rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.tarif-desc { font-size: .9rem; color: var(--grey); }
.tarif-card.popular .tarif-desc { color: rgba(255,255,255,.6); }
.tarif-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.tarif-features li { font-size: .9rem; color: var(--grey); display: flex; align-items: center; gap: 8px; }
.tarif-card.popular .tarif-features li { color: rgba(255,255,255,.75); }
.btn-tarif {
  display: block; text-align: center;
  padding: 14px 24px; border-radius: 100px;
  font-weight: 600; font-size: .95rem;
  border: 2px solid var(--dark);
  color: var(--dark);
  transition: background .2s, color .2s, transform .2s;
}
.btn-tarif:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }
.btn-tarif-dark { background: #fff; color: var(--dark); border-color: #fff; }
.btn-tarif-dark:hover { background: var(--pink); border-color: var(--pink); color: #fff; }
.tarif-note { text-align: center; margin-top: 32px; font-size: .95rem; color: var(--grey); }
.tarif-note a { color: var(--dark); font-weight: 600; border-bottom: 1px solid currentColor; }

/* ===== FAQ ===== */
.faq { background: var(--grey-light); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left;
  padding: 24px 0; font-size: 1rem; font-weight: 600;
  color: var(--dark); display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: color .2s;
}
.faq-q:hover { color: var(--pink); }
.faq-arrow { font-size: 1.2rem; transition: transform .3s; flex-shrink: 0; }
.faq-q.active .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: .95rem; color: var(--grey); line-height: 1.7;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-a.open { max-height: 200px; padding-bottom: 24px; }

/* ===== CTA FINAL ===== */
.cta-final { background: #fff; }
.cta-box {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 80px; text-align: center;
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.cta-blob {
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--lavender-light));
  filter: blur(60px); opacity: .8; pointer-events: none;
}
.cta-box .section-tag { position: relative; }
.cta-box h2 { position: relative; margin-bottom: 16px; }
.cta-box p { position: relative; max-width: 480px; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-box .btn-primary { position: relative; }
.cta-reassurance {
  position: relative; display: flex; justify-content: center; gap: 32px;
  margin-top: 24px; flex-wrap: wrap;
}
.cta-reassurance span { font-size: .85rem; color: var(--grey); font-weight: 500; }

/* ===== CONTACT ===== */
.contact { background: var(--grey-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-left h2 { margin-bottom: 16px; }
.contact-left p { margin-bottom: 36px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 12px; font-size: .95rem; color: var(--grey); }
.contact-icon { font-size: 1.2rem; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px; border-radius: var(--radius-sm);
  border: 2px solid var(--border); background: #fff;
  font-size: .95rem; color: var(--dark);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); }
.form-group textarea { resize: vertical; }
.btn-submit {
  background: var(--dark); color: #fff;
  padding: 16px 32px; border-radius: 100px;
  font-size: 1rem; font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  display: inline-block; align-self: flex-start;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,.8); padding: 48px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; gap: 40px; flex-wrap: wrap; }
.footer .logo { color: #fff; margin-bottom: 12px; display: block; }
.footer .logo span { color: var(--pink); }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { flex-direction: column; gap: 48px; padding-top: 40px; }
  .hero-visual { flex: none; width: 100%; height: 400px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .tarifs-grid { grid-template-columns: 1fr 1fr; }
  .tarifs-grid .tarif-card:last-child { grid-column: span 2; max-width: 400px; justify-self: center; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: fixed; top: 72px; left: 0; right: 0; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); padding: 24px; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 16px 0; font-size: 1rem; }
  .btn-nav { display: block; text-align: center; margin-top: 8px; }
  .burger { display: flex; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-right { padding: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .step-line { display: none; }
  .testimonials { grid-template-columns: 1fr; }
  .metrics-band { grid-template-columns: repeat(2, 1fr); }
  .metric { padding: 24px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
  .tarifs-grid { grid-template-columns: 1fr; }
  .tarifs-grid .tarif-card:last-child { grid-column: auto; max-width: 100%; justify-self: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-visual { height: 360px; }
  .card-3d { width: 260px; height: 310px; }
  .badge-top { right: 0; }
  .badge-bottom { left: 0; }
  .br-desktop { display: none; }
  .cta-reassurance { gap: 16px; flex-direction: column; align-items: center; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
