/* Alclima — Design Tokens */
:root {
  /* Brand palette */
  --c-primary: #264863;
  --c-primary-700: #1b3448;
  --c-primary-300: #6f8aa0;
  --c-secondary: #60bd4f;
  --c-secondary-700: #438d38;
  --c-accent: #ffde17;
  --c-accent-700: #c8ad00;
  --c-accent-300: #ffe86a;

  /* Surface */
  --c-bg: #FBFAF7;
  --c-bg-alt: #F2EFE8;
  --c-surface: #FFFFFF;
  --c-surface-2: #F8FAFC;
  --c-ink: #0E1628;
  --c-ink-2: #2D3748;
  --c-ink-3: #5A6478;
  --c-ink-4: #94A3B8;
  --c-line: #E5E7EB;
  --c-line-strong: #CBD5E1;

  /* Type */
  --f-display: "Sora", "Inter", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;

  /* Shadow */
  --sh-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --sh-md: 0 4px 24px rgba(15, 23, 42, 0.08);
  --sh-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --sh-xl: 0 24px 60px rgba(15, 23, 42, 0.18);

  /* Transition */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}



* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-ink-2);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--c-ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

img, svg { display: block; max-width: 100%; }

::selection { background: var(--c-accent); color: white; }

/* App scaffolding */
.app {
  min-height: 100vh;
  background: var(--c-bg);
  position: relative;
}

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), backdrop-filter 0.35s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: color-mix(in oklab, var(--c-bg) 85%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--c-line);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--c-primary) 0%, #264863 60%, var(--c-accent) 130%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--c-accent) 0%, var(--c-accent) 30%, transparent 60%);
  filter: blur(0.5px);
}
.logo-mark::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: -3px;
  right: -3px;
  height: 14px;
  background: var(--c-secondary);
  border-radius: 50%;
  opacity: 0.85;
}
.nav-desktop { display: none; }
.nav-link {
  position: relative;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink-2);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--c-ink); background: var(--c-bg-alt); }
.nav-link.has-dropdown::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  margin-left: 6px;
  opacity: 0.6;
  transition: transform 0.2s;
}
.nav-link.has-dropdown[aria-expanded="true"]::after {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 16px;
  box-shadow: var(--sh-lg);
  width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s var(--ease-out);
}
.dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: var(--r-md);
  transition: background 0.2s;
  align-items: flex-start;
}
.dropdown-item:hover { background: var(--c-bg-alt); }
.dropdown-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: white;
}
.dropdown-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--c-ink);
}
.dropdown-content p {
  font-size: 12.5px;
  color: var(--c-ink-3);
  line-height: 1.4;
}
.dropdown-aide {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  background: color-mix(in oklab, var(--c-secondary) 15%, transparent);
  color: var(--c-secondary-700);
  border-radius: 999px;
}

.header-cta {
  display: flex; align-items: center; gap: 10px;
}
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  transition: background 0.2s, border-color 0.2s;
  color: var(--c-ink-2);
}
.theme-toggle:hover { background: var(--c-bg-alt); border-color: var(--c-line-strong); }

.burger {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
}
.burger-bars { display: flex; flex-direction: column; gap: 4px; }
.burger-bars span {
  width: 18px; height: 2px;
  background: var(--c-ink-2);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open .burger-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open .burger-bars span:nth-child(2) { opacity: 0; }
.burger.open .burger-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ Mobile menu ============ */
.mobile-menu {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--c-bg);
  z-index: 40;
  overflow-y: auto;
  padding: 24px 20px 120px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-section {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  margin: 24px 0 8px;
  font-weight: 600;
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line);
}
.mobile-service-card {
  display: flex; gap: 14px; align-items: center;
  padding: 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  margin-bottom: 8px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 20px;
  border-radius: 10px;
  transition: transform 0.15s var(--ease-out), background 0.2s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--c-accent);
  color: white;
  box-shadow: 0 6px 18px -4px color-mix(in oklab, var(--c-accent) 50%, transparent);
}
.btn-primary:hover { background: var(--c-accent-700); box-shadow: 0 10px 24px -4px color-mix(in oklab, var(--c-accent) 60%, transparent); }
.btn-secondary {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
}
.btn-secondary:hover { background: var(--c-primary); color: white; }
.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.7); }
.btn-dark {
  background: var(--c-primary);
  color: white;
}
.btn-dark:hover { background: var(--c-primary-700); }
.btn-sm { padding: 9px 14px; font-size: 13px; }
.btn-lg { padding: 16px 26px; font-size: 16px; }

/* ============ Trust pills ============ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  color: var(--c-ink-2);
}
.pill svg { color: var(--c-secondary-700); }
.pill-light {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.25);
}
.pill-light svg { color: var(--c-accent-300); }

/* ============ Hero common ============ */
.hero {
  position: relative;
  padding: 24px 20px 56px;
  overflow: hidden;
}

/* Hero variant 1: Editorial / asymmetric (image right) */
.hero-editorial {
  padding: 24px 20px 56px;
  background: var(--c-bg);
}
.hero-editorial .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  color: var(--c-ink-3);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero-editorial .eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--c-secondary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--c-secondary) 25%, transparent);
}
.hero-editorial h1 {
  font-size: clamp(36px, 9vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 20px;
}
.hero-editorial h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero-editorial .lede {
  font-size: 16px;
  color: var(--c-ink-3);
  margin-bottom: 24px;
  max-width: 38ch;
  line-height: 1.55;
}
.hero-editorial .ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.hero-editorial .trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

/* Visual photo block (replaces sun emblem) */
.visual-photo {
  position: relative;
  margin-top: 8px;
}
.visual-photo-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px -20px rgba(15, 26, 48, 0.45), 0 0 0 1px rgba(15, 26, 48, 0.06);
}
.visual-photo-img::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,0.05) 0%, rgba(11,18,32,0.05) 40%, rgba(11,18,32,0.65) 100%);
  pointer-events: none;
}
.visual-photo-tag-loc {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--c-ink);
  z-index: 2;
}
.visual-photo-card {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 40px -10px rgba(15, 26, 48, 0.35);
  z-index: 2;
}
.visual-photo-stars {
  display: flex; gap: 2px;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.visual-photo-stars svg { fill: var(--c-accent); }
.visual-photo-quote {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--c-ink);
  margin-bottom: 12px;
}
.visual-photo-author {
  display: flex; align-items: center; gap: 10px;
}
.visual-photo-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  color: white;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em;
}
.visual-photo-author-name { font-size: 12px; font-weight: 600; color: var(--c-ink); }
.visual-photo-author-meta { font-size: 11px; color: var(--c-ink-3); }

.visual-photo-stat {
  position: absolute;
  top: 12px; right: -8px;
  background: white;
  padding: 12px 16px;
  border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 40px -8px rgba(243, 156, 18, 0.35), 0 0 0 1px rgba(15,26,48,0.05);
  z-index: 3;
}
.visual-photo-stat-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-accent), #c8ad00);
  color: white;
  display: grid; place-items: center;
}
.visual-photo-stat-num { font-size: 16px; font-weight: 700; color: var(--c-ink); letter-spacing: -0.02em; line-height: 1; }
.visual-photo-stat-label { font-size: 11px; color: var(--c-ink-3); margin-top: 2px; }

/* Hero variant 2: Full-bleed photo */
.hero-fullbleed {
  margin-top: 0;
  padding: 0;
  position: relative;
  background: #0a1424;
  color: white;
  overflow: hidden;
}
.hero-fullbleed-img {
  position: relative;
  height: 88vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-fullbleed-grade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,18,32,0) 0%, rgba(11,18,32,0.15) 30%, rgba(11,18,32,0.7) 75%, rgba(11,18,32,0.95) 100%),
    linear-gradient(90deg, rgba(11,18,32,0.5) 0%, rgba(11,18,32,0) 50%);
  z-index: 1;
}
.hero-fullbleed-floats {
  display: none;
}
.hero-float {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  color: var(--c-ink);
  box-shadow: 0 16px 40px -8px rgba(0,0,0,0.4);
}
.hero-float svg { color: var(--c-accent); }
.hero-float-stars { display: flex; gap: 1px; color: var(--c-accent); }
.hero-float-stars svg { fill: var(--c-accent); }
.hero-float-num { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.hero-float-lbl { font-size: 11px; color: var(--c-ink-3); margin-top: 2px; }

.hero-fullbleed-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 20px 40px;
  z-index: 2;
}
.hero-fullbleed-eyebrow { align-self: flex-start; margin-bottom: 20px; }
.hero-fullbleed h1 {
  color: white;
  font-size: clamp(36px, 9vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 16px;
  max-width: 18ch;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-fullbleed .lede {
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 38ch;
}
.hero-fullbleed .ctas {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px;
}
.hero-fullbleed .trust-row {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.hero-fullbleed-scroll {
  display: none;
}

/* Hero variant 3: Split / product showcase */
.hero-split {
  padding: 28px 20px 48px;
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-alt) 100%);
}
.hero-split h1 {
  font-size: clamp(34px, 8vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 16px;
}
.hero-split .lede {
  font-size: 16px;
  color: var(--c-ink-3);
  margin-bottom: 24px;
  max-width: 40ch;
}
.hero-split .ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.hero-split .trust-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.hero-split .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  overflow: hidden;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s var(--ease-out);
}
.hero-tile:hover { transform: translateY(-3px); }
.hero-tile-1 { background: linear-gradient(135deg, #264863, #264863); }
.hero-tile-2 { background: linear-gradient(135deg, #f9b347, #e07a1c); }
.hero-tile-3 { background: linear-gradient(135deg, #34d399, #1a9e5c); }
.hero-tile-4 { background: linear-gradient(135deg, #5b6478, #2d3748); }
.hero-tile .num {
  font-size: 11px;
  opacity: 0.7;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.hero-tile-icon {
  position: absolute;
  bottom: -10px; right: -10px;
  opacity: 0.25;
  font-size: 80px;
}

/* ============ Hero showcase (split variant) — featured + side cards ============ */
.hero-split-content {
  margin-bottom: 8px;
}
.hero-split-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--c-ink-3);
  margin-bottom: 18px;
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-split-dot {
  width: 6px; height: 6px;
  background: var(--c-secondary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--c-secondary) 18%, transparent);
}
.hero-split-accent {
  color: var(--c-accent);
  font-style: italic;
  font-weight: 500;
}
.hero-split-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--c-line);
}
.hero-split-stat-num {
  font-family: var(--f-display);
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 800;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-split-stat-label {
  font-size: 11px;
  color: var(--c-ink-3);
  line-height: 1.3;
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

.hero-product {
  cursor: pointer;
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  position: relative;
}
.hero-product:hover { transform: translateY(-3px); }

/* Featured large card */
.hero-product-featured {
  border: 1px solid var(--c-line);
  background: white;
  box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.08);
}
.hero-product-featured:hover {
  box-shadow: 0 24px 40px -16px rgba(15, 23, 42, 0.2);
}
.hero-product-featured .hero-product-img {
  position: relative;
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
  background-color: var(--c-bg-alt);
  overflow: hidden;
}
.hero-product-featured .hero-product-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13, 25, 50, 0.85) 100%);
  z-index: 1;
}
.hero-product-overlay-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--c-ink);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.hero-product-overlay-dot {
  width: 6px; height: 6px;
  background: var(--c-secondary);
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}
.hero-product-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: white;
}
.hero-product-content .hero-product-badge {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: white;
  margin-bottom: 8px;
  position: static;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.hero-product-content .hero-product-num {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.hero-product-headline {
  font-family: var(--f-display);
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
  color: white;
}
.hero-product-tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  margin-bottom: 14px;
  max-width: 38ch;
  text-wrap: pretty;
}
.hero-product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.hero-product-aide {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--f-display);
}
.hero-product-arrow-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  color: var(--c-primary);
  display: grid;
  place-items: center;
  transition: transform 0.2s var(--ease-out);
  flex-shrink: 0;
}
.hero-product:hover .hero-product-arrow-circle {
  transform: rotate(0) translate(2px, -2px);
}

/* Side cards (secondary services) */
.hero-showcase-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.hero-product-side {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 14px 10px 10px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: all 0.25s var(--ease-out);
}
.hero-product-side:hover {
  border-color: var(--c-primary);
  box-shadow: 0 8px 16px -4px rgba(15, 23, 42, 0.08);
}
.hero-product-img-side {
  position: relative;
  width: 92px;
  aspect-ratio: 1;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: var(--c-bg-alt);
  overflow: hidden;
}
.hero-product-img-side .hero-product-badge {
  position: absolute;
  top: 6px; left: 6px;
  width: 24px; height: 24px;
  border-radius: 6px;
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.hero-product-side-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.hero-product-side-meta .hero-product-num {
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--c-ink-3);
  letter-spacing: 0.08em;
}
.hero-product-side-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.hero-product-side-aide {
  font-size: 12px;
  color: var(--c-secondary-700);
  font-weight: 600;
  font-family: var(--f-display);
}
.hero-product-side-arrow {
  color: var(--c-ink-3);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.hero-product-side:hover .hero-product-side-arrow {
  color: var(--c-primary);
  transform: translate(2px, -2px);
}

/* ============ Stats bar ============ */
.stats {
  background: linear-gradient(135deg, var(--c-primary) 0%, #1b3448 60%, var(--c-primary-700) 100%);
  color: white;
  padding: 36px 20px;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  top: -50%; right: -30%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, color-mix(in oklab, var(--c-accent) 35%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  position: relative;
}
.stat { }
.stat-value {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(36px, 10vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
  color: white;
}
.stat-value .unit {
  font-size: 0.55em;
  font-weight: 700;
  margin-left: 2px;
  color: var(--c-accent-300);
}
.stat-label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ============ Section common ============ */
.section {
  padding: 64px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-accent-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 24px; height: 1.5px;
  background: var(--c-accent);
}
.section-title {
  font-size: clamp(28px, 6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.section-lede {
  color: var(--c-ink-3);
  font-size: 16px;
  max-width: 60ch;
  margin-bottom: 32px;
}

/* ============ Service cards ============ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  --service-color: var(--c-primary);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--service-color);
  border-top-left-radius: var(--r-xl);
  border-top-right-radius: var(--r-xl);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--service-color);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: color-mix(in oklab, var(--service-color) 12%, var(--c-surface));
  color: var(--service-color);
  display: grid; place-items: center;
  margin-bottom: 16px;
  position: relative;
}
.service-aide {
  position: absolute;
  top: 22px; right: 22px;
  background: color-mix(in oklab, var(--c-secondary) 18%, transparent);
  color: var(--c-secondary-700);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--c-secondary) 30%, transparent);
}
.service-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: var(--c-ink-3);
  margin-bottom: 14px;
}
.service-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--service-color);
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--f-display);
}
.service-card .arrow span {
  transition: transform 0.3s var(--ease-out);
}
.service-card:hover .arrow span { transform: translateX(4px); }

/* Image variant of service card */
.service-card-img { padding: 0; display: flex; flex-direction: column; }
.service-card-img .service-card-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.service-card-photo-grade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,26,48,0) 30%, rgba(15,26,48,0.6) 100%);
}
.service-card-img .service-icon {
  position: absolute;
  bottom: 14px; left: 14px;
  margin: 0;
  width: 44px; height: 44px;
  color: white !important;
  background: var(--service-color);
  box-shadow: 0 8px 20px -4px color-mix(in oklab, var(--service-color) 60%, transparent);
  z-index: 2;
}
.service-card-img .service-aide {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  color: var(--c-ink);
  border-color: transparent;
  font-weight: 700;
  z-index: 2;
}
.service-card-img .service-aide-eco {
  background: rgba(255,255,255,0.95);
  color: var(--c-ink-2);
  display: inline-flex; align-items: center; gap: 4px;
}
.service-card-img .service-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-img .service-card-body p { flex: 1; }

/* ============ Why us section ============ */
.why-band {
  margin: 32px 0 24px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(15, 26, 48, 0.3);
}
.why-band-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: white;
}
.why-band-grade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,26,48,0.5) 0%, rgba(15,26,48,0.15) 30%, rgba(15,26,48,0.85) 100%);
}
.why-band-tags {
  position: relative;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.why-band-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: white;
}
.why-band-quote { position: relative; max-width: 600px; }
.why-band-quote-text {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 8px;
}
.why-band-quote-author {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.why-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.why-num {
  font-family: var(--f-display);
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.why-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.why-card p {
  font-size: 14px;
  color: var(--c-ink-3);
}

/* ============ Aides section ============ */
.aides {
  background: linear-gradient(135deg, #1b3448 0%, #264863 50%, #438d38 130%);
  color: white;
  padding: 64px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.aides::before {
  content: "";
  position: absolute;
  top: 10%; right: -30%;
  width: 80%;
  aspect-ratio: 1;
  background: radial-gradient(circle, color-mix(in oklab, var(--c-secondary) 30%, transparent) 0%, transparent 65%);
}
.aides-inner { max-width: 1280px; margin: 0 auto; position: relative; }
.aides h2 {
  color: white;
  font-size: clamp(30px, 7vw, 44px);
  margin-bottom: 8px;
}
.aides h2 strong {
  color: var(--c-accent);
  font-weight: 700;
}
.aides .section-lede { color: rgba(255,255,255,0.75); }
.aides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}
.aide-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
}
.aide-row-label {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
}
.aide-row-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.aide-row-amount {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--c-accent);
  letter-spacing: -0.02em;
}

/* ============ Testimonials ============ */
.testi-section {
  background: var(--c-bg);
  max-width: 100%;
}
.testi-rating {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--c-ink-3);
}
.testi-rating .stars { display: flex; gap: 2px; color: var(--c-accent); }
.testi-rating a {
  color: var(--c-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.testi-rating .score {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--c-ink);
  font-size: 16px;
}
.testi-columns {
  display: flex;
  justify-content: stretch;
  gap: 28px;
  max-height: clamp(720px, 72vh, 860px);
  overflow: hidden;
  margin-top: 38px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
}
.testi-column {
  flex: 1 1 0;
  min-width: 0;
}
.testi-column-track {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 30px;
  animation: testi-column-scroll var(--duration, 28s) linear infinite;
  will-change: transform;
}
.testi-column:nth-child(2) .testi-column-track {
  animation-direction: reverse;
}
.testi-columns:hover .testi-column-track {
  animation-play-state: paused;
}
@keyframes testi-column-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
@media (max-width: 980px) {
  .testi-columns {
    gap: 20px;
    max-height: 760px;
  }
  .testi-column-lg {
    display: none;
  }
}
@media (max-width: 600px) {
  .testi-rating {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .testi-columns {
    gap: 14px;
    max-height: 520px;
    margin-top: 24px;
  }
  .testi-column:nth-child(2) {
    display: none;
  }
  .testi-card {
    min-height: auto;
    padding: 22px;
  }
}
.testi-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 32px;
  width: 100%;
  min-height: 280px;
  box-shadow: 0 22px 50px -34px rgba(31, 111, 84, 0.42);
}
.testi-stars { color: var(--c-accent); margin-bottom: 12px; }
.testi-text {
  font-size: 16px;
  color: var(--c-ink);
  line-height: 1.62;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.9);
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px -18px rgba(0,0,0,0.45);
}
.testi-name { font-weight: 600; font-size: 14px; color: var(--c-ink); }
.testi-meta { font-size: 12px; color: var(--c-ink-3); }

