/* ============ RESET & TOKENS ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #2f6bff;
  --blue-bright: #4f8bff;
  --blue-soft: #dbe6ff;
  --ink: #0a0c12;
  --ink-2: #14171f;
  --gray-900: #1c2129;
  --gray-500: #6b7280;
  --gray-300: #c7ccd4;
  --gray-100: #f3f4f7;
  --white: #ffffff;
  --radius: 22px;
  --radius-lg: 32px;
  --maxw: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 110px 0; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-accent { background: var(--blue); color: #fff; }
.btn-accent:hover { background: var(--blue-bright); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-icon {
  width: 50px; height: 50px;
  padding: 0;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid rgba(0,0,0,0.1);
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(10,12,18,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo { display: flex; align-items: center; gap: 11px; }
.logo-img {
  width: 40px; height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(47,107,255,0.35));
}
.logo-text {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.nav a {
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.nav a:hover { color: #fff; }

.header-cta { padding: 11px 20px; font-size: 0.9rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 24px; height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 78% 12%, rgba(47,107,255,0.30), transparent 60%),
    linear-gradient(180deg, #06070b 0%, #0d1018 55%, #1b2230 100%);
  padding: 160px 0 120px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.06));
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  padding: 7px 14px;
  border: 1px solid rgba(79,139,255,0.4);
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow.dark { color: var(--blue); border-color: rgba(47,107,255,0.3); }

.hero-title {
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
  text-transform: uppercase;
}
.hero-title .muted { color: #565d6b; }

.hero-sub {
  color: rgba(255,255,255,0.66);
  font-size: 1.08rem;
  max-width: 460px;
  margin: 24px 0 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-stats {
  display: flex;
  gap: 38px;
  margin-top: 48px;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.hero-stats span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ---- hero visual ---- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}
.phone-glow {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(47,107,255,0.55), transparent 65%);
  filter: blur(20px);
}
.iphone {
  position: relative;
  width: 248px; height: 510px;
  border-radius: 56px;
  padding: 9px;
  background: linear-gradient(150deg, #7c8290 0%, #2a2d34 24%, #0c0d11 50%, #2a2d34 76%, #7c8290 100%);
  box-shadow:
    0 50px 90px rgba(0,0,0,0.6),
    0 0 0 2px rgba(255,255,255,0.04),
    inset 0 1px 2px rgba(255,255,255,0.4);
  transform: rotate(-7deg);
  animation: floatPhone 6.5s ease-in-out infinite;
}
@keyframes floatPhone {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-7deg) translateY(-18px); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.iphone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 48px;
  overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, #3157d6 0%, #1a2c7a 38%, #0a1130 70%, #060814 100%);
  box-shadow: inset 0 0 0 3px #050608;
}
.ip-island {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.ip-btn {
  position: absolute;
  background: linear-gradient(180deg, #5a606e, #23262e);
  border-radius: 3px;
  z-index: 2;
}
.ip-action { left: -3px; top: 96px; width: 4px; height: 30px; }
.ip-volup  { left: -3px; top: 150px; width: 4px; height: 46px; }
.ip-voldn  { left: -3px; top: 210px; width: 4px; height: 46px; }
.ip-power  { right: -3px; top: 165px; width: 4px; height: 72px; }
.ip-lock {
  position: absolute;
  top: 76px; left: 0; right: 0;
  text-align: center;
}
.ip-date {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 600;
}
.ip-time {
  color: #fff;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.ip-widget {
  position: absolute;
  left: 16px; right: 16px; bottom: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 13px 15px;
}
.ip-wicon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 12px;
}
.ip-wtext { display: flex; flex-direction: column; line-height: 1.3; overflow: hidden; }
.ip-wtext strong { color: #fff; font-size: 0.95rem; white-space: nowrap; }
.ip-wtext em {
  font-style: normal;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  white-space: nowrap;
}

.float-card {
  position: absolute;
  bottom: 36px; right: -10px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.4);
  animation: floatCard 6s ease-in-out infinite;
  animation-delay: -3s;
}
.float-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  font-size: 1.1rem;
}
.float-text { display: flex; flex-direction: column; line-height: 1.25; }
.float-text strong { font-size: 0.92rem; }
.float-text span { font-size: 0.78rem; color: var(--gray-500); }
.float-price {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--blue);
  border-left: 1px solid #e5e7eb;
  padding-left: 12px;
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: scroll 26s linear infinite;
}
.marquee-track span {
  color: rgba(255,255,255,0.45);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============ SECTION HEAD ============ */
.section-head { margin-bottom: 56px; }
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.section-title.light { color: #fff; }

/* ============ SERVICES ============ */
.services { background: var(--white); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  border: 1px solid #e9ebef;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  background: var(--ink);
  box-shadow: 0 30px 60px rgba(10,12,18,0.25);
}
.card:hover h3, .card:hover p { color: #fff; }
.card:hover .card-num { color: rgba(255,255,255,0.12); }
.card:hover .card-icon { background: var(--blue); color: #fff; }
.card-num {
  position: absolute;
  top: 20px; right: 26px;
  font-size: 2.4rem;
  font-weight: 900;
  color: #e2e4e9;
  transition: color 0.25s ease;
}
.card-icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: #fff;
  color: var(--blue);
  border-radius: 16px;
  margin-bottom: 22px;
  transition: 0.25s ease;
}
.card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}
.card p { color: var(--gray-500); transition: color 0.25s ease; }

/* ============ FEATURES ============ */
.features { background: var(--gray-100); }
.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.features-lead {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin: 20px 0 30px;
  max-width: 440px;
}
.feature-list { display: flex; flex-direction: column; }
.feature-list li {
  padding: 20px 0;
  border-top: 1px solid #dfe2e7;
}
.feature-list li:last-child { border-bottom: 1px solid #dfe2e7; }
.feature-list h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.feature-list p { color: var(--gray-500); font-size: 0.96rem; }

.features-visual { display: flex; justify-content: center; }
.feature-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(165deg, #1a2233, #06070b);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.feature-card-glow {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(47,107,255,0.5), transparent 65%);
  filter: blur(10px);
}
.mini-phone {
  position: relative;
  width: 158px; height: 320px;
  border-radius: 36px;
  padding: 7px;
  background: linear-gradient(150deg, #7c8290, #2a2d34 26%, #0c0d11 52%, #2a2d34 76%, #7c8290);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 2px rgba(255,255,255,0.35);
}
.mini-phone span {
  display: block;
  width: 100%; height: 100%;
  border-radius: 29px;
  background: radial-gradient(120% 80% at 50% 0%, #3157d6, #1a2c7a 45%, #060814);
}
.ps-island {
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 11px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
.mini-phone .ps-island { width: 50px; height: 15px; top: 15px; }
.feature-badge {
  position: absolute;
  bottom: 26px; left: 26px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
}
.feature-badge strong { font-size: 1rem; }
.feature-badge em { font-style: normal; font-size: 0.82rem; color: var(--blue); }

/* ============ RACHAT ============ */
.rachat {
  background:
    radial-gradient(700px 380px at 85% 0%, rgba(47,107,255,0.28), transparent 60%),
    var(--ink);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: 0.25s ease;
}
.step:hover {
  border-color: rgba(79,139,255,0.5);
  background: rgba(47,107,255,0.08);
}
.step-num {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 14px;
  margin-bottom: 20px;
}
.step h3 { color: #fff; font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,0.6); }

.rachat-cta {
  margin-top: 48px;
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.rachat-cta p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  max-width: 440px;
  line-height: 1.25;
}
.rachat-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.rachat-cta .btn-accent { background: #fff; color: var(--blue); }
.rachat-cta .btn-accent:hover { background: var(--ink); color: #fff; }

/* ============ BOUTIQUE ============ */
.boutique { background: var(--white); }
.boutique-lead {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 18px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.shop-item {
  background: var(--gray-100);
  border: 1px solid #e9ebef;
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: 0.25s ease;
}
.shop-item:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.12); }
.shop-thumb {
  height: 230px;
  border-radius: var(--radius);
  background: linear-gradient(165deg, #1a2233, #06070b);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.phone-shape {
  position: relative;
  width: 100px; height: 204px;
  border-radius: 27px;
  padding: 6px;
  background: linear-gradient(150deg, #7c8290, #2a2d34 26%, #0c0d11 52%, #2a2d34 76%, #7c8290);
  box-shadow: 0 20px 38px rgba(0,0,0,0.5), inset 0 1px 2px rgba(255,255,255,0.35);
}
.phone-shape::after {
  content: "";
  display: block;
  width: 100%; height: 100%;
  border-radius: 22px;
  background: radial-gradient(120% 80% at 50% 0%, #3157d6, #1a2c7a 45%, #060814);
}
.phone-shape.dark::after {
  background: radial-gradient(120% 80% at 50% 0%, #3a4150, #181b22 45%, #050608);
}
.phone-shape.light::after {
  background: radial-gradient(120% 80% at 50% 0%, #eef0f4, #aab0bd 45%, #5f6675);
}
.shop-swatches { display: flex; gap: 7px; margin-bottom: 14px; }
.shop-swatches span {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid #d4d7dd;
}
.shop-item h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.shop-item p { color: var(--gray-500); font-size: 0.95rem; }
.boutique-note {
  margin-top: 32px;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.98rem;
}

/* ============ ECRANS ============ */
.ecrans {
  background:
    radial-gradient(800px 400px at 12% 0%, rgba(47,107,255,0.06), transparent 60%),
    var(--gray-100);
}
.ecrans-lead {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 600px;
  margin-top: 18px;
}
.ecrans-lead strong { color: var(--ink); font-weight: 700; }

.ecrans-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.ec-chip {
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid #e3e6ec;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}
.ec-chip:hover { border-color: var(--blue); color: var(--blue); }
.ec-chip.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.ecrans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ec-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e9ebef;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(10,12,18,0.10);
  border-color: rgba(47,107,255,0.35);
}

.ec-img-wrap {
  position: relative;
  height: 220px;
  background: linear-gradient(180deg, #f8f9fb, #eef0f4);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ec-img-wrap img {
  max-width: 78%;
  max-height: 86%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.ec-card:hover .ec-img-wrap img { transform: scale(1.04); }

.ec-img-fallback::after {
  content: "📱";
  font-size: 4rem;
  opacity: 0.3;
}

.ec-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}
.ec-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ec-prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}
.ec-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  background: #f3f4f7;
}
.ec-tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.ec-amount {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ink);
}
.ec-price.tier-compatible { background: #f3f4f7; }
.ec-price.tier-premium {
  background: rgba(47,107,255,0.08);
}
.ec-price.tier-premium .ec-tier { color: var(--blue); }
.ec-price.tier-original {
  background: var(--ink);
}
.ec-price.tier-original .ec-tier { color: rgba(255,255,255,0.7); }
.ec-price.tier-original .ec-amount { color: #fff; }

.ecrans-note {
  margin-top: 36px;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.95rem;
}
.ecrans-note a { color: var(--blue); font-weight: 700; }

/* Batterie — pastille de prix mise en valeur */
.ec-price.tier-battery {
  background: var(--blue);
  padding: 14px 18px;
}
.ec-price.tier-battery .ec-tier {
  color: rgba(255,255,255,0.85);
  font-size: 0.74rem;
}
.ec-price.tier-battery .ec-amount {
  color: #fff;
  font-size: 1.2rem;
}

/* Section Batteries — fond légèrement distinct */
.batteries {
  background:
    radial-gradient(800px 400px at 88% 0%, rgba(47,107,255,0.06), transparent 60%),
    #fff;
}

/* ============ GARANTIE ============ */
.garantie { background: var(--gray-100); }
.garantie-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  border: 1px solid #e9ebef;
  border-radius: var(--radius-lg);
  padding: 44px 48px;
}
.garantie-icon {
  flex-shrink: 0;
  width: 86px; height: 86px;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 22px;
}
.garantie-text h2 {
  font-size: 1.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.garantie-text p { color: var(--gray-500); font-size: 1.05rem; }
.garantie-text strong { color: var(--ink); }

/* ============ CONTACT ============ */
.contact { background: var(--ink); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-content: start;
}
.info-block h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 8px;
}
.info-block p { color: rgba(255,255,255,0.82); }
.info-block a { transition: color 0.2s ease; }
.info-block a:hover { color: var(--blue-bright); }
.contact-actions { grid-column: 1 / -1; }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* ============ FOOTER ============ */
.site-footer { background: #06070b; padding-top: 70px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 50px;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  max-width: 280px;
  font-size: 0.95rem;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-col a, .footer-col span {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--blue-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

/* ============ FLOATING CALL ============ */
.floating-call {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(47,107,255,0.5);
  z-index: 90;
  transition: transform 0.2s ease;
}
.floating-call:hover { transform: scale(1.08); }

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

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 380px; margin-top: 20px; }
  .features-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cards, .steps, .shop-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .ecrans-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .ecrans-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ec-img-wrap { height: 180px; }
}

@media (max-width: 760px) {
  .section { padding: 80px 0; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--ink-2);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    margin-left: 0;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.2rem; }
  .burger { display: flex; margin-left: auto; }
  .header-cta { display: none; }
  .hero { padding: 130px 0 90px; }
  .hero-actions { flex-wrap: wrap; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .garantie-inner { flex-direction: column; text-align: center; padding: 36px 28px; }
  .rachat-cta { flex-direction: column; align-items: flex-start; }
  .contact-info { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
