/* ═══════════════════════════════════════════════════════
   HARMONICA EVENTS — Stylesheet (Glassmorphism Edition)
   Palette : Base #06090f | Accent #AECEE6 | Glass rgba(255,255,255,.05)
═══════════════════════════════════════════════════════ */

/* ─── VARIABLES ────────────────────────────────────── */
:root {
  --base:         #06090f;
  --base-mid:     #0d1219;
  --base-light:   #141c27;
  --accent:       #AECEE6;
  --accent-light: #C8E3F2;
  --accent-dark:  #7BAFD4;
  --accent-deep:  #4A8AB5;
  --white:        #ffffff;
  --off-white:    #f0f5fa;
  --glass:        rgba(255,255,255,0.08);
  --glass-mid:    rgba(255,255,255,0.14);
  --glass-border: rgba(174,206,230,0.15);
  --glass-border-strong: rgba(174,206,230,0.35);
  --text:         rgba(255,255,255,0.90);
  --text-muted:   rgba(255,255,255,0.52);
  --gray:         rgba(255,255,255,0.32);
  --gray-line:    rgba(255,255,255,0.08);

  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Inter', system-ui, sans-serif;

  --wrap: 1180px;
  --pad-section: 110px 0;
  --radius: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --speed: 0.3s;
  --shadow-sm: 0 2px 16px rgba(0,0,0,.35);
  --shadow:    0 8px 32px rgba(0,0,0,.45);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.60);
  --glow:      0 0 40px rgba(174,206,230,.12);
}

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

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

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }
a          { text-decoration: none; color: inherit; }
ul         { list-style: none; }
button     { font-family: inherit; cursor: pointer; }

/* ─── GLASSMORPHISM BACKGROUND ──────────────────────── */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #AECEE6 0%, transparent 62%);
  top: -15%; left: -10%;
  animation-duration: 22s;
  animation-delay: 0s;
  opacity: 0.72;
}
.orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, #5BAEDE 0%, transparent 62%);
  top: 30%; right: -8%;
  animation-duration: 18s;
  animation-delay: -6s;
  opacity: 0.64;
}
.orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #7BAFD4 0%, transparent 62%);
  bottom: 10%; left: 20%;
  animation-duration: 25s;
  animation-delay: -12s;
  opacity: 0.58;
}
.orb-4 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #C8E3F2 0%, transparent 62%);
  top: 55%; left: 50%;
  animation-duration: 16s;
  animation-delay: -4s;
  opacity: 0.28;
}
.orb-5 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #3A6A9B 0%, transparent 62%);
  bottom: -10%; right: 15%;
  animation-duration: 30s;
  animation-delay: -8s;
  opacity: 0.62;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(40px, -30px) scale(1.05); }
  50%       { transform: translate(-20px, 40px) scale(0.95); }
  75%       { transform: translate(30px, 20px) scale(1.02); }
}

/* All content needs to be above the orbs canvas */
.navbar, section, footer, .mobile-menu {
  position: relative;
  z-index: 1;
}

/* ─── LAYOUT HELPERS ────────────────────────────────── */
.container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: var(--pad-section);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ─── TYPOGRAPHY TOKENS ─────────────────────────────── */
.label-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.body-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1.5px solid transparent;
  transition: background var(--speed) var(--ease),
              border-color var(--speed) var(--ease),
              color var(--speed) var(--ease),
              transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
  white-space: nowrap;
}

.btn-lg { padding: 15px 32px; font-size: 0.95rem; }

.btn-primary {
  background: var(--accent);
  color: var(--base);
  border-color: var(--accent);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(174,206,230,.30);
}

