/* ============================================================
   MENELO — Design System
   menelo.be · Version 1.0 · Mai 2026
   ============================================================ */

/* ── 1. RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  background-color: var(--white);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

/* ── 2. CSS VARIABLES ────────────────────────────────────── */
:root {
  --navy:       #07102E;
  --navy-mid:   #0D1E50;
  --navy-light: #132260;
  --cyan:       #00C2CC;
  --cyan-dark:  #009AA3;
  --cyan-glow:  rgba(0, 194, 204, 0.18);
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --text:       #374151;
  --text-muted: #6B7280;
  --border:     #E5E7EB;
  --border-dark: rgba(255,255,255,0.10);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 4px rgba(7,16,46,0.08);
  --shadow-md:  0 4px 20px rgba(7,16,46,0.12);
  --shadow-lg:  0 12px 48px rgba(7,16,46,0.18);
  --shadow-cyan: 0 0 32px rgba(0,194,204,0.25);

  --transition: 0.22s ease;
  --max-w:      1140px;
  --section-py: 96px;
}

/* ── 3. TYPOGRAPHY ───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text); }

.text-muted { color: var(--text-muted); }
.text-cyan  { color: var(--cyan); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ── 4. LAYOUT UTILITIES ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: var(--section-py);
}

.section--dark {
  background-color: var(--navy);
}

.section--off {
  background-color: var(--off-white);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }
.mt-64  { margin-top: 64px; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; }
.mb-48  { margin-bottom: 48px; }

/* ── 5. BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}
.btn--primary:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ── 6. HEADER / NAV ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 16, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(7,16,46,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-cta {
  margin-left: 8px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 7. HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px; /* header height */
}

/* Animated background grid */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,204,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,204,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,204,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(0,194,204,0.3);
  background: rgba(0,194,204,0.08);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--cyan);
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ── 8. STATS BAR ────────────────────────────────────────── */
.stats-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-block: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--cyan-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ── 9. SECTION HEADINGS ─────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 12px;
}

.section-label--light {
  color: rgba(0,194,204,0.8);
}

.section-intro {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-top: 12px;
}

.section-intro--light {
  color: rgba(255,255,255,0.6);
}

/* ── 10. PACK CARDS ──────────────────────────────────────── */
.pack-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pack-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  transition: background var(--transition);
}

.pack-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pack-card:hover::before {
  background: linear-gradient(90deg, var(--navy), var(--cyan));
}

.pack-card--featured {
  border-color: var(--cyan);
  background: linear-gradient(160deg, #f0feff 0%, var(--white) 100%);
}

.pack-card--featured::before {
  background: linear-gradient(90deg, var(--navy), var(--cyan));
}

.pack-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.pack-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pack-price {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pack-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pack-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pack-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pack-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.4;
}

.pack-feature::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  background-color: var(--cyan);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2307102E' d='M6.5 11.5L3 8l1-1 2.5 2.5 6-6 1 1z'/%3E%3C/svg%3E");
  background-size: 100%;
}

/* ── 11. WHY MENELO ──────────────────────────────────────── */
.why-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--cyan-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.why-body h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── 12. CTA BAND ────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,204,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,204,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--white);
}

/* ── 13. FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: #030B1F;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-block: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.12em;
}

.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-legal {
  margin-top: 4px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

.footer-col h4 {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-left {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── 14. COOKIE BANNER ───────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--navy);
  border: 1px solid rgba(0,194,204,0.3);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: slide-up 0.35s ease;
}

.cookie-banner.visible {
  display: flex;
}

@keyframes slide-up {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-accept {
  flex: 1;
  padding: 10px 16px;
  background: var(--cyan);
  color: var(--navy);
  border: 2px solid var(--cyan);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  min-width: 120px;
  text-align: center;
}

.cookie-accept:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
}

.cookie-refuse {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  min-width: 120px;
  text-align: center;
}

.cookie-refuse:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
}

/* ── 15. LEGAL PAGES ─────────────────────────────────────── */
.legal-page {
  padding-top: 112px; /* header + extra */
  padding-bottom: 80px;
}