@media (prefers-reduced-motion: reduce) {
  .testi-columns {
    max-height: none;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .testi-column-track {
    animation: none;
  }
  .testi-column-track > article:nth-of-type(n+4) {
    display: none;
  }
}

/* ============ News section ============ */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.news-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.news-img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #264863, #ffde17);
  position: relative;
  overflow: hidden;
}
.news-img.var-1 { background: linear-gradient(135deg, #264863, #60bd4f); }
.news-img.var-2 { background: linear-gradient(135deg, #ffde17, #c8ad00); }
.news-img.var-3 { background: linear-gradient(135deg, #264863, #6b3a8a); }
.news-img[style*="url"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 25, 50, 0.25) 0%, transparent 40%, rgba(13, 25, 50, 0.55) 100%);
  pointer-events: none;
}
.news-img-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.95);
  color: var(--c-ink);
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.02em;
  z-index: 1;
  font-family: var(--f-display);
  backdrop-filter: blur(4px);
}
.news-img-overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: white;
  font-size: 48px;
  opacity: 0.4;
}
.news-body { padding: 18px; }
.news-date {
  font-size: 12px;
  color: var(--c-ink-3);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.news-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.news-card p {
  font-size: 14px;
  color: var(--c-ink-3);
  margin-bottom: 12px;
}

/* ============ Parrainage ============ */
.parrainage {
  background: linear-gradient(135deg, var(--c-accent) 0%, #c8ad00 100%);
  color: white;
  padding: 56px 20px;
  border-radius: var(--r-2xl);
  margin: 24px 20px;
  position: relative;
  overflow: hidden;
}
.parrainage::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 60%);
}
.parrainage-inner { position: relative; }
.parrainage-side { display: none; position: relative; z-index: 1; }
.parrainage-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600;
  background: rgba(255,255,255,0.18);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.parrainage h2 {
  color: white;
  font-size: clamp(28px, 6.5vw, 38px);
  margin-bottom: 12px;
}
.parrainage p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  max-width: 38ch;
  margin-bottom: 24px;
}
.parrainage-rewards {
  display: grid; gap: 8px; margin-bottom: 24px;
}
.parrainage-reward {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
}
.parrainage-reward strong {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 800;
  background: white;
  color: var(--c-accent-700);
  padding: 4px 10px;
  border-radius: 8px;
  min-width: 64px;
  text-align: center;
}

/* ============ Final CTA / contact ============ */
.cta-final {
  background: var(--c-bg-alt);
  padding: 56px 20px;
  position: relative;
  overflow: hidden;
}
.cta-final-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.cta-final h2 {
  font-size: clamp(30px, 7vw, 40px);
  margin-bottom: 12px;
}
.cta-final-info {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 24px;
}
.cta-final-info-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
}
.cta-final-info-row:last-child { border: none; padding-bottom: 0; }
.cta-final-info-row:first-child { padding-top: 0; }
.cta-final-info-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: color-mix(in oklab, var(--c-primary) 12%, transparent);
  color: var(--c-primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cta-final-info-label {
  font-size: 12px;
  color: var(--c-ink-3);
  margin-bottom: 2px;
}
.cta-final-info-value {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-ink);
}

/* ============ Footer ============ */
.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.75);
  padding: 56px 20px 28px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13.5px;
  margin-bottom: 16px;
  max-width: 36ch;
}
.footer-cert-row { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-cert {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: white;
}
.footer-col h4 {
  color: white;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--c-accent); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--c-accent); color: var(--c-ink); }

/* ============ Modal ============ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 13, 26, 0.65);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: grid;
  place-items: end center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  width: 100%;
  max-width: 520px;
  background: var(--c-surface);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  padding: 24px 20px 28px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  max-height: 92vh;
  overflow-y: auto;
}
.modal-backdrop.open .modal { transform: translateY(0); }
@media (min-width: 640px) {
  .modal-backdrop { place-items: center; }
  .modal {
    border-radius: var(--r-2xl);
    transform: translateY(20px) scale(0.96);
    max-height: 88vh;
  }
  .modal-backdrop.open .modal { transform: translateY(0) scale(1); }
}
.modal-handle {
  width: 36px; height: 4px;
  background: var(--c-line-strong);
  border-radius: 999px;
  margin: 0 auto 18px;
}
.modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 8px;
}
.modal h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.modal-close {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--c-bg-alt);
  color: var(--c-ink-2);
}
.modal-progress {
  display: flex; align-items: center; gap: 6px;
  margin: 16px 0 24px;
}
.modal-step-dot {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--c-line);
  transition: background 0.3s;
}
.modal-step-dot.active { background: var(--c-accent); }
.modal-step-dot.done { background: var(--c-secondary); }

.form-field { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--c-ink-2);
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-surface-2);
  font-size: 15px;
  color: var(--c-ink);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--c-primary);
  background: var(--c-surface);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--c-primary) 12%, transparent);
}
.form-input.error { border-color: #DC2626; }
.form-error {
  font-size: 12px;
  color: #DC2626;
  margin-top: 4px;
  display: flex; align-items: center; gap: 4px;
}
.form-textarea { min-height: 96px; resize: vertical; font-family: inherit; }

.service-pick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-pick {
  padding: 14px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  text-align: left;
  background: var(--c-surface);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--f-body);
}
.service-pick:hover { border-color: var(--c-primary-300); }
.service-pick.selected {
  border-color: var(--c-primary);
  background: color-mix(in oklab, var(--c-primary) 6%, var(--c-surface));
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--c-primary) 12%, transparent);
}
.service-pick-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--c-bg-alt);
  display: grid; place-items: center;
  color: var(--c-primary);
}
.service-pick.selected .service-pick-icon {
  background: var(--c-primary);
  color: white;
}
.service-pick-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.modal-actions {
  display: flex; gap: 8px; margin-top: 8px;
}
.modal-actions .btn { flex: 1; }

.modal-success {
  text-align: center;
  padding: 16px 0;
}
.modal-success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--c-secondary) 20%, transparent);
  color: var(--c-secondary);
  display: grid; place-items: center;
  animation: pop 0.5s var(--ease-out);
}
@keyframes pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* ============ Page service hero ============ */
.svc-hero {
  padding: 24px 20px 48px;
  background: linear-gradient(180deg, var(--c-bg-alt) 0%, var(--c-bg) 100%);
}
.breadcrumbs {
  font-size: 12.5px;
  color: var(--c-ink-3);
  margin-bottom: 16px;
  display: flex; gap: 6px; align-items: center;
}
.breadcrumbs a:hover { color: var(--c-primary); }
.svc-hero h1 {
  font-size: clamp(32px, 8vw, 48px);
  margin-bottom: 14px;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.svc-hero .lede {
  font-size: 16px;
  color: var(--c-ink-3);
  margin-bottom: 24px;
  max-width: 60ch;
}
.svc-hero-aide {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: color-mix(in oklab, var(--c-secondary) 12%, var(--c-surface));
  border: 1px solid color-mix(in oklab, var(--c-secondary) 25%, transparent);
  border-radius: var(--r-md);
  margin-bottom: 24px;
}
.svc-hero-aide-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--c-secondary);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.svc-hero-aide-amount {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--c-secondary-700);
  letter-spacing: -0.02em;
}
.svc-hero-aide-label {
  font-size: 12px;
  color: var(--c-ink-3);
}
.svc-hero-cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.svc-hero-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.svc-hero-content { min-width: 0; }
.svc-hero-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--c-primary), #264863);
  background-size: cover !important;
  background-position: center !important;
  box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.25);
}
.svc-hero-visual.svc-hero-visual-video {
  aspect-ratio: 16 / 9;
  max-height: none;
  background: #f6f8f5;
}
.svc-hero-video-embed {
  z-index: 0;
}
.svc-hero-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}
.svc-hero-visual-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid; place-items: center;
  color: white;
  align-self: flex-start;
}
.svc-hero-visual-tag {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: var(--r-md);
  align-self: flex-start;
  max-width: 90%;
}
.svc-hero-visual-eyebrow {
  font-size: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-ink-3);
  margin-bottom: 4px;
}
.svc-hero-visual-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-ink);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

/* Process timeline */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 13px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-primary), color-mix(in oklab, var(--c-primary) 20%, transparent));
}
.timeline-step { position: relative; padding-bottom: 28px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute;
  left: -28px;
  top: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-primary);
  color: white;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  border: 3px solid var(--c-bg);
}
.timeline-step h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.timeline-step p {
  font-size: 14px;
  color: var(--c-ink-3);
}

/* FAQ */
.faq-list {
  display: grid; gap: 8px;
}
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--c-primary-300); }
.faq-q {
  width: 100%;
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-ink);
}
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-bg-alt);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s var(--ease-out);
  color: var(--c-ink-2);
}
.faq-item.open .faq-icon {
  background: var(--c-primary);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 20px 20px;
  font-size: 14.5px;
  color: var(--c-ink-3);
  line-height: 1.6;
}

/* About page */
.about-hero {
  padding: 24px 20px 48px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-hero-imgs {
  position: relative;
  height: 460px;
}
.about-hero-img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 18px 40px -16px rgba(13, 25, 50, 0.35);
}
.about-hero-img-main {
  inset: 0 80px 80px 0;
  border: 6px solid var(--c-bg);
}
.about-hero-img-sub {
  inset: 180px 0 0 180px;
  border: 6px solid var(--c-bg);
  z-index: 2;
}
.about-hero-img-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.95);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--f-display);
  color: var(--c-ink);
  backdrop-filter: blur(6px);
}
@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-imgs { height: 300px; max-width: 480px; }
  .about-hero-img-main { inset: 0 60px 60px 0; }
  .about-hero-img-sub { inset: 120px 0 0 120px; }
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.value-card {
  padding: 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
}
.value-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--c-primary) 12%, transparent);
  color: var(--c-primary);
  display: grid; place-items: center;
  margin-bottom: 12px;
}
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cert-card {
  padding: 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  text-align: center;
}
.cert-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-ink);
  margin-bottom: 2px;
}
.cert-id {
  font-size: 11px;
  color: var(--c-ink-3);
  font-family: ui-monospace, monospace;
}

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.contact-form {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 24px;
}
.contact-info {
  display: grid; gap: 12px;
}
.contact-info-card {
  padding: 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
}
.map-card {
  aspect-ratio: 16 / 11;
  border-radius: var(--r-lg);
  background: var(--c-bg-alt);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-line);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Sticky bottom bar (mobile) */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--c-primary);
  color: white;
  padding: 12px 14px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  box-shadow: var(--sh-lg);
  z-index: 30;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-cta-info { display: flex; align-items: center; gap: 10px; min-width: 0; }
.sticky-cta-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--c-accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.sticky-cta-text {
  display: flex; flex-direction: column; min-width: 0;
}
.sticky-cta-text small {
  font-size: 11px;
  opacity: 0.7;
  letter-spacing: 0.02em;
}
.sticky-cta-text strong {
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Components page */
.comp-section { padding: 32px 20px; border-bottom: 1px solid var(--c-line); }
.comp-section h2 {
  font-size: 22px;
  margin-bottom: 4px;
}
.comp-section .label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-ink-3); margin-bottom: 16px;
}
.comp-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center;
  padding: 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
}
.comp-grid.dark { background: var(--c-ink); }
.swatch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.swatch {
  aspect-ratio: 1.6;
  border-radius: var(--r-md);
  padding: 12px;
  display: flex; flex-direction: column; justify-content: space-between;
  font-size: 11px;
  color: white;
  font-family: ui-monospace, monospace;
}
.swatch .swatch-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
}

/* Quote inline form (final CTA) */
.quote-inline {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 24px;
}
.quote-inline h3 {
  font-size: 19px;
  margin-bottom: 4px;
}
.quote-inline-sub {
  font-size: 13.5px;
  color: var(--c-ink-3);
  margin-bottom: 16px;
}

/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0ms),
    filter 0.8s ease var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-up { transform: translateY(28px); }
.reveal-down { transform: translateY(-14px); }
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-scale { transform: scale(0.96); filter: blur(2px); }
.reveal-fade { /* opacity only */ }

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: none;
}

