/* ═══════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════ */
:root {
  --primary: #009edd;
  --primary-dark: #007ab5;
  --primary-light: #33b1e5;
  --accent: #c60002;
  --accent-dark: #9e0002;
  --dark: #5d0c0c;
  --dark2: #9f1818;
  --gray-light: #f5f7fa;
  --gray-mid: #e8ecf0;
  --white: #ffffff;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Montserrat', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 1023px) { body { padding-bottom: 80px; } }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section-padding { padding: 5rem 1.5rem; }
@media (min-width: 768px) { .section-padding { padding: 6rem 2rem; } }

.section-padding .container { padding: 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-blue {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.section-title-white { color: var(--white); }
.section-desc {
  color: #6b7280;
  font-size: 1.1rem;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}
.text-center { text-align: center; }
.section-header { margin-bottom: 3.5rem; }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float-alt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.5; }
}
@keyframes breathe2 {
  0%, 100% { transform: scale(1.2); opacity: 0.2; }
  50% { transform: scale(1); opacity: 0.4; }
}
@keyframes orbit-cw {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes orbit-ccw {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(8px); opacity: 0; }
  61% { transform: translateY(-4px); opacity: 0; }
  80% { opacity: 1; }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}
@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,158,221,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(0,158,221,0); }
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes ripple-anim {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(18); opacity: 0; }
}
@keyframes shimmer-enter {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ═══════════════════════════════════════
   REVEAL ON SCROLL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.1s; }
.delay-3 { transition-delay: 0.15s; }
.delay-4 { transition-delay: 0.2s; }
.delay-5 { transition-delay: 0.25s; }
.delay-6 { transition-delay: 0.3s; }
.delay-7 { transition-delay: 0.35s; }
.delay-8 { transition-delay: 0.4s; }
.delay-9 { transition-delay: 0.5s; }
.delay-10 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-weight: 700; border-radius: 1rem;
  transition: all 0.2s ease; cursor: pointer; position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm  { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-md  { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
.btn-lg  { padding: 1rem 2rem; font-size: 1rem; }
.btn-xl  { padding: 1.25rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

.btn-whatsapp {
  background: #25D366; color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover { background: #1ebc5b; box-shadow: 0 8px 30px rgba(37,211,102,0.4); }

.btn-red {
  background: var(--accent); color: white;
  box-shadow: 0 4px 20px rgba(198,0,2,0.25);
}
.btn-red:hover { background: var(--accent-dark); box-shadow: 0 8px 30px rgba(198,0,2,0.4); }

.btn-blue {
  background: var(--primary); color: white;
  box-shadow: 0 4px 20px rgba(0,158,221,0.25);
}
.btn-blue:hover { background: var(--primary-dark); box-shadow: 0 8px 30px rgba(0,158,221,0.4); }

.btn-dark {
  background: var(--dark); color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-dark:hover { background: var(--dark2); }

.btn-ghost {
  background: rgba(255,255,255,0.1); color: white;
  border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }

.btn-white {
  background: white; color: var(--primary);
  border: 2px solid white;
}
.btn-white:hover { background: #f0f9ff; }

.btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

.btn-shimmer::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.28) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}
.btn-shimmer:hover::after { transform: translateX(200%); }

.btn-subtext {
  display: block; text-align: center; font-size: 0.7rem;
  color: #9ca3af; margin-top: 0.4rem; font-weight: 400;
}
.badge-pill {
  position: absolute; top: -10px; right: -10px;
  font-size: 0.6rem; font-weight: 900; padding: 2px 6px;
  border-radius: 999px; line-height: 1; background: rgba(0,0,0,0.4);
  color: white;
}
.btn-whatsapp .badge-pill { background: #1a7a40; }
.btn-red .badge-pill { background: var(--accent-dark); }
.btn-blue .badge-pill { background: #006fa8; }
.btn-pulse-green { animation: pulse-green 2.5s ease-in-out infinite; }
.btn-pulse-blue  { animation: pulse-blue  2.5s ease-in-out infinite; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.3s ease;
  transform: translateY(0);
  animation: navSlideDown 0.5s ease-out;
}
@keyframes navSlideDown {
  from { transform: translateY(-80px); }
  to   { transform: translateY(0); }
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 0.5rem;
  transition: transform 0.3s ease;
}
.navbar-logo:hover { transform: scale(1.03); }
.navbar-logo img { width: 48px; height: 48px; object-fit: contain; }
.navbar-brand { display: flex; flex-direction: column; line-height: 1.1; }
.navbar-brand-name {
  font-family: var(--font-display); font-weight: 900; font-size: 1.2rem;
  letter-spacing: -0.02em; color: white; transition: color 0.3s;
}
.navbar.scrolled .navbar-brand-name { color: var(--dark); }
.navbar-brand-sub {
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--primary);
}
.navbar-nav {
  display: none; align-items: center; gap: 0.25rem;
}
@media (min-width: 1024px) { .navbar-nav { display: flex; } }
.nav-link {
  position: relative; padding: 0.5rem 1rem; font-size: 0.875rem;
  font-weight: 500; border-radius: 999px; transition: all 0.2s;
  color: rgba(255,255,255,0.9);
}
.navbar.scrolled .nav-link { color: var(--dark); }
.nav-link:hover { color: var(--primary); }
.nav-link.active {
  color: var(--primary);
  background: rgba(0,158,221,0.1);
}
.navbar.scrolled .nav-link.active { color: var(--primary); }
.navbar-cta {
  display: none; align-items: center; gap: 0.75rem;
}
@media (min-width: 1024px) { .navbar-cta { display: flex; } }
.navbar-phone {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.9); transition: color 0.2s;
}
.navbar.scrolled .navbar-phone { color: var(--dark); }
.navbar-phone:hover { color: var(--primary); }
.btn-nav-devis {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--accent); color: white;
  font-size: 0.875rem; font-weight: 700;
  padding: 0.6rem 1.25rem; border-radius: 999px;
  transition: all 0.2s; position: relative; overflow: hidden;
}
.btn-nav-devis:hover { background: #a50002; box-shadow: 0 4px 16px rgba(198,0,2,0.3); transform: translateY(-1px); }
.btn-nav-devis::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.5s ease;
}
.btn-nav-devis:hover::after { transform: translateX(200%); }
.hamburger {
  display: flex; align-items: center; justify-content: center;
  padding: 0.5rem; border-radius: 0.5rem; transition: color 0.2s;
  color: white;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.navbar.scrolled .hamburger { color: var(--dark); }
.hamburger svg { width: 22px; height: 22px; }

/* ═══════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════ */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 40;
  background: white; border-top: 1px solid #f3f4f6;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mobile-menu.hidden { display: none; }
.mobile-nav { display: flex; flex-direction: column; padding: 1rem; gap: 0.25rem; }
.mobile-nav-link {
  display: block; padding: 0.75rem 1rem; border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 500; color: var(--dark);
  transition: all 0.2s;
}
.mobile-nav-link:hover { background: #f9fafb; }
.mobile-nav-link.active { background: rgba(0,158,221,0.1); color: var(--primary); }
.mobile-nav-footer {
  padding-top: 0.75rem; margin-top: 0.5rem;
  border-top: 1px solid #f3f4f6;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.mobile-phone {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 500;
  color: var(--dark);
}
.btn-nav-devis-mobile {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: var(--accent); color: white;
  font-size: 0.875rem; font-weight: 700;
  padding: 0.875rem 1.25rem; border-radius: 0.75rem;
  transition: background 0.2s;
}
.btn-nav-devis-mobile:hover { background: #a50002; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
}
.hero-bg-circle-1 {
  position: absolute; top: -10rem; right: -10rem;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(0,158,221,0.2); filter: blur(80px);
  animation: breathe 6s ease-in-out infinite;
}
.hero-bg-circle-2 {
  position: absolute; bottom: -10rem; left: -10rem;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(198,0,2,0.15); filter: blur(80px);
  animation: breathe2 8s ease-in-out infinite;
}
.hero-bg-circle-3 {
  position: absolute; top: 50%; left: 50%;
  width: 800px; height: 800px; border-radius: 50%;
  background: rgba(0,158,221,0.05); filter: blur(80px);
  transform: translate(-50%, -50%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
  background-image:
    linear-gradient(var(--primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 10;
  width: 100%; padding: 0rem 1.5rem 4rem;
}
@media (min-width: 768px) { .hero-inner { padding: 0rem 2rem 4rem; } }
.hero-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,158,221,0.15); border: 1px solid rgba(0,158,221,0.3);
  color: var(--primary); font-size: 0.8rem; font-weight: 500;
  padding: 0.5rem 1rem; border-radius: 999px; margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); animation: pulse-blue 2s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: white; line-height: 1.1; margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.25rem; color: rgb(255, 255, 255);
  margin-bottom: 1rem; line-height: 1.6;
}
.hero-desc {
  font-size: 1rem; color: rgba(255, 255, 255, 0.86);
  line-height: 1.7; margin-bottom: 2rem;
}
/* ── Slogan ticker ────────────────────────────────────── */
.hero-slogan-ticker {
  margin-bottom: 2.5rem;
  min-height: 3rem;
  display: flex;
  align-items: center;
}
.hero-slogan-card {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.2rem 0.55rem 0.85rem;
  background: rgb(247, 255, 96);
  border: 1.5px solid rgba(0,158,221,0.35);
  border-radius: 50px;
  direction: rtl;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(0,158,221,0.18);
  backdrop-filter: blur(6px);
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
.hero-slogan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,158,221,0.08) 0%, rgba(139,92,246,0.05) 100%);
  pointer-events: none;
}
.hero-slogan-emoji {
  font-size: 1.15rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.35));
  transition: filter 0.4s ease;
}
.hero-slogan-text {
  font-family: 'Cairo', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.92);
  white-space: nowrap;
  letter-spacing: 0;
}
.hero-slogan-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(0,158,221,0.6);
  animation: sloganPulse 1.8s infinite;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}
