/* ============================================
   DESIGN TOKENS — Mediatik Kapsul DA 2026
   ============================================ */
:root {
  --clr-bg-dark: #0a0a0a;
  --clr-bg-light: #F5F0E8;
  --clr-bg-card-dark: #141414;
  --clr-text-light: #F5F0E8;
  --clr-text-dark: #0a0a0a;
  --clr-text-muted-light: rgba(245,240,232,0.5);
  --clr-text-muted-dark: rgba(10,10,10,0.5);
  --gradient-main: linear-gradient(135deg, #FFB347 0%, #FF7A3D 40%, #E8587A 100%);
  --gradient-main-dark: linear-gradient(135deg, #D4891C 0%, #c44a10 40%, #b02050 100%);
  --clr-orange: #FFB347;
  --clr-coral: #FF7A3D;
  --clr-rose: #E8587A;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Clash Display', system-ui, sans-serif;
  --section-py: 6rem;
  --container-max: 1280px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); color: var(--clr-text-light); background: var(--clr-bg-dark); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   UTILITIES
   ============================================ */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.font-display { font-family: var(--font-display); }
.gradient-text { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-text-dark { background: var(--gradient-main-dark); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-bg { background: var(--gradient-main); }

.gradient-border { position: relative; background: transparent; border: none; }
.gradient-border::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: var(--gradient-main);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

@property --gradient-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes gradient-rotate { 0% { --gradient-angle: 0deg; } 100% { --gradient-angle: 360deg; } }
.animated-gradient-border { position: relative; background: transparent; }
.animated-gradient-border::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: conic-gradient(from var(--gradient-angle, 0deg), #FFB347, #FF7A3D, #E8587A, #FFB347);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
  animation: gradient-rotate 3s linear infinite;
}

/* Badge pill */
.badge-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-dark { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(245,240,232,0.8); }
.badge-light { background: rgba(10,10,10,0.05); border: 1px solid rgba(10,10,10,0.1); color: rgba(10,10,10,0.6); }
.badge-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gradient-main); flex-shrink: 0; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #FFB347, #E8587A); border-radius: 3px; }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: calc(100% - 2rem); max-width: 72rem;
}
.navbar-inner {
  border-radius: 9999px; padding: 0.75rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s ease;
  background: rgba(17,17,17,0.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.05);
}
.navbar.scrolled .navbar-inner {
  background: rgba(10,10,10,0.95); backdrop-filter: blur(24px);
  border-color: rgba(255,255,255,0.1); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.navbar-logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; text-transform: uppercase; letter-spacing: -0.02em; }
.navbar-links { display: none; list-style: none; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .navbar-links { display: flex; } }
.navbar-links a { font-size: 0.875rem; font-weight: 500; color: rgba(245,240,232,0.7); transition: color 0.3s; }
.navbar-links a:hover { color: var(--clr-text-light); }
.navbar-cta {
  display: none; border-radius: 9999px; padding: 0.625rem 1.5rem;
  font-size: 0.875rem; font-weight: 600; color: var(--clr-text-light);
  background: #111; transition: background 0.3s;
}
@media (min-width: 1024px) { .navbar-cta { display: inline-flex; align-items: center; gap: 0.5rem; } }
.navbar-cta:hover { background: #1a1a1a; }
.navbar-toggle { display: flex; background: none; border: none; cursor: pointer; padding: 4px; color: var(--clr-text-light); }
@media (min-width: 1024px) { .navbar-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: rgba(245,240,232,0.7); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--clr-text-light); }
.mobile-menu .mobile-cta {
  display: block; text-align: center; background: var(--gradient-main);
  border-radius: 9999px; padding: 0.75rem 1.5rem; font-size: 0.875rem;
  font-weight: 600; color: #fff; margin-top: 1rem;
}
.mobile-menu-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; overflow: hidden; background: var(--clr-bg-dark);
  padding-top: 6rem; padding-bottom: 2rem;
}
.hero-bg {
  position: absolute; inset: 0; opacity: 0.3;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(255,179,71,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 50% 60%, rgba(255,122,61,0.1) 0%, transparent 70%);
}
.hero .container { position: relative; text-align: center; z-index: 2; }
.hero-title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.03em; line-height: 0.92; margin-bottom: 2rem;
}
.hero-title .line { display: block; }
.hero-title .line-white { color: var(--clr-text-light); font-size: clamp(2rem, 6.5vw, 5.5rem); }
.hero-title .line-gradient { font-size: clamp(2rem, 6.5vw, 5.5rem); }
.hero-subtitle {
  font-size: 1.125rem; color: rgba(245,240,232,0.6); max-width: 42rem;
  margin: 0 auto 2.5rem; line-height: 1.7;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 4rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  max-width: 48rem; margin: 0 auto;
}
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat { text-align: center; }
.hero-stat-value { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.25rem); }
.hero-stat-label { color: rgba(245,240,232,0.4); font-size: 0.75rem; margin-top: 0.25rem; line-height: 1.3; }

