/*
Theme Name: Mediatik
Theme URI: https://agencemediatik.com
Author: Agence uPerf
Author URI: https://u-perf.com
Description: Thème WordPress premium pour Mediatik - Agence Média. Design sombre avec dégradé orange-rose, glassmorphism, animations scroll reveal, typographie Clash Display.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mediatik
*/

/* ============================================
   DESIGN TOKENS — Mediatik 2026
   ============================================ */
:root {
  /* Couleurs principales */
  --clr-bg-dark: #0a0a0a;
  --clr-bg-light: #faf5f0;
  --clr-bg-card: rgba(255,255,255,0.04);
  --clr-text-light: #f5f0eb;
  --clr-text-dark: #1a1a1a;
  --clr-text-muted: rgba(255,255,255,0.6);
  --clr-text-muted-dark: rgba(0,0,0,0.6);

  /* Gradient Mediatik */
  --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;
  --clr-teal: #2DD4BF;

  /* Glassmorphism */
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --glass-blur: 12px;

  /* Typographie */
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Clash Display', system-ui, sans-serif;

  /* Spacing */
  --section-py: 6rem;
  --container-max: 1280px;
  --radius: 0.75rem;
}

/* ============================================
   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;
}

.section-dark {
  background: var(--clr-bg-dark);
  color: var(--clr-text-light);
  padding: var(--section-py) 0;
}

.section-light {
  background: var(--clr-bg-light);
  color: var(--clr-text-dark);
  padding: var(--section-py) 0;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  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.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--clr-text-light);
}

.badge-light {
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--clr-text-dark);
}

.badge-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-coral);
}

/* ============================================
   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);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.75rem 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.navbar-logo .logo-mediati {
  color: #fff;
}
.navbar-logo .logo-k {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar-links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .navbar-links { display: flex; }
}
.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.navbar-links a:hover {
  color: #fff;
}
.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--gradient-main);
  transition: opacity 0.3s, transform 0.3s;
}
.navbar-cta:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Mobile menu */
.navbar-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle { display: none; }
}
.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.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: 2rem;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--clr-bg-dark);
  padding-top: 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,179,71,0.3), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(232,88,122,0.2), transparent 60%);
}
.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.95;
  margin-bottom: 1.5rem;
}
.hero-title .line {
  display: block;
}
.hero-title .line-white {
  color: #fff;
  font-size: clamp(2.5rem, 8vw, 6rem);
}
.hero-title .line-gradient {
  font-size: clamp(2.5rem, 8vw, 6rem);
}
.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero-big-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 15vw, 14rem);
  text-transform: uppercase;
  letter-spacing: -0.05em;
  white-space: nowrap;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: 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: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}
.btn-dark {
  color: #fff;
  background: var(--clr-bg-dark);
}
.btn-dark:hover {
  background: #1a1a1a;
}

/* ============================================
   MEDIA PARTNERS (fond clair)
   ============================================ */
.media-partners {
  background: var(--clr-bg-light);
  padding: var(--section-py) 0;
  text-align: center;
}
.media-partners h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--clr-text-dark);
  margin-bottom: 1rem;
}
.media-partners h2 .gradient-text-dark {
  display: block;
}
.media-partners p {
  color: var(--clr-text-muted-dark);
  max-width: 600px;
  margin: 0 auto 3rem;
}
.marquee-container {
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
}
.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--clr-bg-light), transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-bg-light), transparent);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--clr-text-dark);
  white-space: nowrap;
}

/* ============================================
   SERVICES SECTION (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.5rem);
  color: #fff;
  margin-bottom: 1rem;
}
.services-section p.subtitle {
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  transition: all 0.4s ease;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}
.service-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: #fff;
}
.service-card p {
  color: var(--clr-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}
.service-card.geo-card {
  background: var(--gradient-main);
  border: none;
}
.service-card.geo-card h3,
.service-card.geo-card p {
  color: #fff;
}

/* ============================================
   ARGUMENT SECTION (fond clair)
   ============================================ */
