/* ===================================================
   BXL MEDIA – Dark Premium Theme
   =================================================== */

:root {
  --blue: #0066cc;
  --blue-dark: #0052a3;
  --blue-light: #1a7de8;
  --blue-pale: rgba(0,102,204,0.15);
  --orange: #ff6600;
  --orange-dark: #e55c00;
  --orange-pale: rgba(255,102,0,0.1);
  --green: #00a878;
  --green-pale: rgba(0,168,120,0.1);
  --purple: #7c3aed;
  --purple-dark: #6d28d9;
  --purple-pale: rgba(124,58,237,0.1);
  --pink: #e0178c;
  --pink-dark: #c41578;
  --pink-pale: rgba(224,23,140,0.1);
  --gold: #c9980f;
  --gold-pale: rgba(184,134,11,0.1);

  /* Dark theme */
  --bg: #0a1628;
  --bg-alt: #0d1a33;
  --bg-card: #111e35;
  --border: rgba(255,255,255,0.09);
  --border-hover: rgba(255,255,255,0.18);
  --text-dark: #f0f4ff;
  --text: rgba(240,244,255,0.82);
  --text-muted: rgba(240,244,255,0.5);
  --text-light: rgba(240,244,255,0.3);

  /* Hero stays rich */
  --hero-bg: #0a1628;
  --hero-card: rgba(255,255,255,0.06);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
  --shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-blue: 0 8px 30px rgba(0,102,204,0.25);
  --gradient: linear-gradient(135deg, #0066cc 0%, #4f46e5 100%);
  --gradient-orange: linear-gradient(135deg, #ff6600 0%, #ff3d00 100%);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background: var(--bg); }

body {
  font-family: 'Inter', sans-serif;
  background: transparent;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ===== PROGRESS BAR ===== */
#progress-bar {
  position: fixed; top: 0; left: 0;
  height: 3px;
  background: var(--gradient);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 6px 0;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all var(--transition);
}

#header.scrolled {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 6px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
  position: relative; z-index: 2;
}

.logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; letter-spacing: -0.5px; flex-shrink: 0;
}


.logo strong { color: #7eb8ff; }

.logo-icon {
  font-size: 1.6rem;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.logo-img-footer {
  height: 60px;
  margin-bottom: 4px;
}

.nav-links { display: flex; list-style: none; gap: 4px; flex: 1; justify-content: center; }

.nav-links a {
  color: #334155; text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  padding: 8px 12px; border-radius: 8px;
  transition: all var(--transition);
}

.nav-links a:hover { color: #0066cc; background: rgba(0,102,204,0.07); }


.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.btn-phone {
  display: flex; align-items: center; gap: 6px;
  color: #334155; text-decoration: none;
  font-size: 0.88rem; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all var(--transition);
}

.btn-phone:hover { color: #0066cc; border-color: #93c5fd; background: rgba(0,102,204,0.05); }

.btn-primary {
  background: var(--gradient); color: var(--white) !important;
  text-decoration: none; font-size: 0.88rem; font-weight: 600;
  padding: 10px 20px; border-radius: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(0,102,204,0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #334155; border-radius: 2px; transition: all var(--transition); }

.mobile-menu {
  display: none; flex-direction: column;
  padding: 16px 24px 20px; gap: 4px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu a { color: #334155; text-decoration: none; padding: 12px; font-size: 0.95rem; font-weight: 500; border-radius: 8px; transition: all var(--transition); }
.mobile-menu a:hover { color: #0066cc; background: rgba(0,102,204,0.07); }
.mobile-menu .btn-primary { margin-top: 8px; text-align: center; }

/* ===== SECTIONS ===== */
section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

/* ===== SECTION ALT (séparation visuelle) ===== */
.section-dark { background: rgba(0,0,0,0.2); }

/* ===== SECTION LIGHT (une section sur 2 claire) ===== */
.section-light { background: #f4f7fb; }

.section-light .section-header h2 { color: #0f172a; }
.section-light .section-header p   { color: #475569; }
.section-light .section-tag {
  background: rgba(0,102,204,0.08); border-color: rgba(0,102,204,0.18); color: #0066cc;
}

/* Cards services */
.section-light .service-card {
  background: #fff; border-color: #e2e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section-light .service-card:hover { box-shadow: 0 8px 32px rgba(0,102,204,0.12); border-color: #93c5fd; }
.section-light .service-card.card-featured {
  background: linear-gradient(160deg, rgba(0,102,204,0.06) 0%, #fff 60%);
  border-color: #0066cc;
}
.section-light .service-card h3     { color: #0f172a; }
.section-light .service-card > p    { color: #475569; }
.section-light .service-features li { color: #334155; }

/* Portfolio */
.section-light .portfolio-item { background: #fff; border-color: #e2e8f0; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.section-light .portfolio-item:hover { border-color: #93c5fd; box-shadow: 0 8px 32px rgba(0,102,204,0.12); }
.section-light .portfolio-info h4 { color: #0f172a; }
.section-light .portfolio-info p   { color: #64748b; }

/* Testimonials */
.section-light .testimonial-card {
  background: #fff; border-color: #e2e8f0; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section-light .testimonial-card:hover { border-color: #93c5fd; box-shadow: 0 8px 32px rgba(0,102,204,0.12); }
.section-light .testimonial-card p        { color: #475569; }
.section-light .testimonial-author strong { color: #0f172a; }
.section-light .testimonial-author span   { color: #64748b; }
.section-light .rating-score  { color: #0f172a; }
.section-light .rating-count  { color: #64748b; }

/* Carousel controls */
.section-light .carousel-btn { background: #fff; border-color: #e2e8f0; color: #334155; }
.section-light .carousel-btn:hover { background: #0066cc; color: #fff; border-color: #0066cc; }
.section-light .carousel-dot { background: #cbd5e1; }
.section-light .carousel-dot.active { background: #0066cc; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-pale); border: 1px solid rgba(0,102,204,0.15);
  color: var(--blue); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--text-dark); line-height: 1.2;
  margin-bottom: 16px; letter-spacing: -0.5px;
}

.section-header p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== HERO (stays dark/rich) ===== */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 80px; overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,102,204,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(79,70,229,0.12) 0%, transparent 50%);
}

#hero-canvas { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: -1; pointer-events: none; }


.hero-content { max-width: 780px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 600;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 28px;
}

.badge-dot {
  width: 8px; height: 8px; background: #4ade80; border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800;
  color: #ffffff; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 8px;
}

.hero-sub { font-size: clamp(1.2rem, 2.5vw, 2rem); font-weight: 500; color: rgba(255,255,255,0.55); }

.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.6); line-height: 1.7;
  max-width: 580px; margin: 24px auto 36px;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient); color: #fff; text-decoration: none;
  font-size: 1rem; font-weight: 700; padding: 16px 32px; border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,102,204,0.45); transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,102,204,0.55); }

.btn-hero-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(37,211,102,0.12); border: 1.5px solid rgba(37,211,102,0.4);
  color: #4ade80; text-decoration: none; font-size: 1rem; font-weight: 700;
  padding: 16px 28px; border-radius: 12px; transition: all var(--transition);
}
.btn-hero-whatsapp:hover { background: rgba(37,211,102,0.2); border-color: #4ade80; transform: translateY(-3px); }

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px 32px; flex-wrap: wrap;
}

.stat-item { text-align: center; padding: 0 32px; flex: 1; min-width: 100px; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-plus { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: #7eb8ff; }
.stat-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.45); font-weight: 500; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow { width: 18px; height: 18px; border-right: 2px solid rgba(255,255,255,0.3); border-bottom: 2px solid rgba(255,255,255,0.3); transform: rotate(45deg); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 0; background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trust-marquee-wrapper {
  position: relative;
  overflow: hidden;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.trust-marquee {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  padding: 18px 0;
}

.trust-marquee:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.85rem; font-weight: 600;
  white-space: nowrap; padding: 0 28px;
}
.trust-item svg { color: var(--blue); flex-shrink: 0; }

.trust-sep {
  color: var(--blue);
  opacity: 0.3;
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  position: relative; transition: all var(--transition);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-light);
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(0,102,204,0.06);
}

.card-featured {
  border-color: var(--blue) !important;
  background: linear-gradient(160deg, rgba(0,102,204,0.12) 0%, var(--bg-card) 60%);
  box-shadow: var(--shadow), 0 0 0 1px rgba(0,102,204,0.2);
}

.card-featured:hover { box-shadow: var(--shadow-lg), 0 0 0 3px rgba(0,102,204,0.1) !important; }

.service-icon {
  width: 64px; height: 64px;
  background: var(--blue-pale); border: 1.5px solid rgba(0,102,204,0.12);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--blue); transition: all var(--transition);
}

.service-card:hover .service-icon { background: var(--blue); color: #fff; border-color: var(--blue); transform: scale(1.05); }
.service-icon-orange { background: var(--orange-pale) !important; border-color: rgba(255,102,0,0.12) !important; color: var(--orange) !important; }
.service-card:hover .service-icon-orange { background: var(--orange) !important; color: #fff !important; border-color: var(--orange) !important; }
.service-icon-green { background: var(--green-pale) !important; border-color: rgba(0,168,120,0.12) !important; color: var(--green) !important; }
.service-card:hover .service-icon-green { background: var(--green) !important; color: #fff !important; border-color: var(--green) !important; }
.service-icon-purple { background: var(--purple-pale) !important; border-color: rgba(124,58,237,0.12) !important; color: var(--purple) !important; }
.service-card:hover .service-icon-purple { background: var(--purple) !important; color: #fff !important; border-color: var(--purple) !important; }
.service-icon-pink { background: var(--pink-pale) !important; border-color: rgba(224,23,140,0.12) !important; color: var(--pink) !important; }
.service-card:hover .service-icon-pink { background: var(--pink) !important; color: #fff !important; border-color: var(--pink) !important; }

.service-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gradient); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 4px 10px;
  border-radius: 100px; letter-spacing: 0.04em; text-transform: uppercase;
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem;
  font-weight: 700; color: var(--text-dark); margin-bottom: 10px; letter-spacing: -0.3px;
}

.service-card > p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; margin-bottom: 22px; }

.service-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; flex: 1; }
.service-features li { display: flex; align-items: center; gap: 9px; font-size: 0.87rem; color: var(--text); }
.service-features li span { color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 0.95rem; }

.btn-service {
  display: block; text-align: center; text-decoration: none;
  background: var(--blue-pale); border: 1.5px solid rgba(0,102,204,0.2);
  color: var(--blue); font-weight: 600; font-size: 0.9rem;
  padding: 12px 20px; border-radius: 10px; transition: all var(--transition); margin-top: auto;
}
.btn-service:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-1px); }
.btn-service-orange { background: var(--orange-pale) !important; border-color: rgba(255,102,0,0.2) !important; color: var(--orange) !important; }
.btn-service-orange:hover { background: var(--orange) !important; color: #fff !important; border-color: var(--orange) !important; }
.btn-service-green { background: var(--green-pale) !important; border-color: rgba(0,168,120,0.2) !important; color: var(--green) !important; }
.btn-service-green:hover { background: var(--green) !important; color: #fff !important; border-color: var(--green) !important; }
.btn-service-purple { background: var(--purple-pale) !important; border-color: rgba(124,58,237,0.2) !important; color: var(--purple) !important; }
.btn-service-purple:hover { background: var(--purple) !important; color: #fff !important; border-color: var(--purple) !important; }
.btn-service-pink { background: var(--pink-pale) !important; border-color: rgba(224,23,140,0.2) !important; color: var(--pink) !important; }
.btn-service-pink:hover { background: var(--pink) !important; color: #fff !important; border-color: var(--pink) !important; }

/* Category labels within services */
.services-category-label {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 20px;
}
.services-category-label svg { opacity: 0.6; }

/* 2-col grid for SEO, 3-col stays default (same as .services-grid) */
.services-grid-2 { grid-template-columns: repeat(2, 1fr) !important; }
.services-grid-3 { grid-template-columns: repeat(3, 1fr) !important; }

/* ===== PROCESSUS ===== */
.process-timeline {
  display: flex; align-items: flex-start; max-width: 900px; margin: 0 auto;
}

.process-step { flex: 1; text-align: center; padding: 0 20px; }

.process-connector {
  width: 80px; height: 2px; margin-top: 36px; flex-shrink: 0;
  background: linear-gradient(90deg, var(--blue) 0%, rgba(0,102,204,0.15) 100%);
  position: relative;
}
.process-connector::after {
  content: ''; position: absolute; right: -6px; top: -4px;
  width: 10px; height: 10px;
  border-right: 2px solid var(--blue); border-top: 2px solid var(--blue); transform: rotate(45deg);
}

.step-number {
  width: 72px; height: 72px; background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 800; color: #fff;
  margin: 0 auto 24px; box-shadow: var(--shadow-blue); position: relative; z-index: 2;
}

.step-content h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.step-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 14px; }

.step-time {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-pale); border: 1px solid rgba(0,102,204,0.15);
  color: var(--blue); font-size: 0.8rem; font-weight: 600; padding: 5px 12px; border-radius: 100px;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }

.portfolio-item {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.portfolio-item:hover { transform: translateY(-6px); border-color: var(--blue-light); box-shadow: var(--shadow-lg); }

.portfolio-mockup { padding: 16px 16px 0; background: var(--bg-alt); }

.mockup-browser { border-radius: 8px 8px 0 0; overflow: hidden; border: 1px solid #dde3ee; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

.mockup-bar {
  background: rgba(255,255,255,0.06); padding: 8px 10px; display: flex; align-items: center; gap: 5px;
}
.mockup-bar span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-bar span:nth-child(1) { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #febc2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }

.mockup-url {
  flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  padding: 2px 8px; font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-left: 4px;
  font-family: monospace; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
  max-width: 160px;
}

.mockup-screen { height: 150px; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.mockup-screen.mockup-img { padding: 0; }
.mockup-screen.mockup-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

/* Snel Loodgieter – dark navy + orange */
.mockup-loodgieter { background: linear-gradient(160deg, #0d1828 0%, #1a2f50 100%); }

/* Plombier Denis – clean blue/white */
.mockup-denis { background: linear-gradient(160deg, #0052a3 0%, #1a7de8 100%); }

/* Chassis Janssens – light, professional */
.mockup-janssens { background: linear-gradient(160deg, #f8fafd 0%, #eef2fb 100%); }

.mockup-nav-bar { height: 22px; background: rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }
.mockup-nav-blue { background: rgba(0,30,70,0.4) !important; }
.mockup-nav-white { background: #fff !important; border-bottom: 1px solid #e4e9f2 !important; }

.mockup-hero-content { flex: 1; padding: 12px 14px 8px; display: flex; flex-direction: column; justify-content: center; }
.mockup-hero-light { /* for janssens */ }

.mockup-badge-sm { height: 8px; width: 52px; border-radius: 4px; background: rgba(255,102,0,0.7); margin-bottom: 8px; }
.mockup-badge-blue { background: rgba(255,255,255,0.4) !important; }
.mockup-badge-gold { background: rgba(184,134,11,0.5) !important; }

.mockup-line { height: 7px; background: rgba(255,255,255,0.3); border-radius: 3px; }
.mockup-line-dark { background: rgba(15,22,41,0.2) !important; }
.mockup-line.w75 { width: 75%; }
.mockup-line.w55 { width: 55%; }
.mockup-line.w85 { width: 85%; }
.mockup-line.w80 { width: 80%; }
.mockup-line.w60 { width: 60%; }
.mockup-line.w70 { width: 70%; }
.mockup-line.w90 { width: 90%; }
.mb6 { margin-bottom: 6px; }
.mb12 { margin-bottom: 12px; }

.mockup-btn-row { display: flex; gap: 6px; }
.mockup-btn { height: 16px; width: 56px; border-radius: 3px; background: rgba(255,255,255,0.25); flex-shrink: 0; }
.mockup-btn-orange { background: #e8500a !important; }
.mockup-btn-blue { background: rgba(255,255,255,0.9) !important; }
.mockup-btn-gold { background: #b8860b !important; }
.mockup-btn-outline { height: 16px; width: 46px; border-radius: 3px; border: 1.5px solid rgba(255,255,255,0.3); background: transparent; flex-shrink: 0; }
.mockup-btn-outline-blue { height: 16px; width: 46px; border-radius: 3px; border: 1.5px solid rgba(255,255,255,0.5); background: transparent; flex-shrink: 0; }

.mockup-stats-bar { height: 26px; background: rgba(232,80,10,0.15); border-top: 1px solid rgba(232,80,10,0.2); display: flex; align-items: center; justify-content: center; gap: 12px; padding: 0 10px; flex-shrink: 0; }
.mockup-stat { height: 6px; width: 36px; border-radius: 3px; background: rgba(255,255,255,0.15); }

.mockup-cards-row { height: 26px; background: rgba(255,255,255,0.08); border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; gap: 6px; padding: 0 10px; flex-shrink: 0; }
.mockup-card-sm { height: 12px; width: 40px; border-radius: 3px; background: rgba(255,255,255,0.2); }

.mockup-trust-strip { height: 26px; background: rgba(255,255,255,0.05); border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0 10px; flex-shrink: 0; }
.mockup-trust-icon { width: 28px; height: 10px; border-radius: 3px; background: rgba(0,102,204,0.15); }

.portfolio-info { padding: 18px 20px; }

.portfolio-tag {
  display: inline-block; background: var(--blue-pale); color: var(--blue);
  font-size: 0.72rem; font-weight: 700; padding: 3px 10px;
  border-radius: 100px; margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase;
}
.portfolio-tag-blue { background: #e8f0fb !important; color: #0052a3 !important; }
.portfolio-tag-gold { background: var(--gold-pale) !important; color: var(--gold) !important; }

.portfolio-info h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.portfolio-info p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 10px; }

.portfolio-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--blue); text-decoration: none; font-size: 0.82rem; font-weight: 600;
  transition: gap var(--transition);
}
.portfolio-link:hover { gap: 8px; }

.portfolio-cta { text-align: center; }
.portfolio-cta p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.05rem; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }

.pricing-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  display: flex; flex-direction: column; position: relative;
  transition: all var(--transition); box-shadow: var(--shadow-sm);
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-hover); }

.pricing-featured {
  border-color: var(--blue) !important;
  background: linear-gradient(160deg, rgba(0,102,204,0.14) 0%, var(--bg-card) 60%);
  box-shadow: var(--shadow), 0 0 0 2px rgba(0,102,204,0.2);
  transform: scale(1.03);
}
.pricing-featured:hover { transform: scale(1.03) translateY(-6px); box-shadow: var(--shadow-lg), 0 0 0 2px rgba(0,102,204,0.12) !important; }

.pricing-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 4px 16px; border-radius: 100px; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap;
}

.pricing-header h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }

.pricing-price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 6px; }
.price-currency { font-size: 1.4rem; font-weight: 700; color: var(--text-dark); line-height: 1.5; }
.price-amount { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.price-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; }
.pricing-header > p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; flex: 1; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; color: var(--text); }
.pricing-features li span { color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 1rem; }
.pricing-feature-no { opacity: 0.35; }
.pricing-feature-no span { color: var(--text-light) !important; }

.btn-pricing {
  display: block; text-align: center; text-decoration: none;
  background: var(--bg-alt); border: 1.5px solid var(--border);
  color: var(--text); font-weight: 600; font-size: 0.93rem;
  padding: 13px 20px; border-radius: 10px; transition: all var(--transition); margin-top: auto;
}
.btn-pricing:hover { background: var(--text-dark); color: #fff; border-color: var(--text-dark); transform: translateY(-1px); }

.btn-pricing-featured {
  background: var(--gradient) !important; border-color: transparent !important;
  color: #fff !important; box-shadow: var(--shadow-blue);
}
.btn-pricing-featured:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(0,102,204,0.4) !important; }

.pricing-note { text-align: center; font-size: 0.82rem; color: var(--text-light); margin-top: 32px; }

/* ===== TESTIMONIALS ===== */
.global-rating { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; }
.stars { color: #f59e0b; font-size: 1.3rem; letter-spacing: 2px; }
.rating-score { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text-dark); }
.rating-count { font-size: 0.85rem; color: var(--text-muted); }

.testimonials-carousel { overflow: hidden; margin: 0 -12px; margin-bottom: 28px; }
.testimonials-track { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; }

.testimonial-card {
  min-width: calc(33.33% - 16px); margin: 0 8px;
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  flex-shrink: 0; transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.testimonial-card:hover { border-color: var(--blue-light); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-card p::before { content: '"'; }
.testimonial-card p::after { content: '"'; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0; }
.testimonial-author strong { display: block; color: var(--text-dark); font-size: 0.9rem; font-weight: 600; }
.testimonial-author span { display: block; color: var(--text-muted); font-size: 0.8rem; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; }

.carousel-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-card); border: 1.5px solid var(--border);
  color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.carousel-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all var(--transition); border: none; padding: 0; }
.carousel-dot.active { background: var(--blue); width: 24px; border-radius: 4px; }

/* ===== FAQ ===== */
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq-item { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color var(--transition); box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,102,204,0.07); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: none; color: var(--text-dark);
  font-size: 0.95rem; font-weight: 600; cursor: pointer; text-align: left; transition: all var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-icon { flex-shrink: 0; transition: transform var(--transition); color: var(--text-muted); }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--blue); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 0 22px 18px; color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* ===== CONTACT LIGHT ===== */
.contact-light {
  background: #f4f7fb;
  position: relative;
}

.contact-light-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}

/* -- Colonne gauche -- */
.section-tag-dark {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue); background: rgba(0,102,204,0.1);
  border: 1px solid rgba(0,102,204,0.2); border-radius: 50px; padding: 5px 14px;
  margin-bottom: 18px;
}

.contact-light-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800;
  color: #0f172a; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 14px;
}

.contact-light-desc { color: #475569; font-size: 0.97rem; line-height: 1.7; margin-bottom: 32px; }

.contact-light-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.contact-light-method {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 12px;
  padding: 14px 18px; text-decoration: none;
  transition: all var(--transition); box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  color: inherit;
}
.contact-light-method:hover { border-color: #93c5fd; transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,102,204,0.1); }

.clm-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.clm-icon-blue  { background: rgba(0,102,204,0.1); color: #0066cc; }
.clm-icon-green { background: rgba(37,211,102,0.12); color: #16a34a; }
.clm-icon-purple{ background: rgba(109,40,217,0.1); color: #7c3aed; }

.contact-light-method strong { display: block; color: #0f172a; font-size: 0.9rem; font-weight: 600; }
.contact-light-method span   { display: block; color: #64748b; font-size: 0.82rem; }

.contact-light-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.clb-item {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 50px;
  padding: 6px 14px; font-size: 0.8rem; font-weight: 600; color: #334155;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.clb-item svg { color: #0066cc; flex-shrink: 0; }

/* -- Colonne droite : formulaire -- */
.contact-light-form {
  background: #fff; border: 1.5px solid #e2e8f0;
  border-radius: var(--radius); padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.clf-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem;
  font-weight: 700; color: #0f172a; margin-bottom: 26px;
}

.clf-form .clf-group { margin-bottom: 16px; }
.clf-form .clf-group label {
  display: block; font-size: 0.83rem; font-weight: 600;
  color: #374151; margin-bottom: 7px;
}

.clf-form input,
.clf-form select,
.clf-form textarea {
  width: 100%; background: #f8fafc; border: 1.5px solid #e2e8f0;
  border-radius: 9px; color: #0f172a;
  font-family: 'Inter', sans-serif; font-size: 0.93rem; padding: 11px 14px;
  outline: none; transition: all var(--transition); appearance: none;
}
.clf-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px;
}
.clf-form select option { background: #fff; color: #0f172a; }
.clf-form input:focus, .clf-form select:focus, .clf-form textarea:focus {
  border-color: #0066cc; background: #fff; box-shadow: 0 0 0 3px rgba(0,102,204,0.12);
}
.clf-form input::placeholder, .clf-form textarea::placeholder { color: #9ca3af; }
.clf-form textarea { resize: vertical; min-height: 100px; }

.clf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.clf-checkbox { margin-top: 4px; }
.clf-check-label {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; font-size: 0.82rem; color: #6b7280; line-height: 1.5;
  padding: 10px 12px; border-radius: 8px; border: 1px solid #e5e7eb;
  transition: background 0.15s, border-color 0.15s;
  user-select: none;
}
.clf-check-label:hover { background: #f3f8ff; border-color: #0066cc; }
.clf-check-label input[type="checkbox"] {
  width: 22px; height: 22px; min-width: 22px;
  accent-color: #0066cc; cursor: pointer;
  appearance: auto;
}

.clf-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #0066cc, #0044aa);
  border: none; color: #fff; font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700; padding: 14px 24px;
  border-radius: 10px; cursor: pointer; margin-top: 8px;
  transition: all var(--transition); box-shadow: 0 4px 16px rgba(0,102,204,0.3);
}
.clf-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,102,204,0.4); }

.form-alert {
  padding: 16px 20px; border-radius: 10px; font-size: 0.95rem;
  line-height: 1.5; margin-bottom: 20px;
  animation: alertPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.form-alert-success { background: #f0fdf4; border: 2px solid #86efac; color: #166534; }
.form-alert-error   { background: #fef2f2; border: 2px solid #fca5a5; color: #991b1b; }

@keyframes alertPop {
  from { opacity: 0; transform: translateY(-10px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
  .contact-light-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .contact-light-form { padding: 28px 20px; }
  .clf-row { grid-template-columns: 1fr; }
}


/* ===== CTA FINAL ===== */
.cta-final {
  padding: 96px 0;
  background: rgba(0,0,0,0.25);
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,102,204,0.18) 0%, transparent 70%); pointer-events: none;
}
.cta-content { text-align: center; position: relative; z-index: 2; }
.cta-content h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.5px; }
.cta-content p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary { display: inline-flex; align-items: center; background: var(--gradient); color: #fff; text-decoration: none; font-size: 1rem; font-weight: 700; padding: 16px 36px; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,102,204,0.4); transition: all var(--transition); }
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,102,204,0.5); }
.btn-cta-phone { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.15); color: #fff; text-decoration: none; font-size: 1rem; font-weight: 600; padding: 16px 28px; border-radius: 12px; transition: all var(--transition); }
.btn-cta-phone:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); transform: translateY(-3px); }

/* ===== FOOTER ===== */
footer { background: #0a1628; border-top: 1px solid rgba(255,255,255,0.06); padding: 64px 0 24px; }

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

.footer-logo { margin-bottom: 16px; display: inline-flex; }

.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); text-decoration: none; transition: all var(--transition); }
.footer-social a:hover { background: rgba(0,102,204,0.2); border-color: rgba(0,102,204,0.4); color: #fff; }

.footer-links h4, .footer-contact h4 { font-size: 0.8rem; font-weight: 700; color: #fff; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links ul, .footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.87rem; transition: color var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.87rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons { position: fixed; right: 24px; bottom: 90px; display: flex; flex-direction: column; gap: 10px; z-index: 900; }

.float-btn { position: relative; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: var(--shadow); transition: all var(--transition); }
.float-btn:hover { transform: scale(1.1); }

.float-whatsapp { background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.35); animation: pulse-wa 3s ease-in-out infinite; }
.float-whatsapp:hover { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.float-whatsapp svg { color: white; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}

.float-call { background: var(--blue); box-shadow: 0 4px 20px rgba(0,102,204,0.35); }
.float-call:hover { box-shadow: var(--shadow-blue); }
.float-call svg { color: white; }

.float-tooltip { position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%); background: var(--text-dark); color: #fff; font-size: 0.78rem; font-weight: 600; padding: 5px 10px; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.float-btn:hover .float-tooltip { opacity: 1; }

/* ===== EXIT INTENT POPUP ===== */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.popup-overlay.active { opacity: 1; pointer-events: all; }

.popup-box { background: #0d1a33; border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 48px 40px; max-width: 500px; width: 100%; text-align: center; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.6); transform: scale(0.9); transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.popup-overlay.active .popup-box { transform: scale(1); }

.popup-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; background: rgba(255,255,255,0.08); border: none; border-radius: 50%; color: var(--text-muted); font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); line-height: 1; }
.popup-close:hover { background: rgba(255,255,255,0.14); color: var(--text-dark); }

.popup-emoji { font-size: 3rem; margin-bottom: 16px; }
.popup-box h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.popup-box > p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; margin-bottom: 20px; }

.popup-offer { background: var(--blue-pale); border: 1px solid rgba(0,102,204,0.15); border-radius: 10px; padding: 12px 16px; font-size: 0.9rem; color: var(--text); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; justify-content: center; flex-wrap: wrap; }
.offer-tag { background: var(--green); color: #fff; font-size: 0.68rem; font-weight: 800; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.05em; }

.btn-popup { display: block; background: var(--gradient); color: #fff; text-decoration: none; font-weight: 700; padding: 14px 28px; border-radius: 10px; font-size: 0.97rem; margin-bottom: 12px; transition: all var(--transition); box-shadow: var(--shadow-blue); }
.btn-popup:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,102,204,0.4); }

.popup-skip { background: none; border: none; color: #9ca3af; font-size: 0.78rem; cursor: pointer; transition: color var(--transition); font-family: 'Inter', sans-serif; }
.popup-skip:hover { color: var(--text-muted); }

/* ===== STICKY BAR (mobile) ===== */
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; display: none; background: rgba(8,12,24,0.95); backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: 10px 12px; gap: 8px; box-shadow: 0 -4px 20px rgba(0,0,0,0.4); }

.sticky-bar-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; text-decoration: none; font-size: 0.82rem; font-weight: 700; padding: 11px 8px; border-radius: 8px; transition: all var(--transition); }
.sticky-call { background: var(--blue-pale); border: 1.5px solid rgba(0,102,204,0.2); color: var(--blue); }
.sticky-devis { background: var(--gradient); color: #fff; box-shadow: 0 4px 12px rgba(0,102,204,0.25); }
.sticky-wa { background: rgba(37,211,102,0.1); border: 1.5px solid rgba(37,211,102,0.3); color: #16a34a; }

/* ===== ANIMATIONS ===== */
.reveal-up { opacity: 0; transform: translateY(36px); transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-up.revealed { opacity: 1; transform: translateY(0); }
.reveal-up:nth-child(2) { transition-delay: 0.1s; }
.reveal-up:nth-child(3) { transition-delay: 0.2s; }
.reveal-up:nth-child(4) { transition-delay: 0.3s; }
.reveal-up:nth-child(5) { transition-delay: 0.4s; }
.reveal-up:nth-child(6) { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .services-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .services-grid-2 { grid-template-columns: 1fr !important; }
  .services-grid-3 { grid-template-columns: 1fr !important; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 68px 0; }
  .contact-light-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .contact-light-form { padding: 28px 20px; }
  .clf-row { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .process-timeline { flex-direction: column; align-items: center; max-width: 380px; margin: 0 auto; gap: 20px; }
  .process-connector { width: 2px; height: 32px; background: linear-gradient(180deg, var(--blue) 0%, rgba(0,102,204,0.15) 100%); }
  .process-connector::after { display: none; }
  .trust-item:nth-child(n+5) { display: none; }
  .testimonial-card { min-width: calc(100% - 16px); }
  .form-row { grid-template-columns: 1fr; }
  .service-selector { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .floating-buttons { bottom: 80px; right: 14px; }
  .sticky-bar { display: flex; }
  .contact-form-wrapper { padding: 24px 20px; }
  .btn-phone, .nav-cta .btn-primary { display: none; }
  .hero-stats { padding: 16px; }
  .stat-item { padding: 0 14px; }
  .stat-num { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-whatsapp { text-align: center; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; background: rgba(255,255,255,0.1); }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn-cta-primary, .btn-cta-phone { text-align: center; justify-content: center; }
}
