/* ════════════════════════════════════════════════════════
   PichPich - Stylesheet partage (FR/EN)
   Charte graphique originale conservee a 100%
   ════════════════════════════════════════════════════════ */

:root {
  --bordeaux: #7B252E;
  --bordeaux-light: #943039;
  --bordeaux-dark: #5C1B22;
  --rose-accent: #C85A6A;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --noir: #1A1A1A;
  --text-body: #2D2D2D;
  --text-muted: #6B6B6B;
  --text-light: #999999;
  --border: #E8E8E8;
  --border-light: #F0F0F0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ──── LANG SWITCHER ──── */
.lang-switcher {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--border);
  border-radius: 50px; padding: 4px 8px;
  font-size: 13px; font-weight: 500;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 13px;
  font-weight: 500; color: var(--text-muted);
  padding: 2px 6px; border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.lang-btn.active { background: var(--bordeaux); color: var(--white); }
.lang-btn:hover:not(.active) { color: var(--bordeaux); }

/* ──── NAV ──── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 14px; color: var(--text-body); text-decoration: none;
  font-weight: 400; letter-spacing: 0.02em; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--bordeaux); }
.nav-cta {
  background: var(--bordeaux) !important; color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px; font-size: 13px !important;
  font-weight: 500 !important; letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--bordeaux-light) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--bordeaux); border-radius: 2px; transition: 0.3s; }

/* ──── HERO (homepage) ──── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--bordeaux); position: relative; overflow: hidden; padding-top: 72px;
}
.hero-bg-shape {
  position: absolute; top: -10%; right: -5%; width: 55%; height: 120%;
  opacity: 0.12; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 80px 0; }
.hero-eyebrow {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-accent); margin-bottom: 20px; font-weight: 400;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(42px, 6vw, 64px);
  color: var(--white); font-weight: 400; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero h1 em { font-style: italic; color: var(--rose-accent); }
.hero-text {
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.78);
  max-width: 540px; margin-bottom: 40px; font-weight: 300;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.6s;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--bordeaux);
  padding: 16px 36px; border-radius: 50px; text-decoration: none;
  font-size: 15px; font-weight: 500; letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.8s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.hero-cta svg { width: 16px; height: 16px; transition: transform 0.2s; }
.hero-cta:hover svg { transform: translateX(3px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ──── PAGE HEADER (sub-pages) ──── */
.page-header {
  background: var(--bordeaux); color: var(--white);
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.page-header-shape {
  position: absolute; top: -10%; right: -5%; width: 50%; height: 130%;
  opacity: 0.10; pointer-events: none;
}
.page-header-eyebrow {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-accent); margin-bottom: 16px; font-weight: 400;
  position: relative; z-index: 2;
}
.page-header h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 52px);
  color: var(--white); font-weight: 400; line-height: 1.15;
  letter-spacing: -0.01em; margin-bottom: 20px; max-width: 720px;
  position: relative; z-index: 2;
}
.page-header h1 em { font-style: italic; color: var(--rose-accent); }
.page-header p {
  font-size: 17px; color: rgba(255,255,255,0.78); max-width: 600px;
  font-weight: 300; line-height: 1.7; position: relative; z-index: 2;
}

/* ──── CORE PROMISE ──── */
.core-promise { padding: 80px 0; background: var(--off-white); border-bottom: 1px solid var(--border-light); }
.core-promise-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.core-promise h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px);
  color: var(--noir); font-weight: 400; line-height: 1.3;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.core-promise h2 em { font-style: italic; color: var(--bordeaux); }
.core-promise p { font-size: 17px; color: var(--text-muted); line-height: 1.7; }

/* ──── STATS ──── */
.stats { padding: 80px 0; background: var(--white); border-bottom: 1px solid var(--border-light); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 52px; color: var(--bordeaux); font-weight: 400; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--text-muted); letter-spacing: 0.03em; }

/* ──── SECTION HELPERS ──── */
.section-eyebrow {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bordeaux); margin-bottom: 12px; font-weight: 600;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px);
  color: var(--noir); font-weight: 400; line-height: 1.2;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.section-subtitle { font-size: 16px; color: var(--text-muted); max-width: 560px; margin-bottom: 60px; }

