/* =========================================================
   VISIOFRAME — Design System
   Couleurs reprises de la carte des revendeurs.
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800;900&display=swap');

/* Page-speed & accessibilité : respecte prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* Perf : retiré content-visibility/contain car cassait GSAP pin (containing block parasite).
   Le scroll est déjà optimisé via scrub léger + animations GPU. */

/* Mobile-first : touch targets accessibles ≥44px sur écrans tactiles */
@media (hover: none) and (pointer: coarse) {
  .btn, .btn--sm, .nav__menu a, .footer li a {
    min-height: 44px;
    display: inline-flex; align-items: center;
  }
  .nav__burger { min-width: 44px; min-height: 44px; }
  .chatbot-bubble { min-width: 56px; min-height: 56px; }
  .chatbot-window__close { min-width: 40px; min-height: 40px; }
}

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

:root {
  /* Family — orange */
  --brand:        #F07030;
  --brand-dark:   #C95820;
  --brand-light:  #FFF4EE;
  --brand-50:     #FFF8F3;
  /* Pro — bleu */
  --pro:          #1E6AC8;
  --pro-dark:     #1557A8;
  --pro-light:    #EFF6FF;
  --pro-50:       #F0F7FF;
  /* Neutres */
  --navy:         #1A1A2E;
  --navy-soft:    #222244;
  --ink:          #1f2937;
  --muted:        #6b7280;
  --line:         #ececec;
  --bg:           #ffffff;
  --bg-soft:      #fbfaf8;
  --success:      #2E7D32;
  --warn:         #C95820;
  --danger:       #B71C1C;
  --shadow-sm:    0 1px 2px rgba(0,0,0,.06);
  --shadow-md:    0 8px 24px rgba(20,20,40,.08);
  --shadow-lg:    0 20px 60px rgba(20,20,40,.12);
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    18px;
  --maxw:         1200px;
  --header-h:     76px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

/* ───────── Layout ───────── */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #fff; }
.section--brand { background: var(--brand); color: #fff; }

@media (max-width: 767px) { .section { padding: 64px 0; } }

/* ───────── Typo ───────── */
h1,h2,h3,h4,h5 { font-family: 'Nunito', sans-serif; color: var(--navy); line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.8vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 800; }
h4 { font-size: 1.05rem; font-weight: 800; }
.section--navy h1,.section--navy h2,.section--navy h3,
.section--brand h1,.section--brand h2,.section--brand h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.lead { font-size: 1.125rem; color: var(--muted); max-width: 60ch; }
.section--navy .lead, .section--brand .lead { color: rgba(255,255,255,.78); }

/* ───────── Boutons ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  font-weight: 800; font-size: 14px;
  letter-spacing: .4px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 0;
  transition: all .22s ease;
  cursor: pointer; user-select: none;
  position: relative;
  box-shadow: 3px 3px 0 rgba(0,0,0,.08);
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(0,0,0,.12); }
.btn:active { transform: translate(0,0); box-shadow: 1px 1px 0 rgba(0,0,0,.10); }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: #0e0e1f; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); box-shadow: none; }
.btn--ghost:hover { background: var(--navy); color: #fff; box-shadow: 3px 3px 0 rgba(0,0,0,.10); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--brand-light); color: var(--brand-dark); }
.btn--lg { padding: 18px 32px; font-size: 15px; }
.btn--sm { padding: 10px 18px; font-size: 12px; }
.btn--block { width: 100%; }

/* ───────── Header ───────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: 44px; width: auto; transition: transform .2s ease; }
.nav__brand:hover img { transform: scale(1.04); }

/* SVG icon helpers */
.vf-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-tile {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-light); color: var(--brand);
  margin-bottom: 14px;
  position: relative;
}
.icon-tile::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.4), transparent 50%);
  pointer-events:none;
}
.card.dark .icon-tile, .bento .c-5 .icon-tile {
  background: rgba(255,255,255,.14); color: #fff;
}

.nav__menu { display: flex; align-items: center; gap: 28px; }
.nav__menu a {
  font-size: 14px; font-weight: 700; color: var(--navy);
  position: relative; padding: 6px 0;
}
.nav__menu a::after {
  content:''; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; background: var(--brand);
  transition: width .25s ease;
}
.nav__menu a:hover::after, .nav__menu a.active::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; }

/* ───────── Language switcher (drapeau + dropdown) ───────── */
.nav__lang-wrap { position: relative; }
.nav__lang-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1.5px solid var(--line);
  padding: 8px 12px;
  font-weight: 800; font-size: 13px; color: var(--navy);
  cursor: pointer; transition: border-color .2s, background .2s;
  font-family: inherit;
}
.nav__lang-btn:hover { border-color: var(--brand); }
.nav__lang-btn .flag { font-size: 16px; line-height: 1; }
.nav__lang-btn .code { letter-spacing: .8px; }
.nav__lang-btn .chev { font-size: 9px; color: var(--muted); margin-left: 2px; }

.nav__lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0;
  list-style: none; padding: 6px;
  background: #fff;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-md);
  min-width: 180px;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
  z-index: 300;
}
.nav__lang-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav__lang-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  font-size: 13px; font-weight: 700; color: var(--navy);
  transition: background .15s;
}
.nav__lang-menu li a:hover { background: var(--brand-light); color: var(--brand-dark); }
.nav__lang-menu li a.is-active { background: var(--brand-light); color: var(--brand-dark); }
.nav__lang-menu li a .flag { font-size: 18px; line-height: 1; }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  display: block; width: 18px; height: 2px; background: var(--navy);
  content: ''; position: relative;
}
.nav__burger span::before { position: absolute; top: -6px; left: 0; }
.nav__burger span::after  { position: absolute; top:  6px; left: 0; }

@media (max-width: 900px) {
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__actions .btn { display: none; }
  .nav__actions .btn.nav__cta { display: inline-flex; padding: 10px 14px; font-size: 12px; }
  .nav__lang-wrap--desktop { display: none; } /* langue passe dans le burger */
}

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0;
  background: #fff; z-index: 199;
  transform: translateY(-110%); transition: transform .28s ease;
  display: flex; flex-direction: column; padding: 28px 24px;
  border-top: 1px solid var(--line);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { padding: 14px 0; font-size: 18px; font-weight: 800; color: var(--navy); border-bottom: 1px solid var(--line); }