/* Giant MEDIATIK text */
.hero-giant-text { position: relative; margin-top: 4rem; overflow: hidden; }
.hero-giant-text svg { width: 100%; height: auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2rem; border-radius: 9999px; font-size: 1rem;
  font-weight: 600; transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn-gradient { color: #fff; background: var(--gradient-main); }
.btn-gradient:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,122,61,0.3); }
.btn-outline { color: var(--clr-text-light); background: transparent; }
.btn-outline.gradient-border:hover { background: rgba(255,255,255,0.05); }
.btn-sm { padding: 0.875rem 2rem; font-size: 0.875rem; }

/* ============================================
   MEDIA PARTNERS (fond clair)
   ============================================ */
.media-partners { background: var(--clr-bg-light); padding: 5rem 0; overflow: hidden; position: relative; }
.media-partners .section-header { text-align: center; margin-bottom: 2.5rem; }
.media-partners h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.03em; font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--clr-text-dark); margin-bottom: 0.75rem;
}
.media-partners p.subtitle { color: var(--clr-text-muted-dark); max-width: 36rem; margin: 0 auto; font-size: 1rem; }

.marquee-row { position: relative; overflow: hidden; padding: 0.75rem 0; }
.marquee-track { display: flex; gap: 2rem; white-space: nowrap; width: max-content; }
.marquee-track-left { animation: marquee-left 40s linear infinite; }
.marquee-track-right { animation: marquee-right 40s linear infinite; }
@keyframes marquee-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marquee-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.125rem;
  color: rgba(10,10,10,0.2); text-transform: uppercase; letter-spacing: 0.05em;
  transition: color 0.3s;
}
.marquee-item:hover { color: rgba(10,10,10,0.6); }
.marquee-item .marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,122,61,0.4); flex-shrink: 0; }

.media-partners .fade-left, .media-partners .fade-right {
  position: absolute; top: 0; bottom: 0; width: 6rem; z-index: 10; pointer-events: none;
}
.media-partners .fade-left { left: 0; background: linear-gradient(to right, var(--clr-bg-light), transparent); }
.media-partners .fade-right { right: 0; background: linear-gradient(to left, var(--clr-bg-light), transparent); }

/* ============================================
   SERVICES (fond noir)
   ============================================ */
.services-section { background: var(--clr-bg-dark); padding: var(--section-py) 0; }
.services-section .section-header { text-align: center; margin-bottom: 4rem; }
.services-section h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.03em; font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--clr-text-light); margin-bottom: 1rem;
}
.services-section p.subtitle { color: var(--clr-text-muted-light); max-width: 42rem; margin: 0 auto; font-size: 1.125rem; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative; padding: 1.75rem; border-radius: 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all 0.5s ease; overflow: hidden; height: 100%;
  backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.06);
}
.service-card:hover { transform: scale(1.02); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.service-card .card-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: transform 0.3s;
}
.service-card:hover .card-icon { transform: scale(1.1); }
.service-card .card-label {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: rgba(245,240,232,0.5); margin-bottom: 0.5rem;
}
.service-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  color: var(--clr-text-light); margin-bottom: 1rem;
}
.service-card p { color: rgba(245,240,232,0.5); font-size: 0.875rem; line-height: 1.6; margin-bottom: 2rem; }
.service-card .card-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 700; color: var(--clr-text-light); transition: gap 0.3s;
  margin-top: auto;
}
.service-card:hover .card-cta { gap: 0.75rem; }

