/* ═══════════════════════════════════════════════
   Magic Flo — Design System · Noir & Blanc
   Palette : Noir #080808 + Blanc #FFFFFF
   Typography : Playfair Display + Inter
   ═══════════════════════════════════════════════ */

/* ── Masquer la barre Google Translate ── */
.goog-te-banner-frame,
.goog-te-gadget,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip { display: none !important; }
body { top: 0 !important; }

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  /* Palette Noir & Blanc pur */
  --white:      #FFFFFF;
  --off-white:  #FFFFFF;
  --gray-light: #BBBBBB;
  --gray:       #CCCCCC;
  --gray-dark:  #333333;
  --black:      #191919;
  --black-2:    #121212;
  --black-3:    #242424;
  --black-4:    #2E2E2E;

  /* Alias (gardé pour compatibilité HTML) */
  --gold:       #FFFFFF;
  --gold-light: #DDDDDD;
  --gold-dark:  #999999;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  /* Layout */
  --max-w:      1180px;
  --t:          0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--white); color: var(--black); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gray-dark); border-radius: 2px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Layout ─────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -1px;
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 520px;
  margin-top: 18px;
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.2px;
}
.gold { color: var(--white); }
.italic { font-style: italic; }

/* ── Lines ──────────────────────────────────── */
.gold-line {
  width: 32px; height: 1px;
  background: var(--white);
  margin: 28px 0;
  opacity: 0.25;
}
.gold-line.center {
  margin: 28px auto;
  width: 64px;
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--t);
  position: relative;
  text-decoration: none;
}
.btn-gold {
  background: var(--white);
  color: var(--black);
  font-weight: 600;
}
.btn-gold:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}
.btn-dark-relief {
  background: #111111;
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 5px 0 #000000,
    0 8px 28px rgba(0,0,0,0.7);
  animation: reliefPulse 3s ease-in-out infinite;
}
.btn-dark-relief:hover {
  transform: translateY(3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 2px 0 #000000,
    0 4px 14px rgba(0,0,0,0.5);
}
@keyframes reliefPulse {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 5px 0 #000, 0 8px 28px rgba(0,0,0,0.7); }
  50%       { box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 5px 0 #000, 0 12px 40px rgba(255,255,255,0.12); }
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

/* ── Particles ──────────────────────────────── */
#particles {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.18;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  transition: background var(--t), border-color var(--t);
}
nav#nav.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--white); font-style: italic; }
.nav-social-left { display: flex; align-items: center; gap: 8px; margin-left: 16px; }
.nav-social-left a { display: flex; transition: opacity 0.2s; }
.nav-social-left a:hover { opacity: 0.75; }
.nav-social-left img { width: 28px; height: 28px; object-fit: contain; border-radius: 7px; display: block; background: #fff; border: 2px solid #fff; padding: 2px; }
@media (max-width: 768px) { .nav-social-left { display: none; } }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin-left: auto; margin-right: 8cm; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240,237,232,0.55);
  transition: color var(--t);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--off-white); }
.chevron { font-size: 8px; transition: transform var(--t); }
.nav-links > li:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.08);
  min-width: 200px; padding: 20px 0 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-links > li:hover .dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block; padding: 9px 20px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(240,237,232,0.55);
  transition: color var(--t), background var(--t);
}
.dropdown a:hover { color: var(--off-white); background: rgba(255,255,255,0.04); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 6px 0; }
.nav-cta {
  background: var(--white) !important;
  color: var(--black) !important;
  padding: 9px 20px !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  margin-left: 8px;
}
.nav-cta:hover { opacity: 0.88 !important; }