@keyframes sloganPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,158,221,0.6); }
  60%  { box-shadow: 0 0 0 7px rgba(0,158,221,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,158,221,0); }
}
@keyframes sloganSlideIn {
  from { opacity: 0; transform: translateX(-22px) scale(0.94); }
  to   { opacity: 1; transform: translateX(0)     scale(1); }
}
@keyframes sloganSlideOut {
  from { opacity: 1; transform: translateX(0)     scale(1); }
  to   { opacity: 0; transform: translateX(22px)  scale(0.94); }
}
.slogan-in  { animation: sloganSlideIn  0.45s cubic-bezier(0.34,1.56,0.64,1) both; }
.slogan-out { animation: sloganSlideOut 0.3s  ease-in both; }
.hero-ctas {
  display: flex; flex-direction: column; gap: 1rem; align-items: flex-start;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; align-items: center; } }

.hero-secure-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-top: 1.5rem; padding: 0.6rem 1.25rem 0.6rem 0.6rem;
  background: linear-gradient(135deg, #f5dd94 0%, #d4af37 55%, #b8912f 100%);
  border-radius: 1.1rem; position: relative;
  box-shadow: 0 8px 26px rgba(212,175,55,0.4);
  animation: pulse-gold 2.6s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  max-width: 100%;
}
.hero-secure-badge:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 34px rgba(212,175,55,0.55); }
.hero-secure-badge-tag {
  position: absolute; top: -10px; left: 14px;
  background: var(--accent); color: white; font-size: 0.6rem; font-weight: 900;
  padding: 3px 9px; border-radius: 999px; letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(198,0,2,0.45);
}
.hero-secure-badge-icon {
  flex-shrink: 0; font-size: 1.25rem;
  width: 2.5rem; height: 2.5rem; border-radius: 0.8rem;
  background: rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
}
.hero-secure-badge-text { display: flex; flex-direction: column; gap: 0.05rem; text-align: left; }
.hero-secure-badge-text strong { color: #1a1406; font-size: 0.92rem; font-weight: 800; line-height: 1.2; }
.hero-secure-badge-text small { color: #4a3a0a; font-size: 0.72rem; font-weight: 600; }
.hero-secure-badge svg { flex-shrink: 0; color: #1a1406; opacity: 0.75; }
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 8px 26px rgba(212,175,55,0.4); }
  50%      { box-shadow: 0 8px 26px rgba(212,175,55,0.65), 0 0 0 7px rgba(212,175,55,0.14); }
}
@media (max-width: 639px) {
  .hero-secure-badge { padding: 0.55rem 1rem 0.55rem 0.55rem; gap: 0.6rem; }
  .hero-secure-badge-icon { width: 2.15rem; height: 2.15rem; font-size: 1.05rem; border-radius: 0.65rem; }
  .hero-secure-badge-text strong { font-size: 0.82rem; }
  .hero-secure-badge-text small { font-size: 0.66rem; }
}

/* Hero visual (right side) */
.hero-visual {
  display: none; position: relative; height: 520px;
}
@media (min-width: 1024px) { .hero-visual { display: block; } }
.hero-central-badge {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 192px; height: 192px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(0,158,221,0.4);
  z-index: 2;
}
.hero-central-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
}
.orbit-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; pointer-events: none;
}
.orbit-ring-1 {
  width: 288px; height: 288px;
  border: 1px solid rgba(0,158,221,0.2);
  animation: orbit-cw 20s linear infinite;
}
.orbit-ring-2 {
  width: 384px; height: 384px;
  border: 1px dashed rgba(198,0,2,0.1);
  animation: orbit-ccw 30s linear infinite;
}
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1rem; padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
.hero-float-card span:first-child { font-size: 1.5rem; }
.hero-float-card span:last-child { font-size: 0.875rem; font-weight: 500; color: white; white-space: nowrap; }
.hero-float-card:nth-child(1) { animation-delay: 0s; }
.hero-float-card:nth-child(2) { animation-delay: 0.4s; }
.hero-float-card:nth-child(3) { animation-delay: 0.8s; }
.hero-float-card:nth-child(4) { animation-delay: 1.2s; }
.hero-stat-badge {
  position: absolute; background: white; border-radius: 1rem;
  padding: 0.75rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15); z-index: 3;
}
.hero-stat-icon {
  width: 40px; height: 40px; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.hero-stat-value {
  font-weight: 700; font-size: 0.875rem; color: var(--dark);
}
.hero-stat-label { font-size: 0.7rem; color: #9ca3af; }
.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll-text {
  font-size: 0.65rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-scroll-mouse {
  width: 20px; height: 32px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 10px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.hero-scroll-dot {
  width: 4px; height: 8px; background: rgba(255,255,255,0.5);
  border-radius: 2px; animation: scroll-dot 1.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about { background: white; }
.advantages-grid {
  display: grid; gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .advantages-grid { grid-template-columns: 1fr 1fr; } }
.advantage-card {
  display: flex; gap: 1.25rem; padding: 1.5rem 2rem;
  background: var(--gray-light); border-radius: 1.5rem;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,158,221,0.1);
}
.advantage-icon {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.advantage-card:hover .advantage-icon { transform: scale(1.1); }
.advantage-icon svg { width: 24px; height: 24px; }
.advantage-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; color: var(--dark); margin-bottom: 0.5rem;
}
.advantage-desc { font-size: 0.875rem; color: #6b7280; line-height: 1.6; }
.about-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 1.5rem; padding: 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,158,221,0.2);
}
@media (min-width: 768px) {
  .about-banner {
    flex-direction: row; align-items: center; justify-content: space-between;
    padding: 2rem 3rem;
  }
}
.about-banner-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.25rem, 3vw, 1.75rem); color: white; margin-bottom: 0.5rem;
}
.about-banner-desc { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.about-banner-btns {
  display: flex; flex-direction: column; gap: 0.75rem; flex-shrink: 0;
}
@media (min-width: 640px) { .about-banner-btns { flex-direction: row; } }

/* ═══════════════════════════════════════
   SERVICES — REDESIGN MODERNE
═══════════════════════════════════════ */
.services { background: linear-gradient(135deg, var(--gray-light) 0%, #ffffff 100%); }
.services-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; } }
.service-card {
  background: white; border-radius: 1.75rem; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex; flex-direction: column;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0,158,221,0.02) 0%, transparent 50%);
  pointer-events: none; z-index: 1;
}
.service-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,158,221,0.15), 0 0 40px rgba(0,158,221,0.08);
}
.service-img-wrap {
  position: relative; height: 240px; overflow: hidden; flex-shrink: 0;
}
.service-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: brightness(0.95);
}
.service-card:hover .service-img {
  transform: scale(1.12);
  filter: brightness(1);
}
.service-img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  transition: opacity 0.4s ease;
}
.service-card:hover .service-img-gradient {
  opacity: 0.8;
}
.service-badge {
  position: absolute; top: 1.25rem; left: 1.25rem;
  font-size: 0.7rem; font-weight: 900; padding: 0.4rem 0.85rem;
  border-radius: 50px; color: white; text-transform: uppercase;
  letter-spacing: 0.08em; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  backdrop-filter: blur(8px); z-index: 2;
  border: 1px solid rgba(255,255,255,0.3);
}
.service-img-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem;
  display: flex; align-items: flex-end; justify-content: space-between;
  z-index: 2;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img-bottom {
  transform: translateY(-4px);
}
.service-subtitle {
  color: rgba(255,255,255,0.85); font-size: 0.75rem; font-weight: 600;
  margin-bottom: 4px; letter-spacing: 0.5px;
}
.service-title {
  color: white; font-family: var(--font-display); font-weight: 900;
  font-size: 1.35rem; line-height: 1.2; text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.service-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.25); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}