/* GEO card special */
.service-card.geo-card {
  background: linear-gradient(145deg, #FFB347 0%, #FF7A3D 35%, #E8587A 70%, #D946A8 100%) !important;
  border: none !important;
}
.service-card.geo-card .card-label { color: rgba(255,255,255,0.7); }
.service-card.geo-card h3, .service-card.geo-card p { color: #fff; }
.service-card.geo-card p { color: rgba(255,255,255,0.8); }
.service-card.geo-card .card-cta { color: #fff; }
.service-card.geo-card .card-icon { background: rgba(255,255,255,0.2) !important; backdrop-filter: blur(8px); }
.service-card.geo-card:hover { transform: scale(1.03); }

.service-card.geo-card .shimmer-overlay {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  background-size: 200% 100%; pointer-events: none;
}
.service-card.geo-card:hover .shimmer-overlay { opacity: 0.3; animation: shimmer 2s ease-in-out infinite; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ============================================
   ARGUMENT (fond clair)
   ============================================ */
.argument-section { background: var(--clr-bg-light); padding: var(--section-py) 0; }
.argument-layout { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .argument-layout { grid-template-columns: 1fr 1fr; } }
.argument-section h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.03em; font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--clr-text-dark); line-height: 1.1; margin-bottom: 1rem;
}
.argument-section .arg-subtitle {
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
  color: rgba(10,10,10,0.8); margin-bottom: 1rem;
}
.argument-section .arg-desc {
  color: var(--clr-text-muted-dark); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; max-width: 32rem;
}
.arg-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.arg-badge {
  display: flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px; background: rgba(10,10,10,0.05); border: 1px solid rgba(10,10,10,0.1);
  padding: 0.5rem 1rem;
}
.arg-badge svg { color: var(--clr-coral); width: 14px; height: 14px; }
.arg-badge span { font-size: 0.875rem; color: rgba(10,10,10,0.7); }

/* SERP Mockup */
.serp-mockup {
  border-radius: 1rem; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.serp-chrome {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem; background: #222; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.serp-dots { display: flex; gap: 0.375rem; }
.serp-dots span { width: 0.75rem; height: 0.75rem; border-radius: 50%; }
.serp-dots .dot-red { background: #FF5F56; }
.serp-dots .dot-yellow { background: #FFBD2E; }
.serp-dots .dot-green { background: #27C93F; }
.serp-url-bar {
  flex: 1; margin-left: 1rem; border-radius: 0.375rem; background: #333;
  padding: 0.375rem 0.75rem; font-size: 0.75rem; color: rgba(245,240,232,0.4); font-family: monospace;
}
.serp-results { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.serp-result { border-radius: 0.75rem; padding: 1rem; transition: all 0.3s; }
.serp-result-highlighted {
  background: linear-gradient(to right, rgba(255,179,71,0.1), rgba(232,88,122,0.1));
  border: 1px solid rgba(255,179,71,0.3);
}
.serp-result-normal { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); }
.serp-result .result-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.25rem; }
.serp-result .result-num {
  width: 1.5rem; height: 1.5rem; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.serp-result-highlighted .result-num { background: var(--gradient-main); color: #fff; }
.serp-result-normal .result-num { background: rgba(255,255,255,0.1); color: rgba(245,240,232,0.5); }
.serp-result .result-url { font-size: 0.75rem; color: rgba(245,240,232,0.4); font-family: monospace; }
.serp-result .result-title { font-size: 0.875rem; font-weight: 500; margin-left: 2.25rem; }
.serp-result-highlighted .result-title { color: var(--clr-text-light); }
.serp-result-normal .result-title { color: rgba(245,240,232,0.6); }
.serp-bottom-text { text-align: center; font-size: 0.75rem; font-weight: 600; margin-top: 1rem; }

/* ============================================
   GEO IMPACT (fond noir)
   ============================================ */
.geo-impact { background: var(--clr-bg-dark); padding: 7rem 0; position: relative; overflow: hidden; }
.geo-impact .section-header { text-align: center; margin-bottom: 1.5rem; }
.geo-impact h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.03em; font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--clr-text-light); margin-bottom: 1.5rem;
}
.geo-impact p.subtitle { color: var(--clr-text-muted-light); max-width: 42rem; margin: 0 auto; font-size: 1.125rem; }

.geo-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; margin-bottom: 5rem; }
@media (min-width: 1024px) { .geo-layout { grid-template-columns: 1fr 1fr; } }

/* Orbit */
.orbit-container { position: relative; width: 100%; aspect-ratio: 1; max-width: 32rem; margin: 0 auto; }
.orbit-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.orbit-ring-1 { width: calc(100% - 2rem); height: calc(100% - 2rem); border-color: rgba(255,255,255,0.08); animation: orbit-spin 60s linear infinite; }
.orbit-ring-2 { width: calc(100% - 6rem); height: calc(100% - 6rem); border-color: rgba(255,255,255,0.1); animation: orbit-spin-reverse 45s linear infinite; }
.orbit-ring-3 { width: calc(100% - 10rem); height: calc(100% - 10rem); border-color: rgba(255,255,255,0.12); animation: orbit-spin 30s linear infinite; }
@keyframes orbit-spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbit-spin-reverse { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(-360deg); } }
.orbit-ring .ring-dot { position: absolute; top: -4px; left: 50%; transform: translateX(-50%); width: 8px; height: 8px; border-radius: 50%; }

.orbit-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 8rem; height: 8rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(135deg, #FFB347 0%, #FF7A3D 50%, #E8587A 100%);
  box-shadow: 0 0 60px rgba(255,179,71,0.3), 0 0 120px rgba(232,88,122,0.15), inset 0 2px 20px rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.2); z-index: 5;
}
@media (min-width: 768px) { .orbit-center { width: 9rem; height: 9rem; } }
.orbit-center .center-text-sm { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; font-size: 0.875rem; }
.orbit-center .center-text-lg { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; font-size: 1.25rem; }

/* Pulse rings */
.orbit-pulse {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px solid rgba(255,179,71,0.15); pointer-events: none;
}
.orbit-pulse-1 { animation: orbit-pulse 4s ease-out infinite; }
.orbit-pulse-2 { animation: orbit-pulse 4s ease-out infinite 1.3s; }
.orbit-pulse-3 { animation: orbit-pulse 4s ease-out infinite 2.6s; }
@keyframes orbit-pulse { 0% { width: 10rem; height: 10rem; opacity: 0.3; } 100% { width: 25rem; height: 25rem; opacity: 0; } }

/* AI badges */
.ai-badge {
  position: absolute; padding: 0.625rem 1.25rem; border-radius: 9999px;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,179,71,0.3);
  backdrop-filter: blur(12px); font-size: 0.875rem; font-weight: 700;
  color: var(--clr-text-light); white-space: nowrap;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 0 20px rgba(255,179,71,0.1), 0 4px 12px rgba(0,0,0,0.3);
  z-index: 10;
}
.ai-badge .badge-icon { font-size: 0.75rem; opacity: 0.7; }
@keyframes float-badge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.ai-badge:nth-child(1) { animation: float-badge 3s ease-in-out infinite; }
.ai-badge:nth-child(2) { animation: float-badge 3.5s ease-in-out infinite 0.5s; }
.ai-badge:nth-child(3) { animation: float-badge 4s ease-in-out infinite 1s; }
.ai-badge:nth-child(4) { animation: float-badge 3.2s ease-in-out infinite 1.5s; }
.ai-badge:nth-child(5) { animation: float-badge 3.8s ease-in-out infinite 2s; }

/* Steps */
.geo-steps h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  text-transform: uppercase; letter-spacing: -0.02em; color: var(--clr-text-light); margin-bottom: 2rem;
}
@media (min-width: 768px) { .geo-steps h3 { font-size: 1.875rem; } }
.step-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.25rem; border-radius: 1rem; transition: all 0.3s; position: relative;
}
.step-item:hover { background: rgba(255,255,255,0.05); }
.step-number {
  flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(245,240,232,0.6);
}
.step-item-last .step-number {
  background: linear-gradient(135deg, #FFB347, #E8587A);
  border: 1.5px solid rgba(255,179,71,0.3); color: #fff;
}
.step-content { flex: 1; padding-top: 0.25rem; }
.step-content h4 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.125rem;
  color: var(--clr-text-light); margin-bottom: 0.25rem;
}
@media (min-width: 768px) { .step-content h4 { font-size: 1.25rem; } }
.step-content p { color: rgba(245,240,232,0.4); font-size: 0.875rem; }
.step-connector {
  position: absolute; left: calc(1.25rem + 1.5rem); top: calc(1.25rem + 3rem);
  width: 1px; height: 1.25rem;
  background: linear-gradient(to bottom, rgba(255,179,71,0.3), transparent);
}

