/* ============================================
   VENTECH DIGITAL AGENCY — 2026
   Dark & Dynamic — Inspired by DigitalMa
   ============================================ */

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

:root {
  --black:    #150C08;
  --dark:     #241409;
  --dark-2:   #3E2C23;
  --orange:   #E76F2E;
  --orange-2: #F08A50;
  --blue:     #2FA4D7;
  --text:     #F5E9D8;
  --muted:    rgba(245,233,216,0.55);
  --border:   rgba(245,233,216,0.1);
  --grad-org: linear-gradient(135deg, #2FA4D7, #E76F2E);
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* BASE */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* SECTION */
.section { padding: 100px 0; }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: rgba(47,164,215,0.1);
  color: var(--orange);
  border: 1px solid rgba(47,164,215,0.3);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

/* GRADIENT TEXT */
.gradient-text {
  background: var(--grad-org);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(8,8,8,0.99); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 160px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
}
.footer-logo {
  height: 140px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  flex-shrink: 0;
  display: block;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-brand-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}
.footer-brand-name span {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
}
.footer-brand-name small {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
}
.footer-tagline {
  margin: 0;
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.6;
}
.logo-svg { height: 36px; width: auto; display: block; }
.logo-text { display: flex; align-items: center; font-size: 1.5rem; font-weight: 900; letter-spacing: -0.02em; }
.logo-ven { color: #fff; }
.logo-tech { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.btn-nav {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: all 0.2s !important;
}
.btn-nav:hover {
  background: var(--orange-2) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(47,164,215,0.35);
}
.lang-switcher { display: flex; gap: 4px; margin-left: 12px; }
.lang-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.lang-btn.active, .lang-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(47,164,215,0.08);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========================
   HERO
   ======================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.orb1 { width: 650px; height: 650px; background: rgba(47,164,215,0.18); top: -200px; right: -150px; }
.orb2 { width: 450px; height: 450px; background: rgba(47,164,215,0.12); bottom: -100px; left: 5%; }
.orb3 { width: 350px; height: 350px; background: rgba(47,164,215,0.1); top: 45%; left: 55%; transform: translate(-50%,-50%); }
.grid-overlay { display: none; }

/* Hide old blob container */
.blob-container { display: none !important; }

.hero-content { text-align: center; max-width: 920px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47,164,215,0.08);
  border: 1px solid rgba(47,164,215,0.25);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(47,164,215,0.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.04);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.hero-stat { text-align: center; }
.hero-stat .stat-n { font-size: 2.5rem; font-weight: 900; }
.hero-stat > span:nth-child(2) { font-size: 2.5rem; font-weight: 900; color: var(--orange); }
.hero-stat p { font-size: 12px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 50px; background: var(--border); }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollDrop 1.6s ease-in-out infinite;
}
@keyframes scrollDrop { 0%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(0) translateY(20px)} }

/* ========================
   PARTNERS
   ======================== */
.partners {
  padding: 36px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.partners-track { overflow: hidden; }
.partners-slide {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.partner-logo {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.partner-logo:hover { color: rgba(47,164,215,0.6); }

/* ========================
   SERVICES — FLIP CARDS
   ======================== */
.services { background: var(--black); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Flip card wrapper */
.service-card {
  height: 360px;
  perspective: 1200px;
  cursor: pointer;
}
.card-inner {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .card-inner { transform: rotateY(180deg); }

.card-front, .card-back {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 36px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.card-front {
  background: var(--dark);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  transition: border-color 0.3s;
}
.service-card:hover .card-front { border-color: rgba(47,164,215,0.4); }

.card-back {
  background: linear-gradient(135deg, #2FA4D7 0%, #E76F2E 100%);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.service-icon {
  width: 58px; height: 58px;
  background: rgba(47,164,215,0.1);
  border: 1px solid rgba(47,164,215,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: all 0.3s;
  flex-shrink: 0;
}
.card-front h3 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
}
.card-front p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}
.card-front-hint {
  font-size: 12px !important;
  color: rgba(47,164,215,0.55) !important;
  font-weight: 600 !important;
  margin-top: auto;
}

/* Back face */
.card-back h3 { font-size: 1.15rem; font-weight: 900; color: #fff; }
.card-back > p { font-size: 0.85rem; color: rgba(255,255,255,0.85); line-height: 1.55; }
.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.service-list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 7px;
}
.service-list li::before { content: '→'; font-weight: 800; flex-shrink: 0; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.22);
  color: #fff;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s;
  align-self: flex-start;
}
.service-link:hover { background: rgba(0,0,0,0.38); }

/* ========================
   SECTEURS
   ======================== */
.secteurs { background: var(--dark); }
.secteurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.secteur-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-left: 4px solid transparent;
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s;
  cursor: default;
}
.secteur-card:hover, .secteur-card.active {
  border-left-color: var(--orange);
  background: rgba(47,164,215,0.04);
}
.secteur-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.secteur-card h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
.secteur-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ========================
   POURQUOI
   ======================== */
.pourquoi { background: var(--black); }
.pourquoi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pourquoi-left .section-tag { margin-bottom: 16px; }
.pourquoi-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.pourquoi-sub { color: var(--muted); margin-bottom: 40px; line-height: 1.75; }
.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-check {
  width: 30px; height: 30px;
  background: var(--orange);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-item h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 4px; }
.feature-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.pourquoi-right { position: relative; }
.card-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.visual-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: all 0.3s;
}
.visual-card:hover {
  border-color: rgba(47,164,215,0.3);
  transform: translateY(-3px);
}
.vc-icon { font-size: 1.8rem; flex-shrink: 0; }
.visual-card strong { display: block; font-size: 1.5rem; font-weight: 900; color: var(--orange); line-height: 1; }
.visual-card span { font-size: 0.78rem; color: var(--muted); }
.visual-bg-circle {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(47,164,215,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

/* ========================
   CHIFFRES — Blue banner
   ======================== */
.chiffres {
  background: linear-gradient(135deg, #2FA4D7 0%, #E76F2E 100%);
  padding: 80px 0;
}
.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.chiffre-item {}
.chiffre-n { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 900; color: #fff; }
.chiffre-unit { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 900; color: rgba(255,255,255,0.85); }
.chiffre-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

/* ========================
   TARIFS
   ======================== */
.tarifs { background: var(--dark); }
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tarif-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
}
.tarif-card:hover { transform: translateY(-5px); border-color: rgba(47,164,215,0.25); }
.tarif-card.featured {
  border-color: var(--orange);
  background: rgba(47,164,215,0.04);
}
.tarif-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  padding: 5px 20px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tarif-header { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.tarif-header h3 { font-size: 1.6rem; font-weight: 900; margin-bottom: 10px; }
.price-amount { font-size: 1.8rem; font-weight: 900; color: var(--orange); }
.tarif-header p { font-size: 0.875rem; color: var(--muted); margin-top: 8px; }
.tarif-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.tarif-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.tarif-list li span { color: var(--orange); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.tarif-list li.disabled { color: var(--muted); }
.tarif-list li.disabled span { color: rgba(255,255,255,0.2); }

.btn-tarif {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.65);
  transition: all 0.25s;
  cursor: pointer;
  font-family: inherit;
}
.btn-tarif:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(47,164,215,0.05);
}
.btn-tarif-featured {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.btn-tarif-featured:hover {
  background: var(--orange-2);
  color: #fff;
  box-shadow: 0 8px 24px rgba(47,164,215,0.35);
}
.tarif-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.875rem;
  color: var(--muted);
}
.tarif-note strong { color: var(--orange); }

/* ========================
   TEMOIGNAGES
   ======================== */
.temoignages { background: var(--black); }
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.temoignage-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-left: 4px solid transparent;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s;
}
.temoignage-card:hover, .featured-temoignage {
  border-left-color: var(--orange);
}
.featured-temoignage { background: rgba(47,164,215,0.03); }
.temoignage-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.author-avatar {
  width: 46px; height: 46px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}
.temoignage-author strong { font-size: 0.95rem; font-weight: 800; display: block; }
.author-role { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
.stars { color: var(--orange); font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
.temoignage-card > p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; font-style: italic; }

/* ========================
   PROCESSUS
   ======================== */
.processus { background: var(--dark); }
.processus-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 48px;
}
.step {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s;
}
.step:hover { border-color: rgba(47,164,215,0.3); transform: translateY(-4px); }
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
}
.step-content h4 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.step-content p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
.step-arrow {
  font-size: 1.6rem;
  color: var(--orange);
  opacity: 0.4;
  padding-top: 40px;
  text-align: center;
}

/* ========================
   CONTACT
   ======================== */
.contact { background: var(--black); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-left .section-tag { margin-bottom: 16px; }
.contact-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.contact-left > p { color: var(--muted); margin-bottom: 36px; line-height: 1.75; }
.contact-infos { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-info-item { display: flex; gap: 14px; align-items: center; }
.info-icon {
  width: 42px; height: 42px;
  background: rgba(47,164,215,0.1);
  border: 1px solid rgba(47,164,215,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.contact-info-item span { font-size: 0.95rem; font-weight: 600; }
.contact-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(47,164,215,0.05); }

/* FORM */
.contact-form {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { color-scheme: dark; background-color: #1a1209; }
.form-group select option { background: #1a1209; color: #ffffff; }
.btn-full { width: 100%; justify-content: center; }
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { height: 100px; width: auto; object-fit: contain; }
.footer-logo-text { display: flex; align-items: center; font-size: 1.3rem; font-weight: 900; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 16px 0 24px;
  line-height: 1.65;
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  transition: all 0.2s;
}
.footer-socials a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h5 {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ========================
   MODAL
   ======================== */
.modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.88);
  display: none; align-items: center; justify-content: center;
}
.modal.active { display: flex; }
.modal-box {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}
.modal-icon {
  width: 64px; height: 64px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 900;
  margin: 0 auto 20px;
}
.modal-box h3 { font-size: 1.4rem; font-weight: 900; margin-bottom: 10px; }
.modal-box p { color: var(--muted); margin-bottom: 24px; }

/* ========================
   FLOATING BUTTONS
   ======================== */
.whatsapp-btn {
  position: fixed;
  bottom: 88px; right: 24px;
  z-index: 900;
  width: 52px; height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

.back-to-top {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: none; align-items: center; justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(47,164,215,0.4);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--orange-2); transform: translateY(-2px); }

/* ========================
   REVEAL ANIMATIONS
   ======================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ========================
   RTL SUPPORT
   ======================== */
[dir="rtl"] body { font-family: 'Cairo', 'Segoe UI', sans-serif; }
[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-badge { flex-direction: row-reverse; }
[dir="rtl"] .hero-cta { flex-direction: row-reverse; }
[dir="rtl"] .hero-stats { flex-direction: row-reverse; }
[dir="rtl"] .pourquoi-inner { direction: rtl; }
[dir="rtl"] .feature-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .contact-inner { direction: rtl; }
[dir="rtl"] .contact-info-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .form-group { text-align: right; }
[dir="rtl"] .footer-top { direction: rtl; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
[dir="rtl"] .section-header { text-align: right; }
[dir="rtl"] .section-header p { margin: 0; }
[dir="rtl"] .contact-socials { flex-direction: row-reverse; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .secteurs-grid { grid-template-columns: repeat(2, 1fr); }
  .tarifs-grid { grid-template-columns: repeat(2, 1fr); }
  .temoignages-grid { grid-template-columns: repeat(2, 1fr); }
  .pourquoi-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .chiffres-grid { grid-template-columns: repeat(2, 1fr); }
  .processus-steps { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(8,8,8,0.99);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .btn-nav { margin: 12px 24px; text-align: center; display: block; }
  .burger { display: flex; }
  .lang-switcher { margin-left: 8px; }
  .services-grid { grid-template-columns: 1fr; }
  .secteurs-grid { grid-template-columns: 1fr 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .processus-steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .chiffres-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .card-visual { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .secteurs-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
  .service-card { height: 320px; }
}