/* ──── FOR WHOM ──── */
.for-whom { padding: 100px 0; background: var(--white); }
.for-whom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.for-whom-card {
  background: var(--off-white); border-radius: 16px; padding: 36px 28px;
  border: 1px solid var(--border-light); transition: transform 0.3s, border-color 0.3s;
}
.for-whom-card:hover { transform: translateY(-4px); border-color: var(--bordeaux); }
.for-whom-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--bordeaux);
}
.for-whom-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--noir); margin-bottom: 12px; font-weight: 500; }
.for-whom-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ──── RESULTS ──── */
.results { padding: 100px 0; background: var(--bordeaux); color: var(--white); position: relative; overflow: hidden; }
.results-curve {
  position: absolute; top: -10%; left: -5%; width: 45%; height: 130%;
  opacity: 0.06; pointer-events: none;
}
.results-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }
.results .section-eyebrow { color: var(--rose-accent); }
.results .section-title { color: var(--white); }
.results .section-subtitle { color: rgba(255,255,255,0.7); margin: 0 auto; }
.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; z-index: 2;
}
.result-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 32px 24px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, background 0.3s;
}
.result-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.10); }
.result-number {
  font-family: var(--font-display); font-size: 48px; color: var(--rose-accent);
  font-weight: 400; line-height: 1; margin-bottom: 12px;
}
.result-label {
  font-size: 14px; color: var(--white); font-weight: 500;
  margin-bottom: 8px; line-height: 1.4;
}
.result-context {
  font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5;
  font-style: italic;
}

/* ──── SERVICES ──── */
.services { padding: 100px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: 16px; padding: 40px 28px;
  border: 1px solid var(--border); transition: transform 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--bordeaux); }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--off-white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--bordeaux);
}
.service-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--noir); margin-bottom: 6px; font-weight: 500; }
.service-tagline { font-size: 13px; color: var(--bordeaux); font-weight: 500; margin-bottom: 16px; }
.service-card > div > p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.service-card ul { list-style: none; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border-light); }
.service-card ul li { font-size: 13px; color: var(--text-body); padding: 5px 0 5px 18px; position: relative; }
.service-card ul li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--bordeaux);
}
.service-card-link {
  margin-top: auto; padding-top: 20px;
  font-size: 14px; color: var(--bordeaux); text-decoration: none; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s;
}
.service-card-link:hover { gap: 10px; }

/* ──── AI SECTION ──── */
.ai-section { padding: 100px 0; background: var(--off-white); position: relative; overflow: hidden; }
.ai-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.ai-label {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bordeaux); font-weight: 600; margin-bottom: 12px;
}
.ai-title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px);
  color: var(--noir); font-weight: 400; line-height: 1.2;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.ai-subtitle {
  font-size: 15px; color: var(--rose-accent); font-weight: 500;
  margin-bottom: 20px; font-style: italic;
}
.ai-intro { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.ai-items { display: flex; flex-direction: column; gap: 16px; }
.ai-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border-radius: 12px; padding: 18px 22px;
  border: 1px solid var(--border); transition: border-color 0.3s, transform 0.3s;
}
.ai-item:hover { border-color: var(--bordeaux); transform: translateX(4px); }
.ai-item-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--off-white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--bordeaux); flex-shrink: 0;
}
.ai-item-title { font-size: 14px; font-weight: 600; color: var(--noir); margin-bottom: 4px; }
.ai-item-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.ai-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.ai-visual-bg {
  width: 100%; aspect-ratio: 1;
  background: var(--bordeaux); border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.06; position: absolute;
}
.ai-visual-content { position: relative; z-index: 2; text-align: center; padding: 40px; }
.ai-big-number { font-family: var(--font-display); font-size: 100px; color: var(--bordeaux); font-weight: 400; line-height: 1; opacity: 0.15; }
.ai-quote {
  font-family: var(--font-display); font-size: 22px; color: var(--noir);
  font-style: italic; line-height: 1.5; max-width: 320px; margin: 0 auto;
}
.ai-result {
  margin-top: 24px; font-size: 14px; color: var(--text-muted);
  line-height: 1.7; padding: 18px 22px;
  background: var(--white); border-radius: 12px; border: 1px solid var(--border);
}
.ai-result strong { color: var(--noir); }