/* Stats */
.geo-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .geo-stats { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.geo-stat-card {
  text-align: center; padding: 1.5rem; border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.03); transition: all 0.3s;
}
.geo-stat-card:hover { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); }
.geo-stat-card .stat-value {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 0.5rem;
}
.geo-stat-card .stat-label { font-size: 0.75rem; color: rgba(245,240,232,0.4); line-height: 1.5; }

/* Glows */
.geo-glow-1 {
  position: absolute; top: 25%; left: 25%; width: 500px; height: 500px;
  border-radius: 50%; filter: blur(150px); background: rgba(255,122,61,0.08);
  animation: glow-pulse 6s ease-in-out infinite; pointer-events: none;
}
.geo-glow-2 {
  position: absolute; bottom: 25%; right: 25%; width: 400px; height: 400px;
  border-radius: 50%; filter: blur(120px); background: rgba(232,88,122,0.06);
  animation: glow-pulse 6s ease-in-out infinite 3s; pointer-events: none;
}
@keyframes glow-pulse { 0%, 100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.2); opacity: 0.5; } }

/* ============================================
   REPORTAGES (fond noir)
   ============================================ */
.reportages-section { background: var(--clr-bg-dark); padding: 7rem 0; position: relative; overflow: hidden; }
.reportages-header { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 1024px) { .reportages-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.reportages-header .header-left { max-width: 42rem; }
.reportages-header h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.03em; font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--clr-text-light); margin-bottom: 1.25rem;
}
.reportages-header p.subtitle { color: var(--clr-text-muted-light); font-size: 1.125rem; line-height: 1.7; }
.reportages-stats { display: flex; gap: 1.5rem; }
@media (min-width: 1024px) { .reportages-stats { flex-direction: column; gap: 1rem; align-items: flex-end; } }
.reportage-stat { display: flex; align-items: center; gap: 0.75rem; }
.reportage-stat .stat-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; display: flex;
  align-items: center; justify-content: center; background: rgba(255,179,71,0.15);
}
.reportage-stat .stat-icon svg { color: var(--clr-orange); width: 18px; height: 18px; }
.reportage-stat .stat-value { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--clr-text-light); }
.reportage-stat .stat-label { font-size: 0.75rem; color: rgba(245,240,232,0.4); }