/* Hero entrance — no scroll, animate on load */
@keyframes hero-entrance {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-zoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
.hero-editorial > div:first-child > * {
  opacity: 0;
  animation: hero-entrance 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-editorial > div:first-child > *:nth-child(1) { animation-delay: 0.05s; }
.hero-editorial > div:first-child > *:nth-child(2) { animation-delay: 0.15s; }
.hero-editorial > div:first-child > *:nth-child(3) { animation-delay: 0.28s; }
.hero-editorial > div:first-child > *:nth-child(4) { animation-delay: 0.4s; }
.hero-editorial > div:first-child > *:nth-child(5) { animation-delay: 0.5s; }
.hero-editorial .visual-photo {
  opacity: 0;
  animation: hero-entrance 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s forwards;
}
.hero-editorial .visual-photo-img { animation: hero-zoom 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }

.hero-fullbleed-img { animation: hero-zoom 1.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.hero-fullbleed-overlay > * {
  opacity: 0;
  animation: hero-entrance 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-fullbleed-overlay > *:nth-child(1) { animation-delay: 0.2s; }
.hero-fullbleed-overlay > *:nth-child(2) { animation-delay: 0.32s; }
.hero-fullbleed-overlay > *:nth-child(3) { animation-delay: 0.44s; }
.hero-fullbleed-overlay > *:nth-child(4) { animation-delay: 0.56s; }
.hero-fullbleed-overlay > *:nth-child(5) { animation-delay: 0.68s; }
.hero-float {
  opacity: 0;
  animation: hero-entrance 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-float-1 { animation-delay: 0.6s; }
.hero-float-2 { animation-delay: 0.78s; }

.hero-split > * {
  opacity: 0;
  animation: hero-entrance 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-split > *:nth-child(1) { animation-delay: 0.05s; }
.hero-split > *:nth-child(2) { animation-delay: 0.25s; }
.hero-product { animation: hero-entrance 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) backwards; }
.hero-product-featured { animation-delay: 0.4s; }
.hero-product-side:nth-of-type(1) { animation-delay: 0.5s; }
.hero-product-side:nth-of-type(2) { animation-delay: 0.6s; }
.hero-product-side:nth-of-type(3) { animation-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .hero-editorial > div:first-child > *,
  .hero-editorial .visual-photo,
  .hero-editorial .visual-photo-img,
  .hero-fullbleed-img,
  .hero-fullbleed-overlay > *,
  .hero-float,
  .hero-split > *,
  .hero-product { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ============ DESKTOP/TABLET LAYOUT ============ */
@media (min-width: 768px) {
  .nav-desktop { display: flex; align-items: center; gap: 4px; }
  .burger { display: none; }
  .header-inner { padding: 18px 40px; max-width: 1440px; margin: 0 auto; }
  .header-quote-btn { display: inline-flex; }

  /* Section rhythm */
  .section { padding: 120px 40px; }
  .section-inner { max-width: 1280px; margin: 0 auto; }

  .sticky-cta { display: none; }
}

/* ============ MEDIUM DESKTOP (1024+) ============ */
@media (min-width: 1024px) {
  /* HERO — Editorial */
  .hero { padding: 56px 40px 96px; }
  .hero-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
  }
  .hero-editorial h1 { font-size: clamp(40px, 3.6vw, 56px); line-height: 1.06; letter-spacing: -0.02em; text-wrap: balance; }
  .hero-editorial .lede { font-size: 18px; line-height: 1.55; max-width: 540px; }
  .hero-editorial .ctas { flex-direction: row; gap: 14px; }
  .hero-editorial .trustpills { gap: 8px; flex-wrap: wrap; }

  .visual-photo { margin-top: 0; }
  .visual-photo-img { aspect-ratio: 4 / 5; max-height: 580px; }
  .visual-photo-card { left: 24px; right: 24px; bottom: 24px; padding: 20px 22px; }
  .visual-photo-quote { font-size: 19px; }
  .visual-photo-stat { top: 24px; right: -16px; padding: 14px 18px; }
  .visual-photo-stat-num { font-size: 18px; }

  /* HERO — Full bleed */
  .hero-fullbleed-img { height: 86vh; min-height: 600px; max-height: 800px; }
  .hero-fullbleed-overlay {
    padding: 80px 56px;
    max-width: 1280px;
    margin: 0 auto;
    left: 0; right: 0;
  }
  .hero-fullbleed-overlay h1 { font-size: clamp(60px, 5.6vw, 88px); max-width: 820px; line-height: 1.02; }
  .hero-fullbleed .lede { font-size: 20px; max-width: 600px; }
  .hero-fullbleed .ctas { flex-direction: row; gap: 14px; }
  .hero-fullbleed-floats {
    display: flex; flex-direction: column; gap: 12px;
    position: absolute;
    top: 50%; right: 56px;
    transform: translateY(-50%);
    z-index: 3;
  }
  .hero-fullbleed-scroll {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    position: absolute;
    bottom: 32px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    z-index: 3;
  }
  .hero-fullbleed-scroll .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
  }

  /* HERO — Split */
  .hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 64px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 40px 96px;
    align-items: center;
  }
  .hero-split h1 { font-size: clamp(52px, 4.8vw, 72px); line-height: 1.05; letter-spacing: -0.025em; }
  .hero-split .lede { font-size: 19px; max-width: 520px; }
  .hero-split .ctas { flex-direction: row; gap: 14px; }
  .hero-split-stats { gap: 28px; }
  .hero-split-stat-num { font-size: 32px; }
  .hero-split-stat-label { font-size: 12px; }
  .hero-showcase { gap: 16px; margin-top: 0; }
  .hero-product-featured .hero-product-img { aspect-ratio: 16 / 12; }
  .hero-product-content { padding: 24px; }
  .hero-product-headline { font-size: 26px; }
  .hero-product-tag { font-size: 14px; }
  .hero-showcase-side { gap: 10px; }
  .hero-product-side { padding: 10px; gap: 14px; }
  .hero-product-img-side { width: 100px; }
  .hero-product-side-name { font-size: 15px; }

  /* STATS */
  .stats { padding: 56px 40px; }
  .stats-inner { grid-template-columns: repeat(4, 1fr); gap: 56px; max-width: 1280px; margin: 0 auto; }
  .stat-num { font-size: clamp(56px, 4.5vw, 72px); }
  .stat-label { font-size: 14px; }

  /* SERVICES */
  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .service-card-img .service-card-photo { aspect-ratio: 4 / 3; }
  .service-card-img .service-icon { width: 48px; height: 48px; bottom: 16px; left: 16px; }
  .service-card-img .service-card-body { padding: 24px; }
  .service-card h3 { font-size: 22px; }

  /* WHY */
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .why-card { padding: 36px 32px; }
  .why-card .big-num { font-size: 96px; line-height: 1; }
  .why-band { margin: 40px 0 36px; }
  .why-band-photo { aspect-ratio: 21 / 8; padding: 36px 40px; }
  .why-band-quote-text { font-size: 26px; max-width: 640px; }

  /* SERVICE CARD IMG */
  .service-card-img .service-card-body { padding: 24px; }
  .why-card h3 { font-size: 19px; margin-top: 4px; }

  /* AIDES */
  .aides { padding: 96px 40px; }
  .aides-inner { max-width: 1280px; margin: 0 auto; }
  .aides-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .aide-row { flex-direction: column; align-items: stretch; padding: 22px 22px 24px; gap: 14px; min-height: 140px; }
  .aide-row > :first-child { order: 2; }
  .aide-row-amount { order: 1; font-size: 32px; line-height: 1; align-self: flex-start; }
  .aide-row-label { font-size: 15px; }
  .aide-row-sub { font-size: 12px; }

  /* TESTIMONIALS */
  .testi-track { padding: 0 40px; }
  .testi-track-inner { max-width: 1280px; margin: 0 auto; }
  .testi-card { width: 420px; }

  /* NEWS */
  .news-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .news-card { border-radius: var(--r-xl); }
  .news-card-img { aspect-ratio: 16 / 10; }

  /* PARRAINAGE */
  .parrainage {
    padding: 96px 64px;
    margin: 40px;
    border-radius: var(--r-2xl);
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .parrainage-side { display: block; }
  .parrainage h2 { font-size: clamp(40px, 3.6vw, 56px); }
  .parrainage .ctas { justify-content: flex-start; }

  /* CTA FINAL / CONTACT */
  .cta-final { padding: 120px 40px; }
  .cta-final-inner { max-width: 1280px; margin: 0 auto; }
  .cta-final-grid { grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: center; }
  .cta-final h2 { font-size: clamp(44px, 3.8vw, 60px); }
  .contact-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; max-width: 1280px; margin: 0 auto; }

  /* SERVICE PAGES */
  .svc-hero { padding: 40px 40px 80px; }
  .timeline { padding-left: 0; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
  .timeline::before { display: none; }
  .timeline-step { padding: 0 20px 0 0; position: relative; }
  .timeline-step::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 0;
    top: 14px;
    height: 2px;
    background: linear-gradient(90deg, color-mix(in oklab, var(--c-primary) 40%, transparent), color-mix(in oklab, var(--c-primary) 10%, transparent));
  }
  .timeline-step:last-child::before { display: none; }
  .timeline-step:last-child { padding-right: 0; }
  .timeline-marker { position: relative; left: auto; top: auto; margin-bottom: 16px; }
  .timeline-step h4 { font-size: 17px; }
  .timeline-step p { font-size: 14px; }
  .svc-hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
  .svc-hero h1 { font-size: clamp(40px, 3.6vw, 56px); line-height: 1.05; letter-spacing: -0.02em; }
  .svc-hero .lede { font-size: 18px; max-width: 520px; }
  .svc-hero-cta { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .svc-hero-cta .btn { width: auto; }
  .svc-hero-visual { aspect-ratio: 4 / 5; max-height: 560px; }

  /* FOOTER */
  .footer { padding: 80px 40px 40px; }
  .footer-inner { max-width: 1280px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 56px; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; padding-top: 32px; }

  /* SECTION HEADERS */
  .section-inner > .eyebrow,
  .section > .eyebrow { font-size: 13px; }
  h2.section-title { font-size: clamp(40px, 3.6vw, 56px); line-height: 1.05; letter-spacing: -0.02em; max-width: 880px; }

  /* VALUES (about) */
  .values-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }

  /* SYSTEM page grids */
  .swatch-grid { grid-template-columns: repeat(4, 1fr); }
  .cert-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============ LARGE DESKTOP (1280+) ============ */
@media (min-width: 1280px) {
  .section { padding: 140px 40px; }
  .services-grid { gap: 28px; }
  .aides-grid { gap: 24px; }
}

/* ============ Brand logo (real artwork) ============ */
.logo-img {
  height: 36px;
  width: auto;
  display: block;
}
@media (min-width: 1024px) {
  .logo-img { height: 40px; }
}
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  background: white;
  padding: 8px 14px;
  border-radius: 10px;
}

/* ============ Legal pages ============ */
.legal-hero { background: var(--c-bg); padding: 32px 20px 48px; border-bottom: 1px solid var(--c-line); }
.legal-hero h1 { letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 12px; }
.legal-meta {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px;
  font-size: 13px; color: var(--c-ink-3);
}
.legal-meta span { display: inline-flex; align-items: center; gap: 6px; }
.legal-body { padding-top: 48px; padding-bottom: 96px; }
.legal-grid { display: grid; gap: 32px; }
.legal-toc { display: none; }
.legal-content {
  font-size: 15px; line-height: 1.7; color: var(--c-ink-2);
  max-width: 760px;
}
.legal-content h2 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-ink);
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
  scroll-margin-top: 96px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 8px 0 18px 20px; padding: 0; }
.legal-content ul li { margin-bottom: 8px; list-style: disc; }
.legal-content strong { color: var(--c-ink); font-weight: 600; }
.legal-content a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--c-accent-700); }

.legal-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--c-bg-alt);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  margin: 16px 0 24px;
  overflow: hidden;
}
.legal-info-grid > div {
  padding: 12px 16px;
  display: flex; justify-content: space-between; gap: 16px;
  border-bottom: 1px solid var(--c-line);
  font-size: 14px;
}
.legal-info-grid > div:last-child { border-bottom: none; }
.legal-info-key { color: var(--c-ink-3); font-size: 13px; }
.legal-info-val { color: var(--c-ink); font-weight: 600; font-family: var(--f-display); }

.legal-data-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 16px 0 20px;
}
.legal-data-card {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
}
.legal-data-card svg { color: var(--c-primary); flex-shrink: 0; margin-top: 2px; }
.legal-data-card strong { display: block; font-size: 14px; color: var(--c-ink); margin-bottom: 2px; font-family: var(--f-display); }
.legal-data-card span { font-size: 13px; color: var(--c-ink-3); }

/* ============ Cookies — table & prefs ============ */
.cookie-table {
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 16px 0 24px;
  background: white;
}
.cookie-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-line);
  font-size: 13px;
}
.cookie-row:last-child { border-bottom: none; }
.cookie-row.cookie-head {
  background: var(--c-bg-alt);
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--c-ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cookie-row > div:first-child { color: var(--c-ink); font-weight: 600; }
.cookie-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cookie-pill.on { background: color-mix(in oklab, var(--c-secondary) 15%, transparent); color: var(--c-secondary-700); }
.cookie-pill.off { background: var(--c-bg-alt); color: var(--c-ink-3); }

.cookie-prefs {
  background: var(--c-bg-alt);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  margin: 16px 0 24px;
}
.cookie-pref-row {
  padding: 16px;
  display: flex; gap: 16px; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--c-line);
}
.cookie-pref-row:last-child { border-bottom: none; }
.cookie-pref-name { font-family: var(--f-display); font-weight: 600; color: var(--c-ink); margin-bottom: 4px; font-size: 15px; }
.cookie-pref-desc { font-size: 13px; color: var(--c-ink-3); }
.toggle-locked {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--f-display);
  color: var(--c-ink-3);
  white-space: nowrap;
}
.toggle {
  width: 44px; height: 24px;
  background: var(--c-line);
  border: none;
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s var(--ease-out);
}
.toggle span {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: transform 0.2s var(--ease-out);
}
.toggle.on { background: var(--c-primary); }
.toggle.on span { transform: translateX(20px); }
.cookie-actions {
  padding: 16px;
  display: flex; flex-wrap: wrap; gap: 8px;
  background: white;
  border-top: 1px solid var(--c-line);
}
.cookie-actions .btn { font-size: 13px; padding: 10px 16px; }

.cookie-pref-row .cookie-pref-name svg,
.cookie-banner-row-name svg { vertical-align: middle; margin-right: 4px; }

/* ============ Cookie banner (sticky bottom) ============ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px; right: 16px;
  z-index: 1500;
  background: white;
  border-radius: var(--r-xl);
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.25), 0 0 0 1px var(--c-line);
  animation: cookieRise 0.5s var(--ease-out);
}
@keyframes cookieRise {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}
.cookie-banner-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, color-mix(in oklab, var(--c-accent) 18%, transparent), color-mix(in oklab, var(--c-accent) 4%, transparent));
  color: var(--c-accent-700);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cookie-banner-text h3 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.cookie-banner-text p {
  font-size: 13px;
  color: var(--c-ink-2);
  line-height: 1.5;
}
.cookie-banner-text a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.cookie-banner-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cookie-banner-actions .btn { flex: 1; min-width: 120px; }
.btn-sm { padding: 9px 14px; font-size: 13px; }

/* Custom variant */
.cookie-banner-custom {
  bottom: auto;
  top: 50%;
  left: 16px; right: 16px;
  transform: translateY(-50%);
  max-width: 520px;
  margin: 0 auto;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}
@keyframes cookieRise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner-custom { animation: none; }
.cookie-banner-header {
  display: flex; gap: 12px; align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 8px;
  position: relative;
}
.cookie-banner-header h3 { font-family: var(--f-display); font-size: 17px; color: var(--c-ink); margin-bottom: 2px; }
.cookie-banner-header p { font-size: 13px; color: var(--c-ink-3); }
.cookie-banner-close {
  position: absolute; top: -4px; right: -4px;
  width: 32px; height: 32px;
  border-radius: 8px;
  border: none;
  background: var(--c-bg-alt);
  color: var(--c-ink-2);
  display: grid; place-items: center;
  cursor: pointer;
}
.cookie-banner-close:hover { background: var(--c-line); color: var(--c-ink); }
.cookie-banner-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 8px; }
.cookie-banner-row {
  padding: 12px 0;
  display: flex; gap: 12px; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--c-line);
}
.cookie-banner-row:last-child { border-bottom: none; }
.cookie-banner-row-name {
  font-family: var(--f-display); font-weight: 600; font-size: 14px; color: var(--c-ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.cookie-banner-row-name svg { color: var(--c-primary); }
.cookie-banner-row-desc { font-size: 12px; color: var(--c-ink-3); margin-top: 2px; }

/* ============ Promo popup ============ */
.promo-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1600;
  display: grid; place-items: center;
  padding: 16px;
  animation: promoFade 0.3s var(--ease-out);
}
@keyframes promoFade { from { opacity: 0; } to { opacity: 1; } }
.promo-modal {
  background: white;
  border-radius: var(--r-2xl);
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 32px 64px -16px rgba(15, 23, 42, 0.4);
  position: relative;
  animation: promoPop 0.4s var(--ease-out);
}
@keyframes promoPop { from { transform: translateY(24px) scale(0.97); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.promo-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  color: var(--c-ink-2);
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.promo-close:hover { background: white; color: var(--c-ink); }
.promo-visual {
  height: 180px;
  background: linear-gradient(135deg, #264863 0%, #264863 60%, #6f8aa0 100%);
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.promo-visual::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.4), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(46, 204, 113, 0.2), transparent 50%);
}
.promo-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--c-accent-700);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.promo-sun { animation: promoSpin 60s linear infinite; }
@keyframes promoSpin { to { transform: rotate(360deg); } }
.promo-body { padding: 28px 24px 24px; }
.promo-eyebrow {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent-700);
  margin-bottom: 8px;
}
.promo-body h2 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.promo-body p {
  font-size: 14px;
  color: var(--c-ink-2);
  line-height: 1.55;
  margin-bottom: 16px;
}
.promo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.promo-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--c-ink-2);
  font-weight: 500;
}
.promo-list li svg { color: var(--c-secondary-700); flex-shrink: 0; }
.promo-actions { display: flex; flex-direction: column; gap: 8px; }
.promo-actions .btn { width: 100%; }
.promo-fine {
  margin-top: 14px;
  font-size: 11px;
  color: var(--c-ink-3);
  text-align: center;
}

/* ============ Live horaires (improved) ============ */
.horaires-compact {
  display: inline-flex; align-items: center; gap: 6px;
  flex-wrap: wrap;
}
.horaires-card {
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.horaires-header {
  display: flex; align-items: center; gap: 12px;
}
.horaires-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--c-bg-alt);
  color: var(--c-ink-2);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.horaires-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.horaires-status.open {
  background: color-mix(in oklab, var(--c-secondary) 15%, transparent);
  color: var(--c-secondary-700);
}
.horaires-status.closed {
  background: color-mix(in oklab, #e74c3c 12%, transparent);
  color: #c0392b;
}
.horaires-status .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px color-mix(in oklab, currentColor 25%, transparent);
}
.horaires-status.open .dot { animation: statusPulse 2s ease-in-out infinite; }
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in oklab, currentColor 25%, transparent); }
  50% { box-shadow: 0 0 0 7px color-mix(in oklab, currentColor 8%, transparent); }
}
.horaires-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px;
}
.horaires-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
}
.horaires-list li.today {
  background: color-mix(in oklab, var(--c-primary) 6%, transparent);
  font-weight: 600;
}
.horaires-list li.today .day { color: var(--c-primary); }
.horaires-list .day {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--c-ink);
  text-transform: capitalize;
}
.horaires-list .hours {
  color: var(--c-ink-3);
  font-variant-numeric: tabular-nums;
}
.horaires-list li.today .hours { color: var(--c-primary); font-weight: 600; }
.horaires-next {
  font-size: 12px;
  color: var(--c-ink-3);
  padding-top: 10px;
  border-top: 1px dashed var(--c-line);
  display: flex; align-items: center; gap: 6px;
}
.horaires-next strong { color: var(--c-ink); font-weight: 600; }

/* Tablet+ legal */
@media (min-width: 1024px) {
  .legal-hero { padding: 56px 40px 64px; }
  .legal-body { padding: 64px 40px 120px; max-width: 1200px; margin: 0 auto; }
  .legal-grid {
    grid-template-columns: 220px 1fr;
    gap: 64px;
  }
  .legal-toc {
    display: block;
    position: sticky;
    top: 96px;
    align-self: start;
    font-size: 13px;
  }
  .legal-toc-label {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-ink-3);
    margin-bottom: 12px;
  }
  .legal-toc-link {
    display: block;
    padding: 7px 12px;
    color: var(--c-ink-2);
    text-decoration: none;
    border-radius: 8px;
    border-left: 2px solid transparent;
    margin-bottom: 2px;
    line-height: 1.35;
  }
  .legal-toc-link:hover { background: var(--c-bg-alt); color: var(--c-ink); border-left-color: var(--c-primary); }
  .legal-toc-help {
    display: flex; gap: 10px; align-items: flex-start;
    margin-top: 24px;
    padding: 14px;
    background: var(--c-bg-alt);
    border-radius: var(--r-lg);
    color: var(--c-primary);
    text-decoration: none;
  }

  .legal-info-grid { grid-template-columns: 1fr 1fr; }
  .legal-info-grid > div { border-right: 1px solid var(--c-line); }
  .legal-info-grid > div:nth-child(2n) { border-right: none; }
  .legal-info-grid > div:nth-last-child(-n+2) { border-bottom: none; }
  .legal-info-grid > div:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--c-line); }

  .legal-data-grid { grid-template-columns: 1fr 1fr; }
  .cookie-row { grid-template-columns: 180px 1fr 100px 140px; align-items: center; }
  .cookie-row > div:first-child { font-size: 14px; }

  .cookie-banner {
    bottom: 24px;
    left: auto;
    right: 24px;
    max-width: 480px;
  }
  .cookie-banner-inner { padding: 22px; flex-direction: row; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
  .cookie-banner-text { flex: 1; min-width: 0; }
  .cookie-banner-actions { width: 100%; justify-content: flex-end; flex-wrap: nowrap; }
  .cookie-banner-actions .btn { flex: 0 0 auto; }

  .promo-body { padding: 32px 32px 28px; }
  .promo-body h2 { font-size: 28px; }
  .promo-actions { flex-direction: row; }
  .promo-actions .btn { width: auto; flex: 1; }
  .promo-actions .btn-ghost { flex: 0 0 auto; }
  .promo-visual { height: 200px; }
}

/* ============ Careers / Nous rejoindre ============ */
.careers-hero {
  background: linear-gradient(135deg, #1b3448 0%, #264863 50%, #1b3448 100%);
  color: white;
  padding: 56px 20px 64px;
  position: relative;
  overflow: hidden;
}
.careers-hero::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.careers-hero::after {
  content: "";
  position: absolute;
  bottom: -40%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.careers-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  display: grid;
  gap: 32px;
}
.careers-hero h1 {
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: white;
}
.careers-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.careers-hero-stat-num {
  font-family: var(--f-display);
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.careers-hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.careers-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.careers-hero-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.4);
}
.careers-hero-img-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.careers-hero-img-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 37, 71, 0.6) 100%);
}
.careers-hero-img-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--c-ink);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--f-display);
  display: inline-flex; align-items: center; gap: 6px;
  backdrop-filter: blur(8px);
  z-index: 1;
}