/* Sélecteur langue dans burger menu */
.mobile-menu__lang { margin-top: 28px; padding-top: 22px; border-top: 2px solid var(--brand-light); }
.mobile-menu__lang-label {
  font-size: 10px; font-weight: 900; color: var(--muted);
  letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 12px;
}
.mobile-menu__lang-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.mobile-lang-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid var(--line);
  font-family: inherit; font-size: 14px; font-weight: 800;
  color: var(--navy); cursor: pointer;
  transition: all .15s;
  min-height: 44px;
}
.mobile-lang-btn:hover { border-color: var(--brand); background: var(--brand-light); }
.mobile-lang-btn.is-active {
  background: var(--brand-light);
  border-color: var(--brand);
  color: var(--brand-dark);
}
.mobile-lang-btn .flag { font-size: 18px; line-height: 1; }
.mobile-lang-btn .label { font-size: 13px; }

/* ───────── Hero ───────── */
.hero { position: relative; overflow: hidden; padding: 90px 0 110px; background: linear-gradient(180deg, #fff 0%, var(--brand-50) 100%); }

/* Hero avec photo de fond — plein écran */
.hero--photo {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: var(--navy);
  color: #fff;
}
.hero--photo h1 { color: #fff; }
.hero--photo h1 .accent { color: var(--brand); }
.hero--photo .hero__lead { color: rgba(255,255,255,.75); }

.hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26,26,46,.92) 0%, rgba(26,26,46,.70) 50%, rgba(26,26,46,.30) 100%);
}
.hero--photo .container { position: relative; z-index: 1; width: 100%; }

/* Pastilles trust */
.hero__trust {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* Vraie image tablette en hero */
.hero__tablet-img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
  transform: perspective(800px) rotateY(-8deg) rotateX(3deg);
  transition: transform .4s ease;
}
.hero__tablet-img:hover {
  transform: perspective(800px) rotateY(-4deg) rotateX(1deg);
}

/* Pills 3 mots-clés compactes sous les CTA */
.hero__pills {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 28px;
}
.hero__pills span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 800;
  color: rgba(255,255,255,.8);
  letter-spacing: .4px;
}

.hero::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(240,112,48,.18), transparent 60%);
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--brand); }
.hero__lead { font-size: 1.2rem; color: var(--muted); margin-bottom: 30px; max-width: 52ch; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__metrics { display: flex; gap: 36px; margin-top: 42px; }
.hero__metric .v { font-size: 1.7rem; font-weight: 900; color: var(--navy); }
.hero__metric .l { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.4px; margin-top: 4px; }

.hero__visual { position: relative; }
.hero__tablet {
  position: relative; width: 100%; max-width: 540px; margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(20,20,40,.25));
}
.hero__tablet img { width: 100%; }

/* ─── Made in Luxembourg stamp ─── */
.lux-stamp {
  margin-top: 42px;
  display: inline-flex; align-items: center; gap: 16px;
  padding: 14px 22px 14px 14px;
  background: #fff;
  border: 2px solid var(--navy);
  box-shadow: 5px 5px 0 var(--brand);
  position: relative;
}
.lux-stamp::after {
  content: attr(data-stamp);
  position: absolute;
  top: -10px; right: -8px;
  background: var(--brand);
  color: #fff;
  font-size: 9px; font-weight: 900;
  padding: 3px 8px;
  letter-spacing: 1.5px;
}
.lux-stamp__flag {
  display: flex; flex-direction: column;
  width: 56px; height: 38px;
  border: 1.5px solid var(--navy);
  overflow: hidden;
  flex-shrink: 0;
}
.lux-stripe { flex: 1; display: block; }
.lux-stripe--red   { background: #ED2939; }
.lux-stripe--white { background: #FFFFFF; }
.lux-stripe--blue  { background: #00A3E0; }
.lux-stamp__txt { line-height: 1.05; }
.lux-stamp__t1 {
  font-size: 11px; font-weight: 800; color: var(--muted);
  text-transform: uppercase; letter-spacing: 2px;
}
.lux-stamp__t2 {
  font-size: 22px; font-weight: 900; color: var(--navy);
  letter-spacing: .5px; margin-top: 2px;
}
.lux-stamp__sub {
  font-size: 10px; font-weight: 700; color: var(--muted);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 4px;
}

@media (max-width: 600px) {
  .lux-stamp { padding: 12px 18px 12px 12px; gap: 12px; }
  .lux-stamp__flag { width: 44px; height: 30px; }
  .lux-stamp__t2 { font-size: 18px; }
}

/* ─── Hero badges (Luxembourg + Depuis 2020) ─── */
.hero__badges {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.lux-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff;
  padding: 6px 14px;
  font-size: 11px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--brand);
}
.lux-badge .flag { font-size: 16px; line-height: 1; }
.since-badge {
  display: inline-flex; align-items: center;
  background: var(--brand-light); color: var(--brand-dark);
  padding: 6px 12px;
  font-size: 11px; font-weight: 900; letter-spacing: 1.6px; text-transform: uppercase;
}

/* ─── 3 mots-clés sous le hero lead ─── */
.hero__keywords {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin: 24px 0 30px;
  max-width: 540px;
}
.hero__keywords .kw {
  display: flex; align-items: center; gap: 8px;
  background: #fff;
  border-left: 3px solid var(--brand);
  padding: 10px 12px;
  font-size: 10.5px; font-weight: 900; color: var(--navy);
  letter-spacing: 1.2px; text-transform: uppercase;
  box-shadow: 2px 2px 0 rgba(20,20,40,.06);
}
.hero__keywords .kw-ico {
  width: 22px; height: 22px;
  background: var(--brand-light); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hero__keywords { grid-template-columns: 1fr; }
}

/* ─── Tablette landscape hero (CSS only) ─── */
.hero-tablet {
  position: relative;
  width: 100%; max-width: 540px; margin: 0 auto;
}
.hero-tablet__screen {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0a0a18;
  border-radius: 18px;
  padding: 12px;
  box-shadow:
    0 30px 60px rgba(20,20,40,.30),
    inset 0 0 0 1.5px #2a2a4a,
    inset 0 0 0 3px #0a0a18;
}
.hero-tablet__screen::before {
  content: ''; position: absolute;
  top: 4px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: #2a2a4a;
}
.hero-tablet__screen::after {
  content: ''; position: absolute;
  right: 4px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  border: 1px solid #2a2a4a;
}
.hero-tablet .hts-bar {
  background: linear-gradient(180deg, #1A1A2E, #0a0a18);
  color: #fff;
  padding: 8px 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 800; letter-spacing: .8px;
  border-radius: 6px 6px 0 0;
}
.hero-tablet .hts-call {
  background:
    radial-gradient(circle at 50% 30%, rgba(240,112,48,.12) 0%, transparent 65%),
    linear-gradient(180deg, #1A1A2E, #0a0a18);
  color: #fff;
  padding: 14px 16px 10px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  align-items: center;
  border-radius: 0 0 6px 6px;
  flex: 1;
  text-align: left;
}
.hero-tablet .hts-call > .hts-left { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-tablet .hts-call > .hts-right { display: flex; flex-direction: column; gap: 8px; }
.hero-tablet .hts-avatar {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; font-size: 28px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  position: relative;
}
.hero-tablet .hts-avatar::before, .hero-tablet .hts-avatar::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--brand);
  opacity: .55;
  animation: ringPulse 1.8s ease-out infinite;
}
.hero-tablet .hts-avatar::after { animation-delay: .9s; }
.hero-tablet .hts-name {
  font-size: 15px; font-weight: 900; margin-bottom: 2px;
}
.hero-tablet .hts-sub {
  font-size: 10px; opacity: .65; letter-spacing: .4px; margin-bottom: 4px;
}
.hero-tablet .hts-auto {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(240,112,48,.18);
  color: var(--brand);
  font-size: 8.5px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 3px 8px;
  align-self: flex-start;
}
.hero-tablet .hts-auto .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--brand);
  animation: blink 1.2s infinite;
}
.hero-tablet .hts-actions {
  display: flex; gap: 12px; margin-top: 4px;
}
.hero-tablet .hts-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: #fff; font-size: 13px;
  box-shadow: 0 6px 16px rgba(0,0,0,.4);
}
.hero-tablet .hts-btn--accept { background: #2E7D32; }
.hero-tablet .hts-btn--reject { background: #B71C1C; }
/* Petit pied/support sous la tablette pour rappeler qu'elle est posée */
.hero-tablet__stand {
  width: 60%; height: 8px;
  margin: 14px auto 0;
  background: linear-gradient(180deg, #2a2a4a, #1A1A2E);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  opacity: .8;
}
@keyframes ringPulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(1.7); opacity: 0;   }
}
@keyframes blink { 0%,100%{ opacity:1 } 50%{ opacity:.3 } }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__metrics { gap: 22px; }
  .hero__metric .v { font-size: 1.4rem; }
}