/* Nav social icons */
.nav-social { display: flex; align-items: center; gap: 8px; margin-left: auto; padding-left: 16px; }
.nav-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  color: #ffffff; flex-shrink: 0;
  transition: opacity var(--t), transform var(--t);
}
.nav-social a:hover { opacity: 0.82; transform: translateY(-2px); }
.nav-social a[aria-label="Instagram"] { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.nav-social a[aria-label="YouTube"] { background: #FF0000; }
.nav-social a[aria-label="LinkedIn"] { background: #0A66C2; }
.nav-social a[aria-label="Facebook"] { background: #1877F2; }
.nav-social a[aria-label="Google"] { background: #ffffff; border: 1px solid rgba(0,0,0,0.15); }
.nav-social svg { width: 17px; height: 17px; }

/* Burger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--off-white); transition: var(--t); }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px; overflow-y: auto; padding: 40px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--off-white);
  letter-spacing: -0.5px;
  transition: color var(--t);
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .btn { font-size: 11px; margin-top: 8px; }

/* ═══════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════ */
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 1px; color: var(--gray);
  margin-bottom: 32px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray); transition: color var(--t); }
.breadcrumb a:hover { color: var(--off-white); }
.breadcrumb .sep { opacity: 0.3; }
.breadcrumb .current { color: var(--gray-light); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 72px, rgba(255,255,255,0.013) 72px, rgba(255,255,255,0.013) 73px),
    repeating-linear-gradient(90deg, transparent, transparent 72px, rgba(255,255,255,0.013) 72px, rgba(255,255,255,0.013) 73px);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 60px 24px 60px; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 40px;
  margin-bottom: 32px;
  animation: fadeUp 0.7s ease both;
}
.hero-badge::before { content: '·'; font-size: 16px; color: var(--gray); }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--white);
  animation: fadeUp 0.7s 0.08s ease both;
  max-width: 820px;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.92);
  max-width: 460px;
  margin: 28px 0 40px;
  line-height: 2;
  font-weight: 400;
  animation: fadeUp 0.7s 0.16s ease both;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; animation: fadeUp 0.7s 0.24s ease both; }
.hero-stats {
  display: flex; gap: 52px; margin-top: 64px;
  animation: fadeUp 0.7s 0.32s ease both;
  flex-wrap: wrap; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 600;
  color: var(--off-white); line-height: 1;
}
.hero-stat-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray); margin-top: 6px;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(240,237,232,0.2); font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  animation: fadeIn 1.5s 0.8s ease both;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2.5s infinite;
}

/* ═══════════════════════════════════════════════
   STRIP
   ═══════════════════════════════════════════════ */
.strip {
  background: var(--black-3);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 64px 24px;
}
.strip-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
}
.strip-divider { background: rgba(255,255,255,0.07); }
.strip-item { padding: 0 48px; text-align: center; }
.strip-item:first-child { padding-left: 0; }
.strip-item:last-child { padding-right: 0; }
.strip-icon { font-size: 1.5rem; margin-bottom: 16px; filter: grayscale(1) brightness(2); }
.strip-title { font-family: var(--font-serif); font-size: 1.05rem; color: var(--off-white); margin-bottom: 10px; }
.strip-text { font-size: 0.875rem; color: var(--gray); line-height: 1.8; font-weight: 400; }

/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
.services-section { padding: 70px 24px 110px; background: #FFFFFF; }
.services-section .section-title { color: #1A1A1A; }
.services-section .section-label { color: #888; }
.services-section .section-subtitle { color: #555; }
.services-section .gold-line { background: #1A1A1A; }
.services-header { max-width: var(--max-w); margin: 0 auto 56px; }
.services-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; background: transparent;
  border: none;
}
/* Service card photo header */
.sc-photo {
  height: 240px;
  background-size: cover;
  background-position: center;
  margin: -44px -36px 28px;
  position: relative;
}
.sc-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 36px;
  background: linear-gradient(to bottom, transparent, #fff);
}
.sc-photo::after { background: linear-gradient(to bottom, transparent, var(--black)); }
.has-white-cards .sc-photo::after,
.section-light .sc-photo::after { background: linear-gradient(to bottom, transparent, #fff); }

/* Photo gallery strip */
.photo-strip { display: grid; grid-template-columns: repeat(4,1fr); height: 340px; overflow: hidden; }
.photo-strip-item { object-fit: cover; object-position: center; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; transition: transform 0.5s ease; }
.photo-strip-item:hover { transform: scale(1.04); }
@media (max-width: 768px) { .photo-strip { grid-template-columns: repeat(2,1fr); height: 400px; } }

.service-card {
  background: var(--black-3); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  color: inherit; text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.07), 0 8px 32px rgba(0,0,0,0.45), 0 0 24px rgba(255,255,255,0.04);
  border-radius: 8px;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--white);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--black-4); transform: translateY(-6px); box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 24px 56px rgba(0,0,0,0.5), 0 0 40px rgba(255,255,255,0.07); z-index: 2; }
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: var(--font-serif); font-size: 2.5rem;
  font-weight: 700; color: rgba(255,255,255,0.05);
  line-height: 1; margin-bottom: 20px;
  transition: color var(--t);
}
.service-card:hover .service-num { color: rgba(255,255,255,0.12); }
.service-name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--off-white); margin-bottom: 12px; }
.service-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.85; margin-bottom: 20px; font-weight: 300; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-light);
}