.reportages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .reportages-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.reportage-card { position: relative; border-radius: 1rem; overflow: hidden; cursor: pointer; aspect-ratio: 9/14; }
.reportage-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.reportage-card:hover video { transform: scale(1.1); }
.reportage-card .card-overlay {
  position: absolute; inset: 0; transition: all 0.7s;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.15) 100%);
}
.reportage-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 40%, transparent 100%);
}
.reportage-card .glow-border {
  position: absolute; inset: 0; border-radius: 1rem; opacity: 0; transition: opacity 0.5s; pointer-events: none;
  box-shadow: inset 0 0 0 2px rgba(255,179,71,0.4), 0 0 30px rgba(255,179,71,0.15);
}
.reportage-card:hover .glow-border { opacity: 1; }
.reportage-card .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 4rem; height: 4rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,179,71,0.9), rgba(232,88,122,0.9));
  box-shadow: 0 0 40px rgba(255,179,71,0.3); transition: all 0.3s; z-index: 5;
}
.reportage-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.15); }
.reportage-card .rec-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 10;
  display: flex; align-items: center; gap: 0.375rem;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1);
}
.reportage-card .rec-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: #ef4444; animation: pulse-rec 1.5s infinite; }
@keyframes pulse-rec { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.reportage-card .rec-badge span { font-size: 0.625rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; }
.reportage-card .card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; z-index: 5; }
.reportage-card .card-info .location { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.reportage-card .card-info .location svg { color: var(--clr-orange); width: 12px; height: 12px; }
.reportage-card .card-info .location span { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; }
.reportage-card .card-info h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; color: #fff; text-transform: uppercase; letter-spacing: -0.02em; }

/* CTA bar */
.reportages-cta-bar {
  margin-top: 3rem; display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; gap: 1.5rem; padding: 1.5rem;
  border-radius: 1rem; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02);
}
@media (min-width: 640px) { .reportages-cta-bar { flex-direction: row; } }
.reportages-cta-bar .bar-left { display: flex; align-items: center; gap: 1rem; }
.reportages-cta-bar .bar-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem; display: flex;
  align-items: center; justify-content: center; background: linear-gradient(135deg, #FFB347, #E8587A); flex-shrink: 0;
}
.reportages-cta-bar .bar-icon svg { color: #fff; width: 20px; height: 20px; }
.reportages-cta-bar .bar-title { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; color: var(--clr-text-light); text-transform: uppercase; letter-spacing: -0.02em; }
.reportages-cta-bar .bar-subtitle { font-size: 0.875rem; color: rgba(245,240,232,0.4); }
.reportages-cta-bar .bar-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 700;
  font-size: 0.875rem; color: #fff; text-transform: uppercase; letter-spacing: 0.05em;
  background: linear-gradient(135deg, #FFB347, #FF7A3D, #E8587A);
  box-shadow: 0 0 20px rgba(255,179,71,0.2); transition: transform 0.3s; white-space: nowrap;
}
.reportages-cta-bar .bar-btn:hover { transform: scale(1.05); }

/* ============================================
   TESTIMONIALS (fond clair)
   ============================================ */
.testimonials-section { background: var(--clr-bg-light); padding: var(--section-py) 0; }
.testimonials-section .section-header { text-align: center; margin-bottom: 3rem; }
.testimonials-section h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.03em; font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--clr-text-dark); margin-bottom: 1rem;
}
.testimonials-section p.subtitle { color: var(--clr-text-muted-dark); font-size: 1.125rem; max-width: 42rem; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  padding: 1.5rem; border-radius: 1rem; background: #fff;
  border: 1px solid rgba(10,10,10,0.05); transition: all 0.3s; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.testimonial-card:hover { border-color: rgba(10,10,10,0.1); }
.testimonial-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; color: #fff;
}
.testimonial-name { font-weight: 600; font-size: 0.875rem; color: var(--clr-text-dark); }
.testimonial-role { font-size: 0.75rem; color: rgba(10,10,10,0.4); }
.google-badge {
  width: 1.5rem; height: 1.5rem; border-radius: 50%; background: rgba(10,10,10,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: rgba(10,10,10,0.4);
}
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testimonial-stars svg { width: 14px; height: 14px; fill: var(--clr-coral); color: var(--clr-coral); }
.testimonial-text { font-size: 0.875rem; color: rgba(10,10,10,0.6); line-height: 1.7; }

/* Carousel nav */
.testimonial-nav { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2rem; align-items: center; }
.nav-btn {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 1px solid rgba(10,10,10,0.1); background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: rgba(10,10,10,0.5); cursor: pointer; transition: all 0.3s;
}
.nav-btn:hover { color: var(--clr-text-dark); border-color: rgba(10,10,10,0.2); }
.nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.testimonial-dots { display: flex; gap: 0.5rem; align-items: center; }
.testimonial-dots button {
  width: 0.5rem; height: 0.5rem; border-radius: 9999px;
  background: rgba(10,10,10,0.2); cursor: pointer; transition: all 0.3s; border: none; padding: 0;
}
.testimonial-dots button.active { width: 1.5rem; background: var(--gradient-main); }

/* CTA section */
.testimonials-cta {
  text-align: center; margin-top: 5rem; padding-top: 4rem;
  border-top: 1px solid rgba(10,10,10,0.05);
}
.testimonials-cta h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 3rem); text-transform: uppercase;
  letter-spacing: -0.03em; color: var(--clr-text-dark); margin-bottom: 1rem;
}
.testimonials-cta p { color: var(--clr-text-muted-dark); font-size: 1rem; max-width: 42rem; margin: 0 auto 2rem; }

