/* ===== TOKENS ===== */
:root {
  --bg:         #0a1628;
  --bg-deep:    #070e1a;
  --s1:         #0d2044;
  --s2:         #0f2040;
  --s3:         #0c1e38;
  --s4:         #0a1e45;
  --border:     rgba(74,127,212,0.18);
  --border-lg:  rgba(74,127,212,0.28);
  --text:       #ffffff;
  --muted:      #7a9ab8;
  --faint:      #4a6a88;
  --blue:       #4a7fd4;
  --blue-h:     #5c8fe0;
  --blue-dk:    #2a5298;
  --green:      #25a244;
  --green-wa:   #25d366;
  --green-wa-h: #1db954;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  18px;
  --radius-full:9999px;
  --font-head:  'Syne', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --t:          180ms cubic-bezier(0.16,1,0.3,1);
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.3);
  --shadow-md:  0 4px 18px rgba(0,0,0,0.45);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.55);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); min-height: 100dvh; line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color var(--t); }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
ul { list-style: none; }

/* ===== UTIL ===== */
.wrap { max-width: 1140px; margin-inline: auto; padding-inline: 24px; }
.wrap-sm { max-width: 780px; margin-inline: auto; padding-inline: 24px; }

/* ===== AVAILABILITY BAR ===== */
.avail-bar {
  background: var(--green);
  padding: 8px 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
}
.avail-dot { width: 7px; height: 7px; border-radius: 50%; background: white; animation: pulse 1.6s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.75)} }
.avail-bar .avail-phone { font-weight: 700; opacity: 0.95; }
.avail-bar a { color: white; }

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--border);
  padding: 0 24px; height: 58px;
  display: flex; align-items: center;
}
.nav-inner { max-width: 1140px; margin-inline: auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark { width: 34px; height: 34px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: var(--font-head); font-size: 14px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text); }
.nav-logo-sub { font-size: 9px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-phone { display: flex; align-items: center; gap: 8px; background: var(--s2); border: 0.5px solid var(--border-lg); border-radius: var(--radius-md); padding: 7px 14px; }
.nav-phone span { font-size: 10px; color: var(--muted); display: block; letter-spacing: 0.5px; }
.nav-phone strong { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--text); letter-spacing: 0.5px; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-wa); color: white;
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  padding: 9px 18px; border-radius: var(--radius-full); border: none;
  transition: background var(--t);
}
.btn-wa:hover { background: var(--green-wa-h); }
.btn-wa-lg { font-size: 15px; padding: 14px 24px; border-radius: var(--radius-lg); }
.btn-wa-full { width: 100%; justify-content: center; font-size: 15px; padding: 16px; border-radius: var(--radius-lg); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--text); display: block; transition: all var(--t); }

/* ===== HERO ===== */
.hero {
  background: radial-gradient(ellipse at 60% 30%, rgba(74,127,212,0.08) 0%, transparent 60%), var(--s1);
  padding: 0;
  position: relative; overflow: hidden;
}
.hero-cityline {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  display: flex; align-items: flex-end; gap: 3px; padding: 0 20px; opacity: 0.07; pointer-events: none;
}
.bldg { background: var(--blue); border-radius: 2px 2px 0 0; }
.hero-road { position: absolute; bottom: 0; left: 0; right: 0; height: 24px; background: #0a0f1a; border-top: 1px solid var(--border); }
.hero-inner {
  max-width: 1140px; margin-inline: auto; padding: 56px 24px 64px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--s2); border: 0.5px solid var(--border-lg);
  border-radius: var(--radius-full); padding: 5px 14px;
  font-size: 11px; font-weight: 600; color: var(--blue);
  letter-spacing: 0.5px; margin-bottom: 16px;
}
.hero-brand {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; color: var(--blue); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.hero-brand::before { content: ''; display: block; width: 22px; height: 1.5px; background: var(--blue); }
.hero-title {
  font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; line-height: 1.1; color: var(--text); margin-bottom: 12px;
}
.hero-title span { color: var(--blue); }
.hero-sub { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; max-width: 46ch; }
.hero-btns { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }
.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--s2); border: 0.5px solid var(--border-lg);
  color: var(--text); font-weight: 600; font-size: 14px;
  padding: 12px 20px; border-radius: var(--radius-lg);
  transition: border-color var(--t), background var(--t);
}
.btn-call:hover { border-color: var(--blue); background: rgba(74,127,212,0.08); }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.trust-icon { width: 28px; height: 28px; border-radius: 8px; background: var(--s2); border: 0.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }

/* Hero right card */
.hero-card {
  background: var(--s3); border: 0.5px solid var(--border-lg);
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-card-vis {
  background: linear-gradient(135deg, #0a1e40, #0d2855);
  height: 200px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-card-vis img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.hero-card-status {
  position: absolute; top: 12px; right: 12px;
  background: var(--green); color: white; font-size: 10px; font-weight: 600;
  padding: 3px 10px; border-radius: var(--radius-full); letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 5px;
}
.status-dot { width: 5px; height: 5px; border-radius: 50%; background: white; animation: pulse 1.4s ease-in-out infinite; }
.hero-card-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; }
.hero-card-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--text); }
.hero-price-row { display: flex; align-items: center; justify-content: space-between; }
.hero-price { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--text); }
.hero-price small { font-size: 12px; font-weight: 400; color: var(--muted); }
.hero-price-badge { background: rgba(37,162,68,0.15); border: 0.5px solid rgba(37,162,68,0.3); color: #4ed87a; font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: var(--radius-full); letter-spacing: 0.5px; }
.hero-divider { height: 0.5px; background: var(--border); }
.hero-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  background: rgba(74,127,212,0.08); border: 0.5px solid var(--border);
  border-radius: var(--radius-full); padding: 4px 12px;
  font-size: 11px; color: #8eaac8; display: flex; align-items: center; gap: 5px;
}
.chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--s3);
  border-bottom: 0.5px solid var(--border);
  padding: 20px 24px;
}
.trust-bar-inner {
  max-width: 1140px; margin-inline: auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-ico { width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--s4); border: 0.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 1px; }
.trust-item span { font-size: 11px; color: var(--faint); }

/* ===== SECTION ===== */
section { padding-block: clamp(44px, 6vw, 80px); }
.s-label {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; color: var(--blue); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.s-label::before { content: ''; display: block; width: 18px; height: 1.5px; background: var(--blue); }
.s-title { font-family: var(--font-head); font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--text); line-height: 1.15; margin-bottom: 8px; }
.s-title span { color: var(--blue); }
.s-desc { font-size: 14px; color: var(--muted); max-width: 52ch; line-height: 1.75; }
.s-head-center { text-align: center; margin-bottom: 44px; }
.s-head-center .s-label { justify-content: center; }
.s-head-center .s-desc { margin-inline: auto; }

/* ===== SERVICES ===== */
.services { background: var(--s3); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-card {
  background: var(--s2); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity var(--t);
}
.svc-card:hover { border-color: var(--border-lg); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc-card:hover::after { opacity: 1; }
.svc-icon { width: 46px; height: 46px; border-radius: var(--radius-md); background: rgba(74,127,212,0.08); border: 0.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.svc-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.svc-card p { font-size: 12px; color: var(--muted); line-height: 1.7; }
.svc-tag { margin-top: 14px; font-size: 11px; color: var(--blue); display: flex; align-items: center; gap: 4px; }

/* ===== TARIFS ===== */
.tarifs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.tarif-card {
  background: var(--s2); border: 0.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px; position: relative;
  transition: border-color var(--t);
}
.tarif-card.featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(74,127,212,0.06) 0%, var(--s2) 100%);
  box-shadow: 0 0 32px rgba(74,127,212,0.12);
}
.tarif-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: white; font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 14px;
  border-radius: var(--radius-full);
}
.tarif-name { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.tarif-desc { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.tarif-price { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 0.5px solid var(--border); }
.tarif-amount { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--text); }
.tarif-amount .unit { font-size: 14px; font-weight: 400; color: var(--muted); }
.tarif-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.tarif-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); }
.tarif-list li::before { content: '›'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: -1px; }
.tarif-note { font-size: 11px; color: var(--faint); text-align: center; margin-top: 10px; }