.service-card:hover .service-arrow {
  transform: rotate(45deg) scale(1.1);
  background: rgba(255,255,255,0.35);
}
.service-arrow svg { width: 18px; height: 18px; color: white; stroke-width: 2.5; }
.service-img-hover-overlay {
  position: absolute; inset: 0; pointer-events: none;
  transition: opacity 0.4s ease; opacity: 0;
}
.service-card:hover .service-img-hover-overlay {
  opacity: 0.15;
}
.service-body {
  flex: 1; padding: 1.75rem; display: flex; flex-direction: column;
  position: relative; z-index: 2;
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 100%);
}
.service-icon-row {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem;
}
.service-icon {
  width: 48px; height: 48px; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0; transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.service-icon::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
}
.service-card:hover .service-icon::before {
  opacity: 1;
}
.service-items {
  display: flex; flex-wrap: wrap; gap: 0.5rem 0.9rem; list-style: none;
}
.service-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; color: #505867; font-weight: 500;
}
.service-item-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  transition: transform 0.3s ease;
}
.service-item:hover .service-item-dot {
  transform: scale(1.4);
}
.service-btns { margin-top: auto; display: flex; gap: 0.65rem; padding-top: 1.25rem; }
.btn-service-wa {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.85rem 1rem; font-size: 0.85rem; font-weight: 700;
  border-radius: 1.15rem; background: linear-gradient(135deg, #25D366 0%, #1ebc5b 100%);
  color: white; border: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative; overflow: hidden;
  box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}
.btn-service-wa::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.6s ease;
}
.btn-service-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
}
.btn-service-wa:hover::before {
  transform: translateX(200%);
}
.btn-service-wa svg { width: 17px; height: 17px; }
.btn-service-form {
  flex: 1; padding: 0.85rem 1rem; font-size: 0.85rem; font-weight: 700;
  border-radius: 1.15rem; border: 2px solid; transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: transparent; position: relative; overflow: hidden;
  cursor: pointer;
}
.btn-service-form::before {
  content: ''; position: absolute; inset: 0;
  background: currentColor; opacity: 0;
  transition: opacity 0.3s ease; z-index: -1;
}
.btn-service-form:hover {
  transform: translateY(-3px);
  color: white;
}
.btn-service-form:hover::before {
  opacity: 0.1;
}
.btn-service-form:hover { transform: translateY(-1px); }
.services-bottom { text-align: center; margin-top: 3rem; }
.services-bottom p { font-size: 0.875rem; color: #6b7280; }
.services-bottom a { color: var(--primary); font-weight: 600; }
.services-bottom a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery { background: white; }
.gallery-filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.5rem; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem; border-radius: 999px;
  font-size: 0.875rem; font-weight: 600;
  background: #f3f4f6; color: #4b5563;
  transition: all 0.2s;
}
.filter-btn:hover { background: #e5e7eb; }
.filter-btn.active {
  background: var(--primary); color: white;
  box-shadow: 0 4px 16px rgba(0,158,221,0.3);
  transform: scale(1.05);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 1rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative; border-radius: 1rem; overflow: hidden;
  cursor: pointer; background: #f3f4f6;
  aspect-ratio: 3 / 4;
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.filtered-out { display: none; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 40%, transparent 100%);
}
.gallery-item-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.75rem;
  transform: translateY(4px); transition: transform 0.3s;
}
.gallery-item:hover .gallery-item-info { transform: translateY(0); }
.gallery-item-title {
  color: white; font-weight: 700; font-size: 0.8rem; line-height: 1.3;
}
.gallery-item-desc {
  color: rgba(255,255,255,0.7); font-size: 0.7rem; margin-top: 2px;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item.large:hover .gallery-item-desc { opacity: 1; }
.gallery-item-zoom {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-zoom { opacity: 1; }
.zoom-btn {
  background: rgba(0,0,0,0.4); border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.zoom-btn svg { width: 22px; height: 22px; color: white; }
.gallery-item-accent-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-accent-line { opacity: 1; }

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 1rem;
}
.lightbox-overlay.active { display: flex; }
.lightbox-modal {
  position: relative; background: white; border-radius: 1.5rem;
  overflow: hidden; max-width: 480px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn {
  from { transform: scale(0.85) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.lightbox-img-wrap {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #eef0f3; max-height: 65vh;
}
.lightbox-img { width: 100%; height: auto; max-height: 65vh; object-fit: contain; display: block; }
.lightbox-img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 60%);
}
.lightbox-cat-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.75rem;
  border-radius: 999px; color: white; text-transform: uppercase; letter-spacing: 0.05em;
}
.lightbox-body { padding: 1.75rem; }
.lightbox-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.25rem; color: var(--dark); margin-bottom: 0.5rem;
}
.lightbox-desc { color: #6b7280; font-size: 0.875rem; margin-bottom: 1.5rem; }
.btn-lightbox-order {
  width: 100%; display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; background: var(--accent); color: white;
  font-weight: 700; font-size: 0.875rem; padding: 0.875rem;
  border-radius: 1rem; transition: background 0.2s;
}
.btn-lightbox-order:hover { background: var(--accent-dark); }
.btn-lightbox-order svg { width: 15px; height: 15px; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(0,0,0,0.4); color: white;
  padding: 0.5rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(0,0,0,0.6); }
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.4); color: white;
  padding: 0.625rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(0,0,0,0.6); }