/* ============================================
   FAQ (fond noir)
   ============================================ */
.faq-section { background: var(--clr-bg-dark); padding: var(--section-py) 0; }
.faq-section .section-header { text-align: center; margin-bottom: 3rem; }
.faq-section h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.03em; font-size: clamp(2rem, 5vw, 3rem);
  color: var(--clr-text-light); margin-bottom: 1rem;
}
.faq-section p.subtitle { color: var(--clr-text-muted-light); font-size: 1.125rem; }
.faq-container { max-width: 48rem; margin: 0 auto; }
.faq-list {
  border-radius: 1rem; background: var(--clr-bg-card-dark);
  border: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 2rem;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; background: none; border: none;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  text-align: left; cursor: pointer; color: var(--clr-text-light); transition: color 0.3s;
}
@media (min-width: 768px) { .faq-question { font-size: 1.125rem; } }
.faq-question .chevron {
  flex-shrink: 0; margin-left: 1rem; transition: transform 0.3s;
  color: rgba(245,240,232,0.4); width: 20px; height: 20px;
}
.faq-item.active .faq-question .chevron { transform: rotate(180deg); color: var(--clr-coral); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 0 1.25rem; padding-right: 2rem; color: var(--clr-text-muted-light); font-size: 0.875rem; line-height: 1.7; }