.btn-ghost {
  background: var(--glass);
  color: var(--white);
  border-color: var(--glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(174,206,230,.12);
  border-color: var(--glass-border-strong);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: var(--glass);
  color: var(--text);
  border-color: var(--glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline-dark:hover {
  background: rgba(174,206,230,.10);
  border-color: var(--glass-border-strong);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-hero-animate] {
  opacity: 0;
  transform: translateY(24px);
}
[data-hero-animate].visible {
  animation: heroPop 0.75s var(--ease) forwards;
}

@keyframes heroPop {
  to { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 900;
  padding: 20px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(6, 9, 15, 0.72);
  backdrop-filter: blur(48px) saturate(200%);
  -webkit-backdrop-filter: blur(48px) saturate(200%);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.10), 0 4px 40px rgba(0,0,0,.55);
}

.nav-container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* Fallback text (hidden when logo image is present) */
.logo-text {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--white);
}

.logo-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  color: var(--accent);
  text-transform: uppercase;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.65);
  position: relative;
  transition: color var(--speed);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--speed) var(--ease);
}
.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active { color: var(--white); }
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { width: 100%; }

.nav-cta {
  padding: 9px 18px;
  background: var(--accent);
  color: var(--base) !important;
  border-radius: 7px;
  font-weight: 700;
  transition: background var(--speed), transform var(--speed), box-shadow var(--speed) !important;
}
.nav-cta:hover {
  background: var(--accent-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(174,206,230,.30);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(6, 9, 15, 0.97);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  z-index: 899;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  font-size: 2rem;
  color: rgba(255,255,255,.4);
  line-height: 1;
  transition: color var(--speed);
}
.mobile-close:hover { color: var(--white); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.04em;
  transition: color var(--speed);
}
.mobile-menu a:hover { color: var(--accent); }

.mobile-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: var(--base) !important;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 12px;
}


/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Fallback gradient (shown when no video) */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #040609 0%, #0a1422 50%, #0d1928 100%);
  z-index: 0;
}

/* Ambient glow */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 15% 50%, rgba(174,206,230,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 20%, rgba(174,206,230,.04) 0%, transparent 55%);
  animation: heroGlow 9s ease-in-out infinite alternate;
  z-index: 2;
}

@keyframes heroGlow {
  from { opacity: .6; }
  to   { opacity: 1; }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 6, 9, 0.93) 0%,
    rgba(10, 18, 30, 0.80) 55%,
    rgba(13, 22, 38, 0.90) 100%
  );
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 130px 28px 90px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border: 1px solid rgba(174,206,230,.35);
  border-radius: 30px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(174,206,230,.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 28px;
  transition-delay: 0.15s;
}
.hero-badge::before {
  content: '◆';
  font-size: 0.5rem;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.09;
  margin-bottom: 26px;
  transition-delay: 0.3s;
}

.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.60);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 44px;
  transition-delay: 0.45s;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
  transition-delay: 0.6s;
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  transition-delay: 0.75s;
}
.hero-stat { display: flex; flex-direction: column; gap: 3px; }
.stat-val {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.hero-stat-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.12);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 4;
  animation: fadeIn 1s 1.6s both;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.15);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { top: -100%; }
  100% { top: 100%; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ══════════════════════════════════════════════════════
   CONCEPT
══════════════════════════════════════════════════════ */
.concept {
  background: transparent;
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept-content .section-title { margin-bottom: 22px; }

.targets-intro {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 28px;
}
.targets-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 36px;
}
.targets-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.targets-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

/* QS Card */
.concept-visual {
  display: flex;
  justify-content: center;
}
.qs-card {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--glow);
  border: 1px solid var(--glass-border);
}
.qs-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(13,18,25,0.88) 0%, rgba(20,28,39,0.85) 100%);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
}
.qs-card-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 65% 35%, rgba(174,206,230,.10) 0%, transparent 60%);
}
.qs-card-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
}
.qs-diamond {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}
.qs-title {
  font-family: var(--font-h);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.qs-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,.50);
  line-height: 1.6;
  margin-bottom: 22px;
}
.qs-divider {
  width: 40px;
  height: 1px;
  background: rgba(174,206,230,.30);
  margin: 0 auto 18px;
}
.qs-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.qs-points li {
  font-size: 0.82rem;
  color: rgba(255,255,255,.65);
  padding-left: 14px;
  position: relative;
}
.qs-points li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.4rem;
  color: var(--accent);
  line-height: 1.6;
}


/* ══════════════════════════════════════════════════════
   LABEL QS — 3 PILLARS
══════════════════════════════════════════════════════ */
.label {
  background: transparent;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.11) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 44px 32px;
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.22);
  transition: transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease),
              border-color var(--speed) var(--ease);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--glow);
  border-color: var(--glass-border-strong);
}