/* ───────── Feature bento grid ───────── */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.bento .card {
  background: #fff; border: 1px solid var(--line);
  padding: 28px; transition: transform .22s ease, box-shadow .22s ease;
  position: relative; overflow: hidden;
}
.bento .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bento .c-1 { grid-column: span 7; background: var(--navy); color: #fff; padding: 36px; }
.bento .c-1 h3 { color: #fff; }
.bento .c-2 { grid-column: span 5; }
.bento .c-3 { grid-column: span 4; }
.bento .c-4 { grid-column: span 4; }
.bento .c-5 { grid-column: span 4; background: var(--brand); color: #fff; }
.bento .c-5 h3 { color: #fff; }

.card .icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-light); color: var(--brand);
  font-size: 22px; margin-bottom: 14px;
}
.card.dark .icon { background: rgba(255,255,255,.12); color: #fff; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }
.card.dark p, .bento .c-5 p { color: rgba(255,255,255,.82); }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento .c-1, .bento .c-2, .bento .c-3, .bento .c-4, .bento .c-5 { grid-column: span 6; }
}

/* ───────── Section títrée ───────── */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 14px; }
.section-head .lead { margin: 0 auto; }

/* ───────── Étapes — timeline connectée ───────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  margin-top: 12px;
}
/* ligne pointillée qui relie les icônes */
.steps::before {
  content: '';
  position: absolute;
  top: 38px; left: 13%; right: 13%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--brand) 0 7px, transparent 7px 15px);
  opacity: .35;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: center;
}
.step__icon {
  width: 76px; height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  box-shadow: 0 10px 26px rgba(240,112,48,.18);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover .step__icon {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 16px 34px rgba(240,112,48,.3);
}
.step__num {
  position: absolute;
  top: -6px; right: -6px;
  width: 27px; height: 27px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 12px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(240,112,48,.45);
  border: 2px solid #fff;
}
.step h4 { margin-bottom: 8px; font-size: 1.05rem; color: var(--navy); }
.step p { color: var(--muted); font-size: .92rem; line-height: 1.55; max-width: 230px; margin: 0 auto; }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .steps::before { display: none; }
}
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ───────── Pricing ───────── */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan {
  background: #fff; border: 1px solid var(--line);
  padding: 36px 28px;
  position: relative; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured {
  background: var(--navy); color: #fff; border-color: var(--navy);
  transform: translateY(-10px);
}
.plan.plan--featured h3 { color: #fff; }
.plan.plan--featured .price { color: #fff; }
.plan__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: 10px; font-weight: 900;
  padding: 6px 14px; letter-spacing: 2px; text-transform: uppercase;
}
.plan h3 { margin-bottom: 4px; }
.plan__sub { color: var(--muted); font-size: .9rem; margin-bottom: 22px; }
.plan.plan--featured .plan__sub { color: rgba(255,255,255,.65); }
.plan .price { font-size: 2.4rem; font-weight: 900; color: var(--navy); display: flex; align-items: baseline; gap: 8px; }
.plan .price small { font-size: 14px; font-weight: 700; color: var(--muted); }
.plan.plan--featured .price small { color: rgba(255,255,255,.6); }
.plan ul { list-style: none; margin: 24px 0 28px; }
.plan li { padding: 9px 0; font-size: .95rem; display: flex; align-items: flex-start; gap: 10px; border-bottom: 1px dashed var(--line); }
.plan--featured li { border-bottom-color: rgba(255,255,255,.12); }
.plan li::before { content: '✓'; color: var(--brand); font-weight: 900; flex-shrink: 0; }
.plan--featured li::before { color: var(--brand); }
.plan .btn { margin-top: auto; }

@media (max-width: 900px) {
  .plans { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
}

/* ───────── Testimonials ───────── */
.tmls { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tml {
  background: #fff; padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
}
.tml__stars { color: var(--brand); margin-bottom: 12px; font-size: 14px; letter-spacing: 2px; }
.tml p { font-size: .98rem; color: var(--ink); margin-bottom: 18px; font-style: italic; }
.tml__author { display: flex; align-items: center; gap: 12px; }
.tml__author .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 900;
}
.tml__author .nm { font-weight: 800; font-size: 14px; color: var(--navy); }
.tml__author .role { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.2px; }

@media (max-width: 900px) { .tmls { grid-template-columns: 1fr; } }

/* ───────── FAQ ───────── */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item {
  border-top: 1px solid var(--line);
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  background: transparent; border: none; text-align: left;
  padding: 22px 0;
  font-size: 1.05rem; font-weight: 800; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq__q .ico {
  width: 26px; height: 26px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-light); color: var(--brand);
  font-weight: 900; transition: transform .25s ease;
}
.faq__item.open .faq__q .ico { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq__a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
  color: var(--muted); font-size: .98rem;
}
.faq__a-inner { padding: 0 0 22px; }
.faq__item.open .faq__a { max-height: 400px; }

/* ───────── CTA band ───────── */
.cta-band {
  background: var(--navy); color: #fff;
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; left: -100px; bottom: -100px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,112,48,.25), transparent 60%);
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.75); max-width: 56ch; margin: 0 auto 28px; }