/* Values */
.careers-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.careers-value {
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: all 0.2s var(--ease-out);
}
.careers-value:hover {
  border-color: var(--c-primary);
  transform: translateY(-2px);
}
.careers-value-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--c-primary) 10%, transparent);
  color: var(--c-primary);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.careers-value h3 {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.careers-value p {
  font-size: 14px;
  color: var(--c-ink-2);
  line-height: 1.5;
}

/* Offers */
.careers-offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.careers-offer {
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  transition: all 0.25s var(--ease-out);
}
.careers-offer:hover {
  border-color: var(--c-primary);
  box-shadow: 0 12px 24px -8px rgba(15, 23, 42, 0.1);
}
.careers-offer.urgent {
  border-color: color-mix(in oklab, var(--c-accent) 50%, var(--c-line));
}
.careers-offer-head {
  margin-bottom: 14px;
}
.careers-offer-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 12px;
}
.careers-offer-type {
  background: color-mix(in oklab, var(--c-primary) 10%, transparent);
  color: var(--c-primary);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.careers-offer-urgent {
  background: color-mix(in oklab, var(--c-accent) 15%, transparent);
  color: var(--c-accent-700);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 5px;
}
.careers-offer-urgent .dot {
  width: 6px; height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}
.careers-offer h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.careers-offer-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 13px;
  color: var(--c-ink-3);
}
.careers-offer-meta span {
  display: inline-flex; align-items: center; gap: 5px;
}
.careers-offer-desc {
  font-size: 14px;
  color: var(--c-ink-2);
  line-height: 1.6;
  margin-bottom: 16px;
  text-wrap: pretty;
}
.careers-offer-skills {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 18px;
}
.careers-offer-skill {
  background: var(--c-bg-alt);
  color: var(--c-ink-2);
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--c-line);
}
.careers-offer-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}

/* Process */
.careers-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.careers-process-step {
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 22px;
  position: relative;
}
.careers-process-num {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--c-primary);
  opacity: 0.25;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.careers-process-step h3 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 6px;
}
.careers-process-step p {
  font-size: 14px;
  color: var(--c-ink-2);
  line-height: 1.55;
}
.careers-process-arrow {
  display: none;
}

/* File input (careers) */
.careers-file-input {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border: 2px dashed var(--c-line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
  font-size: 14px;
  color: var(--c-ink-3);
  background: var(--c-bg);
}
.careers-file-input:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: color-mix(in oklab, var(--c-primary) 4%, transparent);
}
.careers-file-input svg { color: var(--c-primary); }

@media (min-width: 768px) {
  .careers-values { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .careers-offers { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .careers-process { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (min-width: 1024px) {
  .careers-hero { padding: 80px 40px 96px; }
  .careers-hero-inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .careers-hero h1 { font-size: clamp(48px, 5vw, 64px); }
  .careers-hero-stat-num { font-size: 40px; }

  .careers-values { grid-template-columns: repeat(4, 1fr); }

  .careers-process { grid-template-columns: repeat(4, 1fr); position: relative; }
  .careers-process-arrow {
    display: grid;
    place-items: center;
    position: absolute;
    top: 60px;
    right: -12px;
    width: 24px; height: 24px;
    background: white;
    border: 1px solid var(--c-line);
    border-radius: 50%;
    color: var(--c-primary);
    z-index: 1;
  }

  .careers-offer { padding: 28px; }
  .careers-offer h3 { font-size: 22px; }
}

/* ============ Hero video ============ */
.visual-photo-video-wrap { background: #f6f8f5; position: relative; overflow: hidden; }
.hero-cloudflare-video {
  position: relative;
  overflow: hidden;
  background-color: #f6f8f5;
  background-position: center;
  background-size: cover;
}

.hero-cloudflare-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  opacity: 0;
  transition: none;
}

.hero-cloudflare-video.is-loaded iframe {
  opacity: 1;
}

.hero-cloudflare-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-cloudflare-video.is-loaded video {
  opacity: 1;
}

.visual-photo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.visual-photo-video-wrap > *:not(.visual-photo-video) { position: absolute; z-index: 2; }
.visual-photo-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-fullbleed-video-wrap { background: #f6f8f5; }
.hero-fullbleed-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.alclima-hero-media-video {
  position: relative;
  pointer-events: none;
}

/* ============ Service: configurations & audiences ============ */
.config-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.config-card {
  position: relative;
  padding: 22px 20px 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.config-card:hover {
  border-color: color-mix(in oklab, var(--svc-color, var(--c-primary)) 35%, var(--c-line));
  transform: translateY(-2px);
}
.config-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--svc-color, var(--c-primary));
  color: white;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 50px;
}
.config-tag {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 50px;
  border: 1px solid;
  margin-bottom: 14px;
}
.config-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  color: var(--c-ink);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.config-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.config-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--c-ink-2);
  line-height: 1.5;
}
.config-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.audience-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 14px;
}
.audience-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.audience-label {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  color: var(--c-ink);
}

@media (min-width: 768px) {
  .config-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .config-card { padding: 26px 24px 24px; }
  .config-title { font-size: 20px; }
  .audience-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .audience-card { flex-direction: column; align-items: flex-start; padding: 22px; gap: 14px; }
  .audience-label { font-size: 15px; }
}
@media (min-width: 1024px) {
  .config-grid { grid-template-columns: repeat(4, 1fr); }
  .config-card { padding: 28px 24px 26px; }
}

/* ============ UI UX Pro Max refresh ============ */
:root {
  --c-bg: #F7FAF7;
  --c-bg-alt: #EEF7F1;
  --c-surface: #FFFFFF;
  --c-surface-2: #F8FAFC;
  --c-ink: #1b3448;
  --c-ink-2: #243833;
  --c-ink-3: #50645F;
  --c-ink-4: #71837E;
  --c-line: #DCE8E1;
  --c-line-strong: #BFD5CA;
  --sh-sm: 0 1px 2px rgba(11, 31, 26, 0.06), 0 1px 3px rgba(11, 31, 26, 0.04);
  --sh-md: 0 14px 34px rgba(11, 31, 26, 0.10);
  --sh-lg: 0 24px 60px rgba(11, 31, 26, 0.14);
  --sh-xl: 0 32px 90px rgba(11, 31, 26, 0.18);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 215, 0, 0.12), transparent 26rem),
    radial-gradient(circle at 95% 8%, rgba(135, 206, 235, 0.18), transparent 30rem),
    var(--c-bg);
  color: var(--c-ink-2);
}

h1, h2, h3, h4,
.btn,
.section-eyebrow,
.nav-link,
.service-card .arrow,
.footer-col h4,
.config-title {
  letter-spacing: 0;
}

.app {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.58) 0%, rgba(255,255,255,0) 36rem),
    transparent;
}

.header {
  top: 10px;
  margin: 0 10px;
  border-bottom: 0;
  z-index: 80;
}

.header-inner {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(191, 213, 202, 0.82);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(11, 31, 26, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.header.scrolled {
  background: transparent;
  border-bottom-color: transparent;
}

.logo-img {
  height: 34px;
}

.nav-link {
  color: var(--c-ink-2);
  font-weight: 650;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--c-primary);
  background: rgba(31, 111, 84, 0.08);
  outline: none;
}

.dropdown,
.mobile-menu,
.modal,
.quote-inline,
.cta-final-info,
.service-card,
.why-card,
.testi-card,
.news-card,
.contact-form,
.contact-info-card,
.cert-card,
.value-card,
.faq-item,
.config-card,
.audience-card {
  box-shadow: var(--sh-sm);
}

.dropdown {
  border-radius: 18px;
}

.dropdown-item:hover,
.dropdown-item:focus-visible {
  background: rgba(31, 111, 84, 0.08);
  outline: none;
}

.btn {
  min-height: 46px;
  border-radius: 12px;
  transition: transform 180ms var(--ease-out), background 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out), color 220ms var(--ease-out);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--c-accent), #c8ad00);
  box-shadow: 0 14px 26px -10px rgba(249, 115, 22, 0.65);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #c8ad00, #9b8500);
  box-shadow: 0 18px 36px -12px rgba(249, 115, 22, 0.75);
  outline: none;
}

.btn-secondary {
  background: rgba(255,255,255,0.68);
  border-color: rgba(31, 111, 84, 0.42);
  color: var(--c-primary);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  outline: none;
}

.pill {
  background: rgba(255,255,255,0.82);
  border-color: var(--c-line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.hero-split {
  background:
    linear-gradient(135deg, rgba(238, 247, 241, 0.94), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 72% 12%, rgba(255, 215, 0, 0.20), transparent 22rem);
  border-bottom: 1px solid var(--c-line);
}

.hero-split-eyebrow {
  color: var(--c-primary);
  font-weight: 700;
}

.hero-split h1 {
  color: var(--c-ink);
  max-width: 12ch;
}

.hero-split-accent {
  color: var(--c-primary);
  font-style: normal;
}

.hero-split .lede,
.hero-editorial .lede,
.section-lede {
  color: var(--c-ink-3);
}

.hero-split-stats {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--sh-sm);
}

.hero-product-featured,
.hero-product-side,
.service-card,
.news-card,
.testi-card,
.why-card,
.aide-row,
.quote-inline {
  border-color: var(--c-line);
}

.hero-product-featured {
  box-shadow: 0 24px 58px -24px rgba(11, 31, 26, 0.28);
}

.hero-product-featured .hero-product-img::before {
  background:
    linear-gradient(180deg, rgba(11, 31, 26, 0.08) 0%, rgba(11, 31, 26, 0.28) 48%, rgba(11, 31, 26, 0.90) 100%);
}

.hero-product-overlay-tag {
  color: var(--c-primary);
  border: 1px solid rgba(31, 111, 84, 0.16);
}

.hero-product-side:hover,
.service-card:hover,
.news-card:hover,
.testi-card:hover,
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.stats {
  background:
    linear-gradient(135deg, #1b3448 0%, #264863 58%, #60bd4f 125%);
}

.stats::before {
  background: radial-gradient(circle, rgba(255, 215, 0, 0.22) 0%, transparent 58%);
}

.stat-value .unit {
  color: #FDE68A;
}

.section {
  position: relative;
}

.section-eyebrow {
  color: var(--c-primary);
}

.section-eyebrow::before {
  background: var(--c-accent);
}

.section-title {
  color: var(--c-ink);
}

.service-card {
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
}

.service-card-img .service-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(255,255,255,0.16), transparent 15rem);
  pointer-events: none;
}

.service-card h3,
.news-card h3,
.why-card h3 {
  line-height: 1.18;
}

.why-band {
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 30px 70px -28px rgba(11, 31, 26, 0.40);
}

.why-card {
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.why-card:hover {
  border-color: rgba(31, 111, 84, 0.28);
}

.why-num {
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  -webkit-background-clip: text;
  background-clip: text;
}

.aides {
  background:
    linear-gradient(135deg, #1b3448 0%, #264863 56%, #0E7490 132%);
}

.aides::before {
  background: radial-gradient(circle, rgba(255, 215, 0, 0.20) 0%, transparent 62%);
}

.aide-row {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}

.aide-row-amount,
.aides h2 strong {
  color: #FDE68A;
}

.testi-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(238,247,241,0.76) 100%);
}

.testi-card {
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.testi-avatar {
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
}

.testi-dot {
  cursor: pointer;
}

.news-card {
  background: rgba(255,255,255,0.94);
}

.parrainage {
  background:
    radial-gradient(circle at 82% 12%, rgba(255,255,255,0.30), transparent 18rem),
    linear-gradient(135deg, #ffde17 0%, #c8ad00 54%, #264863 150%);
  box-shadow: 0 28px 70px -34px rgba(249, 115, 22, 0.72);
}

.parrainage-reward {
  align-items: flex-start;
}

.cta-final {
  background:
    linear-gradient(180deg, rgba(238,247,241,0.75), rgba(247,250,247,1));
}

.quote-inline {
  position: relative;
  overflow: hidden;
}

.quote-inline::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-secondary), var(--c-accent));
}

.form-input,
.service-pick {
  background: #fff;
}

.form-input:focus,
.service-pick:focus-visible,
.faq-q:focus-visible,
.testi-dot:focus-visible,
.burger:focus-visible,
.modal-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(31, 111, 84, 0.16);
  border-color: var(--c-primary);
}

.footer {
  background:
    radial-gradient(circle at 20% -10%, rgba(31, 111, 84, 0.45), transparent 26rem),
    #081612;
}

.footer-logo-img {
  border-radius: 12px;
}

@media (max-width: 767px) {
  .header {
    top: 8px;
    margin: 0 8px;
  }

  .header-inner {
    padding: 10px 12px;
    border-radius: 16px;
  }

  .logo-img {
    height: 30px;
  }

  .mobile-menu {
    inset: 76px 8px 8px;
    border: 1px solid var(--c-line);
    border-radius: 18px;
    box-shadow: var(--sh-lg);
  }

  .hero,
  .hero-split,
  .hero-editorial {
    padding-top: 42px;
  }

  .hero-split h1 {
    max-width: 11ch;
  }

  .hero-split-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-product-side {
    grid-template-columns: 76px 1fr auto;
  }

  .hero-product-img-side {
    width: 76px;
  }

  .btn-lg {
    width: 100%;
    white-space: normal;
  }

  .service-aide {
    max-width: calc(100% - 96px);
    text-align: right;
  }

  .parrainage {
    margin: 16px 12px;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 12px 18px;
  }

  .logo-img {
    height: 38px;
  }

  .hero-split {
    border: 1px solid rgba(191, 213, 202, 0.72);
    border-radius: 28px;
    margin-top: 24px;
    box-shadow: 0 30px 90px -58px rgba(11, 31, 26, 0.42);
  }

  .hero-split h1 {
    font-size: clamp(50px, 4.5vw, 68px);
  }

  .services-grid,
  .why-grid,
  .news-grid {
    align-items: stretch;
  }

  .service-card-img .service-card-body,
  .news-body {
    min-height: 210px;
  }

  .testi-card {
    min-height: 250px;
  }
}

/* ============ Responsive hero banner adapted for Alclima ============ */
.alclima-hero-banner {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 18px);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 104px 20px 32px;
  background: #ffffff;
}

.alclima-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
  filter: saturate(1.06) contrast(1.04);
}

.alclima-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 36%, rgba(31, 111, 84, 0.28), transparent 24rem),
    linear-gradient(180deg, rgba(5, 13, 11, 0.45) 0%, rgba(5, 13, 11, 0.72) 46%, rgba(5, 13, 11, 0.92) 100%),
    linear-gradient(90deg, rgba(5, 13, 11, 0.68), rgba(5, 13, 11, 0.24), rgba(5, 13, 11, 0.70));
}

.alclima-hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.alclima-hero-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  text-align: center;
  color: white;
}

.alclima-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255,255,255,0.90);
  font-size: 13px;
  font-weight: 650;
  animation: hero-entrance 0.8s var(--ease-out) both;
}

.alclima-hero-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  min-width: 42px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--c-primary);
  font-size: 12px;
  font-weight: 800;
}

.alclima-hero-banner h1 {
  margin: 28px auto 0;
  max-width: 980px;
  color: white;
  font-size: clamp(48px, 8.4vw, 116px);
  line-height: 0.92;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-shadow: 0 18px 60px rgba(0,0,0,0.35);
  animation: hero-entrance 0.85s var(--ease-out) 0.08s both;
}

.alclima-hero-lede {
  max-width: 720px;
  margin: 28px auto 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  animation: hero-entrance 0.85s var(--ease-out) 0.16s both;
}

.alclima-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  animation: hero-entrance 0.85s var(--ease-out) 0.24s both;
}

.alclima-hero-actions .btn-primary {
  min-height: 54px;
  padding-inline: 24px;
}

.alclima-hero-play {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 650;
  transition: background 220ms var(--ease-out), transform 180ms var(--ease-out), border-color 220ms var(--ease-out);
}

.alclima-hero-play span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.92);
  color: var(--c-primary);
}

.alclima-hero-play:hover,
.alclima-hero-play:focus-visible {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
  outline: none;
}

.alclima-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin: 38px auto 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: hero-entrance 0.85s var(--ease-out) 0.32s both;
}

.alclima-hero-stats div {
  padding: 18px 20px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.alclima-hero-stats div:first-child {
  border-left: 0;
}

.alclima-hero-stats strong {
  display: block;
  color: white;
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  font-weight: 800;
}

.alclima-hero-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.66);
  font-size: 12px;
}

.alclima-hero-partners {
  margin-top: 56px;
  animation: hero-entrance 0.85s var(--ease-out) 0.40s both;
}

.alclima-hero-partners p {
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}

.alclima-hero-partners > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.alclima-hero-partners button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 650;
  transition: background 220ms var(--ease-out), color 220ms var(--ease-out), transform 180ms var(--ease-out);
}

.alclima-hero-partners button:hover,
.alclima-hero-partners button:focus-visible {
  transform: translateY(-1px);
  color: white;
  background: rgba(255,255,255,0.14);
  outline: none;
}

@media (max-width: 767px) {
  .alclima-hero-banner {
    min-height: 100svh;
    padding: 118px 20px 44px;
    place-items: start center;
  }

  .alclima-hero-bg {
    object-position: center top;
  }

  .alclima-hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 13, 11, 0.42) 0%, rgba(5, 13, 11, 0.78) 42%, rgba(5, 13, 11, 0.96) 100%);
  }

  .alclima-hero-inner {
    text-align: left;
    max-width: 100%;
    overflow: hidden;
  }

  .alclima-hero-badge {
    font-size: 12px;
    line-height: 1.25;
  }

  .alclima-hero-banner h1 {
    margin-top: 24px;
    max-width: 100%;
    font-size: clamp(40px, 12vw, 48px);
    line-height: 1;
    overflow-wrap: normal;
  }

  .alclima-hero-lede {
    margin-top: 22px;
    font-size: 17px;
  }

  .alclima-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .alclima-hero-actions .btn-primary,
  .alclima-hero-play {
    width: 100%;
    justify-content: center;
  }

  .alclima-hero-stats {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .alclima-hero-stats div {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .alclima-hero-stats div:first-child {
    border-top: 0;
  }

  .alclima-hero-partners {
    margin-top: 34px;
  }

  .alclima-hero-partners > div {
    justify-content: flex-start;
  }
}

/* ============ Header adapted to immersive hero ============ */
.header-wrap {
  position: sticky;
  top: 0;
  z-index: 90;
  pointer-events: none;
}

.header {
  position: relative;
  top: 10px;
  pointer-events: auto;
}

.header-inner {
  transition:
    background 240ms var(--ease-out),
    border-color 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out),
    color 240ms var(--ease-out);
}

.header.on-hero:not(.scrolled) .header-inner {
  background: rgba(8, 22, 18, 0.44);
  border-color: rgba(255,255,255,0.16);
  color: white;
  box-shadow: 0 18px 46px rgba(0,0,0,0.18);
}

.header.on-hero:not(.scrolled) .logo {
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
}

.header.on-hero:not(.scrolled) .nav-link {
  color: rgba(255,255,255,0.84);
}

.header.on-hero:not(.scrolled) .nav-link:hover,
.header.on-hero:not(.scrolled) .nav-link:focus-visible {
  color: white;
  background: rgba(255,255,255,0.12);
}