.pillar-icon {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  color: var(--accent);
}
.pillar-icon svg {
  width: 40px;
  height: 40px;
}
.pillar-card h3 {
  font-family: var(--font-h);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.pillar-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 22px;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pillar-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.pillar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.65;
}


/* ══════════════════════════════════════════════════════
   OFFRES
══════════════════════════════════════════════════════ */
.offres {
  background: transparent;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.offer-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.20);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--glow);
}

.offer-featured {
  background: linear-gradient(135deg, rgba(174,206,230,0.14) 0%, rgba(174,206,230,0.04) 100%);
  border-color: rgba(174,206,230,0.38);
  box-shadow: 0 4px 24px rgba(0,0,0,0.30), inset 0 1px 0 rgba(174,206,230,0.28), 0 0 40px rgba(174,206,230,0.08);
}

.offer-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--base);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.offer-badge {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 12px;
}

.offer-name {
  font-family: var(--font-h);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 22px;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 26px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.offer-featured .offer-price { border-color: rgba(174,206,230,.15); }

.price-from { font-size: 0.78rem; color: rgba(255,255,255,.38); }
.price-val  { font-family: var(--font-h); font-size: 2.6rem; font-weight: 700; color: var(--accent); }
.price-ht   { font-size: 0.82rem; color: rgba(255,255,255,.38); }

.offer-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.offer-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.72);
}
.check {
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.offers-note {
  text-align: center;
  color: rgba(255,255,255,.38);
  font-size: 0.9rem;
  margin-top: 40px;
}
.offers-note a {
  color: var(--accent);
  font-weight: 600;
  transition: color var(--speed);
}
.offers-note a:hover { color: var(--accent-light); }


/* ══════════════════════════════════════════════════════
   GALERIE
══════════════════════════════════════════════════════ */
.gallery {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,9,15,0.45) 0%, rgba(10,18,30,0.15) 100%);
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 0.15;
}


/* ══════════════════════════════════════════════════════
   POURQUOI NOUS
══════════════════════════════════════════════════════ */
.why-us {
  background: transparent;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px 80px;
}

.why-item {
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.why-num {
  font-family: var(--font-h);
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(174,206,230,.14);
  line-height: 1;
  flex-shrink: 0;
  min-width: 64px;
  user-select: none;
}

.why-body h3 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.why-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}


/* ══════════════════════════════════════════════════════
   ESPACE CLIENT
══════════════════════════════════════════════════════ */
.client-space {
  background: transparent;
}

.client-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.client-feats {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 32px 0;
}
.client-feats li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feat-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-icon svg { width: 26px; height: 26px; }
.client-feats strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}
.client-feats p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* Platform mockup */
.client-visual {
  perspective: 1200px;
}

.mockup-window {
  background: linear-gradient(145deg, rgba(10,15,22,0.82) 0%, rgba(18,26,38,0.78) 100%);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--glow), inset 0 1px 0 rgba(255,255,255,0.14);
  transform: rotateY(-6deg) rotateX(3deg);
  transition: transform 0.5s var(--ease);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
}
.mockup-window:hover {
  transform: rotateY(0) rotateX(0);
}

.mockup-bar {
  background: rgba(255,255,255,.04);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--glass-border);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.mockup-url {
  font-size: 0.72rem;
  color: rgba(255,255,255,.28);
  letter-spacing: 0.04em;
  flex: 1;
  text-align: center;
}

.mockup-content { padding: 22px; }

.m-event-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(174,206,230,.07);
  border: 1px solid rgba(174,206,230,.16);
  border-radius: 10px;
  margin-bottom: 18px;
  gap: 12px;
}
.m-event-type {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
}
.m-event-venue {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,.38);
  margin-top: 2px;
}
.m-status {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(174,206,230,.14);
  color: var(--accent);
  padding: 4px 11px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.m-section { margin-bottom: 18px; }
.m-section-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 10px;
}

