/*
Theme Name: BMAX Child
Theme URI: https://bmax.agency
Description: Thème enfant BMAX pour Astra — Votre croissance, notre mission
Author: BMAX — Benjamin Maxant
Author URI: https://bmax.agency
Template: astra
Version: 1.0.0
Text Domain: bmax-child
*/

/* ═══════════════════════════════════════════════════════════
   BMAX — Charte graphique complète
   Anthracite #1C1C1E · Corail #FF5C4D · Off-white #FAF9F6 · Gris #6E6E73
   Typographies : Clash Display (titres) + Manrope (corps)
═══════════════════════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
:root {
  --anthracite: #1C1C1E;
  --coral: #FF5C4D;
  --coral-dark: #E04030;
  --offwhite: #FAF9F6;
  --gray: #6E6E73;
  --gray-light: #E8E8E8;
  --white: #ffffff;
  --warm: #2A1F1C;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--offwhite);
  color: var(--anthracite);
  overflow-x: hidden;
}

/* Override Astra defaults */
.ast-container, .ast-header-wrap, .ast-footer-area { display: none !important; }
body.ast-header-custom-sticky .ast-sticky-header-wrap { display: none !important; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(250,249,246,0.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28,28,30,0.07);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.nav-logo-name { font-family: 'Clash Display', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -0.5px; color: var(--anthracite); }
.nav-logo-name span { color: var(--coral); }
.nav-logo-tagline { font-size: 10px; color: var(--gray); letter-spacing: 0.4px; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--anthracite); }
.nav-cta { background: var(--coral) !important; color: var(--white) !important; padding: 10px 22px; border-radius: 6px; font-weight: 600 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--coral-dark) !important; }
.nav-pill {
  padding: 6px 14px; border-radius: 20px;
  font-weight: 600 !important; font-size: 12px !important; letter-spacing: 0.5px;
}
.page-bmax-studio .nav-pill {
  background: rgba(28,28,30,0.08); color: var(--anthracite) !important;
}
.page-bmax-impact .nav-pill {
  background: rgba(255,92,77,0.1); color: var(--coral) !important;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: var(--anthracite);
  padding: 15px 30px; border-radius: 8px;
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  text-decoration: none; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,92,77,0.3); color: var(--white); }
.btn-secondary {
  font-size: 14px; font-weight: 500; color: var(--anthracite);
  background: none; border: none; border-bottom: 1.5px solid var(--anthracite);
  padding-bottom: 2px; cursor: pointer; text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--coral); border-color: var(--coral); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--anthracite); color: var(--anthracite);
  background: none; padding: 13px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--anthracite); color: var(--white); }
.btn-ghost {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.65);
  background: none; border: 1px solid rgba(255,255,255,0.25); border-radius: 8px;
  padding: 14px 24px; cursor: pointer; text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--anthracite); color: var(--white);
  padding: 15px 32px; border-radius: 8px; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-dark:hover { opacity: 0.85; transform: translateY(-2px); }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: var(--anthracite);
  padding: 16px 32px; border-radius: 8px; font-size: 15px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; position: relative; z-index: 1;
}
.cta-btn:hover { background: var(--coral-dark); transform: translateY(-2px); color: var(--white); }

/* ── SECTION UTILITIES ── */
.section { padding: 80px 48px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--coral); margin-bottom: 20px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--coral); }
.section-label-center { justify-content: center; }
.section-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 600;
  letter-spacing: -1.5px; line-height: 1.1; color: var(--anthracite); margin-bottom: 16px;
}
.section-title .coral { color: var(--coral); }
.section-title-light { color: var(--white); }
.section-sub { font-size: 15px; color: var(--gray); line-height: 1.7; }
.coral { color: var(--coral); }