.header.on-hero:not(.scrolled) .btn-primary {
  background: rgba(255,255,255,0.94);
  color: var(--c-primary);
  box-shadow: 0 16px 34px -18px rgba(255,255,255,0.75);
}

.header.on-hero:not(.scrolled) .btn-primary:hover,
.header.on-hero:not(.scrolled) .btn-primary:focus-visible {
  background: white;
  color: var(--c-primary);
}

.header.on-hero:not(.scrolled) .burger {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
}

.header.on-hero:not(.scrolled) .burger-bars span {
  background: white;
}

.header.scrolled .header-inner,
.header.off-hero .header-inner,
.header.menu-open .header-inner {
  background: rgba(255,255,255,0.90);
  border-color: rgba(191, 213, 202, 0.88);
  color: var(--c-ink);
  box-shadow: 0 16px 38px rgba(11, 31, 26, 0.08);
}

.header.scrolled .logo,
.header.off-hero .logo,
.header.menu-open .logo {
  padding: 0;
  background: transparent;
}

.header.scrolled .nav-link,
.header.off-hero .nav-link,
.header.menu-open .nav-link {
  color: var(--c-ink-2);
}

.header.scrolled .btn-primary,
.header.off-hero .btn-primary,
.header.menu-open .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--c-accent), #c8ad00);
}

.mobile-menu {
  pointer-events: auto;
}

.mobile-menu.open {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,250,247,0.98));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-menu-link,
.mobile-service-card {
  min-height: 56px;
}

@media (min-width: 768px) {
  .header-wrap {
    position: sticky;
  }

  .header {
    margin: 0 12px;
  }

  .header-inner {
    min-height: 58px;
  }
}

@media (max-width: 767px) {
  .header-wrap {
    position: sticky;
  }

  .header {
    top: 8px;
  }

  .header-inner {
    min-height: 58px;
  }

  .header.on-hero:not(.scrolled) .logo {
    padding: 3px 8px;
  }

  .header-quote-btn {
    min-height: 42px;
    padding: 9px 13px;
    max-width: 132px;
    white-space: nowrap;
  }

  .mobile-menu {
    max-height: calc(100svh - 92px);
  }
}

/* ============ Clean Alclima hero reset ============ */
.header.on-hero:not(.scrolled) .header-inner,
.header.scrolled .header-inner,
.header.off-hero .header-inner,
.header.menu-open .header-inner {
  background: rgba(255,255,255,0.92);
  border-color: rgba(191, 213, 202, 0.88);
  color: var(--c-ink);
  box-shadow: 0 16px 42px rgba(11, 31, 26, 0.10);
}

.header.on-hero:not(.scrolled) .logo {
  padding: 0;
  background: transparent;
}

.header.on-hero:not(.scrolled) .nav-link {
  color: var(--c-ink-2);
}

.header.on-hero:not(.scrolled) .nav-link:hover,
.header.on-hero:not(.scrolled) .nav-link:focus-visible {
  color: var(--c-primary);
  background: rgba(31, 111, 84, 0.08);
}

.header.on-hero:not(.scrolled) .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--c-accent), #c8ad00);
  box-shadow: 0 14px 26px -10px rgba(249, 115, 22, 0.65);
}

.header.on-hero:not(.scrolled) .burger {
  background: #fff;
  border-color: var(--c-line);
}

.header.on-hero:not(.scrolled) .burger-bars span {
  background: var(--c-ink-2);
}

.alclima-hero-banner {
  min-height: auto;
  display: block;
  padding: 120px 20px 72px;
  background: #ffffff;
  color: var(--c-ink);
}

.alclima-hero-inner {
  width: min(100%, 1280px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 56px;
  text-align: left;
}

.alclima-hero-copy {
  min-width: 0;
}

.alclima-hero-badge {
  background: rgba(255,255,255,0.78);
  border-color: var(--c-line);
  color: var(--c-primary);
  box-shadow: var(--sh-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.alclima-hero-badge span {
  background: var(--c-primary);
  color: white;
}

.alclima-hero-banner h1 {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--c-ink);
  font-size: clamp(48px, 5.8vw, 84px);
  line-height: 0.98;
  font-weight: 800;
  text-shadow: none;
}

.alclima-hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--c-ink-3);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.6;
}

.alclima-hero-actions {
  justify-content: flex-start;
}

.alclima-hero-play {
  color: var(--c-primary);
  background: rgba(255,255,255,0.78);
  border-color: rgba(31, 111, 84, 0.24);
  box-shadow: var(--sh-sm);
}

.alclima-hero-play span {
  color: white;
  background: var(--c-primary);
}

.alclima-hero-play:hover,
.alclima-hero-play:focus-visible {
  background: #fff;
  border-color: rgba(31, 111, 84, 0.38);
}

.alclima-hero-stats {
  max-width: 620px;
  margin: 32px 0 0;
  background: rgba(255,255,255,0.82);
  border-color: var(--c-line);
  box-shadow: var(--sh-sm);
}

.alclima-hero-stats div {
  border-left-color: var(--c-line);
}

.alclima-hero-stats strong {
  color: var(--c-ink);
}

.alclima-hero-stats span {
  color: var(--c-ink-3);
}

.alclima-hero-media {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  background: #1b3448;
  box-shadow: 0 34px 90px -44px rgba(11, 31, 26, 0.64);
  border: 1px solid rgba(191, 213, 202, 0.72);
}

.alclima-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,31,26,0.05) 0%, rgba(11,31,26,0.12) 46%, rgba(11,31,26,0.56) 100%),
    radial-gradient(circle at 20% 12%, rgba(255,255,255,0.18), transparent 18rem);
  pointer-events: none;
}

.alclima-hero-video {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.alclima-hero-media-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  color: white;
  background: rgba(8, 22, 18, 0.58);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.alclima-hero-media-card span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.alclima-hero-media-card strong {
  display: block;
  margin-top: 2px;
  color: white;
  font-family: var(--f-display);
  font-size: 25px;
  line-height: 1.1;
}

.alclima-hero-media-card svg {
  color: #FDE68A;
}

.alclima-hero-partners {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid var(--c-line);
}

.alclima-hero-partners p {
  color: var(--c-ink-3);
}

.alclima-hero-partners > div {
  justify-content: flex-start;
}

.alclima-hero-partners button {
  color: var(--c-ink-2);
  background: rgba(255,255,255,0.78);
  border-color: var(--c-line);
}

.alclima-hero-partners button:hover,
.alclima-hero-partners button:focus-visible {
  color: var(--c-primary);
  background: white;
}

@media (max-width: 1023px) {
  .alclima-hero-banner {
    padding-top: 104px;
  }

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

  .alclima-hero-media {
    min-height: 420px;
  }

}

@media (max-width: 767px) {
  .alclima-hero-banner {
    padding: 98px 20px 44px;
  }

  .alclima-hero-inner {
    text-align: left;
    gap: 28px;
  }

  .alclima-hero-banner h1 {
    font-size: clamp(38px, 11.5vw, 48px);
    line-height: 1.03;
  }

  .alclima-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .alclima-hero-stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }

  .alclima-hero-stats div {
    padding: 12px 10px;
  }

  .alclima-hero-stats strong {
    font-size: 19px;
  }

  .alclima-hero-stats span {
    font-size: 10px;
  }

  .alclima-hero-media {
    min-height: 300px;
    border-radius: 22px;
  }

  .alclima-hero-media-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
  }

  .alclima-hero-media-card strong {
    font-size: 19px;
  }

  .alclima-hero-partners > div {
    justify-content: flex-start;
  }
}

/* ============ Grand UI lift: calmer, premium service site ============ */
:root {
  --c-primary: #264863;
  --c-primary-700: #1b3448;
  --c-primary-300: #6f8aa0;
  --c-secondary: #60bd4f;
  --c-secondary-700: #438d38;
  --c-accent: #ffde17;
  --c-accent-700: #c8ad00;
  --c-accent-300: #ffe86a;
  --c-bg: #F6F8F5;
  --c-bg-alt: #EDF4EE;
  --c-surface: #FFFFFF;
  --c-surface-2: #F9FBFA;
  --c-ink: #0e1b25;
  --c-ink-2: #2B4039;
  --c-ink-3: #60736C;
  --c-line: #DBE8E1;
  --c-line-strong: #B7CEC3;
  --r-lg: 14px;
  --r-xl: 22px;
  --r-2xl: 30px;
  --sh-sm: 0 1px 2px rgba(16, 35, 29, 0.04), 0 1px 8px rgba(16, 35, 29, 0.04);
  --sh-md: 0 18px 50px rgba(16, 35, 29, 0.10);
  --sh-lg: 0 30px 90px rgba(16, 35, 29, 0.14);
}

html,
body {
  background: var(--c-bg);
}

body {
  background:
    linear-gradient(180deg, #FBFCFA 0%, var(--c-bg) 680px, #F8FAF8 100%);
  color: var(--c-ink-2);
}

.app {
  background: transparent;
}

.header {
  top: 12px;
  margin: 0 14px;
}

.header-inner,
.header.on-hero:not(.scrolled) .header-inner,
.header.scrolled .header-inner,
.header.off-hero .header-inner,
.header.menu-open .header-inner {
  max-width: 1360px;
  min-height: 64px;
  padding: 10px 14px 10px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.88);
  border: 0;
  box-shadow: 0 14px 36px rgba(16, 35, 29, 0.10);
}

.logo-img {
  height: 34px;
}

.nav-desktop {
  background: rgba(237, 244, 238, 0.74);
  padding: 4px;
  border: 0;
  border-radius: 999px;
}

.nav-link {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}

.header-quote-btn {
  min-height: 42px;
  border-radius: 999px;
  padding-inline: 18px;
}

.alclima-hero-banner {
  padding: 88px 28px 62px;
  background: #ffffff;
  margin-top: -10px;
}

.alclima-hero-inner {
  max-width: 1360px;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.88fr);
  align-items: start;
  gap: 72px;
}

.alclima-hero-copy {
  padding-top: 28px;
}

.alclima-hero-badge {
  gap: 9px;
  padding: 7px 12px 7px 7px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--c-line);
  color: var(--c-primary);
  font-size: 12.5px;
  font-weight: 800;
}

.alclima-hero-badge span {
  height: 26px;
}

.alclima-hero-banner h1 {
  max-width: 840px;
  margin-top: 26px;
  font-size: clamp(48px, 4.7vw, 70px);
  line-height: 1;
  letter-spacing: -0.015em;
}

.alclima-hero-lede {
  max-width: 610px;
  margin-top: 24px;
  font-size: 18px;
  color: #4E625B;
}

.alclima-hero-actions {
  margin-top: 34px;
  gap: 12px;
}

.alclima-hero-actions .btn-primary {
  min-height: 52px;
  border-radius: 14px;
  padding: 0 22px;
}

.alclima-hero-play {
  min-height: 52px;
  border-radius: 14px;
  padding: 0 18px;
}

.alclima-hero-stats {
  max-width: 610px;
  margin-top: 30px;
  border-radius: 18px;
}

.alclima-hero-stats div {
  padding: 18px 18px;
}

.alclima-hero-stats strong {
  font-size: 28px;
}

.alclima-hero-media {
  min-height: 500px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(15, 94, 74, 0.08), rgba(15, 94, 74, 0.22)),
    #1b3448;
  box-shadow: 0 40px 90px -44px rgba(15, 94, 74, 0.62);
}

.alclima-hero-media::before {
  content: "Installation solaire";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--c-primary);
  background: rgba(255,255,255,0.92);
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 800;
}

.alclima-hero-video {
  transform: scale(1.02);
}

.alclima-hero-media-card {
  border-radius: 16px;
  background: rgba(10, 31, 25, 0.76);
}

.alclima-hero-partners {
  margin-top: -18px;
  padding-top: 26px;
}

.alclima-hero-partners p {
  font-weight: 700;
}

.alclima-hero-partners button {
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: var(--sh-sm);
}

.stats {
  margin: 0;
  padding: 0 28px 70px;
  background: linear-gradient(180deg, #EEF5EF 0%, var(--c-bg) 100%);
  color: var(--c-ink);
}

.stats::before {
  display: none;
}

.stats-inner {
  max-width: 1360px;
  padding: 26px;
  border-radius: 24px;
  background: #0e1b25;
  box-shadow: 0 26px 70px -40px rgba(16,35,29,0.72);
}

.stat {
  padding: 0 18px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.stat:first-child {
  border-left: 0;
}

.stat-value {
  font-size: clamp(34px, 4vw, 50px);
}

.stat-label {
  color: rgba(255,255,255,0.68);
  font-size: 13px;
}

.section {
  max-width: 1360px;
}

.testi-section {
  max-width: 100%;
}

.section-title {
  letter-spacing: -0.012em;
}

.section-lede {
  font-size: 17px;
  line-height: 1.65;
}

.services-grid {
  gap: 18px;
}

.service-card {
  border-radius: 22px;
  border-color: rgba(219,232,225,0.9);
  box-shadow: 0 10px 30px rgba(16,35,29,0.06);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px -36px color-mix(in oklab, var(--service-color) 48%, #0e1b25);
}

.service-card-img .service-card-photo {
  aspect-ratio: 4 / 3.15;
}

.service-card-img .service-card-body {
  padding: 22px 22px 24px;
}

.service-card h3 {
  font-size: 20px;
}

.service-card p {
  font-size: 14.5px;
  line-height: 1.58;
}

.why-band {
  border-radius: 28px;
}

.why-band-photo {
  min-height: 340px;
}

.why-grid {
  margin-top: 22px;
}

.why-card {
  border-radius: 22px;
  border-color: rgba(219,232,225,0.92);
  box-shadow: 0 10px 30px rgba(16,35,29,0.05);
}

.why-num {
  font-size: 52px;
  margin-bottom: 10px;
}

.aides {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 107, 43, 0.18), transparent 30rem),
    linear-gradient(135deg, #0e1b25 0%, #264863 68%, #438d38 135%);
}

.aides-grid {
  gap: 14px;
}

.aide-row {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.18);
  border-radius: 18px;
}

.testi-card,
.news-card,
.quote-inline,
.cta-final-info {
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(16,35,29,0.06);
}

.testi-card:hover,
.news-card:hover {
  box-shadow: 0 26px 70px -40px rgba(16,35,29,0.48);
}

.parrainage {
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.28), transparent 18rem),
    linear-gradient(135deg, #ffde17 0%, #c8ad00 52%, #264863 140%);
}

.cta-final {
  background:
    linear-gradient(180deg, var(--c-bg) 0%, #EDF4EE 100%);
}

.footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(15, 94, 74, 0.54), transparent 26rem),
    #071511;
}

@media (min-width: 1024px) {
  .section {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .alclima-hero-banner {
    padding: 94px 20px 54px;
  }

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

  .alclima-hero-media {
    min-height: 360px;
  }

  .alclima-hero-partners {
    margin-top: 0;
  }

  .stats {
    padding: 0 20px 54px;
  }
}

@media (max-width: 767px) {
  .header {
    margin: 0 8px;
  }

  .header-inner,
  .header.on-hero:not(.scrolled) .header-inner,
  .header.scrolled .header-inner,
  .header.off-hero .header-inner,
  .header.menu-open .header-inner {
    min-height: 58px;
    padding: 9px 10px;
    border-radius: 18px;
  }

  .logo-img {
    height: 30px;
  }

  .header-quote-btn {
    max-width: none;
    min-height: 40px;
    padding-inline: 12px;
    font-size: 12.5px;
  }

  .alclima-hero-banner {
    padding: 88px 16px 42px;
  }

  .alclima-hero-badge {
    max-width: 100%;
    align-items: flex-start;
    font-size: 11.5px;
  }

  .alclima-hero-banner h1 {
    margin-top: 22px;
    font-size: clamp(38px, 11vw, 46px);
    line-height: 1.02;
  }

  .alclima-hero-lede {
    margin-top: 18px;
    font-size: 16.5px;
  }

  .alclima-hero-actions {
    margin-top: 28px;
  }

  .alclima-hero-stats {
    margin-top: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 18px;
  }

  .alclima-hero-stats div {
    padding: 13px 10px;
    border-left: 1px solid var(--c-line);
    border-top: 0;
  }

  .alclima-hero-stats div:first-child {
    border-left: 0;
  }

  .alclima-hero-stats strong {
    font-size: 22px;
  }

  .alclima-hero-stats span {
    font-size: 10.5px;
    line-height: 1.25;
  }

  .alclima-hero-media {
    min-height: 310px;
  }

  .alclima-hero-media {
    border-radius: 20px;
  }

  .alclima-hero-media-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .alclima-hero-partners button {
    width: 100%;
    justify-content: flex-start;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 20px;
    border-radius: 20px;
  }

  .stat {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 16px 10px;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-top: 0;
  }

  .section {
    padding: 58px 18px;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .service-card,
  .testi-card,
  .news-card {
    border-radius: 20px;
  }
}

/* ============ Hero-1 adapted with Alclima bottom SVG ============ */
.alclima-hero-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 24px 0;
  background: #ffffff;
}

.alclima-hero-banner::before,
.alclima-hero-banner::after {
  display: none !important;
}

.alclima-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1180px;
  min-height: clamp(780px, 86vh, 920px);
  text-align: center;
}

.alclima-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
  padding-top: 16px;
}

.alclima-hero-badge {
  margin: 0 auto;
}