/* ============================================
   CONTACT (fond clair)
   ============================================ */
.contact-section { background: var(--clr-bg-light); padding: var(--section-py) 0; }
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 1fr; } }
.contact-section h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.03em; font-size: clamp(2rem, 5vw, 3rem);
  color: var(--clr-text-dark); line-height: 1.1; margin-bottom: 1rem;
}
.contact-desc { color: var(--clr-text-muted-dark); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 32rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-info-item { display: flex; align-items: center; gap: 1rem; }
.contact-info-item .info-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: rgba(10,10,10,0.05); border: 1px solid rgba(10,10,10,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-item .info-icon svg { color: var(--clr-coral); width: 20px; height: 20px; }
.contact-info-item .info-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(10,10,10,0.4); margin-bottom: 2px; }
.contact-info-item .info-value { color: var(--clr-text-dark); font-weight: 500; }
.contact-info-item .info-value a { transition: color 0.3s; }
.contact-info-item .info-value a:hover { color: var(--clr-coral); }
.contact-guarantees { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-guarantee { display: flex; align-items: center; gap: 0.75rem; }
.contact-guarantee svg { color: var(--clr-coral); flex-shrink: 0; width: 16px; height: 16px; }
.contact-guarantee span { font-size: 0.875rem; color: rgba(10,10,10,0.6); }

.contact-form-card {
  border-radius: 1rem; background: #fff; border: 1px solid rgba(10,10,10,0.05);
  padding: 2rem; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.contact-form-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--clr-text-dark); margin-bottom: 1.5rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem;
  border: 1px solid rgba(10,10,10,0.1); background: rgba(10,10,10,0.03);
  font-family: var(--font-body); font-size: 0.875rem; color: var(--clr-text-dark); transition: border-color 0.3s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(10,10,10,0.3); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: rgba(255,122,61,0.5); }
.contact-form textarea { min-height: 120px; resize: none; }
.contact-form .btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--gradient-main); border: none; border-radius: 0.5rem;
  padding: 0.875rem 1.5rem; color: #fff; font-weight: 600; font-size: 0.875rem; cursor: pointer; transition: opacity 0.3s;
}
.contact-form .btn-submit:hover { opacity: 0.9; }
.form-disclaimer { text-align: center; font-size: 0.75rem; color: rgba(10,10,10,0.3); margin-top: 1rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--clr-bg-dark); border-top: 1px solid rgba(255,255,255,0.05); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer-brand .footer-logo { display: flex; align-items: center; margin-bottom: 1rem; }
.footer-brand .footer-logo span { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; text-transform: uppercase; }
.footer-brand > p { color: rgba(245,240,232,0.4); font-size: 0.875rem; line-height: 1.7; max-width: 20rem; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: rgba(245,240,232,0.5); transition: all 0.3s;
}
.footer-social a:hover { color: var(--clr-text-light); border-color: rgba(255,122,61,0.5); }
.footer-col h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.05em; color: rgba(245,240,232,0.6); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul a { color: rgba(245,240,232,0.4); font-size: 0.875rem; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--clr-text-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
}
.footer-bottom p { color: rgba(245,240,232,0.3); font-size: 0.75rem; }
.footer-credit a { transition: opacity 0.3s; }
.footer-credit a:hover { opacity: 0.8; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) { :root { --section-py: 4rem; } }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding-top: 8rem;
  padding-bottom: 4rem;
  min-height: 100vh;
  background: var(--clr-bg-dark);
}
.legal-header {
  margin-bottom: 3rem;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-text-muted-light);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.legal-back:hover {
  color: var(--clr-orange);
}
.legal-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.legal-updated {
  color: var(--clr-text-muted-light);
  font-size: 0.875rem;
}
.legal-content {
  max-width: 800px;
}
.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-section:last-child {
  border-bottom: none;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--clr-text-light);
}
.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--clr-text-light);
}
.legal-section p {
  color: rgba(245,240,232,0.75);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.legal-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}