/* ── FORMS (shared) ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-full { grid-column: 1/-1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--anthracite); letter-spacing: 0.3px; }
.form-label .req { color: var(--coral); margin-left: 2px; }
.form-label-row { display: flex; align-items: center; justify-content: space-between; }
.form-input, .form-select, .form-textarea {
  font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--anthracite);
  background: var(--white); border: 1.5px solid var(--gray-light);
  border-radius: 8px; padding: 10px 14px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,92,77,0.1);
}
.form-input.error, .form-select.error, .form-textarea.error { border-color: #E24B4A; }
.form-textarea { resize: vertical; min-height: 90px; }
.form-error, .form-error-msg { font-size: 11px; color: #E24B4A; display: none; }
.form-error.show, .form-error-msg.show { display: block; }
.format-pills, .budget-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.format-pill, .budget-pill {
  padding: 7px 14px; border: 1.5px solid var(--gray-light);
  border-radius: 20px; font-size: 12px; font-weight: 500; color: var(--gray);
  cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s;
  user-select: none;
}
.format-pill.active, .budget-pill.active {
  border-color: var(--coral); color: var(--coral); background: rgba(255,92,77,0.06);
}
.form-submit {
  width: 100%; padding: 15px; background: var(--coral); color: var(--anthracite);
  border: none; border-radius: 8px; font-family: 'Manrope', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 6px;
  transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--coral-dark); transform: translateY(-1px); }
.form-submit:disabled { background: var(--gray); color: rgba(255,255,255,0.5); cursor: not-allowed; transform: none; }
.form-legal { font-size: 11px; color: var(--gray); text-align: center; margin-top: 10px; line-height: 1.5; }
.form-legal a { color: var(--coral); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success-title { font-family: 'Clash Display', sans-serif; font-size: 22px; font-weight: 600; color: var(--anthracite); margin-bottom: 10px; }
.form-success-text { font-size: 14px; color: var(--gray); line-height: 1.6; }
.form-wrap {
  background: var(--offwhite); border-radius: 20px; padding: 36px 32px;
}
.form-wrap-title { font-family: 'Clash Display', sans-serif; font-size: 22px; font-weight: 600; letter-spacing: -0.5px; color: var(--anthracite); margin-bottom: 6px; }
.form-wrap-sub { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
.form-left-title { font-family: 'Clash Display', sans-serif; font-size: clamp(28px,3vw,40px); font-weight: 600; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; }
.form-left-sub { font-size: 15px; line-height: 1.75; margin-bottom: 32px; }
.form-left-items { display: flex; flex-direction: column; gap: 14px; }
.form-left-item { display: flex; align-items: flex-start; gap: 14px; }
.form-left-item-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.form-left-item-text { font-size: 14px; line-height: 1.6; }
.form-left-item-text strong { display: block; font-weight: 600; margin-bottom: 2px; }

/* Calendly embed */
.cal-hint { font-size: 11px; color: var(--gray); }
.cal-open-btn {
  width: 100%; padding: 10px 14px; background: var(--white);
  border: 1.5px solid var(--gray-light); border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--gray);
  cursor: pointer; text-align: left; transition: border-color 0.2s;
  display: flex; align-items: center; justify-content: space-between; margin-top: 8px;
}
.cal-open-btn:hover, .cal-open-btn.error { border-color: var(--coral); }
.cal-open-btn.error { border-color: #E24B4A; }
.cal-embed-wrap {
  border: 1.5px solid var(--gray-light); border-radius: 12px;
  overflow: hidden; height: 0; transition: height 0.4s ease; margin-top: 8px;
}
.cal-embed-wrap.open { height: 420px; border-color: var(--coral); }
.cal-embed-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.cal-badge {
  display: none; align-items: center; gap: 8px;
  background: rgba(255,92,77,0.08); border: 1px solid rgba(255,92,77,0.25);
  border-radius: 8px; padding: 10px 14px; font-size: 13px;
  color: var(--anthracite); margin-top: 8px;
}
.cal-badge.show { display: flex; }
.cal-badge strong { color: var(--coral); }

/* ── SOLUTION SECTION (shared Studio & Impact) ── */
.solution-section { background: var(--offwhite); padding: 90px 48px; }
.solution-inner { max-width: 1100px; margin: 0 auto; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.solution-grid.reverse { direction: rtl; }
.solution-grid.reverse > * { direction: ltr; }
.solution-photo { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; position: relative; background: var(--anthracite); }
.photo-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; border: 2px dashed rgba(255,255,255,0.15); border-radius: 18px; }
.photo-placeholder-icon { font-size: 44px; opacity: 0.35; }
.photo-placeholder-text { font-size: 12px; color: rgba(255,255,255,0.28); text-align: center; line-height: 1.5; }
.photo-placeholder-label { position: absolute; bottom: 16px; left: 16px; background: rgba(255,92,77,0.9); color: var(--white); font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 6px 12px; border-radius: 6px; }
.solution-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--coral); margin-bottom: 16px; }
.solution-tag::before { content: ''; display: block; width: 16px; height: 1.5px; background: var(--coral); }
.solution-title { font-family: 'Clash Display', sans-serif; font-size: clamp(24px,3vw,36px); font-weight: 600; letter-spacing: -1px; line-height: 1.15; color: var(--anthracite); margin-bottom: 16px; }
.solution-problem { background: rgba(255,92,77,0.06); border-left: 3px solid var(--coral); border-radius: 0 8px 8px 0; padding: 14px 18px; margin-bottom: 20px; font-size: 14px; color: var(--anthracite); line-height: 1.6; font-style: italic; }
.solution-text { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.solution-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.solution-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--anthracite); line-height: 1.5; }
.solution-list li::before { content: '✓'; color: var(--coral); font-weight: 700; flex-shrink: 0; }
.solution-result { display: inline-flex; align-items: center; gap: 10px; background: var(--anthracite); color: var(--white); padding: 12px 18px; border-radius: 8px; font-size: 13px; font-weight: 500; }
.solution-result strong { color: var(--coral); }