.alclima-hero-banner h1 {
  max-width: 1180px;
  margin: 26px auto 0;
  font-size: clamp(54px, 6.25vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #0e1b25 24%, #264863 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title-line {
  display: block;
}

@media (min-width: 1100px) {
  .hero-title-line {
    white-space: nowrap;
  }
}

.alclima-hero-lede {
  max-width: 720px;
  margin: 26px auto 0;
  color: #536860;
  font-size: clamp(17px, 1.7vw, 21px);
}

.alclima-hero-actions {
  justify-content: center;
}

.alclima-hero-stats {
  max-width: 720px;
  margin: 30px auto 0;
}

.alclima-hero-media {
  display: none;
}

.alclima-hero-partners {
  max-width: 960px;
  margin: 34px auto 0;
  padding-top: 0;
  border-top: 0;
}

.alclima-hero-partners > div {
  justify-content: center;
}

.alclima-hero-bottom-art {
  position: absolute;
  left: 50%;
  bottom: -10px;
  z-index: 0;
  width: min(1080px, 100%);
  height: clamp(320px, 34vw, 450px);
  margin: 0;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.alclima-hero-bottom-art-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.alclima-hero-bottom-blur {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -1px;
  z-index: 4;
  width: 100vw;
  height: clamp(120px, 12vw, 200px);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(238, 245, 239, 0) 0%,
    rgba(238, 245, 239, 0.35) 40%,
    rgba(238, 245, 239, 0.75) 72%,
    rgba(238, 245, 239, 1) 100%
  );
  transform: translateX(-50%);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

@keyframes fade-in {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fade-in 0.7s var(--ease-out, ease) forwards;
}

.animate-fade-up {
  animation: fade-up 0.8s var(--ease-out, ease) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-in,
  .animate-fade-up {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .alclima-hero-bottom-blur {
    height: clamp(90px, 10vw, 140px);
  }
}

@media (max-width: 767px) {
  .alclima-hero-banner {
    padding: 88px 16px 0;
    background-size: 56px 48px, 56px 48px, auto;
  }

  .alclima-hero-inner {
    min-height: clamp(680px, 178vw, 730px);
  }

  .alclima-hero-banner::after {
    bottom: -220px;
    height: 420px;
  }

  .alclima-hero-copy {
    padding-top: 18px;
  }

  .alclima-hero-banner h1 {
    font-size: clamp(42px, 12.2vw, 56px);
    line-height: 0.98;
  }

  .alclima-hero-actions {
    align-items: stretch;
  }

  .alclima-hero-partners > div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .alclima-hero-bottom-art {
    bottom: 38px;
    width: 100%;
    height: 340px;
  }

  .alclima-hero-bottom-art-svg {
    object-fit: cover;
    object-position: center top;
  }
}

/* ============ Header and hero final refinements ============ */
.header-wrap {
  top: 0;
}

.header {
  top: 0 !important;
  margin: 0 !important;
  border-bottom: 0;
}

.header-inner,
.header.on-hero:not(.scrolled) .header-inner,
.header.scrolled .header-inner,
.header.off-hero .header-inner,
.header.menu-open .header-inner {
  border-radius: 0;
  border: 0;
  box-shadow: none !important;
}

.header .btn-primary,
.header.on-hero:not(.scrolled) .btn-primary,
.header.scrolled .btn-primary,
.header.off-hero .btn-primary,
.header.menu-open .btn-primary {
  box-shadow: none !important;
}

.nav-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-wrap .dropdown {
  top: 100%;
  z-index: 120;
}

.nav-dropdown-wrap .dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.alclima-hero-bottom-art {
  bottom: -95px;
  z-index: 1;
  width: max(96vw, min(1480px, 104vw));
  max-width: none;
  height: clamp(420px, 38vw, 520px);
  filter: none;
}

.alclima-hero-inner {
  z-index: 2;
}

.alclima-hero-bottom-art-svg {
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 1023px) {
  .alclima-hero-bottom-art {
    bottom: 0;
    z-index: 1;
    width: 100vw;
    max-width: none;
    height: clamp(292px, 48vw, 410px);
  }

  .alclima-hero-bottom-art-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
}

@media (max-width: 767px) {
  .alclima-hero-banner {
    overflow: hidden;
    z-index: 2;
    margin-bottom: 0;
  }

  .header-inner,
  .header.on-hero:not(.scrolled) .header-inner,
  .header.scrolled .header-inner,
  .header.off-hero .header-inner,
  .header.menu-open .header-inner {
    border-radius: 0;
  }

  .alclima-hero-inner {
    min-height: clamp(700px, 178vw, 740px);
  }

  .alclima-hero-banner::after {
    display: block;
    left: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: clamp(180px, 49vw, 230px);
    transform: none;
    border-radius: 100% 100% 0 0;
    background: radial-gradient(closest-side, rgba(255,255,255,0.94) 38%, rgba(237,244,238,0.90) 66%, rgba(15,94,74,0.24) 112%);
  }

  .alclima-hero-bottom-art {
    bottom: 0;
    z-index: 1;
    width: 100vw;
    max-width: none;
    height: clamp(230px, 61vw, 270px);
  }

  .alclima-hero-bottom-art-svg {
    position: static;
    left: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transform: none;
    transform-origin: bottom center;
  }

  .alclima-hero-bottom-blur {
    height: clamp(80px, 20vw, 120px);
    background: linear-gradient(
      to bottom,
      rgba(238, 245, 239, 0) 0%,
      rgba(238, 245, 239, 0.5) 55%,
      rgba(238, 245, 239, 1) 100%
    );
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* ============ Testimonials containment override ============ */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.testi-section {
  overflow: hidden;
}

.testi-section .testi-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 1120px);
  max-width: calc(100vw - 40px);
  margin: 38px auto 0;
  gap: clamp(18px, 2.6vw, 36px);
  box-sizing: border-box;
}

.testi-section .testi-column,
.testi-section .testi-column-track,
.testi-section .testi-card {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.testi-section .testi-card {
  width: 100%;
}

@media (min-width: 1680px) {
  .testi-section .testi-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 1500px);
    max-width: calc(100vw - 72px);
  }
}

@media (max-width: 1679px) {
  .testi-section .testi-column-lg {
    display: none;
  }
}

@media (max-width: 900px) {
  .testi-section .testi-columns {
    grid-template-columns: 1fr;
    max-height: 620px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
  }

  .testi-section .testi-column-track {
    animation: testi-column-scroll var(--duration, 28s) linear infinite;
  }
}

@media (max-width: 600px) {
  .testi-section .testi-columns {
    max-width: calc(100vw - 32px);
    margin-top: 24px;
    gap: 16px;
  }

  .testi-section .testi-column:nth-child(2) {
    display: none;
  }
}

/* ============ Services horizontal slider ============ */
.services-slider-shell {
  position: relative;
}

.services-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 380px);
  grid-template-columns: none;
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(18px, 5vw, 64px);
  scroll-behavior: smooth;
  margin-inline: calc(clamp(18px, 5vw, 64px) * -1);
  padding: 4px clamp(18px, 5vw, 64px) 28px;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.services-grid::-webkit-scrollbar {
  display: none;
}

.services-grid .service-card {
  scroll-snap-align: start;
  min-width: 0;
}

.services-slider-controls {
  display: none;
}

.services-grid .service-card-img {
  min-height: 100%;
  border: 1px solid rgba(14, 54, 43, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 45px rgba(14, 54, 43, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.services-grid .service-card-img::before {
  display: none;
}

.services-grid .service-card-img:hover {
  transform: translateY(-6px);
  border-color: color-mix(in oklab, var(--service-color) 45%, rgba(14, 54, 43, 0.12));
  box-shadow: 0 24px 70px color-mix(in oklab, var(--service-color) 15%, rgba(14, 54, 43, 0.12));
}

.services-grid .service-card-img .service-card-photo {
  aspect-ratio: 16 / 9;
  border-radius: 22px 22px 0 0;
  isolation: isolate;
}

.service-card-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s var(--ease-out);
  z-index: -2;
}

.service-card-photo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
  z-index: -2;
}

.service-video-embed,
.photovoltaic-video-embed {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: #f6f8f5;
  background-position: center;
  background-size: cover;
}

.service-video-embed iframe,
.photovoltaic-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.service-video-embed.is-loaded iframe,
.photovoltaic-video-embed.is-loaded iframe {
  opacity: 1;
}

.service-card-photo-iframe {
  pointer-events: none;
  background-position: center;
}

.services-grid .service-card-img:hover .service-card-photo-bg,
.services-grid .service-card-img:hover .service-card-photo-video {
  transform: scale(1.08);
}

.services-grid .service-card-photo-grade {
  background: linear-gradient(180deg, rgba(6, 24, 20, 0.08) 0%, rgba(6, 24, 20, 0.12) 36%, rgba(6, 24, 20, 0.76) 100%);
  transition: opacity 0.3s ease;
  z-index: -1;
}

.services-grid .service-card-img:hover .service-card-photo-grade {
  opacity: 0.72;
}

.service-tags {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 28px);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  background: rgba(246, 250, 247, 0.16);
  opacity: 0;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: opacity 0.28s ease;
}

.services-grid .service-card-img:hover .service-card-overlay {
  opacity: 1;
}

.service-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--service-color);
  color: #fff;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 32px color-mix(in oklab, var(--service-color) 35%, transparent);
  transform: translateY(6px) scale(0.98);
  transition: transform 0.28s var(--ease-out);
}

.services-grid .service-card-img:hover .service-card-action {
  transform: translateY(0) scale(1);
}

.services-grid .service-card-img .service-aide {
  top: 14px;
  right: 14px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.services-grid .service-card-img .service-card-body {
  gap: 18px;
  padding: 22px;
}

.services-grid .service-copy {
  display: grid;
  gap: 8px;
}

.services-grid .service-copy p {
  margin-bottom: 0;
}

.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(14, 54, 43, 0.1);
  padding-top: 16px;
}

.service-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.services-grid .service-card-author .service-icon {
  position: static;
  width: 34px;
  height: 34px;
  min-width: 34px;
  margin: 0;
  border-radius: 999px;
  color: #fff !important;
  box-shadow: 0 8px 20px color-mix(in oklab, var(--service-color) 24%, transparent);
}

.service-card-author span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.2;
}

.service-card-author strong {
  color: var(--c-ink);
  font-size: 13px;
  font-weight: 800;
}

.service-card-author small,
.service-card-time {
  color: var(--c-ink-3);
  font-size: 12px;
  font-weight: 600;
}

.service-card-author small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-card-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

@media (min-width: 1280px) {
  .services-grid {
    grid-auto-columns: minmax(340px, 420px);
  }
}

@media (max-width: 700px) {
  .services-grid {
    grid-auto-columns: minmax(84vw, 84vw);
    margin-inline: -18px;
    padding: 4px 18px 16px;
    scroll-padding-inline: 18px;
  }

  .services-grid .service-card-img {
    border-radius: 18px;
  }

  .services-grid .service-card-img .service-card-photo {
    border-radius: 18px 18px 0 0;
  }

  .services-grid .service-card-img .service-card-body {
    padding: 18px;
  }

  .service-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .services-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
  }

  .services-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }

  .services-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(14, 54, 43, 0.22);
    transition: width 0.2s ease, background 0.2s ease;
  }

  .services-slider-dot.active {
    width: 24px;
    background: var(--c-primary);
  }
}

/* hero always white */
.alclima-hero-banner { background: #ffffff !important; }

/* ============ Home news showcase ============ */
.news-showcase {
  position: relative;
  overflow: hidden;
}

.news-bg-label {
  position: absolute;
  top: 42px;
  right: -42px;
  z-index: -1;
  user-select: none;
  color: rgba(14, 54, 43, 0.035);
  font-family: var(--f-display);
  font-size: clamp(92px, 17vw, 280px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: 0;
}

.news-showcase-lede {
  max-width: 760px;
}

.news-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.news-showcase-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 22px;
  isolation: isolate;
  box-shadow: 0 22px 56px rgba(14, 54, 43, 0.13);
}

.news-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s var(--ease-out);
}

.news-showcase-card:hover {
  transform: scale(0.985) rotate(0.25deg);
  box-shadow: 0 30px 72px rgba(14, 54, 43, 0.18);
}

.news-showcase-card:hover::before {
  transform: scale(1.06);
}

.news-showcase-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 18, 16, 0.04) 0%, rgba(5, 18, 16, 0.22) 38%, rgba(5, 18, 16, 0.86) 100%);
  transition: transform 0.45s var(--ease-out), opacity 0.3s ease;
  transform-origin: bottom;
}

.news-showcase-card:hover .news-showcase-shade {
  transform: scaleY(0.9);
  opacity: 0.95;
}

.news-showcase-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.news-showcase-main {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.news-showcase-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 7vw, 34px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.news-showcase-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
}

.news-showcase-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 700;
}

.news-showcase-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: #ffa534;
}

.news-showcase-arrow {
  flex: 0 0 auto;
  transition: transform 0.3s var(--ease-out);
}

.news-showcase-card:hover .news-showcase-arrow {
  transform: translateX(7px);
}

@media (min-width: 900px) {
  .news-showcase {
    max-width: 1360px;
  }

  .news-showcase-grid {
    min-height: 650px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .news-showcase-card {
    min-height: 0;
    padding: 26px;
  }

  .news-showcase-card.primary {
    grid-row: span 2;
  }

  .news-showcase-card.primary h3 {
    font-size: clamp(38px, 4.5vw, 58px);
  }

  .news-showcase-card:not(.primary) h3 {
    font-size: clamp(22px, 2vw, 30px);
  }
}

@media (max-width: 600px) {
  .news-bg-label {
    top: 54px;
    right: -24px;
    font-size: 96px;
  }

  .news-showcase-card {
    min-height: 300px;
    padding: 18px;
    border-radius: 18px;
  }

  .news-showcase-content {
    align-items: flex-start;
  }

  .news-showcase-arrow {
    width: 28px;
    height: 28px;
  }
}

/* ============ Journal page ============ */
.journal-hero {
  background: linear-gradient(180deg, #fff 0%, var(--c-bg) 100%);
}

.journal-section {
  position: relative;
  overflow: hidden;
}

.journal-bg-label {
  position: absolute;
  top: -4px;
  left: -56px;
  z-index: -1;
  user-select: none;
  color: rgba(14, 54, 43, 0.03);
  font-family: var(--f-display);
  font-size: clamp(86px, 15vw, 230px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: 0;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.journal-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 22px;
  isolation: isolate;
  box-shadow: 0 22px 56px rgba(14, 54, 43, 0.13);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.journal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s var(--ease-out);
}

.journal-card:hover {
  transform: scale(0.985) rotate(0.25deg);
  box-shadow: 0 30px 72px rgba(14, 54, 43, 0.18);
}

.journal-card:hover::before {
  transform: scale(1.06);
}

.journal-card-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 18, 16, 0.04) 0%, rgba(5, 18, 16, 0.24) 35%, rgba(5, 18, 16, 0.88) 100%);
}

.journal-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.journal-card-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.journal-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 600;
}

.journal-card-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 700;
}

.journal-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 6.5vw, 34px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.journal-card p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.journal-card-arrow {
  flex: 0 0 auto;
  transition: transform 0.3s var(--ease-out);
}

.journal-card:hover .journal-card-arrow {
  transform: translateX(7px);
}

@media (min-width: 900px) {
  .journal-grid {
    min-height: 860px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .journal-card {
    min-height: 0;
    padding: 26px;
  }

  .journal-card.primary {
    grid-row: span 2;
  }

  .journal-card.primary h3 {
    font-size: clamp(38px, 4.2vw, 58px);
  }

  .journal-card:not(.primary) h3 {
    font-size: clamp(21px, 1.8vw, 28px);
  }
}

@media (max-width: 600px) {
  .journal-bg-label {
    top: 24px;
    left: -20px;
    font-size: 86px;
  }

  .journal-card {
    min-height: 300px;
    padding: 18px;
    border-radius: 18px;
  }

  .journal-card-content {
    align-items: flex-start;
  }

  .journal-card-arrow {
    width: 28px;
    height: 28px;
  }
}

/* ============ Why Alclima modern layout ============ */
.why-modern {
  background:
    radial-gradient(circle at 78% 24%, rgba(31, 111, 84, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fbf8 0%, #eef6f0 100%);
  border-top: 1px solid rgba(14, 54, 43, 0.08);
  padding: 72px 20px;
  overflow: hidden;
}

.why-modern-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.why-modern-top {
  display: grid;
  gap: 28px;
  margin-bottom: 28px;
}

.why-modern-copy h2 {
  max-width: 740px;
  margin: 0 0 18px;
  color: var(--c-ink);
  font-size: clamp(34px, 7.5vw, 58px);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: 0;
}

.why-modern-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--c-ink-3);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
}

.why-modern-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.why-modern-tags span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--c-primary);
  border: 1px solid rgba(14, 54, 43, 0.06);
  box-shadow: 0 18px 42px rgba(14, 54, 43, 0.06);
  font-weight: 700;
}

.why-modern-photo {
  min-height: 520px;
  position: relative;
  border-radius: 42px 18px 18px 18px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(14, 54, 43, 0.16);
}

.why-modern-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 250, 247, 0.94) 0%, rgba(246, 250, 247, 0.74) 20%, rgba(246, 250, 247, 0.06) 52%);
}

.why-modern-quote {
  position: absolute;
  left: 0;
  bottom: 36px;
  width: min(610px, calc(100% - 36px));
  min-height: 250px;
  padding: 42px 48px;
  border-radius: 0 18px 18px 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(46, 204, 113, 0.26), transparent 20%),
    linear-gradient(135deg, rgba(12, 84, 61, 0.96), rgba(7, 67, 52, 0.93));
  color: #fff;
  box-shadow: 0 26px 58px rgba(7, 67, 52, 0.26);
}

.why-modern-quote::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 24px;
  width: 132px;
  height: 132px;
  opacity: 0.18;
  background-image: radial-gradient(circle, rgba(255,255,255,0.58) 1.5px, transparent 1.5px);
  background-size: 15px 15px;
}

.why-modern-quote-mark {
  color: #31c878;
  font-family: Georgia, serif;
  font-size: 86px;
  line-height: 0.7;
  font-weight: 900;
}

.why-modern-quote-text {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin-top: -8px;
  font-family: var(--f-display);
  font-size: clamp(23px, 3vw, 31px);
  font-weight: 750;
  line-height: 1.24;
  letter-spacing: 0;
}

.why-modern-quote-author {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 600;
}

.why-modern .why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 28px;
}

.why-modern .why-card {
  min-height: 330px;
  padding: 34px 28px 30px;
  border: 1px solid rgba(14, 54, 43, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 60px rgba(14, 54, 43, 0.08);
}

.why-modern .why-num {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #e8f0e8;
  color: var(--c-primary);
  -webkit-background-clip: initial;
  background-clip: initial;
  font-size: 32px;
  letter-spacing: 0;
}

.why-modern .why-card h3 {
  max-width: 260px;
  margin-bottom: 14px;
  color: var(--c-ink);
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: 0;
}

.why-modern .why-card h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin-top: 18px;
  background: var(--c-primary);
}

.why-modern .why-card p {
  color: var(--c-ink-3);
  font-size: 16px;
  line-height: 1.62;
}

.why-modern .why-card > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: var(--c-primary);
  font-weight: 700;
  font-family: var(--f-display);
  font-size: 14px;
}

.why-method {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
  padding: 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(14, 54, 43, 0.06);
  box-shadow: 0 18px 46px rgba(14, 54, 43, 0.06);
}

.why-method-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
}

.why-method strong {
  display: block;
  color: var(--c-ink);
  font-size: 18px;
  margin-bottom: 4px;
}

.why-method p {
  margin: 0;
  color: var(--c-ink-3);
  font-size: 15px;
}