.m-track {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 7px;
  margin-bottom: 4px;
  transition: background var(--speed);
}
.m-track:hover { background: rgba(255,255,255,.04); }
.m-track-add {
  border: 1px dashed rgba(255,255,255,.10) !important;
  cursor: pointer;
  color: rgba(255,255,255,.28);
  font-size: 0.82rem;
}
.m-track-icon {
  color: var(--accent);
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.m-track-icon svg { width: 14px; height: 14px; }
.m-track-info { flex: 1; }
.m-track-info strong {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,.80);
}
.m-track-info span {
  font-size: 0.7rem;
  color: rgba(255,255,255,.32);
}
.m-track-dur {
  font-size: 0.7rem;
  color: rgba(255,255,255,.25);
}

.m-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.m-tag {
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-family: var(--font-b);
  color: rgba(255,255,255,.38);
  border: 1px solid rgba(255,255,255,.08);
  background: none;
  cursor: pointer;
  transition: all var(--speed);
}
.m-tag:hover { border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.70); }
.m-tag-active {
  background: rgba(174,206,230,.12);
  border-color: rgba(174,206,230,.38);
  color: var(--accent);
}


/* ══════════════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════════════ */
.blog {
  background: transparent;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease),
              border-color var(--speed) var(--ease);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--glow);
  border-color: var(--glass-border-strong);
}

.blog-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-thumb-1 { background: linear-gradient(145deg, #0a1525 0%, #1a4a6b 100%); }
.blog-thumb-2 { background: linear-gradient(145deg, #061218 0%, #0e3354 100%); }
.blog-thumb-3 { background: linear-gradient(145deg, #0d1a2a 0%, #1c4a72 100%); }

.blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: var(--base);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
}

.blog-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.55s var(--ease);
}
.blog-card:hover .blog-thumb-img {
  transform: scale(1.05);
}

.blog-body { padding: 22px 24px 28px; }
.blog-date {
  display: block;
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.06em;
  margin-bottom: 9px;
}
.blog-body h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.38;
}
.blog-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.62;
  margin-bottom: 16px;
}
.blog-link {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: color var(--speed);
}
.blog-link:hover { color: var(--accent-light); }


/* ══════════════════════════════════════════════════════
   FORMULAIRE DEVIS
══════════════════════════════════════════════════════ */
.devis {
  background: transparent;
}

.devis-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 80px;
  align-items: start;
}

.devis-intro .section-title { margin-bottom: 18px; }
.devis-intro .body-text     { margin-bottom: 28px; }

.devis-phone { margin-bottom: 32px; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color var(--speed);
}
.phone-link:hover { color: var(--accent); }
.phone-ico {
  display: inline-flex;
  align-items: center;
}
.phone-ico svg { width: 22px; height: 22px; }
.phone-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 7px;
}

.devis-reassurance {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.reassurance-item > span:first-child {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.reassurance-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Form panel */
.devis-form {
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 52px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--glow), inset 0 1px 0 rgba(255,255,255,0.22);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}
.form-group:not(.form-row > .form-group) {
  margin-bottom: 20px;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: 0.02em;
}
.req { color: var(--accent); }

input, select, textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.10);
  border-radius: 8px;
  font-family: var(--font-b);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--speed), box-shadow var(--speed), background var(--speed);
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(174,206,230,.12);
  background: rgba(255,255,255,.07);
}
input.error, select.error, textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.12);
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.28); }
textarea { resize: vertical; min-height: 108px; }

select option {
  background: var(--base-light);
  color: var(--white);
}

.form-error {
  font-size: 0.75rem;
  color: #ef4444;
  min-height: 16px;
  display: block;
}

/* RGPD check */
.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  min-width: 18px;
  padding: 0;
  margin-top: 2px;
  border-radius: 4px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-check label {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gray);
  cursor: pointer;
  line-height: 1.5;
}
.form-check a { color: var(--accent-light); text-decoration: underline; }

/* Submit button */
.devis-form .btn-primary {
  margin-top: 4px;
  font-size: 0.95rem;
  padding: 15px 28px;
}
.btn-ico {
  transition: transform var(--speed);
}
.devis-form .btn-primary:hover .btn-ico {
  transform: translateX(4px);
}

/* Success message */
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.22);
  border-radius: 8px;
  color: #4ade80;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 18px;
}
.form-success.visible { display: flex; }
.success-ico { font-size: 1.1rem; flex-shrink: 0; }