/* ───────── Section "Une journée connectée" ───────── */
.day-journey {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(240,112,48,.08), transparent 60%),
    radial-gradient(600px 500px at 0% 100%, rgba(107,102,224,.07), transparent 65%),
    #fff;
}
.day-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px; margin: 0 auto 56px;
}
.day-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  padding: 22px 18px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.day-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.day-stat__num {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900; color: var(--brand);
  letter-spacing: -.01em; line-height: 1;
}
.day-stat__lbl {
  font-size: 11px; color: var(--muted);
  font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .day-stats { grid-template-columns: 1fr; gap: 10px; }
}

/* Timeline horizontale */
.day-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 0 0 56px;
}
.day-rail {
  position: absolute;
  top: 65px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand) 12%, var(--brand) 88%, transparent);
  opacity: .35;
  z-index: 0;
}
.day-step {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  z-index: 1;
}
.day-step__time {
  font-size: 12px; font-weight: 900;
  letter-spacing: 2px;
  color: var(--brand);
  margin-bottom: 14px;
}
.day-step__dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(20,20,40,.18);
  transition: transform .25s ease;
}
.day-step:hover .day-step__dot { transform: scale(1.1); }
.day-step__dot--accent {
  width: 56px; height: 56px;
  background: var(--brand);
  box-shadow: 0 8px 22px rgba(240,112,48,.35);
  position: relative;
}
.day-step__dot--accent::before {
  content:''; position: absolute; inset: -6px;
  border: 2px solid var(--brand); border-radius: 50%;
  opacity: .35;
  animation: ringPulse 2s ease-out infinite;
}
.day-step__card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  padding: 18px 14px;
  width: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.day-step:hover .day-step__card { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.day-step__card h4 {
  font-size: .98rem; margin-bottom: 8px; color: var(--navy);
  line-height: 1.25;
}
.day-step__card p {
  font-size: .82rem; color: var(--muted); line-height: 1.5;
}
.day-step--big .day-step__card {
  background: var(--navy); color: #fff; border-color: var(--navy);
  border-top-color: var(--brand);
}
.day-step--big .day-step__card h4 { color: #fff; }
.day-step--big .day-step__card p { color: rgba(255,255,255,.78); }

.day-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(240,112,48,.18);
  color: var(--brand);
  font-size: 9.5px; font-weight: 900;
  letter-spacing: 1.4px; text-transform: uppercase;
  padding: 4px 9px;
  margin-top: 12px;
}
.day-tag__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
  animation: blink 1.4s infinite;
}

/* Mobile : timeline verticale */
@media (max-width: 900px) {
  .day-timeline {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-left: 28px;
  }
  .day-rail {
    top: 8px; bottom: 8px; left: 21px;
    width: 2px; height: auto; right: auto;
    background: linear-gradient(180deg, transparent, var(--brand) 6%, var(--brand) 94%, transparent);
  }
  .day-step {
    flex-direction: row;
    align-items: flex-start; gap: 18px;
    text-align: left;
    margin-left: -28px;
  }
  .day-step__time {
    width: 56px; flex-shrink: 0;
    margin-bottom: 0; padding-top: 12px;
    text-align: right;
  }
  .day-step__dot {
    margin-bottom: 0;
    width: 36px; height: 36px; flex-shrink: 0;
  }
  .day-step__dot--accent { width: 44px; height: 44px; }
  .day-step__card { flex: 1; }
}