.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }
.lightbox-nav svg { width: 20px; height: 20px; }

/* ═══════════════════════════════════════
   SÉCURITÉ DOCUMENTS
═══════════════════════════════════════ */
.secure-section {
  overflow: hidden;
  background: linear-gradient(135deg, #0a0f1e 0%, #171106 55%, #0a0f1e 100%);
  padding: 5rem 0;
  position: relative;
}
.secure-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 80% 20%, rgba(212,175,55,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 85%, rgba(212,175,55,0.06) 0%, transparent 60%);
}
.secure-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center; position: relative;
}
@media (min-width: 1024px) { .secure-inner { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; } }
.secure-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3);
  color: #e8c766; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 2rem; margin-bottom: 1.25rem;
}
.secure-label-dot { width: 6px; height: 6px; border-radius: 50%; background: #e8c766; animation: live-pulse 1.4s ease-in-out infinite; }
.secure-title {
  font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900; color: white; line-height: 1.15; margin-bottom: 0.75rem;
}
.gradient-text-gold {
  background: linear-gradient(135deg, #e8c766, #b8912f);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.secure-arabic {
  font-family: 'Cairo', system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 700;
  color: #e8c766; opacity: 0.85;
  direction: rtl; text-align: right; margin-bottom: 1.25rem; display: block;
}
.secure-intro {
  font-size: clamp(0.9rem, 1.5vw, 1.02rem); color: rgba(255,255,255,0.7);
  line-height: 1.8; margin-bottom: 1.5rem; max-width: 540px;
}
.secure-usecases { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.secure-usecase-chip {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85); font-size: 0.78rem; font-weight: 600;
  padding: 0.35rem 0.9rem; border-radius: 2rem;
}
.secure-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.btn-gold {
  background: linear-gradient(135deg, #e8c766, #b8912f); color: #1a1406;
  box-shadow: 0 4px 20px rgba(212,175,55,0.25);
}
.btn-gold:hover { box-shadow: 0 8px 30px rgba(212,175,55,0.4); }
.secure-visual {
  position: relative; border-radius: 1.5rem; overflow: hidden;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.secure-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.secure-visual-badge {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  background: rgba(10,15,30,0.85); backdrop-filter: blur(6px);
  border: 1px solid rgba(212,175,55,0.3); border-radius: 0.9rem;
  padding: 0.75rem 1rem; color: #e8c766; font-size: 0.78rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
}
.secure-features {
  margin-top: 3.5rem; position: relative;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 768px) { .secure-features { grid-template-columns: repeat(3, 1fr); } }
.secure-feature-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem; padding: 1.1rem;
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.secure-feature-icon { font-size: 1.3rem; flex-shrink: 0; }
.secure-feature-title { color: white; font-weight: 700; font-size: 0.85rem; margin-bottom: 0.2rem; }
.secure-feature-desc { color: rgba(255,255,255,0.6); font-size: 0.75rem; line-height: 1.5; }

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
  position: relative; overflow: hidden;
}
.process-dots-bg {
  position: absolute; inset: 0; opacity: 0.03; pointer-events: none;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 30px 30px;
}
.process-grid {
  display: grid; gap: 2rem;
  position: relative;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid::before {
    content: '';
    position: absolute; top: 4rem; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,158,221,0.3), transparent);
  }
}
.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative;
}
.step-icon-wrap { position: relative; margin-bottom: 1.5rem; }
.step-icon {
  width: 64px; height: 64px; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.step-icon svg { width: 26px; height: 26px; }
.step-num {
  position: absolute; top: -8px; right: -8px;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 900; color: white;
}
.step-bg-num {
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 900; font-size: 6rem;
  opacity: 0.04; pointer-events: none; select: none; line-height: 1;
}
.step-title {
  font-family: var(--font-display); font-weight: 700;
  color: white; font-size: 1.05rem; margin-bottom: 0.75rem;
}
.step-desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.6; }
.process-cta {
  text-align: center; margin-top: 4rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 640px) { .process-cta { flex-direction: row; justify-content: center; } }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials { background: var(--gray-light); overflow: hidden; }