/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: rgba(4, 6, 9, 0.92);
  border-top: 1px solid var(--glass-border);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  padding: 88px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

/* Fallback text logo in footer */
.footer-logo .logo-text {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--white);
}
.footer-logo .logo-sub {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  color: var(--accent);
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.38);
  line-height: 1.65;
  max-width: 230px;
  margin-bottom: 18px;
}
.footer-phone {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--speed);
}
.footer-phone:hover { color: var(--accent-light); }

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.45);
  transition: color var(--speed);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255,255,255,.22);
}


/* ══════════════════════════════════════════════════════
   PARCOURS HARMONICA
══════════════════════════════════════════════════════ */
.parcours {
  background: transparent;
}

.parcours-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  row-gap: 0;
  position: relative;
  margin-bottom: 64px;
}

/* Each step row */
.parcours-step {
  display: flex;
  gap: 0;
  align-items: stretch;
  min-height: 180px;
}

/* Left column: odd steps — right column: even steps */
.parcours-step:nth-child(odd)  { grid-column: 1; }
.parcours-step:nth-child(even) { grid-column: 2; }

/* Vertical connector */
.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 56px;
  margin-right: 22px;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(174,206,230,0.18) 0%, rgba(174,206,230,0.06) 100%);
  border: 1.5px solid rgba(174,206,230,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  box-shadow: 0 0 22px rgba(174,206,230,0.12);
  transition: background var(--speed), box-shadow var(--speed);
}
.parcours-step:hover .step-num {
  background: linear-gradient(135deg, rgba(174,206,230,0.28) 0%, rgba(174,206,230,0.10) 100%);
  box-shadow: 0 0 32px rgba(174,206,230,0.22);
}

.step-line {
  flex: 1;
  width: 1.5px;
  background: linear-gradient(to bottom, rgba(174,206,230,0.30), rgba(174,206,230,0.05));
  margin: 8px 0;
  min-height: 40px;
}

/* Card */
.step-card {
  flex: 1;
  padding: 28px 28px 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.16);
  margin-bottom: 28px;
  transition: border-color var(--speed), box-shadow var(--speed), transform var(--speed);
}
.step-card:hover {
  border-color: rgba(174,206,230,0.28);
  box-shadow: 0 8px 36px rgba(0,0,0,0.35), var(--glow), inset 0 1px 0 rgba(174,206,230,0.15);
  transform: translateY(-3px);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.step-title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
  flex: 1;
}

.step-timing {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 16px;
}