/* ═══════════════════════════════════════════════
   IMAGE PLACEHOLDERS
   ═══════════════════════════════════════════════ */
.img-block {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.img-block img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,0.08);
  font-size: 5rem; width: 100%; height: 100%; min-height: 320px;
  filter: grayscale(1);
}
.img-placeholder span { font-family: var(--font-sans); font-size: 10px; letter-spacing: 3px; color: rgba(255,255,255,0.15); text-transform: uppercase; }

/* ═══════════════════════════════════════════════
   ABOUT / SPLIT
   ═══════════════════════════════════════════════ */
.about-section { padding: 110px 24px; }
.about-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-inner.reverse .about-visual { order: 2; }
.about-visual { position: relative; }
.about-frame {
  aspect-ratio: 3/4; max-height: 520px;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative; overflow: hidden;
}
.about-frame-label {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white); color: var(--black);
  padding: 5px 14px; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
}
.corner {
  position: absolute; width: 32px; height: 32px;
  border-style: solid; border-color: rgba(255,255,255,0.35); border-width: 0;
}
.corner.tl { top: -6px; left: -6px; border-top-width: 1px; border-left-width: 1px; }
.corner.br { bottom: -6px; right: -6px; border-bottom-width: 1px; border-right-width: 1px; }
.about-quote {
  font-family: var(--font-serif); font-size: 1.15rem; font-style: italic;
  color: rgba(240,237,232,0.55); line-height: 1.8;
  padding-left: 20px; border-left: 1px solid rgba(255,255,255,0.25);
  margin: 24px 0;
}
.about-text { color: var(--gray); line-height: 1.9; margin-bottom: 14px; font-weight: 300; font-size: 0.95rem; }
.skill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.skill-pill { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray-light); letter-spacing: 0.5px; }
.skill-pill::before { content: '—'; font-size: 10px; color: var(--gray); }
.tv-badge {
  padding: 5px 12px;
  background: var(--black-3);
  border: 1px solid var(--section-border, rgba(255,255,255,0.07));
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.5px;
}
.section-light .tv-badge { border-color: rgba(0,0,0,0.1); }

/* ═══════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════ */
.process-section { padding: 110px 24px; position: relative; overflow: hidden; }
.process-section::before {
  content: attr(data-word);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(6rem, 16vw, 14rem); font-weight: 700;
  color: rgba(255,255,255,0.015);
  pointer-events: none; white-space: nowrap; letter-spacing: -4px;
}
.process-header { max-width: var(--max-w); margin: 0 auto 72px; text-align: center; }
.steps-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 30px; left: 12.5%; right: 12.5%;
  height: 1px; background: rgba(255,255,255,0.08);
}
.step { padding: 0 20px; text-align: center; }
.step-num {
  width: 60px; height: 60px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400;
  color: var(--gray-light); background: var(--black-2);
  position: relative; z-index: 1;
  transition: var(--t);
}
.step:hover .step-num { background: var(--white); color: var(--black); border-color: var(--white); }
.step-title { font-family: var(--font-serif); font-size: 1rem; color: var(--off-white); margin-bottom: 12px; font-weight: 600; }
.step-text { font-size: 0.85rem; color: var(--gray); line-height: 1.8; font-weight: 300; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials-section { padding: 110px 24px; background: var(--black-3); }
.testimonials-header { max-width: var(--max-w); margin: 0 auto 56px; text-align: center; }
.testimonials-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.05); }
.t-card {
  background: var(--black-3); padding: 36px 28px;
  transition: background var(--t);
}
.t-card:hover { background: var(--black-4); }
.t-stars { color: var(--white); font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 18px; }
.t-quote {
  font-family: var(--font-serif); font-size: 0.98rem; font-style: italic;
  color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 24px;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 1rem;
  color: var(--off-white); flex-shrink: 0;
}
.t-name { font-size: 13px; font-weight: 500; color: var(--off-white); }
.t-role { font-size: 11px; color: var(--gray); margin-top: 2px; letter-spacing: 0.5px; }

/* ═══════════════════════════════════════════════
   VIDEO SECTION
   ═══════════════════════════════════════════════ */