.testimonials-rating {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-top: 0.5rem;
}
.stars { display: flex; gap: 3px; }
.stars svg { width: 14px; height: 14px; color: #fbbf24; }
.testimonials-subtitle { color: #6b7280; font-size: 0.875rem; font-weight: 500; }
.testimonials-slider { position: relative; }
.testimonials-track {
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) {
  .testimonials-track { grid-template-columns: 1fr 1fr 1fr; align-items: center; }
}
.testimonial-card {
  background: white; border-radius: 1.5rem; padding: 1.75rem;
  border: 1px solid #f3f4f6; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.4s ease;
}
.testimonial-card.center {
  border-color: rgba(0,158,221,0.3);
  box-shadow: 0 20px 60px rgba(0,158,221,0.1);
  transform: scale(1.02);
}
.testimonial-card.side { opacity: 0.7; }
.testimonial-card:only-child { max-width: 560px; margin: 0 auto; transform: none !important; opacity: 1 !important; }
.testimonial-quote-icon { margin-bottom: 1rem; opacity: 0.3; }
.testimonial-quote-icon svg { width: 28px; height: 28px; }
.testimonial-text {
  font-size: 0.875rem; color: #4b5563; line-height: 1.7; margin-bottom: 1.5rem;
}
.testimonial-footer {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: white; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.875rem; color: var(--dark); }
.author-role { font-size: 0.7rem; color: #9ca3af; }
.testimonials-nav {
  display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.5rem;
}
.nav-arrow {
  width: 44px; height: 44px; border-radius: 50%; background: white;
  border: 1px solid #e5e7eb;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-arrow:hover { border-color: var(--primary); color: var(--primary); }
.nav-arrow svg { width: 20px; height: 20px; }
.testimonials-dots { display: flex; gap: 0.5rem; align-items: center; }
.t-dot {
  height: 8px; border-radius: 4px; background: #d1d5db;
  transition: all 0.2s; cursor: pointer; width: 8px;
}
.t-dot.active { width: 32px; background: var(--primary); }

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats { background: white; padding: 5rem 1.5rem; position: relative; overflow: hidden; }
.stats-deco-1 {
  position: absolute; top: 0; left: 0; width: 256px; height: 256px;
  background: rgba(0,158,221,0.05); border-radius: 50%;
  transform: translate(-50%, -50%);
}
.stats-deco-2 {
  position: absolute; bottom: 0; right: 0; width: 320px; height: 320px;
  background: rgba(198,0,2,0.05); border-radius: 50%;
  transform: translate(50%, 50%);
}
.stats-header { text-align: center; margin-bottom: 3rem; }
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.stat-card {
  position: relative; text-align: center; background: var(--gray-light);
  border-radius: 1.5rem; padding: 1.5rem 1rem; border: 1px solid #e5e7eb;
  overflow: hidden; transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.stat-card-bg {
  position: absolute; inset: 0; border-radius: 1.5rem;
  opacity: 0; transition: opacity 0.3s;
}
.stat-card:hover .stat-card-bg { opacity: 0.05; }
.stat-card-accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  border-radius: 0 0 1.5rem 1.5rem;
  opacity: 0; transition: opacity 0.3s;
}
.stat-card:hover .stat-card-accent { opacity: 1; }
.stat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.stat-value {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1; margin-bottom: 0.5rem;
}
.stat-label { color: #6b7280; font-size: 0.8rem; font-weight: 500; }

/* ═══════════════════════════════════════
   QUOTE FORM
═══════════════════════════════════════ */
.quote-form {
  background: linear-gradient(135deg, var(--gray-light) 0%, white 100%);
  position: relative; overflow: hidden;
}
.qf-deco-1 {
  position: absolute; top: 0; right: 0; width: 384px; height: 384px;
  background: rgba(0,158,221,0.05); border-radius: 50%;
  transform: translate(50%, -50%); pointer-events: none;
}
.qf-deco-2 {
  position: absolute; bottom: 0; left: 0; width: 320px; height: 320px;
  background: rgba(198,0,2,0.05); border-radius: 50%;
  transform: translate(-50%, 50%); pointer-events: none;
}
.qf-header-label {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--primary); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.qf-header-label svg { width: 14px; height: 14px; color: #fbbf24; }
.qf-trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem; margin: 1rem 0 2rem;
}
.qf-trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.875rem; color: #6b7280;
}
.qf-trust-item svg { width: 14px; height: 14px; color: var(--primary); }
.qf-channel-btns {
  display: flex; flex-direction: column; gap: 0.75rem; align-items: center;
}
@media (min-width: 640px) { .qf-channel-btns { flex-direction: row; justify-content: center; } }
.qf-divider {
  display: flex; align-items: center; gap: 1rem;
  color: #9ca3af; font-size: 0.875rem; margin: 2rem auto;
  max-width: 400px;
}
.qf-divider::before, .qf-divider::after {
  content: ''; flex: 1; height: 1px; background: #e5e7eb;
}
.qf-card {
  background: white; border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid #f3f4f6;
  padding: 2rem; max-width: 600px; margin: 0 auto;
}
@media (min-width: 1024px) { .qf-card { padding: 3rem; } }

/* Progress bar */
.progress-bar { margin-bottom: 2rem; }
.progress-steps {
  display: flex; align-items: center;
}
.progress-step { display: flex; align-items: center; gap: 0.5rem; flex: 1; }
.step-circle {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900;
  background: #e5e7eb; color: #9ca3af;
  transition: all 0.3s; flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}
.step-circle.active { background: var(--primary); color: white; transform: scale(1.1); }
.step-circle.done { background: var(--primary); color: white; }
.step-circle svg { width: 14px; height: 14px; }
.step-label {
  font-size: 0.75rem; font-weight: 600; color: #9ca3af;
  display: none; transition: color 0.3s;
}
@media (min-width: 640px) { .step-label { display: block; } }
.step-label.active { color: var(--dark); }
.progress-line { flex: 1; height: 4px; background: #f3f4f6; border-radius: 2px; overflow: hidden; margin: 0 0.75rem; }
.progress-fill { height: 100%; background: var(--primary); border-radius: 2px; width: 0; transition: width 0.5s ease; }
.progress-fill.full { width: 100%; }

/* Form fields */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.875rem; font-weight: 600;
  color: var(--dark); margin-bottom: 0.375rem;
}
.form-label span { color: var(--accent); }
.form-input {
  width: 100%; background: white; border: 1px solid #e5e7eb;
  border-radius: 0.75rem; padding: 0.875rem 1rem;
  font-size: 0.875rem; color: var(--dark);
  transition: all 0.2s; outline: none;
}
.form-input::placeholder { color: #9ca3af; }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,158,221,0.1); }
.form-input-hint { font-size: 0.7rem; color: #9ca3af; margin-top: 0.35rem; }
.form-grid-2 { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }

/* Form steps */
.form-step { display: none; }
.form-step.active { display: block; }

/* Step 2 recap */
.step2-recap {
  display: flex; align-items: center; gap: 0.75rem;
  background: #f0f9ff; border: 1px solid rgba(0,158,221,0.2);
  border-radius: 0.75rem; padding: 0.75rem 1rem; margin-bottom: 1.25rem;
}
.recap-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,158,221,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 900; color: var(--primary);
  flex-shrink: 0;
}
.recap-name { font-weight: 600; font-size: 0.875rem; color: var(--dark); }
.recap-service { font-size: 0.75rem; color: #6b7280; }
.btn-edit { color: var(--primary); font-size: 0.75rem; font-weight: 600; flex-shrink: 0; }
.btn-edit:hover { text-decoration: underline; }
.step-actions { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.5rem; }
@media (min-width: 640px) { .step-actions { flex-direction: row; } }
.form-footer {
  text-align: center; font-size: 0.7rem; color: #9ca3af; margin-top: 1rem;
}

/* WhatsApp shortcut (shown when step1 complete) */
.wa-shortcut { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.3s ease, opacity 0.3s ease; }
.wa-shortcut.visible { max-height: 200px; opacity: 1; }

/* Btn back */
.btn-back {
  display: flex; align-items: center; justify-content: center; gap: 0.35rem;
  border: 1px solid #e5e7eb; color: #6b7280; font-size: 0.875rem; font-weight: 600;
  padding: 0.875rem 1.25rem; border-radius: 1rem; transition: all 0.2s;
  flex-shrink: 0;
}
.btn-back:hover { background: #f9fafb; }
.btn-back svg { width: 16px; height: 16px; }

/* Loading spinner */
.spinner { animation: spin 0.8s linear infinite; width: 18px; height: 18px; }

/* Success state */
#form-success { display: none; }
#form-success.active { display: flex; flex-direction: column; align-items: center; padding: 2.5rem 0; text-align: center; }
.success-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: #f0fdf4; border: 4px solid #dcfce7;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.success-icon-wrap svg { width: 42px; height: 42px; color: #22c55e; }
.success-title {
  font-family: var(--font-display); font-weight: 900; font-size: 1.5rem;
  color: var(--dark); margin-bottom: 0.5rem;
}
.success-desc { color: #6b7280; max-width: 280px; margin-bottom: 0.25rem; }
.success-delay { color: #9ca3af; font-size: 0.8rem; margin-bottom: 2rem; }
.btn-new-request { color: #9ca3af; font-size: 0.875rem; margin-top: 0.75rem; }
.btn-new-request:hover { color: #6b7280; text-decoration: underline; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact { background: white; }
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; } }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem; background: var(--gray-light);
  border-radius: 1rem; border: 1px solid transparent;
  transition: all 0.2s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.contact-card.full { grid-column: span 2; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.2s;
}
.contact-card:hover .contact-icon { transform: scale(1.1); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-label { font-size: 0.7rem; color: #9ca3af; margin-bottom: 2px; }
.contact-value { font-size: 0.875rem; font-weight: 600; color: var(--dark); }
.map-wrap {
  border-radius: 1.5rem; overflow: hidden;
  border: 1px solid #e5e7eb; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: 380px;
}
@media (min-width: 1024px) { .map-wrap { height: 100%; min-height: 400px; } }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--dark); color: white;
  position: relative; overflow: hidden;
}
.footer-deco-1 {
  position: absolute; top: 0; left: 0; width: 320px; height: 320px;
  background: rgba(0,158,221,0.05); border-radius: 50%;
  transform: translate(-50%, -50%); pointer-events: none;
}
.footer-deco-2 {
  position: absolute; bottom: 0; right: 0; width: 256px; height: 256px;
  background: rgba(198,0,2,0.05); border-radius: 50%;
  transform: translate(50%, 50%); pointer-events: none;
}
.footer-top {
  padding: 3.5rem 0 2.5rem;
  display: grid; gap: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand-logo {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem;
}
.footer-brand-logo img { width: 48px; height: 48px; object-fit: contain; }
.footer-brand-name { font-family: var(--font-display); font-weight: 900; font-size: 1.25rem; color: white; }
.footer-brand-sub { color: var(--primary); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.2); }
.social-btn svg { width: 16px; height: 16px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.social-btn:hover svg { color: white; }
.footer-col-title {
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: white; margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-link-btn {
  color: rgba(255,255,255,0.5); font-size: 0.875rem;
  transition: color 0.2s; text-align: left; position: relative; display: inline-block;
}
.footer-link-btn::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--primary); transition: width 0.3s;
}
.footer-link-btn:hover { color: var(--primary); }
.footer-link-btn:hover::after { width: 100%; }
.footer-cta-desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-bottom: 1.25rem; }
.btn-footer-devis {
  width: 100%; background: var(--accent); color: white;
  font-size: 0.875rem; font-weight: 600;
  padding: 0.75rem; border-radius: 0.75rem;
  transition: all 0.2s; margin-bottom: 1rem;
}
.btn-footer-devis:hover { background: var(--accent-dark); box-shadow: 0 4px 16px rgba(198,0,2,0.3); }
.footer-contact-list {
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: 0.875rem;
}
.footer-contact-link {
  color: rgba(255,255,255,0.5); transition: color 0.2s;
}
.footer-contact-link:hover.wa { color: #25D366; }
.footer-contact-link:hover { color: var(--primary); }
.footer-contact-static { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-copyright { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-bottom-right { display: flex; align-items: center; gap: 1rem; }
.footer-legal { color: rgba(255,255,255,0.2); font-size: 0.7rem; }
.btn-scroll-top {
  width: 36px; height: 36px; background: var(--primary); border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.btn-scroll-top:hover { background: var(--primary-dark); }
.btn-scroll-top svg { width: 16px; height: 16px; color: white; }

/* ═══════════════════════════════════════
   FLOATING BUTTONS (Desktop)
═══════════════════════════════════════ */
.floating-btns {
  display: none;
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  flex-direction: column; gap: 0.75rem; align-items: flex-end;
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.3s, transform 0.3s;
}
@media (min-width: 1024px) { .floating-btns { display: flex; } }
.floating-btns.visible { opacity: 1; transform: translateX(0); }
.fab-wrap { position: relative; display: flex; align-items: center; gap: 0.5rem; }
.fab-tooltip {
  position: absolute; right: 62px;
  background: var(--dark); color: white; font-size: 0.7rem; font-weight: 600;
  padding: 0.375rem 0.75rem; border-radius: 0.5rem; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0; transform: translateX(8px); pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
}
.fab-tooltip::after {
  content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--dark); border-right: none;
}
.fab-wrap:hover .fab-tooltip { opacity: 1; transform: translateX(0); }
.fab {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; transition: all 0.2s; position: relative; overflow: hidden;
}
.fab:hover { transform: scale(1.08); }
.fab::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.6s;
}
.fab:hover::after { transform: translateX(200%); }
.fab svg { width: 24px; height: 24px; position: relative; z-index: 1; }
.fab-wa { background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.4); animation: pulse-green 2.5s ease-in-out infinite; }

/* ═══════════════════════════════════════
   ARABIC TYPOGRAPHY
═══════════════════════════════════════ */
.hero-arabic-headline {
  font-family: 'Cairo', system-ui, sans-serif;
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  font-weight: 700;
  direction: rtl;
  text-align: right;
  margin-bottom: 0.75rem;
  letter-spacing: 0;
  line-height: 1.5;
}
.hero-arabic-rotating {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.section-arabic-sub {
  font-family: 'Cairo', system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: var(--primary);
  direction: rtl;
  text-align: center;
  margin-top: -0.5rem;
  margin-bottom: 1.25rem;
  opacity: 0.85;
  letter-spacing: 0;
}
.fab-phone { background: var(--primary); box-shadow: 0 4px 20px rgba(0,158,221,0.4); }
.fab-ping {
  position: absolute; inset: 0; border-radius: 50%;
  animation: ping 1.5s ease-in-out infinite;
  background: rgba(37,211,102,0.3);
}

/* ═══════════════════════════════════════
   MOBILE STICKY BAR
═══════════════════════════════════════ */
.mobile-sticky {
  display: flex;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border-top: 1px solid #f3f4f6;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.1);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  gap: 0.625rem;
  opacity: 0; transform: translateY(120%);
  transition: opacity 0.3s, transform 0.3s;
}
@media (min-width: 1024px) { .mobile-sticky { display: none !important; } }
.mobile-sticky.visible { opacity: 1; transform: translateY(0); }
.sticky-tab {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 2px; padding: 0.625rem 0.5rem;
  border-radius: 1rem; color: white; font-weight: 700;
  position: relative; overflow: hidden; transition: transform 0.15s;
}
.sticky-tab:active { transform: scale(0.94); }
.sticky-tab svg { width: 22px; height: 22px; position: relative; z-index: 1; }
.sticky-tab span { font-size: 0.7rem; line-height: 1.2; position: relative; z-index: 1; }
.sticky-tab small { font-size: 0.6rem; color: rgba(255,255,255,0.7); line-height: 1; position: relative; z-index: 1; }
.sticky-tab-ping {
  position: absolute; inset: 0; border-radius: 1rem;
  animation: ping 1.5s ease-in-out infinite;
}
.sticky-wa { background: #25D366; }
.sticky-call { background: var(--primary); }
.sticky-form { background: var(--accent); }

/* ═══════════════════════════════════════
   IMPRESSION OFFSET SECTION
═══════════════════════════════════════ */

/* ── Hero Offset ── */
.offset-section { overflow: hidden; }
.offset-hero {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1a2e 60%, #0a1628 100%);
  padding: 5rem 0 4rem;
  position: relative;
}
.offset-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 50%, rgba(0,158,221,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(198,0,2,0.07) 0%, transparent 60%);
}
.offset-hero-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center; position: relative;
}
@media (min-width: 1024px) {
  .offset-hero-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.offset-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,158,221,0.1); border: 1px solid rgba(0,158,221,0.25);
  color: var(--primary); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 2rem; margin-bottom: 1.25rem;
}
.offset-label-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
  animation: live-pulse 1.4s ease-in-out infinite;
}
.offset-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900; color: white; line-height: 1.1; margin-bottom: 0.75rem;
}
.offset-arabic {
  font-family: 'Cairo', system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 700;
  background: linear-gradient(135deg, var(--primary), #33b1e5);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  direction: rtl; text-align: right; margin-bottom: 1.25rem; display: block;
}
.offset-intro {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem); color: rgba(255,255,255,0.7);
  line-height: 1.8; margin-bottom: 1.5rem; max-width: 520px;
}
.offset-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.offset-badge {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8); font-size: 0.78rem; font-weight: 600;
  padding: 0.3rem 0.9rem; border-radius: 2rem;
}
.offset-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ── Visual 4 couleurs CMJN ── */
.offset-hero-visual { display: none; }
@media (min-width: 1024px) { .offset-hero-visual { display: flex; align-items: center; justify-content: center; } }
.offset-press-card {
  position: relative; width: 320px; height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.offset-press-layers {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; width: 160px; height: 160px;
  position: absolute; top: 20px; right: 20px; opacity: 0.6;
}
.offset-layer {
  border-radius: 0.5rem; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.25rem; color: white;
  animation: layer-float 3s ease-in-out infinite;
}
@keyframes layer-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.offset-press-result {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(0,158,221,0.4);
  animation: layer-float 4s ease-in-out infinite;
}
.offset-result-circle { text-align: center; }
.offset-result-icon { font-size: 2.5rem; display: block; margin-bottom: 0.25rem; }
.offset-result-text {
  font-family: var(--font-display); font-weight: 900; font-size: 0.85rem;
  color: white; line-height: 1.2;
}
.offset-stat-pill {
  position: absolute;
  background: white; border-radius: 0.75rem;
  padding: 0.5rem 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex; flex-direction: column; gap: 0.1rem;
}
.offset-stat-pill strong { font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; color: var(--primary); }
.offset-stat-pill span { font-size: 0.7rem; color: #777; }

/* ── Pourquoi Offset ── */
.offset-why { background: var(--gray-light); padding: 5rem 1.5rem; }
@media (min-width: 768px) { .offset-why { padding: 6rem 2rem; } }
.offset-why-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 3rem;
}
@media (min-width: 640px)  { .offset-why-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .offset-why-grid { grid-template-columns: repeat(3,1fr); } }
.offset-why-card {
  background: white; border: 1.5px solid var(--gray-mid); border-radius: 1.25rem;
  padding: 1.75rem 1.5rem; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.offset-why-card:hover {
  transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,158,221,0.1);
  border-color: var(--primary);
}
.offset-why-icon {
  font-size: 2.2rem; width: 56px; height: 56px; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.offset-why-title { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 0.5rem; }
.offset-why-desc { font-size: 0.85rem; color: #555; line-height: 1.7; }

/* ── Comparatif ── */
.offset-compare {
  background: linear-gradient(135deg, #0a0f1e, #0d1a2e);
  padding: 5rem 1.5rem; position: relative; overflow: hidden;
}
@media (min-width: 768px) { .offset-compare { padding: 6rem 2rem; } }
.offset-compare::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0,158,221,0.06) 0%, transparent 70%);
}
.offset-compare-table {
  border-radius: 1.25rem; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08); position: relative;
  max-width: 860px; margin: 3rem auto 0;
}
.offset-compare-header, .offset-compare-row {
  display: grid; grid-template-columns: 1.2fr 1.5fr 1.5fr;
}
.offset-compare-header {
  background: rgba(255,255,255,0.05); padding: 1rem 1.25rem;
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem; color: white;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.offset-compare-row {
  padding: 0.85rem 1.25rem; font-size: 0.84rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.offset-compare-row:last-child { border-bottom: none; }
.offset-compare-row:hover { background: rgba(255,255,255,0.03); }
.offset-compare-feature { color: rgba(255,255,255,0.6); font-weight: 600; align-self: center; }
.offset-compare-col { align-self: center; }
.offset-col-best { color: rgba(255,255,255,0.9); }
.offset-col-other { color: rgba(255,255,255,0.4); }
.offset-col-badge {
  display: block; font-size: 0.65rem; font-weight: 700; color: #fbbf24;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.15rem;
}
.offset-check { color: #25D366; font-weight: 700; margin-right: 0.35rem; }
.offset-cross { color: var(--accent); font-weight: 700; margin-right: 0.35rem; }
.offset-mid   { color: #fbbf24; font-weight: 700; margin-right: 0.35rem; }

/* ── Applications ── */
.offset-apps { background: white; padding: 5rem 1.5rem; }
@media (min-width: 768px) { .offset-apps { padding: 6rem 2rem; } }
.offset-apps-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem;
}
@media (min-width: 640px)  { .offset-apps-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .offset-apps-grid { grid-template-columns: repeat(4,1fr); } }
.offset-app-card {
  background: white; border: 1.5px solid var(--gray-mid); border-radius: 1.25rem;
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.offset-app-card:hover {
  transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,158,221,0.12);
  border-color: var(--primary);
}
.offset-app-img-wrap { position: relative; overflow: hidden; }
.offset-app-img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.4s; display: block; }
.offset-app-card:hover .offset-app-img { transform: scale(1.06); }
.offset-app-overlay {
  position: absolute; top: 0.75rem; left: 0.75rem;
}
.offset-app-badge {
  background: var(--primary); color: white; font-size: 0.68rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 0.4rem; letter-spacing: 0.05em;
}
.offset-app-body { padding: 1.25rem; }
.offset-app-icon { font-size: 1.75rem; margin-bottom: 0.6rem; }
.offset-app-name { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 0.4rem; }
.offset-app-desc { font-size: 0.82rem; color: #666; line-height: 1.6; }

/* ── CTA Band ── */
.offset-cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 3.5rem 1.5rem; position: relative; overflow: hidden;
}
@media (min-width: 768px) { .offset-cta-band { padding: 4rem 2rem; } }
.offset-cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.07) 0%, transparent 50%);
}
.offset-cta-inner {
  display: flex; flex-direction: column; gap: 2rem; align-items: center;
  text-align: center; position: relative; max-width: 860px; margin: 0 auto;
}
@media (min-width: 1024px) {
  .offset-cta-inner { flex-direction: row; text-align: left; justify-content: space-between; }
}
.offset-cta-arabic {
  font-family: 'Cairo', system-ui, sans-serif; font-size: 1rem; font-weight: 700;
  color: rgba(255,255,255,0.8); direction: rtl; display: block; margin-bottom: 0.5rem;
}
.offset-cta-title {
  font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900; color: white; margin-bottom: 0.4rem;
}
.offset-cta-sub { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.offset-cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; flex-shrink: 0; }

/* ═══════════════════════════════════════
   RESPONSIVE — TOUTES RÉSOLUTIONS
   Mobile First · Breakpoints : 480 / 640 / 768 / 1024 / 1280px
═══════════════════════════════════════ */

/* ── GLOBAL ANTI-OVERFLOW ── */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100vw; }
.stats, .quote-form, .footer, .hero, .about, .services,
.offset-compare, .offset-why, .offset-apps, .offset-cta-band { overflow: hidden; }

/* ── MOBILE XS (≤ 479px) ── */
@media (max-width: 479px) {
  .section-padding { padding: 3rem 1rem; }
  .container { padding: 0 1rem; }

  /* Navbar */
  .navbar-inner { height: 58px; }
  .navbar-brand-name { font-size: 0.95rem; }
  .navbar-brand-sub  { font-size: 0.5rem; }
  .navbar-logo img   { width: 36px; height: 36px; }

  /* Hero */
  .hero { padding: 5rem 0 2rem; }
  .hero-bg-circle-1, .hero-bg-circle-2, .hero-bg-circle-3 { display: none; }
  .hero-float-card  { display: none; }
  .hero-stat-badge  { display: none; }
  .hero-scroll-indicator { display: none; }
  .hero-title  { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .hero-badge  { font-size: 0.68rem; padding: 0.3rem 0.75rem; }
  .hero-desc   { font-size: 0.85rem; }
  .hero-ctas   { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .btn-subtext { text-align: center; }
  .hero-highlights { gap: 0.5rem; }
  .hero-highlight  { font-size: 0.8rem; }

  /* About */
  .about-banner { padding: 1.5rem; }
  .about-banner-title { font-size: 1.05rem; }
  .about-banner-btns  { flex-direction: column; gap: 0.75rem; }
  .about-banner-btns .btn { width: 100%; justify-content: center; }
  .advantages-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .advantage-card  { padding: 1.25rem; }

  /* Services */
  .service-img-wrap { height: 170px; }
  .service-item     { font-size: 0.8rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .gallery-controls { flex-wrap: wrap; gap: 0.4rem; }
  .filter-btn { font-size: 0.72rem; padding: 0.3rem 0.75rem; }

  /* Process */
  .process-grid::before { display: none; }
  .process-grid { gap: 1.25rem; }

  /* Testimonials */
  .testimonials-track { grid-template-columns: 1fr !important; }
  .nav-arrow { display: none; }

  /* Stats */
  .stats-deco-1, .stats-deco-2 { display: none; }
  .stat-card { padding: 1.25rem; }

  /* Quote form */
  .qf-deco-1, .qf-deco-2 { display: none; }
  .qf-card { padding: 1.5rem 1rem; }
  .step-actions { flex-direction: column; gap: 0.75rem; }
  .step-actions .btn { width: 100%; justify-content: center; }
  .qf-channel-btns { flex-direction: column; }
  .qf-channel-btn  { width: 100%; }

  /* Contact */
  .contact-cards { grid-template-columns: 1fr !important; gap: 0.75rem; }
  .map-wrap      { height: 220px; }
  .contact-grid  { gap: 2rem; }

  /* Footer */
  .footer-deco-1, .footer-deco-2 { display: none; }
  .footer-top    { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-bottom-right { justify-content: center; flex-wrap: wrap; gap: 0.5rem; }
  .footer-legal  { font-size: 0.68rem; }

  /* Lightbox */
  .lightbox-modal   { max-width: calc(100vw - 1.5rem); border-radius: 1rem; }
  .lightbox-img-wrap { max-height: 45vh; }
  .lightbox-img     { max-height: 45vh; }
  .lightbox-body    { padding: 1rem; }

  /* FAB */
  .fab { width: 46px; height: 46px; bottom: 1rem; right: 1rem; }
  .fab svg { width: 20px; height: 20px; }

  /* Offset section */
  .offset-hero { padding: 4rem 0 3rem; }
  .offset-ctas { flex-direction: column; align-items: stretch; }
  .offset-ctas .btn { width: 100%; justify-content: center; }
  .offset-why  { padding: 3rem 1rem; }
  .offset-apps { padding: 3rem 1rem; }
  .offset-apps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .offset-app-img { height: 160px; }
  .offset-cta-band { padding: 2.5rem 1rem; }
  .offset-cta-inner { gap: 1.5rem; }
  .offset-cta-btns { flex-direction: column; width: 100%; }
  .offset-cta-btns .btn { width: 100%; justify-content: center; }

  /* Offset comparatif — affichage cartes empilées */
  .offset-compare { padding: 3rem 1rem; }
  .offset-compare-table { border: none; background: transparent; }
  .offset-compare-header { display: none; }
  .offset-compare-row {
    display: flex; flex-direction: column; gap: 0.5rem;
    padding: 1rem 1.25rem; border-radius: 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08) !important;
    margin-bottom: 0.5rem;
  }
  .offset-compare-feature {
    font-weight: 700; color: rgba(255,255,255,0.85); font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.4rem;
  }
  .offset-col-badge { display: none; }
  .offset-compare-col.offset-col-other { color: rgba(255,255,255,0.4); }
}

/* ── MOBILE (480–639px) ── */
@media (min-width: 480px) and (max-width: 639px) {
  .section-padding { padding: 3.5rem 1.25rem; }

  /* Hero */
  .hero { padding: 5.5rem 0 2.5rem; }
  .hero-float-card { display: none; }
  .hero-stat-badge { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* About */
  .advantages-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-track { grid-template-columns: 1fr !important; }

  /* Stats */
  .stats-deco-1, .stats-deco-2 { display: none; }

  /* QF */
  .qf-deco-1, .qf-deco-2 { display: none; }

  /* Contact */
  .contact-cards { grid-template-columns: 1fr !important; }
  .map-wrap { height: 260px; }

  /* Footer */
  .footer-deco-1, .footer-deco-2 { display: none; }

  /* Offset compare */
  .offset-compare-header { display: none; }
  .offset-compare-row {
    display: flex; flex-direction: column; gap: 0.4rem;
    padding: 0.9rem 1rem; border-radius: 0.75rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07) !important;
    margin-bottom: 0.4rem;
  }
  .offset-compare-feature { font-weight: 700; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 0.35rem; }
  .offset-col-badge { display: none; }
  .offset-apps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── PETITE TABLETTE (640–767px) ── */
@media (min-width: 640px) and (max-width: 767px) {
  .section-padding { padding: 4rem 1.5rem; }

  /* Hero */
  .hero-float-card {
    font-size: 0.72rem; padding: 0.4rem 0.7rem; gap: 0.3rem;
  }
  .hero-float-card span:first-child { font-size: 1rem; }
  .hero-stat-badge { padding: 0.5rem 0.75rem; gap: 0.4rem; }
  .hero-stat-value { font-size: 1rem; }
  .hero-stat-label { font-size: 0.6rem; }

  /* Testimonials */
  .testimonials-track { grid-template-columns: 1fr 1fr !important; }

  /* Contact */
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .map-wrap { height: 300px; }

  /* Footer */
  .footer-deco-1, .footer-deco-2 { opacity: 0.4; }

  /* Offset compare */
  .offset-compare-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── TABLETTE (768–1023px) ── */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Hero */
  .hero-float-card { font-size: 0.78rem; padding: 0.45rem 0.85rem; }
  .hero-stat-value { font-size: 1.1rem; }
  .hero-stat-label { font-size: 0.65rem; }

  /* Offset compare scrollable */
  .offset-compare-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .offset-compare-header, .offset-compare-row { min-width: 560px; }

  /* Offset apps */
  .offset-apps-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr !important; }
  .map-wrap { height: 340px; }
}

/* ── TOUS MOBILES (< 1024px) — Navbar ── */
@media (max-width: 1023px) {
  /* Empêche le débordement horizontal global */
  .hero-bg-circle-1 { width: 350px; height: 350px; }
  .hero-bg-circle-2 { width: 280px; height: 280px; }
  .hero-bg-circle-3 { width: 420px; height: 420px; opacity: 0.4; }

  /* Offset section hero */
  .offset-hero-inner { grid-template-columns: 1fr; }
  .offset-press-card { display: none; }

  /* Offset cta inner */
  .offset-cta-inner { flex-direction: column; text-align: center; }
}

/* ── GRAND ÉCRAN (≥ 1280px) ── */
@media (min-width: 1280px) {
  .section-padding { padding: 7rem 2rem; }
  .hero { padding: 9rem 0 5rem; }
  .hero-title { font-size: 4rem; }
  .offset-title { font-size: 3.75rem; }
}

/* ── TOUCH / MOBILE — Améliorations UX ── */
@media (hover: none) and (pointer: coarse) {
  /* Supprime les hover qui bloquent le tap sur mobile */
  .service-card:hover { transform: none; }
  .offset-why-card:hover { transform: none; }
  .pkg-product-card:hover { transform: none; }
  .advantage-card:hover { transform: translateY(-2px); }

  /* Augmente les zones de tap */
  .nav-link { padding: 0.75rem 0.6rem; }
  .filter-btn { padding: 0.5rem 1rem; min-height: 40px; }
  .gf-btn, .sector-btn { min-height: 40px; }
  .unboxing-btn { min-height: 44px; }
  .faq-q { min-height: 48px; }

  /* FAB plus accessible au pouce */
  .fab { width: 52px; height: 52px; }
}

/* ── PAYSAGE MOBILE (max-height: 500px) ── */
@media (max-height: 500px) and (max-width: 900px) {
  .hero { min-height: unset; padding: 4.5rem 0 2rem; }
  .hero-scroll-indicator { display: none; }
  .mobile-sticky { display: none; }
}