.legal-header {
  background: var(--navy);
  padding: 56px 0 48px;
  margin-bottom: 56px;
}

.legal-header h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.legal-header .date {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 8px;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.legal-content h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.75;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.65;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 20px;
  font-size: 0.875rem;
}

.legal-table th,
.legal-table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
  line-height: 1.5;
}

.legal-table th {
  background: var(--off-white);
  color: var(--navy);
  font-weight: 600;
}

.legal-table tr:nth-child(even) td {
  background: #fafafa;
}

.legal-notice {
  background: #FFF8E6;
  border: 1px solid #F5D76E;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.875rem;
  color: #7D5A00;
  margin-block: 16px;
  line-height: 1.6;
}

.legal-info {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.875rem;
  color: var(--text);
  margin-block: 16px;
  line-height: 1.6;
}

/* ── 16. CONTACT PAGE ────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--cyan-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-wrap iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  display: block;
}

.contact-form-wrap .rgpd-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}

.contact-form-wrap .rgpd-note a {
  color: var(--cyan-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── 17. AGENCE PAGE ─────────────────────────────────────── */
.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stack-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(0,194,204,0.2);
}

.stack-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ── 18. AGENCE PAGE — VALEURS ───────────────────────────── */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
}

.value-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── 19. PAGE HERO (subpages) ────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 540px;
}

/* ── 20. RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
  }

  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .stats-bar .container {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat-item:last-child { border-bottom: none; }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border-dark);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-align: left;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .cookie-banner {
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 20px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .btn-group {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-form-wrap {
    padding: 24px 20px;
  }
  .pack-card {
    padding: 28px 24px;
  }
}

/* ── 21. LANG SWITCHER (FR | EN) ─────────────────────────── */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

.lang-switch a {
  transition: color var(--transition), opacity var(--transition);
}

.lang-switch .lang-active {
  color: var(--cyan);
  font-weight: 700;
}

.lang-switch .lang-inactive {
  color: rgba(255,255,255,0.85);
  opacity: 0.5;
}

.lang-switch .lang-inactive:hover {
  opacity: 1;
  color: var(--cyan);
}

.lang-switch .lang-sep {
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .lang-switch {
    margin-left: 0;
    width: 100%;
    padding: 12px 16px;
    justify-content: flex-start;
  }
  .lang-switch .lang-inactive { color: rgba(255,255,255,0.85); }
}

/* ── 22. CUSTOM OFFER BAND (missions) ────────────────────── */
.custom-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 1px solid rgba(0,194,204,0.25);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.custom-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,204,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,204,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.custom-band-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.custom-band-content h3 {
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 12px;
}

.custom-band-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}

.custom-band-cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .custom-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }
  .custom-band-cta { width: 100%; }
  .custom-band-cta .btn { width: 100%; }
}


/* ── 22. LOGO IMAGE (mark + wordtext) v2 ─────────────────── */
.header-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.header-logo-mark { height:35px; width:auto; }
.header-logo-word { height:20px; width:auto; }
.footer-logo { display:flex; align-items:center; gap:10px; }
.footer-logo img { width:auto; }
.footer-logo-word { height:18px; width:auto; }
@media (max-width:768px){
  .header-logo-word { height:18px; }
}

/* ── 23. PACK SUR-MESURE ─────────────────────────────────── */
.pack-card--custom {
  background: var(--navy);
  border-color: var(--navy);
}
.pack-card--custom::before { background: linear-gradient(90deg, var(--cyan), var(--navy)); }
.pack-card--custom .pack-name { color: rgba(255,255,255,0.6); }
.pack-card--custom .pack-price { color: var(--white); font-size: clamp(1.3rem,2.5vw,1.6rem); }
.pack-card--custom .pack-desc { color: rgba(255,255,255,0.7); }
.pack-card--custom .pack-feature { color: rgba(255,255,255,0.85); }
.pack-card--custom:hover { border-color: var(--cyan); }