/* ── PROCESS SECTION (shared) ── */
.process-section { background: var(--white); padding: 80px 48px; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 56px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; padding: 32px 24px; background: var(--offwhite); border-radius: 16px; }
.step-number { font-family: 'Clash Display', sans-serif; font-size: 48px; font-weight: 700; color: var(--coral); letter-spacing: -2px; line-height: 1; margin-bottom: 12px; }
.step-title { font-family: 'Clash Display', sans-serif; font-size: 18px; font-weight: 600; letter-spacing: -0.3px; color: var(--anthracite); margin-bottom: 10px; }
.step-text { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── PROOF SECTION (shared) ── */
.proof-section { background: var(--white); padding: 90px 48px; }
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.proof-stat { text-align: center; padding: 28px 16px; background: var(--offwhite); border-radius: 14px; }
.proof-stat-number { font-family: 'Clash Display', sans-serif; font-size: 40px; font-weight: 700; color: var(--coral); letter-spacing: -1.5px; line-height: 1; }
.proof-stat-label { font-size: 13px; color: var(--gray); margin-top: 8px; line-height: 1.4; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.proof-card { border: 1px solid var(--gray-light); border-radius: 16px; padding: 28px; transition: border-color 0.2s, transform 0.2s; }
.proof-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.proof-stars { color: var(--coral); font-size: 12px; letter-spacing: 2px; margin-bottom: 12px; }
.proof-quote { font-size: 14px; color: var(--anthracite); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.proof-author-name { font-size: 14px; font-weight: 600; color: var(--anthracite); }
.proof-author-org { font-size: 12px; color: var(--coral); margin-top: 3px; }

/* ── MID CTA (shared) ── */
.mid-cta { background: var(--coral); padding: 60px 48px; text-align: center; }
.mid-cta-title { font-family: 'Clash Display', sans-serif; font-size: clamp(28px,3.5vw,44px); font-weight: 600; letter-spacing: -1.5px; color: var(--anthracite); margin-bottom: 12px; }
.mid-cta-sub { font-size: 16px; color: rgba(28,28,30,0.65); margin-bottom: 32px; }

/* ── GALLERY (studio) ── */
.gallery-section { background: var(--anthracite); padding: 90px 48px; }
.gallery-inner { max-width: 1100px; margin: 0 auto; }
.gallery-header { margin-bottom: 48px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: 14px; overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; transition: transform 0.4s ease; }
.gallery-item:hover .gallery-item-img { transform: scale(1.05); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; transform: translateY(10px); transition: transform 0.3s; }
.gallery-item:hover .gallery-item-label { transform: translateY(0); }
.gallery-item-client { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--coral); margin-bottom: 4px; }
.gallery-item-title { font-family: 'Clash Display', sans-serif; font-size: 16px; font-weight: 600; color: var(--white); }

/* ── FOOTER ── */
footer { background: #111111; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo-name { font-family: 'Clash Display', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); }
.footer-logo-name span { color: var(--coral); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.28); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.social-btn:hover { border-color: var(--coral); color: var(--coral); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollLogos { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollGrow { 0%,100%{transform:scaleY(1);opacity:0.3} 50%{transform:scaleY(1.3);opacity:0.8} }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.8)} }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── GRADIENT PLACEHOLDERS (shared background classes) ── */
.sci-1{background:linear-gradient(135deg,#2a1f1c,#3d2420)}
.sci-2{background:linear-gradient(135deg,#1a1f2e,#1e2d40)}
.sci-3{background:linear-gradient(135deg,#1c2a1e,#1e3a22)}
.sci-4{background:linear-gradient(135deg,#1f1a2e,#2d1f40)}
.sci-5{background:linear-gradient(135deg,#2e1a1a,#3d2020)}
.sci-6{background:linear-gradient(135deg,#1a2a2e,#1e3038)}
.sci-7{background:linear-gradient(135deg,#2a2a1a,#383820)}
.fci-1{background:linear-gradient(135deg,#2a1f1c,#3d2420)}
.fci-2{background:linear-gradient(135deg,#1a1f2e,#1e2d40)}
.fci-3{background:linear-gradient(135deg,#1c2a1e,#1e3a22)}
.fci-4{background:linear-gradient(135deg,#2e1a1a,#3d2020)}
.fci-5{background:linear-gradient(135deg,#1a2a2e,#1e3038)}
.fci-6{background:linear-gradient(135deg,#2a2a1a,#383820)}

/* ══════════════════════════════════════════════════════════
   PAGE ACCUEIL (front-page.php)
══════════════════════════════════════════════════════════ */

.home .hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 48px 60px;
  position: relative; overflow: hidden;
}
.hero-bg-1 { position: absolute; top: -80px; right: -120px; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,92,77,0.07); pointer-events: none; }
.hero-bg-2 { position: absolute; bottom: -60px; left: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(28,28,30,0.04); pointer-events: none; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 20px; opacity: 0; animation: fadeUp 0.6s ease forwards 0.1s; }
.hero-eyebrow::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--gray); }
.home .hero-title { font-family: 'Clash Display', sans-serif; font-size: clamp(44px, 6vw, 72px); font-weight: 600; line-height: 1.06; letter-spacing: -2.5px; color: var(--anthracite); max-width: 780px; margin-bottom: 20px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.25s; }
.home .hero-title .coral { color: var(--coral); }
.home .hero-title .underline-dark { position: relative; display: inline; }
.home .hero-title .underline-dark::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 100%; height: 3px; background: var(--anthracite); border-radius: 2px; }
.hero-sub { font-size: 17px; line-height: 1.75; color: var(--gray); max-width: 520px; margin-bottom: 36px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.4s; }
.hero-actions { display: flex; align-items: center; gap: 24px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.55s; }

/* Stats bar */
.stats-bar { background: var(--anthracite); padding: 28px 48px; display: flex; align-items: center; justify-content: space-around; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Clash Display', sans-serif; font-size: 32px; font-weight: 700; color: var(--coral); letter-spacing: -1px; line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 5px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.08); }

/* Problem section */
.problem-section { background: var(--white); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1100px; margin: 0 auto; }
.problem-text { font-size: 16px; line-height: 1.8; color: var(--gray); margin-bottom: 14px; }
.problem-highlight { font-size: 16px; font-weight: 600; color: var(--anthracite); padding: 18px 22px; border-left: 3px solid var(--coral); background: var(--offwhite); border-radius: 0 8px 8px 0; margin-top: 20px; }
.problem-cards { display: flex; flex-direction: column; gap: 14px; }
.problem-card { background: var(--offwhite); border: 1px solid var(--gray-light); border-radius: 12px; padding: 22px; transition: border-color 0.2s, transform 0.2s; }
.problem-card:hover { border-color: var(--coral); transform: translateX(4px); }
.problem-card-icon { width: 34px; height: 34px; background: rgba(255,92,77,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; margin-bottom: 10px; }
.problem-card-title { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.problem-card-text { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* Services section */
.services-section { background: var(--offwhite); }
.services-header { max-width: 560px; margin: 0 auto 56px; text-align: center; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1100px; margin: 0 auto; }
.service-card { border-radius: 16px; padding: 44px 38px; position: relative; overflow: hidden; transition: transform 0.25s; }
.service-card:hover { transform: translateY(-4px); }
.service-card-studio { background: var(--anthracite); color: var(--white); }
.service-card-impact { background: var(--coral); color: var(--white); }
.service-card-deco { position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.06); pointer-events: none; }
.service-tag { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.5; margin-bottom: 18px; display: block; }
.service-name { font-family: 'Clash Display', sans-serif; font-size: 32px; font-weight: 700; letter-spacing: -1px; margin-bottom: 14px; line-height: 1; }
.service-name span { opacity: 0.35; }
.service-desc { font-size: 14px; line-height: 1.7; opacity: 0.8; margin-bottom: 28px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.service-list li { font-size: 13px; opacity: 0.7; display: flex; align-items: center; gap: 10px; }
.service-list li::before { content: ''; display: block; width: 14px; height: 1.5px; background: currentColor; opacity: 0.4; flex-shrink: 0; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: currentColor; text-decoration: none; opacity: 0.7; border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: opacity 0.2s; }
.service-link:hover { opacity: 1; }

/* Specialties carousel */
.specialties-section { background: var(--anthracite); padding: 80px 0; overflow: hidden; }
.specialties-header { padding: 0 48px; margin-bottom: 48px; display: flex; align-items: flex-end; justify-content: space-between; }
.spec-nav { display: flex; gap: 10px; }
.spec-nav-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: none; color: rgba(255,255,255,0.6); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, color 0.2s; }
.spec-nav-btn:hover { border-color: var(--coral); color: var(--coral); }
.spec-section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--coral); margin-bottom: 14px; }
.spec-section-label::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--coral); }
.spec-section-title { font-family: 'Clash Display', sans-serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 600; letter-spacing: -1.5px; line-height: 1.1; color: var(--white); }
.spec-track-wrap { overflow: hidden; padding: 0 48px; }
.spec-track { display: flex; gap: 20px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.spec-card { flex-shrink: 0; width: 290px; border-radius: 16px; overflow: hidden; cursor: pointer; transition: transform 0.25s; text-decoration: none; }
.spec-card:hover { transform: translateY(-6px); }
.spec-card-img { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 48px; position: relative; }
.spec-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top,rgba(0,0,0,0.6),transparent); height: 70px; }
.spec-card-body { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-top: none; border-radius: 0 0 16px 16px; padding: 22px 20px; }
.spec-card-tag { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--coral); margin-bottom: 7px; display: block; }
.spec-card-title { font-family: 'Clash Display', sans-serif; font-size: 18px; font-weight: 600; letter-spacing: -0.5px; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.spec-card-text { font-size: 12px; color: rgba(255,255,255,0.42); line-height: 1.6; }
.spec-dots { display: flex; gap: 8px; padding: 28px 48px 0; }
.spec-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: background 0.2s, width 0.3s; cursor: pointer; }
.spec-dot.active { background: var(--coral); width: 20px; border-radius: 3px; }

/* Projects grid */
.projects-section { background: var(--white); }
.projects-header { max-width: 1100px; margin: 0 auto 48px; display: flex; align-items: flex-end; justify-content: space-between; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.project-card { border-radius: 14px; overflow: hidden; transition: transform 0.25s; text-decoration: none; }
.project-card:hover { transform: translateY(-4px); }
.project-card-wrap { overflow: hidden; }
.project-card-img { width: 100%; height: 180px; display: flex; align-items: center; justify-content: center; font-size: 36px; transition: transform 0.4s ease; }
.project-card:hover .project-card-img { transform: scale(1.05); }
.project-body { padding: 16px 18px; background: var(--white); border: 1px solid var(--gray-light); border-top: none; border-radius: 0 0 14px 14px; }
.project-cat { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--coral); margin-bottom: 6px; display: block; }
.project-title { font-family: 'Clash Display', sans-serif; font-size: 16px; font-weight: 600; letter-spacing: -0.3px; color: var(--anthracite); line-height: 1.3; }
.project-client { font-size: 12px; color: var(--gray); margin-top: 4px; }
.projects-cta { max-width: 1100px; margin: 32px auto 0; text-align: center; }

/* Method section */
.method-section { background: var(--offwhite); }
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1100px; margin: 0 auto; }
.method-visual { position: relative; height: 320px; }
.method-block { position: absolute; border-radius: 14px; padding: 22px 26px; }
.mb-1 { top: 0; left: 0; width: 210px; background: var(--anthracite); color: var(--white); }
.mb-2 { top: 65px; left: 160px; width: 225px; background: var(--coral); color: var(--white); }
.mb-3 { top: 185px; left: 28px; width: 240px; background: var(--white); border: 1px solid var(--gray-light); color: var(--anthracite); }
.mb-year { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.45; margin-bottom: 7px; }
.mb-text { font-size: 13px; font-weight: 600; line-height: 1.45; }
.method-text { font-size: 15px; line-height: 1.8; color: var(--gray); margin-bottom: 14px; }
.method-text-bold { font-size: 15px; font-weight: 600; color: var(--anthracite); line-height: 1.8; }

/* Clients logos */
.clients-section { background: var(--white); padding: 60px 48px; overflow: hidden; }
.clients-label { text-align: center; margin-bottom: 40px; }
.logos-track-wrap { overflow: hidden; position: relative; }
.logos-track-wrap::before, .logos-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.logos-track-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.logos-track-wrap::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.logos-track { display: flex; gap: 52px; align-items: center; animation: scrollLogos 32s linear infinite; width: max-content; }
.logos-track:hover { animation-play-state: paused; }
.logo-item { flex-shrink: 0; display: flex; align-items: center; justify-content: center; filter: grayscale(1); opacity: 0.4; transition: filter 0.3s, opacity 0.3s, transform 0.3s; cursor: default; }
.logo-item:hover { filter: grayscale(0); opacity: 1; transform: scale(1.1); }
.logo-item span { font-family: 'Clash Display', sans-serif; font-size: 14px; font-weight: 700; color: var(--anthracite); letter-spacing: -0.5px; white-space: nowrap; }

/* Testimonials carousel */
.testimonials-section { background: var(--anthracite); padding: 80px 0; overflow: hidden; }
.testimonials-header { padding: 0 48px; margin-bottom: 48px; display: flex; align-items: flex-end; justify-content: space-between; }
.test-section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--coral); margin-bottom: 14px; }
.test-section-label::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--coral); }
.test-section-title { font-family: 'Clash Display', sans-serif; font-size: clamp(28px,3.5vw,42px); font-weight: 600; letter-spacing: -1.5px; color: var(--white); }
.test-track-wrap { overflow: hidden; padding: 0 48px; }
.test-track { display: flex; gap: 20px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.test-card { flex-shrink: 0; width: 360px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; }
.test-stars { color: var(--coral); font-size: 12px; letter-spacing: 2px; margin-bottom: 14px; }
.test-quote { font-family: Georgia, serif; font-size: 20px; color: var(--coral); line-height: 1; margin-bottom: 12px; opacity: 0.5; }
.test-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.75; font-style: italic; flex: 1; margin-bottom: 20px; }
.test-footer { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.test-author-name { font-size: 14px; font-weight: 600; color: var(--white); }
.test-author-org { font-size: 12px; color: var(--coral); margin-top: 2px; }
.test-source { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.25); white-space: nowrap; margin-top: 2px; }
.test-dots { display: flex; gap: 8px; padding: 28px 48px 0; }
.test-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: background 0.2s, width 0.3s; cursor: pointer; }
.test-dot.active { background: var(--coral); width: 20px; border-radius: 3px; }
.test-cta-row { padding: 28px 48px 0; }
.test-cta-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.45); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.test-cta-link:hover { color: var(--coral); border-color: var(--coral); }

/* Team section */
.team-section { background: var(--offwhite); }
.team-header { text-align: center; margin-bottom: 52px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 900px; margin: 0 auto; }
.team-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 16px; overflow: hidden; text-align: center; transition: transform 0.2s, border-color 0.2s; }
.team-card:hover { transform: translateY(-4px); border-color: var(--coral); }
.team-avatar { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 44px; }
.team-info { padding: 18px 16px; }
.team-name { font-family: 'Clash Display', sans-serif; font-size: 18px; font-weight: 600; letter-spacing: -0.5px; color: var(--anthracite); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--gray); line-height: 1.5; }
.team-role .highlight { color: var(--coral); font-weight: 600; font-size: 11px; letter-spacing: 0.3px; display: block; margin-top: 2px; }

/* References */
.refs-section { background: var(--white); }
.refs-header { text-align: center; margin-bottom: 48px; }
.refs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1100px; margin: 0 auto; }
.ref-card { border-radius: 14px; padding: 28px 24px; transition: transform 0.2s; }
.ref-card:hover { transform: translateY(-3px); }
.ref-card-light { background: var(--white); border: 1px solid var(--gray-light); }
.ref-card-dark { background: var(--anthracite); }
.ref-sector { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--coral); margin-bottom: 12px; display: block; }
.ref-title { font-family: 'Clash Display', sans-serif; font-size: 17px; font-weight: 600; letter-spacing: -0.5px; line-height: 1.3; margin-bottom: 10px; }
.ref-card-light .ref-title { color: var(--anthracite); }
.ref-card-dark .ref-title { color: var(--white); }
.ref-text { font-size: 13px; line-height: 1.65; }
.ref-card-light .ref-text { color: var(--gray); }
.ref-card-dark .ref-text { color: rgba(255,255,255,0.42); }
.ref-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 16px; }
.ref-tag { font-size: 11px; font-weight: 500; padding: 3px 9px; border-radius: 4px; }
.ref-card-light .ref-tag { background: var(--offwhite); color: var(--gray); }
.ref-card-dark .ref-tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.48); }

/* Diagnostic form section (homepage) */
.diag-section { background: var(--anthracite); padding: 90px 48px; position: relative; overflow: hidden; }
.diag-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; background: radial-gradient(circle,rgba(255,92,77,0.1) 0%,transparent 70%); pointer-events: none; }
.diag-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; position: relative; z-index: 1; }
.diag-label { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--coral); margin-bottom: 20px; }
.diag-title { font-family: 'Clash Display', sans-serif; font-size: clamp(28px,3.5vw,42px); font-weight: 600; letter-spacing: -1.5px; line-height: 1.1; color: var(--white); margin-bottom: 18px; }
.diag-title .coral { color: var(--coral); }
.diag-sub { font-size: 15px; color: rgba(255,255,255,0.42); line-height: 1.75; margin-bottom: 32px; }
.diag-benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.diag-benefits li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.diag-benefits li::before { content: '✓'; color: var(--coral); font-weight: 700; flex-shrink: 0; }
.diag-form-wrap { background: var(--offwhite); border-radius: 20px; padding: 36px 32px; }
.form-title { font-family: 'Clash Display', sans-serif; font-size: 22px; font-weight: 600; letter-spacing: -0.5px; color: var(--anthracite); margin-bottom: 24px; }

/* ══════════════════════════════════════════════════════════
   PAGE BMAX STUDIO
══════════════════════════════════════════════════════════ */

.page-bmax-studio .hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0;
}
.page-bmax-studio .hero-bg { position: absolute; inset: 0; background: var(--warm); }
.page-bmax-studio .hero-film-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3; pointer-events: none;
}
.page-bmax-studio .hero-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%); pointer-events: none; }
.page-bmax-studio .hero-coral-accent { position: absolute; bottom: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,92,77,0.2) 0%, transparent 70%); pointer-events: none; }
.hero-filmstrip { position: absolute; top: 0; right: 0; bottom: 0; width: 48%; opacity: 0.25; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 60px 0 0 20px; }
.filmstrip-frame { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 28px; opacity: 0.6; }
.hero-content { position: relative; z-index: 2; padding: 160px 48px 80px; max-width: 680px; }
.page-bmax-studio .hero-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 6px 16px; margin-bottom: 28px; opacity: 0; animation: fadeUp 0.5s ease forwards 0.1s; }
.hero-badge-text { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.page-bmax-studio .hero-title { font-family: 'Clash Display', sans-serif; font-size: clamp(44px, 6vw, 72px); font-weight: 600; line-height: 1.04; letter-spacing: -2.5px; color: var(--white); margin-bottom: 24px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.2s; }
.hero-hook { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.6); max-width: 520px; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.35s; }
.hero-hook strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.page-bmax-studio .hero-actions { display: flex; align-items: center; gap: 20px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.5s; }
.hero-scroll-indicator { position: absolute; bottom: 32px; right: 48px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeUp 0.6s ease forwards 0.9s; }
.scroll-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 48px; background: rgba(255,255,255,0.2); animation: scrollGrow 2s ease-in-out infinite; }
/* Pain section - Studio */
.page-bmax-studio .pain-section { background: var(--anthracite); padding: 90px 48px; }
.pain-inner { max-width: 1100px; margin: 0 auto; }
.pain-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pain-intro { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 32px; }
.pain-intro strong { color: rgba(255,255,255,0.85); }
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.pain-list-item { display: flex; align-items: flex-start; gap: 16px; }
.pain-list-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.pain-list-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.pain-list-text { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.pain-big-quote { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-left: 3px solid var(--coral); border-radius: 0 16px 16px 0; padding: 36px 32px; }
.pain-quote-mark { font-family: Georgia, serif; font-size: 64px; color: var(--coral); line-height: 0.8; display: block; margin-bottom: 16px; opacity: 0.5; }
.pain-quote-text { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.pain-quote-author { font-size: 13px; color: rgba(255,255,255,0.3); padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.07); }
/* Formats section */
.formats-section { background: var(--offwhite); padding: 90px 48px; }
.formats-inner { max-width: 1100px; margin: 0 auto; }
.formats-header { text-align: center; margin-bottom: 56px; }
.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.format-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 16px; overflow: hidden; transition: transform 0.25s, border-color 0.2s; }
.format-card:hover { transform: translateY(-4px); border-color: var(--coral); }
.format-card-img { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; }
.format-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); }
.format-card-emoji { position: relative; z-index: 1; font-size: 40px; }
.format-card-body { padding: 22px 20px; }
.format-tag { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; display: block; }
.format-title { font-family: 'Clash Display', sans-serif; font-size: 18px; font-weight: 600; letter-spacing: -0.5px; color: var(--anthracite); margin-bottom: 8px; }
.format-text { font-size: 13px; color: var(--gray); line-height: 1.6; }
/* Studio form section */
.page-bmax-studio .form-section { background: var(--anthracite); padding: 90px 48px; }
.page-bmax-studio .form-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.page-bmax-studio .form-left-title { color: var(--white); }
.page-bmax-studio .form-left-title .coral { color: var(--coral); }
.page-bmax-studio .form-left-sub { color: rgba(255,255,255,0.45); }
.page-bmax-studio .form-left-item-icon { background: rgba(255,255,255,0.06); }
.page-bmax-studio .form-left-item-text { color: rgba(255,255,255,0.55); }
.page-bmax-studio .form-left-item-text strong { color: rgba(255,255,255,0.85); }

