/* ═══════════════════════════════════════════════════
   ATELIER WEB — Custom Landing Page Styles
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #F7F0E8;
  --bg-alt: #EFE8DC;
  --fg: #1A1A1A;
  --fg-muted: #6B5F52;
  --accent: #C8541A;
  --accent-light: #E8824F;
  --accent-dark: #9E3F10;
  --surface: #FFFFFF;
  --border: #D9CFC4;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
em { font-style: italic; font-weight: 300; }

a { color: inherit; text-decoration: none; }

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 240, 232, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s;
}

.nav-link:hover { color: var(--accent); }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 64px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--accent);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.06;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  flex: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-eyebrow-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-pricing-preview {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-price-tag {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
}

.hero-price-note {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* Browser mockup */
.hero-browser {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid var(--border);
}

.browser-bar {
  background: var(--bg-alt);
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.browser-content {
  padding: 1.5rem;
}

.mock-site { width: 100%; }

.mock-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.mock-nav-line {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  flex: 1;
}

.mock-nav-line.short { flex: 0.4; }

.mock-hero-mock {
  margin-bottom: 1.5rem;
}

.mock-h1-line {
  height: 18px;
  background: var(--fg);
  border-radius: 4px;
  margin-bottom: 0.75rem;
  width: 80%;
}

.mock-h1-line.short { width: 55%; height: 14px; background: var(--fg-muted); }

.mock-cta-btn {
  width: 120px;
  height: 32px;
  background: var(--accent);
  border-radius: 6px;
  margin-top: 1rem;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mock-card {
  height: 80px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.browser-label {
  background: var(--bg-alt);
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* Hero bottom scroll hint */
.hero-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ── Stats ─────────────────────────────────────────── */
.stats {
  background: var(--fg);
  color: white;
  padding: 3rem 2rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-light);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── Offres ────────────────────────────────────────── */
.offres {
  padding: 7rem 2rem;
  background: var(--bg);
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--accent); }

.section-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
}

.offres-grid {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offre-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.offre-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.offre-card--featured {
  background: var(--fg);
  color: white;
  border-color: var(--fg);
}

.offre-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.offre-card-top {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.offre-card--featured .offre-card-top { border-color: rgba(255,255,255,0.15); }

.offre-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.offre-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.offre-card--featured .offre-price { color: var(--accent-light); }

.offre-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.offre-card--featured .offre-desc { color: rgba(255,255,255,0.7); }

.offre-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.offre-features li {
  font-size: 0.88rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--fg-muted);
}

.offre-card--featured .offre-features li { color: rgba(255,255,255,0.75); }

.offre-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.offre-card--featured .offre-features li::before { color: var(--accent-light); }

/* Maintenance note */
.maintenance-note {
  max-width: 1200px;
  margin: 0 auto;
}

.maintenance-note-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  max-width: 600px;
}

.maintenance-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.maintenance-price {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
  display: block;
}

/* ── Case Studies (Portfolio) ─────────────────────── */
.realisations {
  padding: 7rem 2rem;
  background: var(--bg-alt);
}

.case-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem;
  align-items: start;
}

.case-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Screenshot area */
.case-screenshot {
  padding: 1.5rem 1.5rem 0;
}

.case-screenshot--auto { background: #1a2234; }
.case-screenshot--sport { background: #f4ede4; }

/* Browser chrome */
.ss-browser {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.ss-bar {
  background: #2a2a2a;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ss-bar--light { background: #e8ddd4; }

.ss-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
  flex-shrink: 0;
}

.ss-dot--terracotta { background: var(--accent); }

.ss-url {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
  margin-left: 0.5rem;
  background: rgba(255,255,255,0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.ss-url--dark { color: rgba(0,0,0,0.35); background: rgba(0,0,0,0.06); }

.ss-content {
  padding: 0;
  overflow: hidden;
}

/* ── Auto dealership mockup ── */
.ss-content--auto {
  background: linear-gradient(135deg, #1a2234 0%, #0f1623 100%);
  min-height: 260px;
}

.ss-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ss-nav-brand {
  width: 80px;
  height: 14px;
  background: rgba(255,255,255,0.7);
  border-radius: 3px;
}

.ss-nav-links { display: flex; gap: 1.5rem; align-items: center; }
.ss-nav-link { width: 45px; height: 6px; background: rgba(255,255,255,0.3); border-radius: 3px; }
.ss-nav-btn { width: 60px; height: 20px; background: var(--accent); border-radius: 4px; }

.ss-hero-auto {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  gap: 1rem;
}

.ss-hero-text { flex: 1; }

.ss-hero-label {
  width: 70px;
  height: 6px;
  background: var(--accent);
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.ss-hero-h1 {
  width: 140px;
  height: 14px;
  background: white;
  border-radius: 3px;
  margin-bottom: 0.4rem;
  opacity: 0.9;
}

.ss-hero-sub {
  width: 100px;
  height: 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 3px;
}

.ss-hero-cta {
  width: 90px;
  height: 24px;
  background: var(--accent);
  border-radius: 5px;
  margin-top: 0.6rem;
}

.ss-hero-car {
  flex-shrink: 0;
  width: 140px;
  height: 80px;
  position: relative;
}

.ss-car-body {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #e0e0e0, #ffffff);
  border-radius: 8px 8px 4px 4px;
  position: absolute;
  top: 10px;
}

.ss-car-wheels {
  width: 100%;
  height: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 0 0 10px 10px;
  position: absolute;
  bottom: 0;
  border-top: 2px solid rgba(255,255,255,0.2);
}

.ss-inventory {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0.6rem 1rem 0.8rem;
}

.ss-inv-label {
  width: 60px;
  height: 5px;
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.ss-inv-grid {
  display: flex;
  gap: 0.6rem;
}

.ss-inv-card {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.ss-inv-img {
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.ss-inv-img--sedan { background: linear-gradient(135deg, #3a4a6b, #2a3a5b); }
.ss-inv-img--suv { background: linear-gradient(135deg, #4a3a6b, #3a2a5b); }
.ss-inv-img--compact { background: linear-gradient(135deg, #3a6b4a, #2a5b3a); }

.ss-inv-info { padding: 0.4rem 0.5rem; }
.ss-inv-name { width: 80%; height: 5px; background: rgba(255,255,255,0.4); border-radius: 2px; margin-bottom: 0.25rem; }
.ss-inv-price { width: 50%; height: 5px; background: var(--accent); border-radius: 2px; }

/* ── Sport club mockup ── */
.ss-content--sport {
  background: linear-gradient(160deg, #f4ede4 0%, #ede4d8 100%);
  min-height: 240px;
}

.ss-sport-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.ss-sport-brand {
  width: 70px;
  height: 14px;
  background: var(--accent);
  border-radius: 3px;
  opacity: 0.8;
}

.ss-sport-links { display: flex; gap: 1.2rem; }
.ss-sport-link { width: 40px; height: 5px; background: rgba(0,0,0,0.2); border-radius: 3px; }

.ss-sport-hero {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
}

.ss-sport-court {
  flex-shrink: 0;
  width: 100px;
  height: 60px;
  background: linear-gradient(135deg, #c8a97e 0%, #d4b896 50%, #bfa36a 100%);
  border-radius: 6px;
  border: 2px solid rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.ss-sport-court::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,0.15);
}

.ss-sport-text { flex: 1; }

.ss-sport-h1 {
  width: 120px;
  height: 12px;
  background: rgba(0,0,0,0.7);
  border-radius: 3px;
  margin-bottom: 0.4rem;
}

.ss-sport-sub {
  width: 80px;
  height: 5px;
  background: rgba(0,0,0,0.25);
  border-radius: 3px;
  margin-bottom: 0.4rem;
}

.ss-sport-cta {
  width: 70px;
  height: 20px;
  background: var(--accent);
  border-radius: 4px;
}

.ss-sport-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0 1rem 0.8rem;
}

.ss-event-card {
  background: white;
  border-radius: 6px;
  padding: 0.5rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.ss-event-header {
  width: 70%;
  height: 6px;
  background: var(--accent);
  border-radius: 3px;
  margin-bottom: 0.4rem;
  opacity: 0.7;
}

.ss-event-item {
  width: 100%;
  height: 4px;
  background: rgba(0,0,0,0.1);
  border-radius: 2px;
  margin-bottom: 0.3rem;
}

.ss-team-card {
  background: white;
  border-radius: 6px;
  padding: 0.5rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.ss-team-header {
  width: 60%;
  height: 6px;
  background: rgba(0,0,0,0.4);
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.ss-team-faces { display: flex; gap: 0.4rem; }
.ss-face {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
}

/* Case info panel */
.case-info {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.case-sector-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,84,26,0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
  margin-bottom: 0.75rem;
}

.case-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.case-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.case-outcomes {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--bg);
  border-radius: 10px;
}

.case-outcome {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.case-outcome-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.case-outcome-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.case-meta span { font-weight: 500; }

.case-live-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-weight: 600;
  transition: opacity 0.2s;
}

.case-live-link:hover { opacity: 0.7; }

/* Trust bar */
.case-trust {
  max-width: 1200px;
  margin: 2.5rem auto 0;
}

.case-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.case-trust-inner svg { color: var(--accent); flex-shrink: 0; }

/* ── Engagements ───────────────────────────────────── */
.engagements {
  padding: 7rem 2rem;
  background: var(--surface);
}

.engagements-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.engagements-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--fg);
  line-height: 1.1;
}

.engagements-title em { font-style: italic; color: var(--accent); }

.engagements-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.engagements-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.eng-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.eng-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,84,26,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.eng-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--fg);
}

.eng-item p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Closing ────────────────────────────────────────── */
.closing {
  padding: 8rem 2rem;
  background: var(--fg);
  color: white;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1rem;
  display: block;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.closing-statement em { font-style: italic; color: var(--accent-light); }

.closing-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.closing-cta-area { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; }

.closing-packs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.closing-packs-sep { opacity: 0.4; }

.closing-packs-price { font-weight: 600; color: white; }

.closing-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: white;
  font-size: 1rem;
}

.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 5px;
}

.footer-services {
  text-align: center;
  flex: 1;
}

.footer-services p { font-size: 0.85rem; line-height: 1.6; }

.footer-meta { text-align: right; font-size: 0.8rem; }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-top: 3rem; }
  .hero-browser { max-width: 480px; margin: 0 auto; }

  .offres-grid { grid-template-columns: 1fr; }
  .offre-card--featured { order: -1; }

  .real-grid { grid-template-columns: 1fr 1fr; }
  .real-card--large { grid-column: 1 / -1; }

  .case-grid { grid-template-columns: 1fr; }
  .case-card--large { order: -1; }

  .engagements-inner { grid-template-columns: 1fr; gap: 3rem; }

  .stats-inner { justify-content: center; gap: 1.5rem; }
  .stat-divider { display: none; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }

  .hero-headline { font-size: 2rem; }

  .real-grid { grid-template-columns: 1fr; }

  .closing-statement { font-size: 1.6rem; }

  .footer-logo, .footer-services, .footer-meta { text-align: center; }
}