/* Bloc Pro discret */
.day-pro {
  display: flex; align-items: center; gap: 22px;
  background: linear-gradient(135deg, var(--navy) 0%, #0e0e1f 100%);
  color: #fff;
  padding: 28px 32px;
  border-left: 4px solid var(--brand);
  flex-wrap: wrap;
}
.day-pro__icon {
  width: 56px; height: 56px;
  background: rgba(240,112,48,.2);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.day-pro__txt { flex: 1; min-width: 200px; }
.day-pro__eyebrow {
  font-size: 10px; font-weight: 900;
  letter-spacing: 2px; color: var(--brand);
  text-transform: uppercase;
}
.day-pro__title {
  font-size: 1.25rem; font-weight: 900;
  color: #fff; margin-top: 2px;
}
.day-pro p {
  font-size: .92rem; color: rgba(255,255,255,.7); margin-top: 6px;
  max-width: 60ch;
}

/* ───────── Footer redesign ───────── */
.site-footer {
  position: relative;
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(240,112,48,.08), transparent 65%),
    radial-gradient(900px 500px at 100% 100%, rgba(107,102,224,.07), transparent 70%),
    #0a0a18;
  color: rgba(255,255,255,.78);
  padding: 72px 0 28px;
  overflow: hidden;
}
.site-footer__ribbon {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #ED2939 33%, #FFFFFF 50%, #00A3E0 66%, var(--brand) 100%);
  /* animation retirée — gain perf (était 12s loop continu) */
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 42px;
}

/* ─── Brand block ─── */
.footer__brand img { height: 42px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer__tagline {
  font-size: .92rem; line-height: 1.6;
  color: rgba(255,255,255,.7);
  max-width: 38ch;
  margin-bottom: 24px;
}

/* Drapeau Luxembourg stylisé */
.footer__lux {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 10px 14px 10px 10px;
  margin-bottom: 22px;
  transition: background .2s, border-color .2s;
}
.footer__lux:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.20);
}
.footer__lux-flag {
  display: flex; flex-direction: column;
  width: 32px; height: 22px;
  border: 1px solid rgba(255,255,255,.25);
  overflow: hidden;
  flex-shrink: 0;
}
.lf-stripe { flex: 1; display: block; }
.lf-red    { background: #ED2939; }
.lf-white  { background: #FFFFFF; }
.lf-blue   { background: #00A3E0; }
.footer__lux-title {
  font-size: 11px; font-weight: 900; letter-spacing: 1.8px;
  text-transform: uppercase; color: #fff;
}
.footer__lux-sub {
  font-size: 10px; color: rgba(255,255,255,.55);
  font-weight: 700; letter-spacing: .8px;
  margin-top: 2px;
}

/* App stores compacts */
.footer__stores { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__store {
  display: inline-block; transition: transform .2s, filter .2s;
  border-radius: 8px; overflow: hidden;
}
.footer__store:hover { transform: translateY(-2px); filter: brightness(1.1); }
.footer__store img { height: 40px; width: auto; display: block; }

/* ─── Colonnes liens ─── */
.footer__col {}
.site-footer h5 {
  color: #fff !important;
  font-size: 12px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 1.8px;
  margin-bottom: 18px;
  position: relative; padding-bottom: 10px;
}
.site-footer h5::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 28px; height: 2px; background: var(--brand);
}
.site-footer ul {
  list-style: none !important;
  padding-left: 0;
  margin-left: 0;
}
.site-footer ul li {
  list-style: none !important;
  padding: 6px 0;
  font-size: .92rem;
  margin-left: 0;
}
.site-footer ul li::before,
.site-footer ul li::marker { content: '' !important; display: none !important; }
.site-footer li a {
  color: rgba(255,255,255,.7);
  transition: color .15s, padding-left .15s;
  display: inline-block;
}
.site-footer li a:hover {
  color: var(--brand);
  padding-left: 4px;
}

/* ─── Carte contact ─── */
.footer__contact {}
.footer__contact-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0;
  color: rgba(255,255,255,.78);
  transition: color .15s;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__contact-row:last-child { border-bottom: none; }
.footer__contact-row:hover { color: #fff; }
.footer__contact-row:hover .footer__contact-ico { background: var(--brand); color: #fff; border-color: var(--brand); }
.footer__contact-ico {
  width: 30px; height: 30px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.footer__contact-lbl {
  display: block;
  font-size: 9.5px; color: rgba(255,255,255,.45);
  font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
  margin-bottom: 2px;
}
.footer__contact-val {
  display: block;
  font-size: .88rem; color: rgba(255,255,255,.85); font-weight: 700;
}

/* ─── Séparateur lumineux ─── */
.footer__sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  margin: 0 0 24px;
}

/* ─── Bottom bar ─── */
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: rgba(255,255,255,.5);
  flex-wrap: wrap; gap: 14px;
}
.footer__bottom strong { color: rgba(255,255,255,.85); font-weight: 800; }
.footer__bottom-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer__bottom-sep { opacity: .4; }

.footer__social {
  display: flex; gap: 8px;
}
.footer__social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.footer__social a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer__contact { grid-column: span 3; margin-top: 8px; }
}
@media (max-width: 700px) {
  .site-footer { padding: 52px 0 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__contact { grid-column: auto; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ───────── Forms ───────── */
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 12px; font-weight: 800;
  color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--line); background: #fff;
  font-family: inherit; font-size: 15px; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(240,112,48,.12);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field--row { grid-template-columns: 1fr; } }

.alert {
  padding: 14px 18px; border-left: 4px solid var(--brand);
  background: var(--brand-light); color: var(--brand-dark);
  font-size: .95rem; font-weight: 700; margin-bottom: 18px;
}
.alert--ok { border-color: var(--success); background: #EEF8EE; color: #1b5e20; }
.alert--err { border-color: var(--danger); background: #FEE8E8; color: var(--danger); }

/* ───────── Auth card ───────── */
.auth-wrap {
  min-height: calc(100vh - var(--header-h));
  display: grid; grid-template-columns: 1fr 1fr;
}
.auth-side {
  background: var(--navy); color: #fff;
  padding: 60px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.auth-side::before {
  content: ''; position: absolute; right: -120px; bottom: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,112,48,.3), transparent 65%);
}
.auth-side h2 { color: #fff; max-width: 14ch; margin-bottom: 16px; }
.auth-side .lead { color: rgba(255,255,255,.78); }
.auth-side ul { list-style: none; margin-top: 28px; position: relative; }
.auth-side li { padding: 8px 0; font-size: .98rem; display: flex; gap: 10px; }
.auth-side li::before { content: '✓'; color: var(--brand); font-weight: 900; }

.auth-form {
  padding: 60px;
  max-width: 520px; margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; justify-content: center;
}
.auth-form h1 { font-size: 2rem; margin-bottom: 8px; }
.auth-form .sub { color: var(--muted); margin-bottom: 28px; }
.auth-form .swap { font-size: .95rem; color: var(--muted); margin-top: 18px; text-align: center; }
.auth-form .swap a { color: var(--brand); font-weight: 800; }

@media (max-width: 900px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-side { padding: 40px 28px; }
  .auth-form { padding: 40px 28px; }
}

/* ───────── Dashboard ───────── */
.dash {
  display: grid; grid-template-columns: 260px 1fr;
  min-height: calc(100vh - var(--header-h));
}
.dash__side {
  background: #fafafa; border-right: 1px solid var(--line);
  padding: 28px 20px;
}
.dash__side h5 { color: var(--muted); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; margin: 18px 0 8px; padding-left: 12px; }
.dash__nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  font-size: 14px; font-weight: 700; color: var(--navy);
  border-left: 3px solid transparent;
  transition: background .2s;
}
.dash__nav a:hover { background: #fff; }
.dash__nav a.active { background: #fff; border-left-color: var(--brand); color: var(--brand-dark); }
.dash__main { padding: 36px 40px; }
.dash__header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.dash__header h1 { font-size: 1.7rem; margin: 0; }
.dash__header p { color: var(--muted); font-size: .95rem; margin-top: 4px; }

.dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 28px; }
.dash-stat {
  background: #fff; border: 1px solid var(--line); padding: 22px;
  border-top: 3px solid var(--brand);
}
.dash-stat .lbl { font-size: 11px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; }
.dash-stat .val { font-size: 1.8rem; font-weight: 900; color: var(--navy); margin-top: 6px; }
.dash-stat .delta { font-size: 12px; color: var(--success); font-weight: 700; margin-top: 4px; }
.dash-stat .delta.warn { color: var(--brand); }

.panel { background: #fff; border: 1px solid var(--line); padding: 26px; margin-bottom: 22px; }
.panel h3 { margin-bottom: 16px; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 900; color: var(--navy); border-bottom: 2px solid var(--brand); padding-bottom: 10px; display: inline-block; }

.tbl { width: 100%; border-collapse: collapse; font-size: .94rem; }
.tbl th, .tbl td { padding: 14px 12px; text-align: left; border-bottom: 1px solid var(--line); }
.tbl th { font-size: 11px; font-weight: 900; color: var(--muted); text-transform: uppercase; letter-spacing: 1.2px; }
.tbl tr:hover td { background: var(--brand-50); }
.tag {
  display: inline-block; padding: 3px 10px;
  font-size: 10px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase;
}
.tag--ok { background: #EEF8EE; color: var(--success); }
.tag--pend { background: var(--brand-light); color: var(--brand-dark); }
.tag--off { background: #FEE8E8; color: var(--danger); }

@media (max-width: 900px) {
  .dash { grid-template-columns: 1fr; }
  .dash__side { display: none; }
  .dash__main { padding: 24px 18px; }
  .dash-grid { grid-template-columns: 1fr; }
}

/* ───────── Utility ───────── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.divider { height: 1px; background: var(--line); margin: 32px 0; }

/* ───────── Phone mockup (App download section) ───────── */
.phone-mock {
  max-width: 320px; margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(20,20,40,.25));
}
.phone-mock__bezel {
  position: relative;
  background: #0a0a18;
  border-radius: 38px;
  padding: 10px;
  box-shadow: inset 0 0 0 2px #2a2a4a;
}
.phone-mock__notch {
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000; border-radius: 14px;
  z-index: 3;
}
.phone-mock__screen {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  min-height: 600px;
  position: relative;
  padding-top: 38px;
}
.pm-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 22px;
  font-size: 11px; font-weight: 800; color: var(--navy);
}
.pm-statusbar .pm-icons { font-size: 9px; letter-spacing: 1px; }
.pm-header {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px 10px;
  border-bottom: 1px solid #f0f0f0;
}
.pm-header .pm-back {
  color: var(--brand); font-size: 24px; font-weight: 300;
}
.pm-header .pm-title {
  font-size: 13px; font-weight: 800; color: var(--navy);
  letter-spacing: .2px; flex: 1; text-align: center;
  margin-right: 18px;
}
.pm-photo {
  margin: 14px 18px 0;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(0,0,0,.15) 0%, transparent 50%),
    linear-gradient(45deg, #FFE0CC 0%, #F07030 60%, #C95820 100%);
  border-radius: 12px;
  position: relative;
}
.pm-photo::before {
  content: ''; position: absolute; left: 30%; top: 25%;
  width: 22%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, #fff5e8, #ffd9b3);
  box-shadow: 0 6px 30px rgba(0,0,0,.12);
}
.pm-photo::after {
  content: ''; position: absolute; right: 25%; top: 22%;
  width: 18%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, #fff5e8, #ffc9a3);
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.pm-caption {
  margin: 14px 18px 0;
  font-size: 14px; font-weight: 800; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  gap: 6px;
}
.pm-caption span { color: var(--brand); letter-spacing: 2px; font-size: 13px; }
.pm-section-title {
  margin: 18px 18px 10px;
  font-size: 12px; font-weight: 700; color: var(--muted);
}
.pm-contact {
  margin: 0 18px;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px; font-weight: 700; color: var(--navy);
}
.pm-check {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid #ddd; flex-shrink: 0;
  position: relative;
}
.pm-check.on { background: #387e80; border-color: #387e80; }
.pm-check.on::after {
  content: ''; position: absolute;
  left: 5px; top: 2px;
  width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.pm-cta {
  margin: 22px 18px 14px;
  padding: 16px;
  background: var(--brand);
  color: #fff; text-align: center;
  font-weight: 900; font-size: 14px;
  border-radius: 28px;
  box-shadow: 0 8px 18px rgba(240,112,48,.3);
}
.pm-dots {
  display: flex; gap: 6px; justify-content: center;
  padding: 4px 0 14px;
}
.pm-dots span {
  width: 26px; height: 4px; background: #e5e5e5; border-radius: 2px;
}
.pm-dots span.on { background: var(--brand); }

@media (max-width: 600px) {
  .phone-mock { max-width: 260px; }
  .phone-mock__screen { min-height: 520px; }
}

/* ───────── Store badges (App Store + Google Play) ───────── */
.store-badges {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 20px;
  max-width: 280px;
}
.store-badge {
  display: inline-block;
  transition: transform .25s ease, filter .25s ease;
  border-radius: 12px;
  overflow: hidden;
}
.store-badge:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.22));
}
.store-badge img {
  height: 64px; width: auto;
  display: block;
}
@media (max-width: 600px) {
  .store-badges { max-width: 100%; align-items: center; }
  .store-badge img { height: 54px; }
}

/* ───────── Reveal animations ───────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* ───────── Cookie banner RGPD ───────── */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: #fff; border-top: 3px solid var(--brand);
  box-shadow: 0 -8px 32px rgba(20,20,40,.18);
  z-index: 950;
  padding: 18px 20px;
}
.cookie-banner__inner {
  display: flex; gap: 20px; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 240px; }
.cookie-banner__text strong { color: var(--navy); display: block; margin-bottom: 4px; }
.cookie-banner__text p { font-size: .9rem; color: var(--muted); margin: 0; }
.cookie-banner__text a { color: var(--brand); font-weight: 800; }
.cookie-banner__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-custom {
  max-width: var(--maxw); margin: 16px auto 0;
  padding: 16px; background: var(--bg-soft);
}
.cookie-custom h4 { font-size: 14px; margin-bottom: 12px; color: var(--navy); text-transform: uppercase; letter-spacing: 1.2px; }
.cookie-toggle {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: .9rem;
}
.cookie-toggle input { margin-top: 4px; accent-color: var(--brand); }
.cookie-toggle span { color: var(--muted); }
.cookie-toggle span strong { color: var(--navy); }

/* ───────── Chatbot widget ───────── */
.chatbot-bubble {
  position: fixed; right: 24px; bottom: 24px;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  box-shadow: 0 12px 32px rgba(240,112,48,.45);
  z-index: 940; transition: transform .2s, box-shadow .2s;
}
.chatbot-bubble:hover { transform: scale(1.05); box-shadow: 0 16px 40px rgba(240,112,48,.6); }
.chatbot-bubble.hide { transform: scale(0); opacity: 0; pointer-events: none; }
.chatbot-bubble__pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--brand); opacity: .5;
  animation: chatPulse 2.4s ease-out infinite;
  animation-play-state: running;
  transform: translateZ(0);
}
/* Pause animation quand offscreen pour gagner du CPU */
.chatbot-bubble.hide .chatbot-bubble__pulse { animation-play-state: paused; }
@keyframes chatPulse {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(1.5); opacity: 0;   }
}

.chatbot-window {
  position: fixed; right: 24px; bottom: 24px;
  width: 360px; max-width: calc(100vw - 32px);
  height: 520px; max-height: calc(100vh - 60px);
  background: #fff;
  box-shadow: 0 24px 60px rgba(20,20,40,.28);
  z-index: 945;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  animation: chatIn .25s ease-out;
}
/* L'attribut `hidden` doit gagner contre display:flex ci-dessus */
.chatbot-window[hidden],
.cookie-banner[hidden],
.cookie-custom[hidden] { display: none !important; }
@keyframes chatIn {
  from { transform: translateY(20px) scale(.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.chatbot-window__head {
  background: var(--navy); color: #fff;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.chatbot-window__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chatbot-window__id { flex: 1; min-width: 0; }
.chatbot-window__name { font-weight: 900; font-size: 15px; }
.chatbot-window__status { font-size: 11px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 5px; }
.chatbot-window__status .dot { width: 7px; height: 7px; border-radius: 50%; background: #2ecc71; animation: blink 1.6s infinite; }
.chatbot-window__close {
  margin-left: auto;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.10); color: #fff; border: none;
  cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s;
  flex-shrink: 0;
}
.chatbot-window__close:hover { background: rgba(255,255,255,.22); transform: rotate(90deg); }
.chatbot-window__close:active { transform: rotate(90deg) scale(.9); }
.chatbot-window__body {
  flex: 1; padding: 16px;
  overflow-y: auto; display: flex; flex-direction: column; gap: 10px;
  background: var(--bg-soft);
}
.chat-msg { display: flex; }
.chat-msg--me { justify-content: flex-end; }
.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  font-size: 13.5px; line-height: 1.45;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line);
}
.chat-msg--me .chat-bubble {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
.chat-quick {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px;
}
.chat-quick button {
  background: #fff; border: 1px solid var(--line);
  font-size: 12px; padding: 7px 10px; cursor: pointer;
  color: var(--navy); font-weight: 700; font-family: inherit;
  transition: background .15s;
}
.chat-quick button:hover { background: var(--brand-light); color: var(--brand-dark); border-color: var(--brand); }
.chatbot-window__form {
  display: flex; padding: 12px; gap: 8px;
  border-top: 1px solid var(--line);
}
.chatbot-window__form input {
  flex: 1; padding: 10px 12px; border: 1.5px solid var(--line); font-family: inherit; font-size: 14px;
}
.chatbot-window__form input:focus { outline: none; border-color: var(--brand); }
.chatbot-window__form button {
  width: 44px; background: var(--brand); color: #fff; border: none;
  font-size: 22px; cursor: pointer; font-weight: 900;
}
.chatbot-window__form button:hover { background: var(--brand-dark); }

@media (max-width: 600px) {
  .chatbot-bubble { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .chatbot-window { right: 8px; bottom: 8px; left: 8px; width: auto; max-width: none; height: 70vh; }
}

/* Pulse like the map hint */
@keyframes pulseAnim {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .4; transform: scale(1.5); }
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  animation: pulseAnim 1.6s ease-in-out infinite;
  display: inline-block;
}

/* ══════════════════════════════════════════
   SECTION THÈMES : FAMILY (orange) / PRO (bleu)
══════════════════════════════════════════ */
.section--pro {
  background: linear-gradient(160deg, #0f1729 0%, #1a2744 50%, #0f1d35 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--pro::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,106,200,.25) 0%, transparent 70%);
  pointer-events: none;
}
.section--pro .eyebrow { color: #60a5fa; }
.section--pro h2,
.section--pro h3 { color: #fff; }
.section--pro .lead,
.section--pro p { color: rgba(255,255,255,.72); }
.section--pro .vf-pro-photo-img__badge {
  background: var(--pro);
}
.section--pro .vf-checklist li { color: rgba(255,255,255,.9); }
.section--pro .vf-checklist li::before { color: #60a5fa; }
.section--pro .btn--primary {
  background: var(--pro); border-color: var(--pro);
}
.section--pro .btn--primary:hover { background: var(--pro-dark); border-color: var(--pro-dark); }
.section--pro .btn--ghost {
  border-color: rgba(255,255,255,.35); color: #fff;
}
.section--pro .btn--ghost:hover {
  background: rgba(255,255,255,.12); border-color: #fff;
}

/* Animated gradient border on pro section */
.section--pro::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pro), #60a5fa, var(--pro-dark), var(--pro));
  background-size: 300% 100%;
  animation: gradientSlide 4s linear infinite;
}
@keyframes gradientSlide {
  0%   { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}

/* Section family — accent orange sur eyebrow/checklist */
.section--family .eyebrow { color: var(--brand); }
.section--family .vf-gallery__tag { background: var(--brand); }

/* ══════════════════════════════════════════
   ANIMATIONS GLOBALES
══════════════════════════════════════════ */

/* Float doux sur la tablette hero */
@keyframes floatY {
  0%, 100% { transform: perspective(800px) rotateY(-8deg) rotateX(3deg) translateY(0); }
  50%       { transform: perspective(800px) rotateY(-8deg) rotateX(3deg) translateY(-12px); }
}
.hero__tablet-img { animation: floatY 5s ease-in-out infinite; }

/* Glow doux sur le plan featured (sans clipper le badge) */
@keyframes planGlow {
  0%, 100% { box-shadow: 0 18px 44px rgba(26,26,46,.28); }
  50%       { box-shadow: 0 18px 54px rgba(240,112,48,.34); }
}
.plan--featured { animation: planGlow 3.2s ease-in-out infinite; }
.plan--featured:hover { animation: none; }
/* Le badge doit pouvoir dépasser */
.plan__tag { z-index: 3; }

/* Reveal directionnel */
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .6s ease, transform .6s ease; }
.reveal-right { opacity: 0; transform: translateX( 40px); transition: opacity .6s ease, transform .6s ease; }
.reveal-up    { opacity: 0; transform: translateY( 30px); transition: opacity .6s ease, transform .6s ease; }
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-up.is-visible { opacity: 1; transform: none; }

/* Card hover lift — ne pas surcharger .bento .card:hover existant */
.step, .tml {
  transition: transform .22s ease, box-shadow .22s ease;
  will-change: transform;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(20,20,40,.08); }
.tml:hover  { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(20,20,40,.1); }

/* Glow uniquement sur le CTA principal du hero */
@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,112,48,.5); }
  50%       { box-shadow: 0 0 0 10px rgba(240,112,48,0); }
}
.hero--photo .btn--primary { animation: glow 2.8s ease-in-out infinite; }
.hero--photo .btn--primary:hover { animation: none; }

/* Pause float sur hover tablette */
.hero__tablet-img:hover { animation-play-state: paused; }

/* Pulse dot hero */
@keyframes pulseAnim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.5); }
}

/* Bento hover glow per card */
.card.c-1:hover { box-shadow: 0 16px 40px rgba(240,112,48,.2); }

/* ══════════════════════════════════════════
   HERO RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero--photo { padding: 70px 0 80px; }
  .hero__bg-overlay { background: linear-gradient(180deg, rgba(26,26,46,.88) 0%, rgba(26,26,46,.75) 100%); }
  .hero__tablet-img { max-width: 320px; transform: none; margin-top: 32px; }
  .hero__pills { gap: 10px; }
}

/* ══════════════════════════════════════════
   BANDEAU IA COMPACT
══════════════════════════════════════════ */
.ia-banner {
  background: linear-gradient(135deg, #1A1A2E 0%, #2d2b6b 100%);
  padding: 0;
  overflow: hidden;
}
.ia-banner__inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 36px;
}
.ia-banner__img {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.ia-banner__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}
.ia-banner__txt { padding: 36px 0; }
.ia-banner__tag {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 10px; font-weight: 900;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px;
  margin-bottom: 10px;
}
.ia-banner__txt h3 {
  font-size: 1.4rem; font-weight: 900;
  color: #fff; margin-bottom: 8px; line-height: 1.2;
}
.ia-banner__txt p { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.6; }
.ia-banner__cta { flex-shrink: 0; margin-right: 8px; border-color: rgba(255,255,255,.35); color: #fff; }
.ia-banner__cta:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }

@media (max-width: 860px) {
  .ia-banner__inner { grid-template-columns: 1fr; }
  .ia-banner__img { height: 180px; }
  .ia-banner__txt { padding: 0 0 8px; }
  .ia-banner__cta { margin: 0 0 28px; }
}

/* ══════════════════════════════════════════
   GALERIE PHOTOS VISIOFRAME
══════════════════════════════════════════ */
.vf-gallery-section { background: var(--soft); }

.vf-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.vf-gallery__main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.vf-gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.vf-gallery__main:hover img { transform: scale(1.03); }

.vf-gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,26,46,.85) 0%, transparent 100%);
  color: #fff;
  padding: 40px 20px 18px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}