.argument-section {
  background: var(--clr-bg-light);
  padding: var(--section-py) 0;
}
.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);
  text-align: center;
  margin-bottom: 3rem;
}
.arguments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.argument-card {
  padding: 2rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.argument-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.argument-card .number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
}
.argument-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  margin: 0.75rem 0;
  color: var(--clr-text-dark);
}
.argument-card p {
  color: var(--clr-text-muted-dark);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================
   GEO IMPACT SECTION (fond noir)
   ============================================ */
.geo-impact {
  background: var(--clr-bg-dark);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.geo-impact .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.geo-impact h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 6vw, 4rem);
  color: #fff;
  margin-bottom: 1rem;
}
.geo-impact h2 .gradient-text {
  display: block;
}
.geo-impact p.subtitle {
  color: var(--clr-text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.0625rem;
}
.geo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .geo-layout { grid-template-columns: 1fr; }
}
.orbit-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
  margin: 0 auto;
}
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,179,71,0.3), rgba(232,88,122,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.orbit-center span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #fff;
}
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,179,71,0.15);
}
.orbit-ring-1 { width: 200px; height: 200px; }
.orbit-ring-2 { width: 300px; height: 300px; }
.orbit-ring-3 { width: 400px; height: 400px; }

.ai-badge {
  position: absolute;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,179,71,0.2);
  backdrop-filter: blur(8px);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.ai-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.step-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,179,71,0.2);
}
.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
}
.step-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.25rem;
}
.step-content p {
  color: var(--clr-text-muted);
  font-size: 0.8125rem;
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
@media (max-width: 640px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
.stat-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--gradient-main);
  text-align: center;
}
.stat-card .stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
}
.stat-card .stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
}

/* ============================================
   REPORTAGES SECTION (fond noir)
   ============================================ */
.reportages-section {
  background: var(--clr-bg-dark);
  padding: var(--section-py) 0;
}
.reportages-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.reportages-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: #fff;
  margin-bottom: 1rem;
}
.reportages-section p.subtitle {
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.reportages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.reportage-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}
.reportage-card:hover {
  transform: scale(1.02);
  border-color: rgba(255,179,71,0.3);
  box-shadow: 0 0 30px rgba(255,122,61,0.15);
}
.reportage-card video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.reportage-card:hover video {
  transform: scale(1.1);
}
.reportage-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
.reportage-card .card-overlay h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  color: #fff;
}
.reportage-card .rec-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.reportage-card .rec-badge .rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse-rec 1.5s infinite;
}
@keyframes pulse-rec {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================
   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.5rem);
  color: var(--clr-text-dark);
  margin-bottom: 1rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  padding: 2rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.testimonial-stars .star {
  color: var(--clr-orange);
  font-size: 1rem;
}
.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--clr-text-muted-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  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-author-info .name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--clr-text-dark);
}
.testimonial-author-info .role {
  font-size: 0.75rem;
  color: var(--clr-text-muted-dark);
}

/* ============================================
   FAQ SECTION (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, 3.5rem);
  color: #fff;
  margin-bottom: 1rem;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border-radius: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.active {
  border-color: rgba(255,179,71,0.2);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}
.faq-question .icon {
  flex-shrink: 0;
  transition: transform 0.3s;
  font-size: 1.25rem;
  color: var(--clr-coral);
}
.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--clr-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   CONTACT SECTION (fond clair)
   ============================================ */
.contact-section {
  background: var(--clr-bg-light);
  padding: var(--section-py) 0;
}
.contact-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-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);
  margin-bottom: 1rem;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form .form-group {
  margin-bottom: 1.25rem;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--clr-text-dark);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--clr-text-dark);
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--clr-coral);
  box-shadow: 0 0 0 3px rgba(255,122,61,0.1);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--clr-bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: var(--clr-text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col ul a {
  color: var(--clr-text-muted);
  font-size: 0.875rem;
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-bottom p {
  color: var(--clr-text-muted);
  font-size: 0.8125rem;
}
.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}
.footer-credit img {
  height: 20px;
  opacity: 0.6;
}
.footer-credit a {
  color: var(--clr-text-muted);
  transition: color 0.3s;
}
.footer-credit a:hover {
  color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-py: 4rem;
  }
  .hero-title .line-white,
  .hero-title .line-gradient {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
  .geo-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .orbit-container {
    max-width: 300px;
  }
}