/* ──── METHODO ──── */
.methodo { padding: 100px 0; background: var(--off-white); position: relative; overflow: hidden; }
.methodo-curve {
  position: absolute; bottom: 0; left: -5%; width: 40%; height: 60%;
  opacity: 0.04; pointer-events: none;
}
.methodo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; z-index: 2; }
.methodo-grid::before {
  content: ''; position: absolute; top: 44px; left: 15%; right: 15%;
  height: 1.5px; background: var(--bordeaux); opacity: 0.15;
}
.methodo-step { text-align: center; padding: 0 24px; position: relative; }
.step-number {
  width: 88px; height: 88px; border-radius: 50%; background: var(--white);
  border: 2px solid var(--bordeaux); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-family: var(--font-display); font-size: 32px;
  color: var(--bordeaux); font-weight: 400; position: relative; z-index: 2;
}
.methodo-step h3 { font-family: var(--font-display); font-size: 18px; color: var(--noir); margin-bottom: 12px; font-weight: 500; }
.methodo-step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ──── ABOUT ──── */
.about { padding: 100px 0; background: var(--bordeaux); color: var(--white); position: relative; overflow: hidden; }
.about-curve {
  position: absolute; top: -15%; right: -10%; width: 50%; height: 130%;
  opacity: 0.08; pointer-events: none;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
.about-photo-wrap { position: relative; width: 100%; max-width: 420px; margin: 0 auto; }
.about-photo-wrap img { width: 100%; border-radius: 20px; border: 3px solid rgba(255,255,255,0.1); }
.about .section-eyebrow { color: var(--rose-accent); }
.about .section-title { color: var(--white); }
.about-text { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 20px; }
.about-text strong { color: var(--white); font-weight: 500; }
.about-highlights { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.about-tag {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85); padding: 8px 18px; border-radius: 50px; font-size: 13px;
}

/* ──── TESTIMONIALS ──── */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonials-grid .testimonial-card:nth-child(4) { grid-column: 1 / 2; }
.testimonials-grid .testimonial-card:nth-child(5) { grid-column: 2 / 3; }
.testimonial-card {
  background: var(--white); border-radius: 16px; padding: 32px 24px;
  border: 1px solid var(--border); display: flex; flex-direction: column;
}
.testimonial-quote { font-family: var(--font-display); font-size: 52px; color: var(--bordeaux); line-height: 1; margin-bottom: 4px; }
.testimonial-text { font-size: 14px; color: var(--text-body); line-height: 1.8; flex: 1; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-light); }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--off-white);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; color: var(--bordeaux); font-weight: 500; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 500; color: var(--noir); }
.testimonial-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ──── PRICING ──── */
.pricing { padding: 100px 0; background: var(--off-white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-card {
  background: var(--white); border-radius: 16px; padding: 36px 28px;
  border: 1px solid var(--border); text-align: center; transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--noir); margin-bottom: 12px; font-weight: 500; }
.pricing-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ──── BLOG ──── */
.blog { padding: 100px 0; background: var(--white); }
.blog-grid { display: flex; flex-direction: column; gap: 24px; }
.blog-card {
  display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: center;
  background: var(--white); border-radius: 12px; border: 1px solid var(--border);
  overflow: hidden; transition: transform 0.2s, border-color 0.2s; padding-right: 28px;
}
.blog-card:hover { transform: translateY(-2px); border-color: var(--bordeaux); }
.blog-img {
  width: 200px; height: 140px; background: var(--off-white);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bordeaux); font-weight: 600; margin-bottom: 6px; }
.blog-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--noir); font-weight: 500; line-height: 1.3; margin-bottom: 8px; }
.blog-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.blog-link {
  font-size: 13px; color: var(--bordeaux); text-decoration: none; font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s;
}
.blog-link:hover { gap: 8px; }
.blog-status {
  display: inline-block; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--off-white); color: var(--text-muted); padding: 4px 10px;
  border-radius: 50px; margin-left: 8px; vertical-align: middle;
}

/* ──── RESOURCES (livre blanc) ──── */
.resource-hero {
  padding: 100px 0; background: var(--white);
}
.resource-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
.resource-cover {
  background: var(--bordeaux); border-radius: 16px; padding: 60px 40px;
  text-align: center; color: var(--white); position: relative; overflow: hidden;
  aspect-ratio: 1/1.4; display: flex; flex-direction: column; justify-content: center;
}
.resource-cover-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-accent); margin-bottom: 16px;
}
.resource-cover h3 {
  font-family: var(--font-display); font-size: 32px; color: var(--white);
  font-weight: 400; line-height: 1.2; margin-bottom: 16px;
}
.resource-cover-sub { font-size: 14px; color: rgba(255,255,255,0.7); font-style: italic; }
.resource-cover-line {
  width: 60px; height: 2px; background: var(--rose-accent);
  margin: 24px auto;
}
.resource-cover-author { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: auto; }

