/* ============================================================
   PAN-CI – Feuille de style principale
   Palette : Orange #E8610A | Nuit #1A1A2E | Blanc #FFFFFF
   Fonts   : Syne (titres) + DM Sans (corps)
   ============================================================ */

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --orange:       #E8610A;
  --orange-dark:  #BF4E08;
  --orange-light: #FDE9D9;
  --dark:         #1A1A2E;
  --dark2:        #16213E;
  --white:        #FFFFFF;
  --bg:           #F8F7F4;
  --text:         #1A1A2E;
  --text-2:       #6B7280;
  --text-3:       #9CA3AF;
  --border:       rgba(0,0,0,0.08);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.14);
  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── Utilities ───────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-white { color: var(--white) !important; }
.text-white-60 { color: rgba(255,255,255,0.65) !important; margin-top: 16px; font-size: 1.05rem; line-height: 1.7; }
.gradient-text { background: linear-gradient(135deg, var(--orange) 0%, #FF8C42 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ─── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse  { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes float  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin   { to { transform: rotate(360deg); } }
@keyframes blob   { 0%,100% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; } 50% { border-radius: 30% 60% 70% 40%/50% 60% 30% 60%; } }

.animate-in { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all var(--transition); border: 2px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,97,10,0.35); }
.btn-hero { background: var(--white); color: var(--orange); font-size: 1rem; padding: 16px 32px; box-shadow: var(--shadow-md); }
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }
.btn-ghost { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark2); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ─── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.08);
}
.nav-inner { display: flex; align-items: center; gap: 32px; padding: 18px 24px; max-width: 1200px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--white); }
.navbar.scrolled .nav-logo { color: var(--dark); }
.logo-icon { width: 36px; height: 36px; background: var(--orange); border-radius: 10px; display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; }
.nav-links a { font-weight: 500; font-size: 0.9rem; color: rgba(255,255,255,0.85); transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a { color: var(--text-2); }
.navbar.scrolled .nav-links a:hover { color: var(--orange); }
.nav-cta .btn-primary { padding: 10px 22px; font-size: 0.88rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.navbar.scrolled .hamburger span { background: var(--dark); }

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--dark) 0%, #0F1729 50%, #1A1A2E 100%);
  display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-blob {
  position: absolute; filter: blur(80px); opacity: 0.25;
  animation: blob 12s ease-in-out infinite;
}
.hero-blob-1 { width: 600px; height: 600px; background: var(--orange); top: -200px; right: -100px; animation-delay: 0s; }
.hero-blob-2 { width: 400px; height: 400px; background: #1565C0; bottom: -100px; left: -100px; animation-delay: -6s; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px; border-radius: 100px; font-size: 0.82rem; color: rgba(255,255,255,0.8); margin-bottom: 24px;
}
.badge-dot { width: 7px; height: 7px; background: #4ADE80; border-radius: 50%; animation: pulse 2s infinite; }
.hero-title { font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 800; color: var(--white); margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-subtitle { font-size: 1.08rem; color: rgba(255,255,255,0.6); max-width: 480px; line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { text-align: center; }
.stat strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--white); }
.stat span { font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* ─── Phone mockup ────────────────────────────────────────────── */
.hero-visual { position: relative; display: flex; justify-content: center; animation: float 5s ease-in-out infinite; }
.phone-mockup {
  width: 280px; height: 560px; background: var(--dark2); border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.12); position: relative; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 8px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.1);
}
.phone-screen { position: absolute; inset: 8px; background: #0F1729; border-radius: 32px; overflow: hidden; }
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100px; height: 30px; background: var(--dark2); border-radius: 0 0 20px 20px; z-index: 10; }
.phone-ui { padding: 40px 16px 16px; height: 100%; display: flex; flex-direction: column; gap: 12px; }
.phone-header { padding: 4px 0; }
.phone-greeting { font-size: 13px; font-weight: 700; color: var(--white); }
.phone-location { font-size: 11px; color: rgba(255,255,255,0.5); }
.phone-map-placeholder {
  flex: 1; background: linear-gradient(135deg, #1a2a4a 0%, #162035 100%); border-radius: 14px; position: relative; overflow: hidden; min-height: 160px;
}
.map-dot { position: absolute; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 4px rgba(232,97,10,0.25); }
.map-dot-1 { top: 40%; left: 30%; }
.map-dot-2 { top: 60%; left: 60%; }
.map-dot-3 { top: 25%; left: 55%; }
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 24px; }
.phone-sos {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 14px; padding: 14px;
}
.sos-inner { display: flex; align-items: center; gap: 10px; }
.sos-inner span { font-size: 24px; }
.sos-inner strong { display: block; color: var(--white); font-size: 13px; font-weight: 700; }
.sos-inner small { color: rgba(255,255,255,0.7); font-size: 10px; }
.phone-services-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.phone-svc { background: rgba(255,255,255,0.07); border-radius: 10px; padding: 8px 4px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.phone-svc span { font-size: 9px; color: rgba(255,255,255,0.6); text-align: center; }

/* Floating elements */
.float-notif {
  position: absolute; right: -40px; top: 80px;
  background: var(--white); border-radius: 16px; padding: 12px 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 10px; min-width: 200px;
  animation: float 4s ease-in-out infinite 1s;
}
.notif-icon { font-size: 24px; }
.float-notif strong { font-size: 13px; font-weight: 700; display: block; }
.float-notif small { font-size: 11px; color: var(--text-2); }
.float-badge {
  position: absolute; left: -40px; bottom: 120px;
  background: var(--dark); border-radius: 12px; padding: 10px 16px;
  color: var(--white); text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: float 5s ease-in-out infinite 0.5s;
}
.float-badge span { font-size: 14px; font-weight: 700; display: block; }
.float-badge small { font-size: 10px; color: rgba(255,255,255,0.5); }

/* ─── Trust band ──────────────────────────────────────────────── */
.trust-band { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; }
.trust-band .container { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-label { font-size: 0.78rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.trust-logos { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-logo { font-size: 0.85rem; color: var(--text-2); background: var(--bg); padding: 6px 14px; border-radius: 100px; border: 1px solid var(--border); white-space: nowrap; }

/* ─── Sections ────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section--dark { background: var(--dark); }
.section--orange { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); }
.section--download { background: linear-gradient(160deg, var(--dark) 0%, #0F1729 100%); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header--light .section-tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
.section-header--light .section-title { color: var(--white); }
.section-tag {
  display: inline-block; background: var(--orange-light); color: var(--orange);
  padding: 6px 16px; border-radius: 100px; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px;
}
.section-tag--white { background: rgba(255,255,255,0.2); color: var(--white); }
.section-tag--light { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.section-title em { font-style: normal; color: var(--orange); }
.section--dark .section-title em,
.section--orange .section-title em { color: rgba(255,255,255,0.9); }
.section-sub { font-size: 1.05rem; color: var(--text-2); max-width: 520px; margin: 0 auto; }

/* ─── Services grid ───────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--border); transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.service-card--featured { background: linear-gradient(135deg, var(--orange-light) 0%, #fff 60%); border-color: rgba(232,97,10,0.2); }
.service-card--vip { background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%); border-color: transparent; }
.service-card--vip h3, .service-card--vip p { color: var(--white); }
.service-card--vip .service-price { color: rgba(255,255,255,0.6); }
.service-emoji { font-size: 2.2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.5; margin-bottom: 14px; }
.service-price { font-size: 0.8rem; font-weight: 600; color: var(--orange); }
.vip-badge { position: absolute; top: 16px; right: 16px; background: var(--orange); color: var(--white); font-size: 0.65rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; letter-spacing: 0.06em; }

/* ─── Steps ───────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 24px; align-items: center; margin-bottom: 56px; }
.step-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 40px 32px; text-align: center; transition: all var(--transition); }
.step-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.step-number { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 12px; }
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.step-arrow { font-size: 1.5rem; color: var(--orange); font-weight: 700; }
.steps-cta { text-align: center; }

/* ─── Testimonials ────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); }
.testimonial--featured { background: var(--dark); color: var(--white); border-color: transparent; transform: scale(1.04); }
.testimonial--featured p { color: rgba(255,255,255,0.8); }
.testimonial-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial p { font-size: 0.93rem; line-height: 1.7; color: var(--text-2); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); display: grid; place-items: center; font-weight: 700; color: var(--white); font-size: 0.85rem; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 0.88rem; }
.testimonial-author small { color: var(--text-3); font-size: 0.78rem; }

/* ─── Prestataires ────────────────────────────────────────────── */
.provider-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.provider-content .section-title { text-align: left; }
.provider-benefits { margin: 24px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.provider-benefits li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-size: 0.93rem; }
.provider-benefits li span { color: #4ADE80; font-weight: 700; }
.provider-card { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 20px; margin-bottom: 14px; }
.provider-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.provider-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.2); display: grid; place-items: center; font-weight: 700; color: var(--white); font-size: 13px; }
.provider-card-header strong { color: var(--white); font-size: 14px; display: block; }
.provider-card-header small { color: rgba(255,255,255,0.6); font-size: 11px; }
.provider-status { margin-left: auto; font-size: 11px; color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 100px; }
.provider-stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.pstat { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 10px; text-align: center; }
.pstat strong { display: block; color: var(--white); font-size: 15px; font-weight: 700; }
.pstat small { color: rgba(255,255,255,0.5); font-size: 10px; }
.provider-earnings { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 12px; }
.earnings-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.earnings-amount { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.earnings-bar { height: 6px; background: rgba(255,255,255,0.12); border-radius: 3px; overflow: hidden; }
.earnings-fill { height: 100%; background: linear-gradient(90deg, #4ADE80, #22C55E); border-radius: 3px; }
.provider-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.plan { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 14px; }
.plan--active { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }
.plan strong { display: block; color: var(--white); font-size: 13px; font-weight: 700; }
.plan span { display: block; color: rgba(255,255,255,0.9); font-size: 12px; margin: 2px 0; }
.plan small { color: rgba(255,255,255,0.45); font-size: 10px; }

/* ─── Pricing ─────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.pricing-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  border: 2px solid var(--border); position: relative; transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--featured { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange), var(--shadow-md); transform: scale(1.04); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); padding: 4px 18px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; white-space: nowrap; }
.pricing-name { font-size: 0.9rem; font-weight: 600; color: var(--text-2); margin-bottom: 12px; }
.pricing-price { font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--text); }
.pricing-price span { font-size: 1rem; color: var(--text-2); font-weight: 500; font-family: 'DM Sans', sans-serif; }
.pricing-period { font-size: 0.8rem; color: var(--text-3); margin: 4px 0 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { font-size: 0.88rem; color: var(--text-2); }
.pricing-card--featured .pricing-features li strong { color: var(--orange); }
.pricing-enterprise {
  background: var(--dark); border-radius: var(--radius); padding: 32px; color: var(--white);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.pricing-enterprise strong { font-size: 1.1rem; display: block; margin-bottom: 6px; }
.pricing-enterprise p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ─── Download ────────────────────────────────────────────────── */
.download-inner { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; padding: 60px 0; }
.download-content .section-title { text-align: left; }
.download-buttons { display: flex; gap: 14px; margin: 32px 0 16px; flex-wrap: wrap; }
.download-btn {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); padding: 14px 24px; border-radius: 16px; transition: all var(--transition);
  min-width: 180px;
}
.download-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.download-btn div { display: flex; flex-direction: column; }
.download-btn small { font-size: 0.7rem; color: rgba(255,255,255,0.55); }
.download-btn strong { font-size: 1rem; }
.download-qr-hint { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.download-qr-block { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.qr-code-placeholder {
  width: 160px; height: 160px; background: var(--white); border-radius: 16px;
  display: grid; place-items: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.qr-inner { text-align: center; }
.qr-logo { font-size: 40px; margin-bottom: 8px; }
.qr-dots { width: 80px; height: 80px; background:
  repeating-linear-gradient(0deg, #1A1A2E 0, #1A1A2E 4px, transparent 4px, transparent 8px),
  repeating-linear-gradient(90deg, #1A1A2E 0, #1A1A2E 4px, transparent 4px, transparent 8px);
  opacity: 0.4; }
.qr-label { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-align: center; line-height: 1.5; }

/* ─── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); padding-top: 64px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.07);
  display: grid; place-items: center; color: rgba(255,255,255,0.6); transition: all var(--transition); border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--orange); color: var(--white); border-color: transparent; }
.footer-col h4 { font-family: 'Syne', sans-serif; color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a, .footer-col li span { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col li a:hover { color: var(--orange); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ─── Page intérieure ─────────────────────────────────────────── */
.page-hero { background: linear-gradient(160deg, var(--dark), #0F1729); padding: 120px 0 60px; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 540px; margin: 0 auto; }
.page-hero-badge { display: inline-block; background: var(--orange); color: var(--white); padding: 4px 14px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.page-content { max-width: 780px; margin: 0 auto; padding: 64px 24px; }
.page-content h2 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 14px; color: var(--dark); }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 1.1rem; font-weight: 700; margin: 28px 0 10px; color: var(--dark); }
.page-content p { font-size: 0.95rem; color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }
.page-content ul { padding-left: 20px; margin-bottom: 16px; }
.page-content ul li { font-size: 0.95rem; color: var(--text-2); line-height: 1.8; list-style: disc; margin-bottom: 6px; }
.page-content strong { color: var(--text); }
.page-content a { color: var(--orange); text-decoration: underline; }
.page-content .info-box { background: var(--orange-light); border-left: 4px solid var(--orange); border-radius: 8px; padding: 16px 20px; margin: 24px 0; }
.page-content .info-box p { color: var(--orange-dark); margin: 0; font-weight: 500; }

/* ─── Support ─────────────────────────────────────────────────── */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; cursor: pointer; font-weight: 600; font-size: 0.95rem; background: var(--white); transition: background var(--transition); }
.faq-q:hover { background: var(--bg); }
.faq-q span { transition: transform var(--transition); font-size: 1.2rem; color: var(--orange); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.35s ease; background: var(--white); }
.faq-a p { padding: 4px 0 18px; color: var(--text-2); font-size: 0.92rem; line-height: 1.7; }
.faq-item.open .faq-q { background: var(--orange-light); color: var(--orange); }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-item.open .faq-a { max-height: 300px; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 40px 0; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-align: center; }
.contact-icon { font-size: 2.2rem; margin-bottom: 12px; }
.contact-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.contact-card p { font-size: 0.85rem; color: var(--text-2); margin-bottom: 14px; }
.contact-card a { color: var(--orange); font-weight: 600; font-size: 0.9rem; text-decoration: none; }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); text-align: center; }
  .provider-split { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px 40px; }
  .hero-visual { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); justify-content: center; align-items: center; gap: 32px; z-index: 999; }
  .nav-links.mobile-open a { font-size: 1.5rem; color: var(--white); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial--featured { transform: none; }
  .download-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-enterprise { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