.step-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-points li {
  font-size: 0.85rem;
  color: rgba(255,255,255,.60);
  line-height: 1.6;
  padding-left: 0;
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.step-point-label {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Garantie block */
.parcours-garantie {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, rgba(174,206,230,0.12) 0%, rgba(174,206,230,0.03) 100%);
  border: 1px solid rgba(174,206,230,0.30);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(174,206,230,0.18);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  flex-wrap: wrap;
}

.garantie-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(174,206,230,0.12);
  border: 1.5px solid rgba(174,206,230,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 28px rgba(174,206,230,0.15);
}

.garantie-body {
  flex: 1;
  min-width: 240px;
}
.garantie-title {
  font-family: var(--font-h);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.garantie-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.garantie-cta { flex-shrink: 0; }


/* ══════════════════════════════════════════════════════
   ARTICLE DE BLOG
══════════════════════════════════════════════════════ */

/* Hero */
.article-hero {
  padding: 140px 0 64px;
  position: relative;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.article-breadcrumb a { color: var(--accent); transition: color var(--speed); }
.article-breadcrumb a:hover { color: var(--accent-light); }
.article-breadcrumb span { color: var(--gray); }

.article-cat {
  display: inline-block;
  background: rgba(174,206,230,0.10);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(174,206,230,0.25);
  margin-bottom: 20px;
}

.article-hero-title {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 820px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 48px;
}
.article-meta strong { color: rgba(255,255,255,.70); font-weight: 600; }
.article-meta-sep { color: rgba(255,255,255,.18); }

.article-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  margin-bottom: 0;
}

/* Layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 272px;
  gap: 64px;
  align-items: start;
  padding: 64px 0 100px;
}

/* Content typography */
.article-content { min-width: 0; }

.article-intro {
  font-size: 1.08rem;
  color: rgba(255,255,255,.82);
  line-height: 1.85;
  border-left: 3px solid var(--accent);
  padding-left: 22px;
  margin-bottom: 40px;
}

.article-content h2 {
  font-family: var(--font-h);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  color: var(--white);
  margin: 52px 0 16px;
  line-height: 1.22;
  padding-top: 8px;
}
.article-content h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  color: var(--accent-light);
  margin: 30px 0 10px;
  line-height: 1.3;
}
.article-content p {
  font-size: 0.97rem;
  color: rgba(255,255,255,.70);
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-content strong { color: var(--white); font-weight: 600; }
.article-content a { color: var(--accent); transition: color var(--speed); text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: var(--accent-light); }

.article-content ul,
.article-content ol {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-content li {
  font-size: 0.95rem;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  padding-left: 22px;
  position: relative;
}
.article-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.70;
}
.article-content ol { counter-reset: ol-counter; }
.article-content ol li { counter-increment: ol-counter; }
.article-content ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.75;
}

/* Table */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 28px;
  font-size: 0.87rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.article-content th {
  background: rgba(174,206,230,0.10);
  color: var(--accent);
  padding: 11px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(174,206,230,0.20);
}
.article-content td {
  padding: 12px 16px;
  color: rgba(255,255,255,.68);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}
.article-content tr:last-child td { border-bottom: none; }
.article-content tr:nth-child(even) td { background: rgba(255,255,255,0.04); }

/* Inline CTA box */
.article-cta-box {
  background: linear-gradient(135deg, rgba(174,206,230,0.11) 0%, rgba(174,206,230,0.03) 100%);
  border: 1px solid rgba(174,206,230,0.28);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 52px 0;
}
.article-cta-box h3 {
  font-family: var(--font-h);
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 12px;
}
.article-cta-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* Track list (Gala article) */
.track-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.track-item:last-child { border-bottom: none; }
.track-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(174,206,230,0.18);
  line-height: 1;
  min-width: 44px;
  flex-shrink: 0;
}
.track-body h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
  margin-top: 0;
}
.track-body .track-artist {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.track-body p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Sidebar */
.article-sidebar { position: sticky; top: 100px; }

.sidebar-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  padding: 26px 22px;
  margin-bottom: 22px;
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
}
.sidebar-card h4 {
  font-family: var(--font-h);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(174,206,230,0.14);
}
.sidebar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-nav a {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--speed), padding-left var(--speed);
  line-height: 1.4;
}
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover { color: var(--accent); padding-left: 6px; }


/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */

/* 1024px - Tablet landscape */
@media (max-width: 1024px) {
  .concept-grid,
  .client-grid,
  .devis-wrapper {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .concept-visual { display: none; }
  .client-visual  { display: none; }

  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 44px; }

  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }

  .parcours-timeline { grid-template-columns: 1fr; }
  .parcours-step:nth-child(odd),
  .parcours-step:nth-child(even) { grid-column: 1; }
}

/* 768px - Tablet portrait */
@media (max-width: 768px) {
  :root { --pad-section: 72px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 22px;
    row-gap: 16px;
  }
  .hero-stat-sep { display: none; }
  .stat-val { font-size: 1.6rem; }

  .pillars-grid,
  .offers-grid,
  .why-grid,
  .blog-grid,
  .gallery-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .devis-form { padding: 32px 22px; }

  .article-hero { padding: 120px 0 48px; }
  .article-hero-img { border-radius: var(--radius); max-height: 300px; }
  .article-cta-box { padding: 28px 20px; }
  .article-content h2 { margin-top: 36px; }
  .article-layout { padding: 40px 0 64px; gap: 40px; }

  .parcours-garantie { flex-direction: column; padding: 28px 22px; gap: 20px; }
  .garantie-cta { width: 100%; justify-content: center; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* 480px - Mobile */
@media (max-width: 480px) {
  .hero-title    { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-content  { padding: 110px 20px 70px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: none; }
  .devis-form { padding: 24px 16px; }
}