.legal-section ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.7;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-main);
}
.legal-section a {
  color: var(--clr-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s;
}
.legal-section a:hover {
  color: var(--clr-coral);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.legal-table th,
.legal-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(245,240,232,0.75);
}
.legal-table th {
  color: var(--clr-text-light);
  font-weight: 600;
  background: rgba(255,255,255,0.03);
}
.legal-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

/* ============================================
   COOKIE CONSENT BANNER (RGPD)
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  padding: 1rem;
  animation: cookieSlideUp 0.4s ease-out;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
  max-width: 720px;
  width: 100%;
  background: rgba(20,20,20,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.5);
}
.cookie-banner-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.cookie-banner-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.cookie-banner-text h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-text-light);
  margin-bottom: 0.4rem;
}
.cookie-banner-text p {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
  margin-bottom: 0.3rem;
}
.cookie-banner-link {
  font-size: 0.8rem;
  color: var(--clr-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-link:hover {
  color: var(--clr-coral);
}
.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.cookie-btn-refuse {
  background: transparent;
  color: rgba(245,240,232,0.6);
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-btn-refuse:hover {
  color: var(--clr-text-light);
  border-color: rgba(255,255,255,0.25);
}
.cookie-btn-settings {
  background: transparent;
  color: var(--clr-text-light);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-btn-settings:hover {
  border-color: rgba(255,255,255,0.3);
}
.cookie-btn-accept {
  color: #fff;
}
.cookie-btn-accept:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Cookie Settings Panel */
.cookie-settings {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cookie-settings-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cookie-settings-row:last-of-type {
  border-bottom: none;
}
.cookie-settings-row strong {
  font-size: 0.9rem;
  color: var(--clr-text-light);
}
.cookie-settings-row p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  margin-top: 0.15rem;
}
.cookie-settings-save {
  margin-top: 1rem;
  text-align: right;
}

/* Cookie Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 24px;
  transition: 0.3s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--gradient-main);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

/* Cookie Badge */
.cookie-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  flex-shrink: 0;
}
.cookie-badge-required {
  background: rgba(255,179,71,0.15);
  color: var(--clr-orange);
}

/* Cookie Preferences Panel (page) */
.cookie-preferences-panel {
  background: var(--clr-bg-card-dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.cookie-category {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.cookie-category h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text-light);
  margin: 0;
}
.cookie-category p {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  margin-top: 0.25rem;
}
.cookie-save-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s;
}
.cookie-save-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Mobile responsive for cookie banner */
@media (max-width: 640px) {
  .cookie-banner {
    padding: 0.5rem;
  }
  .cookie-banner-inner {
    border-radius: 1rem;
    padding: 1.25rem;
  }
  .cookie-banner-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  .cookie-banner-actions {
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
  .cookie-settings-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .legal-table {
    font-size: 0.8rem;
  }
  .legal-table th,
  .legal-table td {
    padding: 0.5rem;
  }
}