.why-method a {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 9px;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
}

@media (min-width: 1100px) {
  .why-modern {
    padding: 96px 40px;
  }

  .why-modern-top {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    align-items: start;
    gap: 28px;
  }

  .why-modern-copy {
    position: relative;
    z-index: 2;
  }

  .why-modern-copy h2 {
    max-width: 760px;
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.13;
  }

  .why-modern-copy p {
    max-width: 700px;
    font-size: 19px;
  }

  .why-modern-photo {
    min-height: 540px;
    margin-top: 74px;
    margin-left: 0;
    border-radius: 128px 18px 18px 18px;
  }

  .why-modern-photo::before {
    background: linear-gradient(90deg, rgba(246, 250, 247, 0.52) 0%, rgba(246, 250, 247, 0.18) 28%, rgba(246, 250, 247, 0.02) 58%);
  }

  .why-modern-quote {
    left: 28px;
    bottom: 30px;
    width: min(540px, calc(100% - 56px));
    min-height: 210px;
    padding: 32px 38px;
    border-radius: 18px;
  }

  .why-modern-quote-mark {
    font-size: 68px;
  }

  .why-modern-quote-text {
    max-width: 440px;
    font-size: clamp(23px, 2.25vw, 29px);
  }

  .why-modern .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .why-method {
    grid-template-columns: auto 1fr auto;
    padding: 28px;
  }

  .why-method a {
    grid-column: auto;
    min-width: 280px;
  }
}

@media (max-width: 600px) {
  .why-modern {
    padding: 64px 18px;
  }

  .why-modern-tags span {
    width: 100%;
    justify-content: flex-start;
  }

  .why-modern-photo {
    min-height: 520px;
    border-radius: 32px 16px 16px 16px;
  }

  .why-modern-photo::before {
    background: linear-gradient(180deg, rgba(246,250,247,0.08), rgba(246,250,247,0.08));
  }

  .why-modern-quote {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    min-height: 0;
    padding: 30px 26px;
    border-radius: 16px;
  }

  .why-modern .why-card {
    min-height: auto;
  }
}

/* ============ Header phone/logo final polish ============ */
.header .logo-img {
  height: 42px;
}

.header-phone-btn {
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
}

.header-contact-icon {
  display: none;
}

@media (min-width: 1024px) {
  .header .logo-img {
    height: 48px;
  }
}

@media (max-width: 700px) {
  .header .logo-img {
    height: 36px;
  }

  .header-phone-btn {
    padding-inline: 12px;
    font-size: 13px;
    gap: 6px;
  }

  .header-phone-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }

  .header-cta {
    gap: 7px;
  }

  .header-contact-icon {
    display: none;
  }
}

/* ============ Parrainage page ============ */
.referral-page {
  background: linear-gradient(180deg, #f8fbf8 0%, #eef6f0 100%);
}

.referral-hero {
  padding: 118px 20px 56px;
  background:
    radial-gradient(circle at 82% 18%, rgba(243, 156, 18, 0.16), transparent 30%),
    linear-gradient(135deg, #1b3448 0%, #264863 70%, #ffde17 150%);
  color: #fff;
  overflow: hidden;
}

.referral-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 34px;
  align-items: center;
}

.referral-hero .section-eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.referral-hero .section-eyebrow::before {
  background: var(--c-accent);
}

.referral-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(38px, 8vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}

.referral-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.referral-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.referral-hero-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 28px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.18);
}

.referral-hero-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.referral-gift-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 26px;
  border-radius: 22px;
  background: #fff;
  color: var(--c-accent-700);
}

.referral-hero-card-label {
  color: rgba(255,255,255,0.72);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.referral-hero-card-amount {
  color: #fff;
  font-family: var(--f-display);
  font-size: clamp(68px, 10vw, 116px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  margin: 8px 0 16px;
}

.referral-rewards-section,
.referral-process-section,
.referral-form-section {
  position: relative;
}

.referral-rewards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.referral-reward-card {
  padding: 28px;
  border: 1px solid rgba(14,54,43,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 22px 55px rgba(14, 54, 43, 0.08);
}

.referral-reward-card.featured {
  background: linear-gradient(135deg, #fff 0%, #fff6e5 100%);
  border-color: rgba(243,156,18,0.22);
}

.referral-reward-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--f-display);
  font-size: 25px;
  font-weight: 800;
}

.referral-reward-card.featured span {
  background: var(--c-accent);
}

.referral-reward-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.referral-reward-card p {
  margin: 0;
  color: var(--c-ink-3);
  line-height: 1.6;
}

.referral-process {
  display: grid;
  gap: 26px;
  padding: 32px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(14,54,43,0.08);
  box-shadow: 0 24px 60px rgba(14, 54, 43, 0.08);
}

.referral-process h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.referral-steps {
  display: grid;
  gap: 14px;
}

.referral-steps div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: var(--c-bg-alt);
}

.referral-steps strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--f-display);
}

.referral-steps span {
  color: var(--c-ink-2);
  line-height: 1.5;
}

.referral-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.referral-form-intro {
  align-self: start;
}

.referral-form-intro h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
}

.referral-form-intro p {
  color: var(--c-ink-3);
  font-size: 17px;
  line-height: 1.65;
}

.referral-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(31,111,84,0.08);
  color: var(--c-primary);
  font-weight: 700;
}

.referral-form-card {
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(14, 54, 43, 0.1);
}

.referral-form-group {
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--c-line);
}

.referral-form-group:last-of-type {
  border-bottom: 0;
  padding-bottom: 16px;
}

.referral-form-group h3 {
  margin-bottom: 16px;
  color: var(--c-ink);
  font-size: 19px;
}

.referral-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  color: var(--c-ink-2);
  font-size: 13.5px;
  line-height: 1.45;
}

.referral-consent.error {
  border-color: var(--c-danger, #d94a38);
}

.referral-consent input {
  margin-top: 2px;
  accent-color: var(--c-primary);
}

@media (min-width: 900px) {
  .referral-hero {
    padding: 150px 40px 86px;
  }

  .referral-hero-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.7fr);
  }

  .referral-rewards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .referral-process {
    grid-template-columns: 0.72fr 1fr;
    align-items: center;
    padding: 42px;
  }

  .referral-form-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
    gap: 54px;
    align-items: start;
  }
}

@media (max-width: 600px) {
  .referral-hero {
    padding-top: 112px;
  }

  .referral-hero-actions .btn {
    width: 100%;
  }

  .referral-hero-card {
    padding: 26px;
  }

  .referral-process,
  .referral-reward-card {
    padding: 22px;
  }
}

/* ============ Blog article page ============ */
.news-showcase-card,
.journal-card {
  cursor: pointer;
}

.blog-article-page {
  background: var(--c-bg);
}

.blog-article-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 140px 20px 72px;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.blog-article-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,18,16,0.18) 0%, rgba(5,18,16,0.48) 42%, rgba(5,18,16,0.9) 100%),
    linear-gradient(90deg, rgba(5,18,16,0.86), rgba(5,18,16,0.12));
}

.blog-article-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.blog-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  margin-bottom: 28px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--f-display);
  font-weight: 700;
}

.blog-back-btn svg {
  transform: rotate(180deg);
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.blog-article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 8px;
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.blog-article-hero h1 {
  max-width: 920px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(40px, 8vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: pretty;
}

.blog-article-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

.blog-article-body-section {
  padding: 70px 20px 110px;
}

.blog-article-layout {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.blog-article-body {
  min-width: 0;
}

.blog-article-intro {
  margin: 0 0 42px;
  color: var(--c-ink);
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.36;
  letter-spacing: 0;
}

.blog-article-body section {
  padding: 34px 0;
  border-top: 1px solid var(--c-line);
}

.blog-article-body h2 {
  max-width: 780px;
  margin: 0 0 14px;
  color: var(--c-ink);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
  letter-spacing: 0;
}

.blog-article-body p {
  max-width: 820px;
  margin: 0;
  color: var(--c-ink-3);
  font-size: 18px;
  line-height: 1.75;
}

.blog-article-cta {
  display: grid;
  gap: 22px;
  margin-top: 42px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--c-primary), #1b3448);
  color: #fff;
}

.blog-article-cta h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 8px;
}

.blog-article-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.55;
}

.blog-article-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.blog-sidebar-card {
  padding: 22px;
  border: 1px solid var(--c-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(14, 54, 43, 0.06);
}

.blog-sidebar-card ul {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.blog-sidebar-card li {
  position: relative;
  padding-left: 22px;
  color: var(--c-ink-2);
  line-height: 1.45;
}

.blog-sidebar-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
}

.blog-related-link {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--c-line);
  background: transparent;
  text-align: left;
}

.blog-related-link:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-related-link span {
  color: var(--c-primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-related-link strong {
  color: var(--c-ink);
  font-size: 15px;
  line-height: 1.32;
}

@media (min-width: 980px) {
  .blog-article-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 64px;
    align-items: start;
  }

  .blog-article-sidebar {
    position: sticky;
    top: 100px;
  }

  .blog-article-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .blog-article-hero {
    min-height: 560px;
    padding: 118px 18px 52px;
  }

  .blog-article-body-section {
    padding: 52px 18px 82px;
  }

  .blog-article-body p {
    font-size: 16px;
  }
}

/* ============ Final services/why page updates ============ */
@media (min-width: 701px) {
  .services-grid {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    overscroll-behavior-x: auto;
    scroll-snap-type: none;
    scroll-padding-inline: 0;
    margin-inline: 0;
    padding: 0;
    touch-action: auto;
  }

  .services-grid .service-card {
    scroll-snap-align: none;
  }

  .services-slider-controls {
    display: none !important;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.why-more-link,
.why-method-link {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.why-modern .why-card > .why-more-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 0;
  background: transparent;
  color: var(--c-primary);
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
}

.why-modern .why-card > .why-more-link:hover {
  color: var(--c-primary-700);
}

.why-method-link {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 9px;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
}

.why-method-link:hover {
  background: var(--c-primary-700);
}

@media (min-width: 1100px) {
  .why-method-link {
    grid-column: auto;
    min-width: 280px;
  }
}

.why-page {
  background:
    radial-gradient(circle at 82% 12%, rgba(31, 111, 84, 0.08), transparent 34%),
    linear-gradient(180deg, #fbfdfb 0%, #eef6f0 100%);
}

.why-page-hero {
  display: grid;
  gap: 34px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 124px 20px 64px;
}

.why-page-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--c-ink);
  font-size: clamp(40px, 8vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.why-page-hero-copy p {
  max-width: 710px;
  margin: 0;
  color: var(--c-ink-3);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
}

.why-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.why-page-hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 90px 18px 18px 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 80px rgba(14, 54, 43, 0.16);
}

.why-page-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 48, 38, 0.62) 100%);
}

.why-page-quote {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(12, 84, 61, 0.96), rgba(7, 67, 52, 0.92));
  color: #fff;
  box-shadow: 0 24px 58px rgba(7, 67, 52, 0.24);
}

.why-page-quote-mark {
  color: #31c878;
  font-family: Georgia, serif;
  font-size: 70px;
  font-weight: 900;
  line-height: 0.7;
}

.why-page-quote strong {
  display: block;
  max-width: 570px;
  margin-top: -4px;
  font-family: var(--f-display);
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.24;
}

.why-page-quote span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.why-page-pillars,
.why-page-method-section,
.why-page-cta {
  max-width: 1280px;
}

.why-page-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}

.why-page-card,
.why-page-step,
.why-page-cta {
  border: 1px solid rgba(14, 54, 43, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 60px rgba(14, 54, 43, 0.08);
}

.why-page-card {
  min-height: 310px;
  padding: 30px;
  border-radius: 18px;
}

.why-page-card-icon,
.why-page-cta-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
}

.why-page-card-label {
  display: inline-flex;
  margin: 24px 0 14px;
  color: var(--c-primary);
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 800;
}

.why-page-card h3,
.why-page-step h3 {
  margin: 0 0 12px;
  color: var(--c-ink);
  font-size: 25px;
  line-height: 1.14;
}

.why-page-card p,
.why-page-step p,
.why-page-method-head p,
.why-page-cta p {
  margin: 0;
  color: var(--c-ink-3);
  font-size: 16px;
  line-height: 1.62;
}

.why-page-method-head {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.why-page-method-head p {
  max-width: 560px;
}

.why-page-timeline {
  display: grid;
  gap: 16px;
}

.why-page-step {
  position: relative;
  padding: 26px;
  border-radius: 18px;
}

.why-page-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--c-primary);
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.why-page-cta {
  display: grid;
  gap: 22px;
  align-items: center;
  margin-bottom: 80px;
  padding: 28px;
  border-radius: 18px;
}

.why-page-cta h2 {
  margin: 20px 0 8px;
  color: var(--c-ink);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
}

.why-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 900px) {
  .why-page-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    padding: 148px 40px 78px;
  }

  .why-page-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .why-page-method-head {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
    align-items: end;
  }

  .why-page-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-page-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 34px;
  }
}

@media (max-width: 620px) {
  .why-page-hero {
    padding: 104px 18px 54px;
  }

  .why-page-hero-media {
    min-height: 500px;
    border-radius: 34px 16px 16px 16px;
  }

  .why-page-quote {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 24px;
  }

  .why-page-actions .btn,
  .why-page-cta-actions .btn {
    width: 100%;
  }
}

/* ============ Top contact and referral final updates ============ */
.top-contact-bar {
  pointer-events: auto;
  background: rgba(246, 250, 247, 0.94);
  border-bottom: 1px solid rgba(14, 54, 43, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.top-contact-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  max-width: 1280px;
  min-height: 34px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--c-primary);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

.top-contact-link:hover {
  color: var(--c-primary-700);
  text-decoration: underline;
}

.referral-fixed-service {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(243, 156, 18, 0.28);
  border-radius: 12px;
  background: rgba(243, 156, 18, 0.09);
  color: var(--c-ink);
  font-weight: 800;
}

.referral-fixed-service svg {
  color: var(--c-accent);
}

@media (max-width: 767px) {
  .top-contact-bar {
    display: none;
  }

  .top-contact-inner {
    justify-content: center;
    gap: 12px;
    min-height: 38px;
    padding: 5px 14px;
  }

  .top-contact-link {
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(31, 111, 84, 0.1);
    font-size: 0;
    gap: 0;
  }

  .top-contact-link svg {
    width: 16px;
    height: 16px;
  }

  .mobile-menu {
    inset: 64px 0 0 0;
    max-height: calc(100svh - 64px);
  }
}

/* ============ Parrainage banner visual ============ */
.parrainage {
  display: block;
  isolation: isolate;
  background:
    #ffaf7c;
  color: var(--c-ink);
}

.parrainage::before {
  display: none;
}

.parrainage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 246, 238, 0.98) 0%, rgba(255, 246, 238, 0.88) 40%, rgba(255, 246, 238, 0.3) 68%, rgba(255, 246, 238, 0) 100%);
}

.parrainage-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.parrainage-eyebrow {
  background: rgba(31, 111, 84, 0.1);
  color: var(--c-primary);
}

.parrainage h2 {
  color: var(--c-ink);
}

.parrainage p {
  color: var(--c-ink-2);
}

.parrainage-reward {
  color: var(--c-ink-2);
}

.parrainage-reward strong {
  background: var(--c-primary);
  color: #fff;
}

.parrainage-side {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.parrainage-visual {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center right;
  border-radius: inherit;
}

@media (min-width: 900px) {
  .parrainage {
    padding: 58px;
    min-height: 440px;
  }

  .parrainage-side {
    width: 100%;
    border-radius: 0;
  }

  .parrainage-side::after {
    display: none;
  }

  .parrainage-visual {
    border-radius: 0;
    object-position: center right;
  }
}

@media (min-width: 1200px) {
  .parrainage {
    padding: 72px 68px;
    min-height: 500px;
  }

  .parrainage h2 {
    max-width: 620px;
  }
}

@media (max-width: 899px) {
  .parrainage {
    min-height: 560px;
    padding: 34px 22px 28px;
    display: flex;
    align-items: flex-end;
  }

  .parrainage-side {
    order: initial;
    margin: 0;
  }

  .parrainage::after {
    background: linear-gradient(180deg, rgba(255, 246, 238, 0.1) 0%, rgba(255, 246, 238, 0.78) 36%, rgba(255, 246, 238, 0.98) 100%);
  }

  .parrainage-inner {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .parrainage {
    margin: 18px 14px;
    min-height: 620px;
    padding: 22px 16px 18px;
    border-radius: 20px;
  }

  .parrainage-side {
    min-height: 100%;
    border-radius: inherit;
  }

  .parrainage-visual {
    object-position: 62% center;
  }

  .parrainage h2 {
    font-size: clamp(26px, 8vw, 34px);
  }
}

/* ============ Alclima brand refresh ============ */
:root {
  --c-primary: #264863;
  --c-primary-700: #1b3448;
  --c-primary-300: #6f8aa0;
  --c-secondary: #60bd4f;
  --c-secondary-700: #438d38;
  --c-secondary-300: #98d48d;
  --c-accent: #ffde17;
  --c-accent-700: #c8ad00;
  --c-accent-300: #ffe86a;
  --c-bg: #f6f8f5;
  --c-bg-alt: #edf3ef;
  --c-ink: #0c1714;
  --c-ink-2: #243631;
  --c-ink-3: #61746f;
  --c-line: #dbe7e2;
  --f-display: "Source Han Sans JP", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --f-body: "Source Han Sans JP", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
}

body,
input,
textarea,
select,
button {
  font-family: "Source Han Sans JP", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
}

body {
  font-weight: 400;
  letter-spacing: 0;
}

h1,
h2,
.section-title,
.svc-hero h1,
.why-modern-copy h2,
.why-page-hero-copy h1,
.referral-hero h1,
.blog-article-hero h1,
.alclima-hero-banner h1 {
  font-family: "Source Han Sans JP", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

h3,
h4,
.service-copy h3,
.journal-card h3,
.news-showcase-card h3,
.why-card h3 {
  font-family: "Source Han Sans JP", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.section-title {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.04;
}

.svc-hero h1,
.why-page-hero-copy h1,
.referral-hero h1,
.blog-article-hero h1 {
  font-size: clamp(44px, 8vw, 82px);
}

.why-modern-copy h2 {
  font-size: clamp(40px, 7vw, 72px);
}

.alclima-hero-banner h1 {
  font-size: clamp(52px, 8.5vw, 104px);
}

.section-lede,
.svc-hero .lede,
.alclima-hero-lede,
.why-modern-copy p,
.why-page-hero-copy p,
.referral-hero p,
.blog-article-hero p {
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0;
}

.btn,
.nav-link,
.dropdown-item h4,
.service-card-author strong,
.service-card-time,
.pill,
.service-aide {
  font-family: "Source Han Sans JP", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  letter-spacing: 0;
}

.btn-primary,
.header .btn-primary,
.header.on-hero:not(.scrolled) .btn-primary,
.header.scrolled .btn-primary,
.header.off-hero .btn-primary,
.header.menu-open .btn-primary,
.alclima-hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-700));
  color: #14211d;
  box-shadow: 0 14px 26px -12px color-mix(in oklab, var(--c-accent) 65%, transparent);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.header .btn-primary:hover,
.header .btn-primary:focus-visible,
.alclima-hero-actions .btn-primary:hover,
.alclima-hero-actions .btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--c-accent-300), var(--c-accent));
  color: #14211d;
  box-shadow: 0 18px 36px -14px color-mix(in oklab, var(--c-accent) 72%, transparent);
}