/* ══════════════════════════════════════════════════════════
   PAGE BMAX IMPACT
══════════════════════════════════════════════════════════ */

.page-bmax-impact .hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 100px 48px 60px;
  position: relative; overflow: hidden; gap: 64px;
}
.page-bmax-impact .hero-bg { position: absolute; inset: 0; background: var(--anthracite); }
.page-bmax-impact .hero-bg-glow { position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(255,92,77,0.15) 0%, transparent 70%); pointer-events: none; }
.hero-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.hero-left { position: relative; z-index: 2; }
.page-bmax-impact .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,92,77,0.15); border: 1px solid rgba(255,92,77,0.3); border-radius: 20px; padding: 6px 16px; margin-bottom: 28px; opacity: 0; animation: fadeUp 0.5s ease forwards 0.1s; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); animation: pulse 2s ease-in-out infinite; }
.page-bmax-impact .hero-badge-text { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--coral); }
.page-bmax-impact .hero-title { font-family: 'Clash Display', sans-serif; font-size: clamp(42px, 5vw, 64px); font-weight: 600; line-height: 1.05; letter-spacing: -2px; color: var(--white); margin-bottom: 24px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.2s; }
.page-bmax-impact .hero-title .coral { color: var(--coral); }
.hero-title .underline { position: relative; display: inline; }
.hero-title .underline::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 3px; background: var(--coral); border-radius: 2px; }
.page-bmax-impact .hero-hook { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.55); max-width: 480px; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.35s; }
.page-bmax-impact .hero-actions { display: flex; align-items: center; gap: 20px; opacity: 0; animation: fadeUp 0.7s ease forwards 0.5s; }
.hero-right { position: relative; z-index: 2; opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s; }
.hero-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.metric-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; transition: border-color 0.2s, background 0.2s; }
.metric-card:hover { border-color: rgba(255,92,77,0.4); background: rgba(255,92,77,0.05); }
.metric-card-large { grid-column: 1/-1; }
.metric-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.metric-value { font-family: 'Clash Display', sans-serif; font-size: 32px; font-weight: 700; color: var(--coral); letter-spacing: -1px; line-height: 1; }
.metric-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 6px; line-height: 1.4; }
.metric-desc { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 10px; line-height: 1.6; }
/* Pain section - Impact */
.page-bmax-impact .pain-section { background: var(--white); padding: 90px 48px; }
.pain-header { text-align: center; margin-bottom: 60px; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain-card { border: 1px solid var(--gray-light); border-radius: 16px; padding: 32px 28px; position: relative; overflow: hidden; transition: border-color 0.2s, transform 0.2s; }
.pain-card:hover { border-color: var(--coral); transform: translateY(-4px); }
.pain-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gray-light); transition: background 0.2s; }
.pain-card:hover::before { background: var(--coral); }
.pain-number { font-family: 'Clash Display', sans-serif; font-size: 48px; font-weight: 700; color: var(--gray-light); line-height: 1; margin-bottom: 16px; letter-spacing: -2px; }
.pain-title { font-family: 'Clash Display', sans-serif; font-size: 20px; font-weight: 600; letter-spacing: -0.5px; color: var(--anthracite); margin-bottom: 12px; }
.pain-text { font-size: 14px; color: var(--gray); line-height: 1.7; }
.pain-quote { font-size: 13px; color: var(--coral); font-style: italic; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-light); }
/* Impact offers */
.page-bmax-impact .offers-section { background: var(--anthracite); padding: 90px 48px; }
.page-bmax-impact .offers-inner { max-width: 1100px; margin: 0 auto; }
.page-bmax-impact .offers-header { text-align: center; margin-bottom: 56px; }
.page-bmax-impact .offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.page-bmax-impact .offer-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px 28px; transition: border-color 0.2s, background 0.2s, transform 0.2s; position: relative; }
.page-bmax-impact .offer-card:hover { border-color: rgba(255,92,77,0.5); background: rgba(255,92,77,0.05); transform: translateY(-4px); }
.page-bmax-impact .offer-card-featured { border-color: var(--coral); background: rgba(255,92,77,0.08); }
.page-bmax-impact .offer-name { color: var(--white); }
.page-bmax-impact .offer-price { color: var(--white); }
.page-bmax-impact .offer-list li { color: rgba(255,255,255,0.65); }
.page-bmax-impact .offer-btn { width: 100%; padding: 13px; background: transparent; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; color: rgba(255,255,255,0.7); font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.page-bmax-impact .offer-btn:hover { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.4); }
.page-bmax-impact .offer-card-featured .offer-btn { background: var(--coral); border-color: var(--coral); color: var(--anthracite); font-weight: 700; }
.page-bmax-impact .offer-card-featured .offer-btn:hover { background: var(--coral-dark); }
/* Impact form */
.page-bmax-impact .form-section { background: var(--offwhite); padding: 90px 48px; }
.page-bmax-impact .form-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.page-bmax-impact .form-left-title { color: var(--anthracite); }
.page-bmax-impact .form-left-sub { color: var(--gray); }
.page-bmax-impact .form-left-item-icon { background: rgba(255,92,77,0.1); }
.page-bmax-impact .form-left-item-text { color: var(--anthracite); }
.page-bmax-impact .form-wrap { background: var(--white); box-shadow: 0 4px 32px rgba(0,0,0,0.06); }