.vf-gallery__tag {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  display: block;
  width: fit-content;
}

.vf-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vf-gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.vf-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform .4s ease;
}
.vf-gallery__item:hover img { transform: scale(1.05); }
.vf-gallery__item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,26,46,.65);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  letter-spacing: .3px;
}

/* Bandeau produit tablette + smartphone */
.vf-product-strip {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 40px 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.vf-product-strip__img img {
  width: 100%;
  max-width: 240px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.12));
}
.vf-product-strip__txt h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.vf-product-strip__txt h3 em {
  font-style: normal;
  color: var(--brand);
}
.vf-product-strip__txt p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Checklist commune */
.vf-checklist {
  list-style: none;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vf-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}
.vf-checklist li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Section Visioframe Pro avec photo ── */
.vf-pro-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.vf-pro-photo-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.vf-pro-photo-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.vf-pro-photo-img__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
}
.vf-pro-photo-txt h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.vf-pro-photo-txt .lead { margin-bottom: 20px; }

/* ── Responsive galerie ── */
@media (max-width: 900px) {
  .vf-gallery { grid-template-columns: 1fr; }
  .vf-product-strip { grid-template-columns: 1fr; padding: 28px 24px; }
  .vf-product-strip__img:last-child { display: none; }
  .vf-pro-photo-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .vf-gallery__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .vf-gallery__main { aspect-ratio: 16/9; }
}