.btn-secondary {
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

.btn-dark,
.why-method-link,
.why-page-cta-icon,
.why-page-card-icon,
.why-method-icon {
  background: var(--c-primary);
}

.alclima-hero-banner,
.aides,
.footer,
.referral-hero {
  background:
    radial-gradient(circle at 78% 12%, color-mix(in oklab, var(--c-accent) 16%, transparent), transparent 30%),
    linear-gradient(135deg, var(--c-secondary) 0%, var(--c-primary) 72%, #1b3448 130%);
}

.hero-trust,
.top-contact-link,
.header-contact-icon,
.why-modern-tags span,
.why-more-link,
.why-modern .why-card > .why-more-link {
  color: var(--c-primary);
}

.trust-dot,
.services-slider-dot.active,
.why-modern .why-card h3::after,
.service-card-action {
  background: var(--c-primary);
}

.parrainage-reward strong,
.referral-reward-card.featured span {
  background: var(--c-accent);
  color: #14211d;
}

.testi-stars,
.testi-rating .stars,
.news-showcase-stars,
.visual-photo-stars,
.hero-float-stars {
  color: var(--c-accent);
}

@media (max-width: 700px) {
  .section-title {
    font-size: clamp(34px, 10vw, 48px);
  }

  .svc-hero h1,
  .why-page-hero-copy h1,
  .referral-hero h1,
  .blog-article-hero h1,
  .alclima-hero-banner h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .section-lede,
  .svc-hero .lede,
  .alclima-hero-lede,
  .why-modern-copy p,
  .why-page-hero-copy p,
  .referral-hero p {
    font-size: 18px;
  }
}

/* ============ Brand display fixes ============ */
.alclima-hero-banner {
  background: #fff !important;
}

.alclima-hero-banner h1,
.section-title,
.svc-hero h1,
.why-modern-copy h2,
.why-page-hero-copy h1,
.referral-hero h1,
.blog-article-hero h1 {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--c-ink);
}

.aides h2,
.footer h3,
.footer h4,
.referral-hero h1,
.blog-article-hero h1 {
  color: #fff;
}

.header-inner {
  min-width: 0;
}

.header-cta {
  min-width: 0;
  flex-shrink: 0;
}

.logo {
  min-width: 0;
  flex-shrink: 1;
}

.logo-img {
  object-fit: contain;
}

.alclima-hero-banner h1 {
  max-width: min(1360px, calc(100vw - 80px));
  font-size: clamp(52px, 6.2vw, 92px);
}

.alclima-hero-copy {
  width: 100%;
  max-width: 100%;
}

.hero-title-line {
  max-width: 100%;
}

@media (min-width: 701px) and (max-width: 1100px) {
  .section-title {
    font-size: clamp(38px, 6.2vw, 54px);
  }

  .svc-hero h1,
  .why-page-hero-copy h1,
  .referral-hero h1,
  .blog-article-hero h1 {
    font-size: clamp(42px, 7vw, 64px);
  }

  .alclima-hero-banner h1 {
    font-size: clamp(56px, 8vw, 78px);
    max-width: calc(100vw - 48px);
  }
}

@media (min-width: 1101px) {
  .alclima-hero-inner {
    width: min(100%, 1360px);
  }

  .alclima-hero-inner,
  .alclima-hero-copy,
  .alclima-hero-banner h1 {
    max-width: min(1360px, calc(100vw - 80px));
  }
}

@media (max-width: 700px) {
  .header-inner {
    gap: 8px;
    padding-inline: 10px;
  }

  .logo {
    max-width: 116px;
  }

  .header-cta {
    gap: 6px;
  }

  .header-contact-icon,
  .burger {
    width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0;
  }

  .header-phone-btn {
    height: 36px;
    min-height: 36px;
    padding-inline: 12px;
  }

  .header-contact-icon svg {
    width: 16px;
    height: 16px;
  }

  .alclima-hero-banner {
    padding-top: 76px;
  }

  .alclima-hero-inner {
    min-height: max(calc(178vw + 76px), 680px);
  }

  .alclima-hero-banner h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.04;
    max-width: 100%;
  }

  .alclima-hero-lede {
    font-size: 17px;
    line-height: 1.52;
    margin-top: 20px;
  }

  .alclima-hero-actions {
    margin-top: 22px;
  }

  .alclima-hero-bottom-art {
    bottom: 0;
    height: 250px;
    opacity: 0.72;
  }

  .alclima-hero-stats {
    margin-top: 22px;
  }

  .section-title {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.08;
  }

  .svc-hero h1,
  .why-page-hero-copy h1,
  .referral-hero h1,
  .blog-article-hero h1 {
    font-size: clamp(34px, 10vw, 50px);
    line-height: 1.08;
  }

  .why-modern-copy h2 {
    font-size: clamp(34px, 9.5vw, 48px);
    line-height: 1.1;
  }

  .section-lede,
  .svc-hero .lede,
  .why-modern-copy p,
  .why-page-hero-copy p,
  .referral-hero p {
    font-size: 17px;
    line-height: 1.55;
  }
}

/* ============ Pourquoi Alclima palette finale ============ */
.why-modern {
  background:
    radial-gradient(circle at 82% 16%, color-mix(in oklab, var(--c-accent) 22%, transparent), transparent 31%),
    radial-gradient(circle at 12% 82%, color-mix(in oklab, var(--c-secondary) 16%, transparent), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, color-mix(in oklab, var(--c-primary) 6%, #ffffff) 100%);
  border-top-color: color-mix(in oklab, var(--c-primary) 12%, transparent);
}

.why-modern .section-eyebrow {
  color: var(--c-primary);
}

.why-modern-copy h2 {
  color: var(--c-primary);
}

.why-modern-copy p,
.why-modern .why-card p,
.why-method p {
  color: color-mix(in oklab, var(--c-primary) 58%, #4f5f67);
}

.why-modern-tags span {
  background: #ffffff;
  color: var(--c-primary);
  border-color: color-mix(in oklab, var(--c-primary) 14%, transparent);
  box-shadow: 0 18px 42px color-mix(in oklab, var(--c-primary) 10%, transparent);
}

.why-modern-tags span svg {
  color: var(--c-secondary);
}

.why-modern-photo {
  box-shadow: 0 30px 74px color-mix(in oklab, var(--c-primary) 20%, transparent);
}

.why-modern-photo::before {
  background:
    linear-gradient(90deg, color-mix(in oklab, #ffffff 92%, transparent) 0%, color-mix(in oklab, #ffffff 56%, transparent) 28%, transparent 62%),
    linear-gradient(180deg, transparent 0%, color-mix(in oklab, var(--c-primary) 20%, transparent) 100%);
}

.why-modern-quote {
  background:
    radial-gradient(circle at 12% 20%, color-mix(in oklab, var(--c-accent) 35%, transparent), transparent 23%),
    linear-gradient(135deg, color-mix(in oklab, var(--c-primary) 96%, #000000), var(--c-primary));
  box-shadow: 0 28px 62px color-mix(in oklab, var(--c-primary) 34%, transparent);
}

.why-modern-quote-mark {
  color: var(--c-accent);
}

.why-modern .why-card {
  background: #ffffff;
  border-color: color-mix(in oklab, var(--c-primary) 12%, transparent);
  box-shadow: 0 22px 58px color-mix(in oklab, var(--c-primary) 10%, transparent);
}

.why-modern .why-num {
  background: color-mix(in oklab, var(--c-secondary) 16%, #ffffff);
  color: var(--c-primary);
}

.why-modern .why-card h3 {
  color: var(--c-primary);
}

.why-modern .why-card h3::after {
  background: var(--c-accent);
}

.why-modern .why-card > .why-more-link,
.why-more-link {
  color: var(--c-primary);
}

.why-modern .why-card > .why-more-link:hover,
.why-more-link:hover {
  color: var(--c-secondary-700);
}

.why-method {
  background: color-mix(in oklab, #ffffff 84%, var(--c-primary));
  border-color: color-mix(in oklab, var(--c-primary) 12%, transparent);
  box-shadow: 0 20px 52px color-mix(in oklab, var(--c-primary) 10%, transparent);
}

.why-method-icon {
  background: var(--c-secondary);
  color: #ffffff;
}

.why-method strong {
  color: var(--c-primary);
}

.why-method-link {
  background: var(--c-accent);
  color: #132331;
}

.why-method-link:hover {
  background: var(--c-accent-700);
  color: #132331;
}

@media (min-width: 1100px) {
  .why-modern-photo::before {
    background:
      linear-gradient(90deg, color-mix(in oklab, #ffffff 50%, transparent) 0%, color-mix(in oklab, #ffffff 17%, transparent) 30%, transparent 62%),
      linear-gradient(180deg, transparent 0%, color-mix(in oklab, var(--c-primary) 20%, transparent) 100%);
  }
}

/* ============ Header/parrainage display fixes ============ */
#parrainage {
  overflow: visible;
  padding: 26px 0 36px;
}

#parrainage .parrainage {
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: 0 30px 84px -34px color-mix(in oklab, var(--c-primary) 36%, transparent);
}

@media (min-width: 900px) {
  #parrainage {
    padding: 38px 40px 52px;
  }

  #parrainage .parrainage {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  #parrainage {
    padding: 24px 0 38px;
  }
}

@media (min-width: 1024px) {
  .header-wrap {
    background: #ffffff;
    box-shadow: none;
  }

  .header,
  .header.on-hero:not(.scrolled),
  .header.scrolled,
  .header.off-hero,
  .header.menu-open {
    top: 0;
    margin: 0;
    background: #ffffff;
  }

  .header-inner,
  .header.on-hero:not(.scrolled) .header-inner,
  .header.scrolled .header-inner,
  .header.off-hero .header-inner,
  .header.menu-open .header-inner {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .header.on-hero:not(.scrolled) .nav-link,
  .header.scrolled .nav-link,
  .header.off-hero .nav-link,
  .header.menu-open .nav-link {
    color: var(--c-ink-2);
  }

  .header.on-hero:not(.scrolled) .logo,
  .header.scrolled .logo,
  .header.off-hero .logo,
  .header.menu-open .logo {
    background: transparent;
    color: var(--c-ink);
  }

  .header.on-hero:not(.scrolled) .burger-bars span,
  .header.scrolled .burger-bars span,
  .header.off-hero .burger-bars span,
  .header.menu-open .burger-bars span {
    background: var(--c-ink-2);
  }
}

#parrainage {
  background: transparent !important;
}

#parrainage .parrainage {
  box-shadow: 0 36px 96px -30px color-mix(in oklab, var(--c-primary) 32%, transparent);
}

@media (min-width: 900px) {
  #parrainage {
    padding-bottom: 76px;
  }
}

/* Hero Cloudflare embed: full-width container without side letterboxing */
.alclima-hero-bottom-art {
  left: 50% !important;
  top: clamp(72px, 10vh, 120px) !important;
  bottom: auto !important;
  width: 100vw !important;
  height: clamp(720px, 58vw, 900px) !important;
  max-width: none !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  transform: translateX(-50%) !important;
}

.alclima-hero-bottom-art .hero-cloudflare-video,
.alclima-hero-bottom-art .alclima-hero-bottom-art-svg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.alclima-hero-bottom-art .hero-cloudflare-video {
  background-position: center bottom;
  background-size: cover;
}

.alclima-hero-bottom-art .hero-cloudflare-video iframe {
  display: block !important;
}

@media (max-width: 700px) {
  .alclima-hero-bottom-art {
    top: auto !important;
    bottom: 0 !important;
    height: 270px !important;
  }

  .alclima-hero-bottom-art .hero-cloudflare-video iframe {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .alclima-hero-bottom-art,
  .alclima-hero-bottom-art .hero-cloudflare-video {
    background-color: #ffffff !important;
  }

  .alclima-hero-bottom-art .hero-cloudflare-video {
    background-size: cover !important;
    background-position: center bottom !important;
  }

  .alclima-hero-bottom-art .hero-cloudflare-video iframe {
    display: none !important;
  }
}

@media (min-width: 701px) {
  .alclima-hero-inner {
    min-height: clamp(760px, 72vh, 900px) !important;
  }

  #services {
    padding-top: clamp(20px, 2.2vw, 30px) !important;
  }
}

.alclima-hero-copy {
  position: relative;
  isolation: isolate;
}

.alclima-hero-copy::before {
  display: none !important;
}

.alclima-hero-inner::before {
  content: "";
  position: absolute;
  top: clamp(110px, 13vh, 180px);
  left: 50%;
  z-index: 1;
  width: 100vw;
  height: clamp(360px, 44vh, 560px);
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(ellipse at center,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.76) 34%,
      rgba(255,255,255,0.34) 64%,
      rgba(255,255,255,0) 100%);
}

@media (min-width: 1101px) {
  .alclima-hero-inner::before {
    display: none;
  }

  .alclima-hero-bottom-art {
    top: clamp(530px, 52vh, 600px) !important;
    height: clamp(660px, 50vw, 820px) !important;
  }

  .alclima-hero-inner {
    min-height: clamp(900px, 90vh, 1040px) !important;
  }
}

.alclima-hero-banner h1 {
  color: #07130f !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #07130f !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
}

.alclima-hero-lede {
  color: #17241f !important;
  font-weight: 650;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
}

@media (max-width: 700px) {
  .alclima-hero-copy::before {
    display: none !important;
  }

  .alclima-hero-inner::before {
    top: 78px;
    height: 310px;
    background:
      linear-gradient(180deg,
        rgba(255,255,255,0.94) 0%,
        rgba(255,255,255,0.78) 56%,
        rgba(255,255,255,0) 100%);
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .alclima-hero-banner {
    padding-inline: 24px;
  }

  .alclima-hero-inner {
    min-height: clamp(720px, 84vh, 860px) !important;
    max-width: 100% !important;
    padding-inline: 0;
  }

  .alclima-hero-banner h1 {
    max-width: min(920px, calc(100vw - 48px)) !important;
    margin-inline: auto !important;
    font-size: clamp(54px, 8.4vw, 76px) !important;
    line-height: 1.02 !important;
    text-align: center;
  }

  .alclima-hero-lede {
    max-width: min(720px, calc(100vw - 64px)) !important;
    margin-inline: auto !important;
    font-size: clamp(18px, 2.4vw, 21px) !important;
    text-align: center;
  }

  .alclima-hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .alclima-hero-stats {
    max-width: min(760px, calc(100vw - 64px));
    margin-inline: auto;
  }

  .alclima-hero-bottom-art {
    top: clamp(170px, 20vh, 230px) !important;
    height: clamp(650px, 76vw, 820px) !important;
  }

  .alclima-hero-inner::before {
    top: clamp(118px, 14vh, 170px);
    height: clamp(360px, 42vh, 500px);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .why-modern-top,
  .why-page-hero,
  .contact-grid,
  .referral-layout {
    grid-template-columns: 1fr !important;
  }

  .why-modern-photo,
  .why-page-hero-media {
    min-height: 420px;
  }

  .blog-grid,
  .news-grid,
  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Hero video final framing: readable copy, live video below */
.alclima-hero-bottom-art {
  overflow: hidden !important;
  background: #ffffff !important;
  border-radius: 0 !important;
}

.alclima-hero-bottom-art .hero-cloudflare-video {
  background-color: #ffffff !important;
  background-position: center bottom !important;
  background-size: cover !important;
}

.alclima-hero-bottom-art .hero-cloudflare-video iframe {
  display: none !important;
  top: 50% !important;
  left: 50% !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
  transform: translate(-50%, -50%) !important;
  transform-origin: center center !important;
}

.alclima-hero-bottom-art .hero-cloudflare-video video {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  opacity: 1 !important;
}

@media (min-width: 1101px) {
  .alclima-hero-bottom-art {
    top: clamp(470px, 36vh, 520px) !important;
    width: min(100vw, 1800px) !important;
    height: min(56.25vw, 1012px) !important;
    aspect-ratio: 16 / 9;
  }

  .alclima-hero-inner {
    min-height: clamp(1120px, 112vh, 1300px) !important;
  }

  .alclima-hero-lede {
    position: relative;
    z-index: 3;
    padding-bottom: 6px;
  }
}

@media (max-width: 1100px) {
  .alclima-hero-bottom-art {
    top: auto !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 56.25vw !important;
    max-height: none !important;
    aspect-ratio: 16 / 9;
  }

  .alclima-hero-bottom-art .hero-cloudflare-video iframe {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .alclima-hero-bottom-art {
    top: clamp(330px, 18vh, 370px) !important;
    bottom: auto !important;
    width: 100vw !important;
    height: 56.25vw !important;
    max-height: none !important;
  }
}

/* Final local video restore: keep media below text and do not crop the frame. */
.alclima-hero-bottom-art .hero-cloudflare-video iframe,
.service-video-embed iframe,
.photovoltaic-video-embed iframe {
  display: block !important;
  opacity: 1 !important;
}

.alclima-hero-bottom-art .hero-cloudflare-video iframe,
.alclima-hero-bottom-art .hero-cloudflare-video video {
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
}

@media (min-width: 1101px) {
  .alclima-hero-bottom-art {
    top: clamp(330px, 23vh, 380px) !important;
    width: 100vw !important;
    max-width: none !important;
    height: 56.25vw !important;
  }

  .alclima-hero-inner {
    min-height: max(calc(56.25vw + 300px), 1080px) !important;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .alclima-hero-bottom-art {
    top: clamp(330px, 18vh, 370px) !important;
    bottom: auto !important;
    width: 100vw !important;
    max-width: none !important;
    height: 56.25vw !important;
  }

  .alclima-hero-inner {
    min-height: max(calc(56.25vw + 300px), 760px) !important;
  }
}