/* Studio offers (light) */
.page-bmax-studio .offers-section { background: var(--offwhite); padding: 90px 48px; }
.page-bmax-studio .offers-inner { max-width: 1100px; margin: 0 auto; }
.page-bmax-studio .offers-header { text-align: center; margin-bottom: 56px; }
.page-bmax-studio .offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.page-bmax-studio .offer-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 16px; padding: 32px 28px; transition: border-color 0.2s, transform 0.2s; position: relative; }
.page-bmax-studio .offer-card:hover { border-color: var(--coral); transform: translateY(-4px); }
.page-bmax-studio .offer-card-featured { border-color: var(--coral); background: var(--anthracite); }
.offer-featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--coral); color: var(--anthracite); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; white-space: nowrap; }
.offer-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.offer-name { font-family: 'Clash Display', sans-serif; font-size: 22px; font-weight: 600; letter-spacing: -0.5px; margin-bottom: 8px; }
.offer-tagline { font-size: 13px; color: var(--coral); margin-bottom: 16px; }
.offer-price { font-family: 'Clash Display', sans-serif; font-size: 32px; font-weight: 700; letter-spacing: -1px; margin-bottom: 20px; }
.offer-price span { font-size: 14px; font-weight: 400; color: var(--gray); letter-spacing: 0; }
.offer-divider { height: 1px; background: var(--gray-light); margin-bottom: 20px; }
.offer-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.offer-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.5; }
.offer-list li::before { content: '–'; color: var(--coral); flex-shrink: 0; }
.page-bmax-studio .offer-card:not(.offer-card-featured) .offer-name { color: var(--anthracite); }
.page-bmax-studio .offer-card-featured .offer-name { color: var(--white); }
.page-bmax-studio .offer-card:not(.offer-card-featured) .offer-price { color: var(--anthracite); }
.page-bmax-studio .offer-card-featured .offer-price { color: var(--white); }
.page-bmax-studio .offer-card:not(.offer-card-featured) .offer-list li { color: var(--gray); }
.page-bmax-studio .offer-card-featured .offer-list li { color: rgba(255,255,255,0.6); }
.page-bmax-studio .offer-card-featured .offer-divider { background: rgba(255,255,255,0.1); }
.page-bmax-studio .offer-btn { width: 100%; padding: 13px; border-radius: 8px; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.page-bmax-studio .offer-card:not(.offer-card-featured) .offer-btn { background: transparent; border: 1.5px solid var(--gray-light); color: var(--anthracite); }
.page-bmax-studio .offer-card:not(.offer-card-featured) .offer-btn:hover { border-color: var(--coral); color: var(--coral); }
.page-bmax-studio .offer-card-featured .offer-btn { background: var(--coral); border: none; color: var(--anthracite); font-weight: 700; }
.page-bmax-studio .offer-card-featured .offer-btn:hover { background: var(--coral-dark); }

/* ══════════════════════════════════════════════════════════
   PAGE AVIS
══════════════════════════════════════════════════════════ */

.page-avis .hero { padding: 120px 48px 64px; background: var(--anthracite); position: relative; overflow: hidden; }
.hero-glow { position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,92,77,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-avis .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--coral); margin-bottom: 20px; }
.page-avis .hero-eyebrow::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--coral); }
.page-avis .hero-title { font-family: 'Clash Display', sans-serif; font-size: clamp(38px, 5vw, 58px); font-weight: 600; letter-spacing: -2px; line-height: 1.08; color: var(--white); margin-bottom: 16px; }
.page-avis .hero-title span { color: var(--coral); }
.hero-sub-avis { font-size: 16px; color: rgba(255,255,255,0.45); max-width: 560px; line-height: 1.75; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat-number { font-family: 'Clash Display', sans-serif; font-size: 36px; font-weight: 700; color: var(--coral); letter-spacing: -1px; line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 4px; }
/* Featured */
.featured-section { background: var(--white); padding: 72px 48px; }
.featured-inner { max-width: 1100px; margin: 0 auto; }
.featured-card { background: var(--offwhite); border: 1px solid var(--gray-light); border-radius: 20px; padding: 40px; margin-bottom: 20px; position: relative; overflow: hidden; transition: border-color 0.2s, transform 0.2s; }
.featured-card:hover { border-color: var(--coral); transform: translateY(-2px); }
.featured-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--coral); border-radius: 20px 20px 0 0; }
.featured-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,92,77,0.08); border: 1px solid rgba(255,92,77,0.2); border-radius: 20px; padding: 4px 12px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--coral); margin-bottom: 20px; }
.featured-quote-mark { font-family: Georgia, serif; font-size: 56px; color: var(--coral); line-height: 0.8; margin-bottom: 16px; display: block; opacity: 0.5; }
.featured-quote { font-size: 17px; line-height: 1.75; color: var(--anthracite); font-style: italic; margin-bottom: 28px; }
.featured-quote strong { font-style: normal; color: var(--coral); }
.featured-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.featured-author-name { font-size: 15px; font-weight: 700; color: var(--anthracite); }
.featured-author-role { font-size: 13px; color: var(--gray); margin-top: 2px; }
.featured-meta { display: flex; align-items: center; gap: 14px; }
.featured-source { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray); background: var(--white); border: 1px solid var(--gray-light); border-radius: 20px; padding: 5px 12px; }
.featured-source-dot { width: 8px; height: 8px; border-radius: 50%; }
.featured-stars { color: var(--coral); font-size: 13px; letter-spacing: 2px; }
/* Filters */
.filters-section { background: var(--offwhite); padding: 48px 48px 32px; position: sticky; top: 58px; z-index: 50; border-bottom: 1px solid var(--gray-light); }
.filters-inner { max-width: 1100px; margin: 0 auto; }
.filters-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.filter-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); white-space: nowrap; }
.filter-pill { padding: 7px 16px; border: 1.5px solid var(--gray-light); border-radius: 20px; font-size: 13px; font-weight: 500; color: var(--gray); cursor: pointer; transition: all 0.2s; background: var(--white); white-space: nowrap; }
.filter-pill:hover { border-color: var(--anthracite); color: var(--anthracite); }
.filter-pill.active { background: var(--anthracite); border-color: var(--anthracite); color: var(--white); }
.filter-pill.active.coral { background: var(--coral); border-color: var(--coral); }
.filters-count { font-size: 13px; color: var(--gray); }
.filters-count strong { color: var(--anthracite); font-weight: 600; }
/* Reviews grid */
.reviews-section { background: var(--offwhite); padding: 48px 48px 80px; }
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 16px; padding: 28px 24px; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.2s; position: relative; }
.review-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.review-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.review-stars { color: var(--coral); font-size: 11px; letter-spacing: 2px; }
.review-source-badge { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--gray); }
.review-source-dot { width: 7px; height: 7px; border-radius: 50%; }
.dot-linkedin { background: #0077B5; }
.dot-google { background: #4285F4; }
.dot-facebook { background: #1877F2; }
.review-quote { font-size: 14px; color: var(--anthracite); line-height: 1.75; font-style: italic; flex: 1; margin-bottom: 20px; }
.review-quote::before { content: '"'; color: var(--coral); font-family: Georgia, serif; font-size: 20px; line-height: 0; vertical-align: -4px; margin-right: 3px; }
.review-quote::after { content: '"'; color: var(--coral); font-family: Georgia, serif; font-size: 20px; line-height: 0; vertical-align: -4px; margin-left: 3px; }
.review-footer { border-top: 1px solid var(--gray-light); padding-top: 16px; }
.review-author-name { font-size: 14px; font-weight: 700; color: var(--anthracite); margin-bottom: 2px; }
.review-author-role { font-size: 12px; color: var(--gray); margin-bottom: 2px; }
.review-author-org { font-size: 12px; color: var(--coral); font-weight: 500; }
.review-date { font-size: 11px; color: rgba(110,110,115,0.6); margin-top: 6px; }
.review-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.review-tag { font-size: 10px; font-weight: 500; padding: 3px 8px; background: var(--offwhite); border-radius: 4px; color: var(--gray); }
.reviews-empty { text-align: center; padding: 64px 24px; grid-column: 1/-1; }
.reviews-empty-icon { font-size: 40px; margin-bottom: 16px; }
.reviews-empty-title { font-family: 'Clash Display', sans-serif; font-size: 22px; font-weight: 600; color: var(--anthracite); margin-bottom: 8px; }
.reviews-empty-text { font-size: 14px; color: var(--gray); }
/* CTA avis */
.cta-section { background: var(--anthracite); padding: 72px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,92,77,0.12) 0%, transparent 70%); pointer-events: none; }
.cta-title { font-family: 'Clash Display', sans-serif; font-size: clamp(28px,3.5vw,44px); font-weight: 600; letter-spacing: -1.5px; color: var(--white); margin-bottom: 12px; position: relative; z-index: 1; }
.cta-title span { color: var(--coral); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.45); margin-bottom: 36px; position: relative; z-index: 1; }