.resource-info h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px);
  color: var(--noir); font-weight: 400; line-height: 1.2;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.resource-info > p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.resource-meta { display: flex; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.resource-meta-item { font-size: 13px; color: var(--text-light); }
.resource-meta-item strong { color: var(--bordeaux); font-weight: 600; }
.resource-toc { background: var(--off-white); border-radius: 12px; padding: 24px 28px; margin-bottom: 32px; }
.resource-toc-title { font-size: 13px; font-weight: 600; color: var(--noir); margin-bottom: 12px; letter-spacing: 0.05em; }
.resource-toc ul { list-style: none; }
.resource-toc li { font-size: 14px; color: var(--text-body); padding: 6px 0; padding-left: 18px; position: relative; }
.resource-toc li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--bordeaux);
}
.resource-download {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bordeaux); color: var(--white);
  padding: 16px 32px; border-radius: 50px; text-decoration: none;
  font-size: 15px; font-weight: 500; transition: background 0.2s, transform 0.2s;
}
.resource-download:hover { background: var(--bordeaux-light); transform: translateY(-2px); }
.resource-download svg { width: 18px; height: 18px; }

.resource-coming {
  padding: 80px 0; background: var(--off-white); text-align: center;
}
.resource-coming h2 { font-family: var(--font-display); font-size: 32px; color: var(--noir); font-weight: 400; margin-bottom: 12px; }
.resource-coming p { font-size: 15px; color: var(--text-muted); max-width: 540px; margin: 0 auto; }

/* ──── CTA ──── */
.cta-section {
  padding: 100px 0; background: var(--bordeaux);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section .section-eyebrow { color: var(--rose-accent); }
.cta-section .section-title { color: var(--white); max-width: 600px; margin: 0 auto 16px; }
.cta-text { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 40px; }
.cta-big {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--bordeaux);
  padding: 18px 44px; border-radius: 50px; text-decoration: none;
  font-size: 16px; font-weight: 500; transition: transform 0.2s, box-shadow 0.2s;
}
.cta-big:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ──── CONTACT ──── */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-family: var(--font-display); font-size: 18px; color: var(--noir); margin-bottom: 6px; margin-top: 24px; font-weight: 500; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p, .contact-info a { font-size: 14px; color: var(--text-muted); text-decoration: none; line-height: 1.7; }
.contact-info a:hover { color: var(--bordeaux); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { font-size: 13px; color: var(--text-body); font-weight: 500; margin-bottom: 2px; display: block; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 10px; font-family: var(--font-body); font-size: 14px;
  color: var(--text-body); background: var(--white); transition: border-color 0.2s; outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--bordeaux); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237B252E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.btn-submit {
  background: var(--bordeaux); color: var(--white); border: none;
  padding: 14px 36px; border-radius: 50px; font-family: var(--font-body);
  font-size: 15px; font-weight: 500; cursor: pointer;
  transition: background 0.2s, transform 0.2s; align-self: flex-start;
}
.btn-submit:hover { background: var(--bordeaux-light); transform: translateY(-1px); }

/* ──── FOOTER ──── */
footer { padding: 60px 0 40px; background: var(--noir); color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-logo { height: 36px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 14px; font-style: italic; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 14px; transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--rose-accent); color: var(--rose-accent); }
footer h4 { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 16px; font-weight: 500; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
footer ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.3);
}

/* ──── RESPONSIVE ──── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--border); box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .methodo-grid { grid-template-columns: 1fr; gap: 40px; }
  .methodo-grid::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-card { grid-template-columns: 1fr; padding-right: 0; }
  .blog-img { width: 100%; height: 180px; }
  .blog-card .blog-content-wrap { padding: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .ai-inner { grid-template-columns: 1fr; gap: 40px; }
  .ai-visual { display: none; }
  .resource-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 36px; }
  .hero-content { padding: 60px 0; }
  .results-grid { grid-template-columns: 1fr; }
}

/* ──── LANG HIDE/SHOW ──── */
[data-lang="en"] { display: none; }
body.lang-en [data-lang="fr"] { display: none; }
body.lang-en [data-lang="en"] { display: block; }
body.lang-en span[data-lang="en"] { display: inline; }
body.lang-en span[data-lang="fr"] { display: none; }
span[data-lang="fr"] { display: inline; }