/* ===== HOW IT WORKS ===== */
.how { background: var(--s3); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-lg), transparent);
  pointer-events: none;
}
.step {
  background: var(--s2); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
  position: relative; transition: border-color var(--t);
}
.step:hover { border-color: var(--border-lg); }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(74,127,212,0.1); border: 1px solid var(--border-lg);
  font-family: var(--font-head); font-size: 14px; font-weight: 800; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.step h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.step p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ===== ZONE ===== */
.zone-inner { display: grid; grid-template-columns: 1fr; max-width: 700px; }
.zone-map {
  background: var(--s2); border: 0.5px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.zone-map-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(74,127,212,0.15) 0%, transparent 60%),
              radial-gradient(circle at 70% 65%, rgba(37,162,68,0.08) 0%, transparent 40%), var(--s3);
}
.zone-map-label {
  position: relative; z-index: 2; text-align: center;
}
.zone-map-label svg { margin: 0 auto 8px; }
.zone-map-label span { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--blue); letter-spacing: 1px; }
.zone-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.zone-chip {
  background: var(--s2); border: 0.5px solid var(--border-lg);
  border-radius: var(--radius-full); padding: 6px 16px;
  font-size: 13px; font-weight: 500; color: var(--text);
  display: flex; align-items: center; gap: 6px;
}
.zone-chip .cdot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.zone-info { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.zone-info-item {
  display: flex; gap: 14px;
  background: var(--s2); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px;
}
.zone-info-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.zone-info-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.zone-info-item span { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ===== AVIS ===== */
.avis { background: var(--s3); }
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.avis-card {
  background: var(--s2); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
  transition: border-color var(--t);
}
.avis-card:hover { border-color: var(--border-lg); }
.avis-stars { color: #f5c542; font-size: 12px; letter-spacing: 3px; margin-bottom: 10px; }
.avis-text { font-size: 13px; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.avis-author { font-size: 12px; color: var(--faint); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #0c1c0e 0%, #0a1628 100%);
  border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border);
  text-align: center; padding-block: clamp(44px, 5vw, 72px);
}
.cta-section .s-title { font-size: clamp(24px, 3.5vw, 38px); }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ===== FOOTER ===== */
footer { background: var(--bg-deep); border-top: 0.5px solid var(--border); padding: 44px 24px 24px; }
.footer-inner { max-width: 1140px; margin-inline: auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer-brand p { font-size: 13px; color: var(--faint); margin-top: 12px; max-width: 28ch; line-height: 1.7; }
.footer-col h5 { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: var(--faint); transition: color var(--t); }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom { max-width: 1140px; margin-inline: auto; border-top: 0.5px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--faint); flex-wrap: wrap; gap: 8px; }

/* ===== PHONE DISPLAY ===== */
.phone-display {
  display: flex; align-items: center; gap: 12px;
  background: var(--s2); border: 0.5px solid var(--border-lg);
  border-radius: var(--radius-lg); padding: 14px 18px;
  max-width: 280px;
}
.phone-display-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--s4); border: 0.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.phone-display-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.phone-display-num { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--text); letter-spacing: 0.8px; }
.arr { color: var(--blue); margin-left: auto; font-size: 18px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .zone-inner { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-phone { display: none; }
}
@media (max-width: 600px) {
  .wrap, .wrap-sm { padding-inline: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }