:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --orange: #ff6a00;
  --orange-light: #ff8c38;
  --orange-dark: #cc5500;
  --gray-100: #f5f5f5;
  --gray-200: #e0e0e0;
  --gray-600: #666666;
  --gray-800: #1a1a1a;
  --font-display: 'Chillax-Regular', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,106,0,0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 0.75rem;
}
.nav-links a:hover,
.nav-links a:focus { color: var(--orange); outline: 2px solid var(--orange); outline-offset: 4px; border-radius: 2px; }

.nav-cta {
  background: var(--orange);
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; outline-color: var(--orange-light) !important; }

/* ── SECTIONS ── */
section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* ── SECTION 1 : HERO ── */
#hero {
  background: var(--black);
  align-items: flex-start;
  padding: 0 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(255,106,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 8rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,106,0,0.12);
  border: 1px solid rgba(255,106,0,0.35);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-primary:focus { outline: 3px solid var(--orange-light); outline-offset: 4px; }

.btn-primary svg { width: 18px; height: 18px; }

.hero-stats {
  display: flex;
  gap: 3rem;
  z-index: 2;
  padding: 3rem 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── SECTION 2 : PRODUIT 3D ── */
#produit {
  background: var(--white);
  color: var(--black);
  padding: 0 3rem;
}

#produit .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: block;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Exploded USB view */
.exploded-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex: 1;
}

.usb-exploded {
  position: relative;
  width: 320px;
  height: 480px;
  perspective: 1000px;
}

.usb-layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.usb-layer:hover { transform: translateX(-50%) scale(1.04); }

.layer-1  { top: 0px;   background: linear-gradient(135deg, #1a1a2e, #16213e); } /* Boîtier */
.layer-2  { top: 68px;  background: linear-gradient(135deg, #ff6a00, #cc5500); width: 200px; } /* WiFi */
.layer-3  { top: 136px; background: linear-gradient(135deg, #232323, #3a3a3a); width: 195px; } /* Bluetooth */
.layer-4  { top: 204px; background: linear-gradient(135deg, #0f4c75, #1b6ca8); width: 210px; } /* 4G */
.layer-5  { top: 272px; background: linear-gradient(135deg, #1a472a, #2d6a4f); width: 200px; } /* GPS */
.layer-6  { top: 340px; background: linear-gradient(135deg, #4a1942, #6d2b6d); width: 210px; } /* Empreinte */
.layer-7  { top: 408px; background: linear-gradient(135deg, #7d3c0a, #a0522d); width: 195px; } /* USB-C */

/* Connector lines */
.usb-connector {
  position: absolute;
  left: 50%;
  width: 1px;
  background: rgba(255,106,0,0.3);
}
.conn-1 { top: 52px; height: 16px; }
.conn-2 { top: 120px; height: 16px; }
.conn-3 { top: 188px; height: 16px; }
.conn-4 { top: 256px; height: 16px; }
.conn-5 { top: 324px; height: 16px; }
.conn-6 { top: 392px; height: 16px; }

.layer-icon { margin-right: 0.5rem; font-size: 1rem; }

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 320px;
}

.spec-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.spec-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.spec-text h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.spec-text p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ── SECTION 3 : TARIFS ── */
#tarifs {
  background: var(--black);
  padding: 0 3rem;
}

#tarifs .section-header { text-align: center; margin-bottom: 3rem; }
#tarifs h2 { color: var(--white); }
#tarifs .section-desc { color: rgba(255,255,255,0.6); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.pricing-card {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover { border-color: rgba(255,106,0,0.4); transform: translateY(-4px); }

.pricing-card.featured {
  border-color: var(--orange);
  background: linear-gradient(160deg, #1c1208 0%, #0a0a0a 100%);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.plan-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.6rem; display: inline-block; }
.plan-price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.45); margin-left: 0.2rem; }

.plan-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.plan-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.plan-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.8);
}

.plan-features li.no {
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}

.check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,106,0,0.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.cross {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-plan:hover { border-color: var(--orange); color: var(--orange); }
.btn-plan:focus { outline: 2px solid var(--orange); outline-offset: 3px; }

.btn-plan.orange {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}
.btn-plan.orange:hover { background: var(--orange-light); border-color: var(--orange-light); color: var(--black); }

/* ── SECTION 4 : FONCTIONNALITÉS ── */
#fonctionnalites {
  background: var(--gray-100);
  color: var(--black);
  padding: 0 3rem;
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.features-text h2 { color: var(--black); margin-bottom: 1rem; }
.features-text .section-desc { text-align: left; margin: 0 0 2.5rem; }

.feature-block {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--orange);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-block:hover { transform: translateX(6px); box-shadow: 0 4px 28px rgba(0,0,0,0.1); }

.feature-block h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.feature-block p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* phone mockup */
.phone-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-frame {
  width: 260px;
  background: var(--black);
  border-radius: 36px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 30px 80px rgba(0,0,0,0.4),
    0 0 60px rgba(255,106,0,0.1);
  position: relative;
}

.phone-screen {
  background: #111;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9/19;
  display: flex;
  flex-direction: column;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
}

.app-header {
  background: var(--black);
  padding: 0.75rem 1rem 0.5rem;
  border-bottom: 1px solid rgba(255,106,0,0.2);
}

.app-logo {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
}
.app-logo span { color: var(--orange); }

.app-body { flex: 1; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }

.alert-card {
  background: linear-gradient(135deg, rgba(255,106,0,0.15), rgba(255,106,0,0.05));
  border: 1px solid rgba(255,106,0,0.3);
  border-radius: 10px;
  padding: 0.75rem;
}
.alert-title { font-size: 0.65rem; font-weight: 700; color: var(--orange); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.05em; }
.alert-desc { font-size: 0.6rem; color: rgba(255,255,255,0.7); line-height: 1.4; }

.map-placeholder {
  background: linear-gradient(135deg, #0a1628, #1a2a40);
  border-radius: 10px;
  height: 90px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.map-pin {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  animation: pulse-pin 2s ease-in-out infinite;
}

@keyframes pulse-pin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.action-btns { display: flex; gap: 0.5rem; }

.action-btn {
  flex: 1;
  padding: 0.55rem 0.25rem;
  border-radius: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
}

.action-btn.lock { background: rgba(255,106,0,0.2); color: var(--orange); }
.action-btn.locate { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.action-btn.erase { background: rgba(220,50,50,0.15); color: #ff5555; }

/* ── SECTION 5 : PRÉCOMMANDE ── */
#precommande {
  background: var(--black);
  padding: 0 3rem;
}

#precommande .section-header { text-align: center; margin-bottom: 3rem; }
#precommande h2 { color: var(--white); }
#precommande .section-desc { color: rgba(255,255,255,0.6); }

.preorder-wrapper {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.preorder-card {
  background: var(--gray-800);
  border: 1px solid rgba(255,106,0,0.25);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ff6a00' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option { background: var(--gray-800); color: var(--white); }

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,106,0,0.15);
}

.form-group input::placeholder { color: rgba(255,255,255,0.3); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-radio-group { display: flex; flex-direction: column; gap: 0.75rem; }

.radio-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.radio-item:hover { border-color: rgba(255,106,0,0.4); background: rgba(255,106,0,0.04); }

.radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  background: none;
  border: none;
}

.radio-item input[type="radio"]:focus { outline: 2px solid var(--orange); outline-offset: 2px; }

.radio-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.radio-label span { font-size: 0.9rem; color: var(--white); font-weight: 500; }
.radio-label em { font-style: normal; font-size: 0.85rem; color: var(--orange); font-weight: 700; }

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  padding: 0;
  background: none;
  border: none;
}

.checkbox-item input[type="checkbox"]:focus { outline: 2px solid var(--orange); outline-offset: 2px; }

.checkbox-item label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
  margin-top: 1.5rem;
}
.submit-btn:hover { background: var(--orange-light); transform: translateY(-2px); }
.submit-btn:focus { outline: 3px solid var(--orange-light); outline-offset: 4px; }

.trust-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.trust-item svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 1.5rem 3rem;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer a { color: var(--orange); text-decoration: none; }
footer a:hover { text-decoration: underline; }

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  display: block;
}
.footer-logo span { color: var(--orange); }

/* ── NOTIFICATION ── */
.notif {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gray-800);
  border: 1px solid var(--orange);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  max-width: 300px;
}
.notif.show { opacity: 1; pointer-events: auto; }

/* FR flag ribbon */
.fr-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 1.1rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1.5rem;
}

.fr-flag {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}

.fr-flag span {
  display: inline-block;
  width: 8px;
  height: 14px;
  border-radius: 1px;
}

.fr-blue { background: #002395; }
.fr-white { background: #fff; }
.fr-red { background: #ED2939; }

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: float 2s ease-in-out infinite;
}

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

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── SECTION INNER WRAPPER ── */
.section-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 0 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* ── SKIP LINK (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--orange);
  color: var(--black);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* responsive minimal */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  #hero, #produit, #tarifs, #fonctionnalites, #precommande { padding: 0 1.25rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .pricing-card.featured { transform: none; }
  .features-layout { grid-template-columns: 1fr; }
  .phone-mockup { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; left: 1.25rem; }
  .form-grid { grid-template-columns: 1fr; }
  .exploded-container { flex-direction: column; }
}

/* RGAA focus visible */
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 3px; }

/* Modal */
.modal {
  display: none;
  opacity: 0;
  transition: opacity 1s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  padding: 5rem;
  overflow: hidden;
}
.modal.active {
  display: block;
  opacity: 1;
  z-index: 9;
}
.modal-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background: white;
  max-width: 1200px;
  margin: 0 auto;
}
.modal-close {
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 0;
  cursor: pointer;
  padding: 1rem;
  background: white;
  font-weight: bold;
  color: var(--orange);
}
.modal-img, .modal-content {
  width: 50%;
}
@media (max-width: 1024px) {
  .modal-img, .modal-content {
    width: 100%;
  }
  .modal-img {
    max-height: 10rem;
    overflow: hidden;
  }
  .modal-img img {
    height: auto;
  }
  .modal-content h3 {
    font-size: 2rem;
  }
}
.modal-img img {
  width: 100%;
  height: 100%;
}
.modal-content {
  padding: 3rem;
}
.modal-content h3 {
  font-family: "Chillax-Semibold";
  font-size: 4rem;
}
.modal-content-text {
  margin-top: 2rem;
}
.modal-content-text p {
  margin-top: 1rem;
}