.video-section { padding: 110px 24px; background: var(--black-2); }
.video-header { max-width: var(--max-w); margin: 0 auto 48px; }
.video-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: rgba(255,255,255,0.05);
}
.video-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.video-item { position: relative; background: var(--black-3); }
.video-item .video-label {
  padding: 14px 16px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); border-top: 1px solid rgba(255,255,255,0.05);
}
.video-embed {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.video-embed iframe,
.video-embed video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
  object-fit: cover;
}
.video-featured {
  grid-column: 1 / -1;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.video-featured .video-embed { aspect-ratio: 16/9; }

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq-section { padding: 110px 24px; background: var(--black); }
.faq-header { max-width: var(--max-w); margin: 0 auto 56px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left;
  color: var(--off-white); font-family: var(--font-sans); font-size: 0.95rem; font-weight: 400;
  transition: color var(--t);
}
.faq-question:hover { color: var(--white); }
.faq-icon {
  width: 26px; height: 26px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gray-light); flex-shrink: 0;
  transition: transform var(--t), background var(--t);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(255,255,255,0.08); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding-bottom: 20px; color: var(--gray); line-height: 1.9; font-size: 0.9rem; font-weight: 300; }

/* ═══════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════ */
.cta-section {
  padding: 100px 24px;
  background: var(--black-3);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: attr(data-letter, '✦');
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 24rem; font-weight: 700;
  color: rgba(255,255,255,0.012);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 700;
  line-height: 1.15; margin-bottom: 16px; color: var(--off-white);
  letter-spacing: -0.5px;
}
.cta-sub { color: var(--gray); margin-bottom: 36px; font-size: 1rem; font-weight: 300; line-height: 1.8; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.response-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--gray); margin-top: 20px; letter-spacing: 1px;
}
.dot-green {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ADE80; animation: pulse 2.5s infinite;
}

/* ═══════════════════════════════════════════════
   CITY LINKS
   ═══════════════════════════════════════════════ */
.cities-section { padding: 72px 24px; background: var(--black); }
.cities-header { max-width: var(--max-w); margin: 0 auto 36px; }
.cities-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1px;
  background: rgba(255,255,255,0.05);
}
.city-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  background: var(--black);
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gray); transition: var(--t);
}
.city-link:hover { background: var(--black-3); color: var(--off-white); }
.city-link .arrow { font-size: 10px; color: var(--gray); transition: var(--t); }
.city-link:hover .arrow { transform: translateX(3px); color: var(--off-white); }

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact-section { padding: 110px 24px; }
.contact-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
.contact-info-icon {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--gray-light); flex-shrink: 0;
  filter: grayscale(1);
}
.contact-info-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; color: var(--off-white); }
.contact-info-value a { transition: color var(--t); }
.contact-info-value a:hover { color: var(--white); }
.social-row { display: flex; gap: 10px; align-items: center; }
.social-btn { display: flex; transition: var(--t); }
.social-btn img { width: 44px; height: 44px; object-fit: contain; display: block; border-radius: 10px; background: #fff; border: 2px solid #fff; padding: 3px; }
.social-btn:hover { opacity: 0.78; transform: translateY(-2px); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); }
.form-input, .form-select, .form-textarea {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 13px 15px;
  color: var(--off-white);
  font-family: var(--font-sans); font-size: 14px; font-weight: 300;
  outline: none; transition: border-color var(--t);
  -webkit-appearance: none;
}
.form-select { cursor: pointer; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(255,255,255,0.3);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(240,237,232,0.2); }
.form-textarea { resize: vertical; min-height: 110px; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  background: var(--black-2);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 90px 24px 48px;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 64px; margin-bottom: 64px;
}
.footer-logo { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer-logo span { font-style: italic; color: var(--white); }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.9; margin-bottom: 28px; max-width: 260px; font-weight: 300; }
.footer-col-title { font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 22px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color var(--t); line-height: 1.4; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.5px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color var(--t); }
.footer-legal a:hover { color: var(--gray); }

/* ═══════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); } 50% { box-shadow: 0 0 0 8px rgba(74,222,128,0); } }

/* ── Photo Gallery ──────────────────────────── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 80px;
}
.photo-gallery.cols-4 { grid-template-columns: repeat(4, 1fr); }
.photo-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: brightness(0.9);
}
.photo-gallery img:hover { transform: scale(1.03); filter: brightness(1); z-index: 1; position: relative; }
.photo-gallery .tall img { height: 528px; }
@media (max-width: 1024px) {
  .photo-gallery.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .photo-gallery { grid-template-columns: 1fr 1fr; }
  .photo-gallery .tall img { height: 220px; }
}
@media (max-width: 480px) {
  .photo-gallery { grid-template-columns: 1fr; }
  .photo-gallery img, .photo-gallery .tall img { height: 240px; }
}

/* ── Formula Cards ──────────────────────────── */
.formula-card {
  border: none !important;
  overflow: visible !important;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
}
.formula-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,107,43,0.20);
  position: relative;
  z-index: 2;
}
.badge-popular {
  position: absolute; top: 0; left: 0;
  transform: none;
  background: #FF6B2B; color: #FFF;
  padding: 5px 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  white-space: nowrap; border-radius: 0 0 6px 0;
  animation: badgeBounce 3s 1.5s ease-in-out infinite;
  z-index: 10;
}
@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50%  { transform: translateY(-3px); }
}

/* ═══════════════════════════════════════════════
   LIGHT SECTION VARIANT
   Sections with off-white background alternating with dark ones.
   CSS custom properties cascade into inline styles that use var().
   ═══════════════════════════════════════════════ */
.section-light {
  --black:      #F3F2EF;
  --black-2:    #EBEAE7;
  --black-3:    #E2E1DE;
  --black-4:    #D8D7D4;
  --white:      #1A1A1A;
  --off-white:  #1A1A1A;
  --gray-light: #333333;
  --gray:       #444444;
  --gray-dark:  #CCCCCC;
  --gold:       #1A1A1A;
  --gold-light: #333333;
  --gold-dark:  #777777;
  background: #F3F2EF;
  color: #1A1A1A;
}

/* Fix hardcoded rgba(255,255,255,…) values that can't auto-invert */
.section-light .t-quote { color: rgba(0,0,0,0.6); }
.section-light .t-role { color: #888; }
.section-light .t-avatar { border-color: rgba(0,0,0,0.15); }
.section-light .testimonials-grid { background: rgba(0,0,0,0.05); }
.section-light .about-quote { color: rgba(0,0,0,0.55); border-left-color: rgba(0,0,0,0.2); }
.section-light .about-frame { background: #EFEFEF; border-color: rgba(0,0,0,0.08); }
.section-light .about-frame-label { background: #1A1A1A; color: #F3F2EF; }
.section-light .corner { border-color: rgba(0,0,0,0.2); }
.section-light .step-num { border-color: rgba(0,0,0,0.12); }
.section-light .step:hover .step-num { background: #1A1A1A; color: #F3F2EF; border-color: #1A1A1A; }
.section-light.process-section::before { color: rgba(0,0,0,0.025); }
.section-light .steps-grid::before { background: rgba(0,0,0,0.08); }
.section-light .faq-item { border-bottom-color: rgba(0,0,0,0.08); }
.section-light .faq-icon { border-color: rgba(0,0,0,0.15); color: #555; }
.section-light .faq-item.open .faq-icon { background: rgba(0,0,0,0.06); }
.section-light .faq-answer p { color: #666; }
.section-light .services-grid { background: transparent; border-color: transparent; }
/* White card blocks on dark sections */
.has-white-cards .service-card,
.section-light .service-card { background: #FFFFFF; box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06); border: none; }
.has-white-cards .service-card:hover,
.section-light .service-card:hover { background: #FAFAF8; box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08); }
.has-white-cards .service-num,
.section-light .service-num { color: rgba(0,0,0,0.35); }
.has-white-cards .service-card:hover .service-num,
.section-light .service-card:hover .service-num { color: rgba(0,0,0,0.5); }
.has-white-cards .service-name,
.section-light .service-name { color: #1A1A1A; }
.has-white-cards .service-desc,
.section-light .service-desc { color: #666; }
.has-white-cards .service-tag,
.section-light .service-tag { border-color: rgba(0,0,0,0.12); color: #666; }
.has-white-cards .service-card::after,
.section-light .service-card::after { background: #1A1A1A; }
.section-light .cities-grid { background: rgba(0,0,0,0.07); }
.section-light.strip { border-color: rgba(0,0,0,0.07); }
.section-light .strip-divider { background: rgba(0,0,0,0.08); }
.section-light .strip-icon { filter: grayscale(1) brightness(0.25); }
.section-light .img-placeholder { color: rgba(0,0,0,0.08); }
.section-light .img-placeholder span { color: rgba(0,0,0,0.2); }
.section-light .img-block { border-color: rgba(0,0,0,0.07); }
.section-light .social-btn:hover { opacity: 0.78; }
.section-light .contact-info-icon { border-color: rgba(0,0,0,0.1); }
.section-light .video-grid { background: rgba(0,0,0,0.06); }
.section-light .hero-bg { opacity: 0.03; }
/* Buttons invert in light sections */
.section-light .btn-gold { background: #1A1A1A; color: #F3F2EF; }
.section-light .btn-gold:hover { background: #2D2D2D; }
.section-light .btn-outline { color: #1A1A1A; border-color: rgba(0,0,0,0.35); }
.section-light .btn-outline:hover { border-color: #1A1A1A; background: rgba(0,0,0,0.04); }
/* Nav dropdown stays dark always */
.section-light ~ * .dropdown,
.dropdown { background: var(--black-3); }

/* ═══════════════════════════════════════════════
   CONVERSION WIDGETS
   ═══════════════════════════════════════════════ */

/* Floating WhatsApp + phone */
.float-widget {
  position: fixed;
  bottom: 32px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.float-widget.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-size: 22px;
  line-height: 1;
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}
.float-wa { background: #25D366; }
.float-tel { background: #1A1A1A; border: 1px solid rgba(255,255,255,0.15); }

/* Mobile sticky bar */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-sticky-tel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #FFF;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 11px 8px;
}
.mobile-sticky-devis {
  flex: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #FFF;
  color: #111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  padding: 11px 8px;
}
.mobile-sticky-devis:hover { background: #E8E8E8; }

/* Language switcher — hidden from nav, replaced by lang-float */
.nav-lang { display: none !important; }

/* Fixed floating language switcher bottom-right */
.lang-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 7px 14px;
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 20px;
}
.lang-float-btn {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-family: var(--font-sans);
  transition: var(--t);
  white-space: nowrap;
}
.lang-float-btn.lang-active,
.lang-float-btn:hover { color: rgba(255,255,255,0.95); }
.lang-float-sep { color: rgba(255,255,255,0.2); font-size: 10px; }
@media (max-width: 768px) { .lang-float { display: none; } }

.lang-btn {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(240,237,232,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  background: transparent;
  text-decoration: none;
  transition: color var(--t), border-color var(--t);
  white-space: nowrap;
}
.lang-btn:hover,
.lang-btn.lang-active { color: var(--off-white); border-color: rgba(255,255,255,0.28); }
.lang-sep { font-size: 10px; color: rgba(255,255,255,0.2); }
.nav-lang-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .nav-lang { display: none; }
}

/* Hero photo background */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.hero-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.8) 100%);
}

/* Hero video background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-wrap iframe,
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border: none;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1;
}
.hero-video-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

/* Brand / Media strip */
.brand-strip {
  background: #F3F2EF;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.brand-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.brand-strip-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #AAA;
  white-space: nowrap;
  margin-right: 10px;
  flex-shrink: 0;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 56px;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  box-sizing: border-box;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.25s, opacity 0.25s;
}
.brand-logo:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.1); transform: translateY(-2px); }
.brand-logo:hover img { filter: grayscale(0) opacity(1); }

/* Logos on dark background */
.logo-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  white-space: nowrap;
}

/* Nav phone number */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(240,237,232,0.6);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color var(--t);
  flex-shrink: 0;
}
.nav-phone:hover { color: var(--off-white); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner.reverse .about-visual { order: 0; }
  .about-frame { max-height: 320px; aspect-ratio: 16/9; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .video-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .strip-grid { grid-template-columns: 1fr; gap: 40px; }
  .strip-divider { display: none; }
  .strip-item { padding: 0; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-phone { display: none; }
  .mobile-sticky { display: flex; }
  .float-widget { display: none; }
  body { padding-bottom: 64px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  #teaser > div { grid-template-columns: 1fr !important; gap: 40px !important; }
  #videos > div { grid-template-columns: 1fr !important; gap: 40px !important; }
  .testimonials-grid { grid-template-columns: 1fr; background: none; gap: 1px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-grid.cols-3 { grid-template-columns: 1fr; }
  .video-featured { grid-column: 1 / -1; max-width: 100%; }
}
.malice-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 768px) {
  .malice-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 28px; }
  .cta-actions { flex-direction: column; }
}

/* ── Video play overlay ─────────────────── */
.vplay-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  background: rgba(0,0,0,0.15);
  transition: background 0.25s;
}
.vplay-overlay.is-playing { pointer-events: none; background: transparent; }
.vplay-overlay.is-playing .vplay-btn { opacity: 0; transform: scale(0.85); }
.vplay-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.vplay-btn::after {
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #1A1A1A;
  margin-left: 4px;
}
.vplay-overlay:hover .vplay-btn { transform: scale(1.08); }
