@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/archivo.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/manrope.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =========================================
   VARIABLES
   ========================================= */
/* Thème sombre (défaut) */
:root {
  --bg-dark:       #0a0b10;
  --bg-dark-alt:   #11141e;
  --bg-card:       #1a1d2e;
  --bg-card-light: #1e2235;
  --yellow:        #F9D65E;
  --yellow-dim:    rgba(249, 214, 94, 0.12);
  --white:         #ffffff;
  --white-muted:   rgba(255,255,255,0.65);
  --white-faint:   rgba(255,255,255,0.1);
  --text-dark:     #0a0b10;
  --logo-filter:   brightness(0) invert(1);

  --font-heading: 'Archivo', sans-serif;
  --font-body:    'Manrope', sans-serif;

  --max-w: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
}

/* Thème clair */
[data-theme="light"] {
  --bg-dark:       #ffffff;
  --bg-dark-alt:   #f4f5f7;
  --bg-card:       #ecedf2;
  --bg-card-light: #e4e5ec;
  --yellow:        #d4a800;
  --yellow-dim:    rgba(212, 168, 0, 0.1);
  --white:         #0a0b14;
  --white-muted:   rgba(10, 11, 20, 0.6);
  --white-faint:   rgba(10, 11, 20, 0.1);
  --text-dark:     #0a0b14;
  --logo-filter:   brightness(0);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* =========================================
   TYPOGRAPHY HELPERS
   ========================================= */
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
}

h1 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); }
h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h3 { font-size: clamp(1rem, 1.8vw, 1.2rem); }

.section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1.15;
}

.highlight { color: var(--yellow); }

/* =========================================
   LAYOUT
   ========================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 80px 0; }

@media (max-width: 767px) {
  section { padding: 56px 0; }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--yellow);
  color: var(--text-dark);
}
.btn--primary:hover { box-shadow: 0 6px 24px rgba(249,214,94,0.35); }

.btn--outline {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}
.btn--outline:hover { background: var(--yellow-dim); }

.btn--large { padding: 18px 40px; font-size: 1.1rem; }

/* =========================================
   HEADER / NAV
   ========================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.header.scrolled {
  background: rgba(10, 11, 16, 0.92);
  backdrop-filter: blur(12px);
  border-color: var(--white-faint);
}

[data-theme="light"] .header.scrolled {
  background: rgba(255, 255, 255, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav__logo img { height: 36px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white-muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

.btn--nav {
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 900px) {
  .nav__burger { display: flex; }

  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    top: 73px;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.2rem; color: var(--white); }
}

/* =========================================
   THEME TOGGLE BUTTON
   ========================================= */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--white-faint);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--yellow); background: var(--yellow-dim); }

.theme-toggle__icon { line-height: 1; }
.theme-toggle__icon--light { display: none; }

[data-theme="light"] .theme-toggle__icon--dark  { display: none; }
[data-theme="light"] .theme-toggle__icon--light { display: block; }

/* =========================================
   HERO
   ========================================= */
.hero {
  background: var(--bg-dark);
  padding: 80px 0 40px;
  overflow: hidden;
  position: relative;
}

/* Glow jaune en arrière-plan côté droit */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(249, 214, 94, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

[data-theme="light"] .hero::before {
  background: radial-gradient(ellipse at center, rgba(212, 168, 0, 0.15) 0%, transparent 70%);
}

.hero__inner { position: relative; z-index: 1; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.hero__content { max-width: 560px; }

.hero__tag {
  display: inline-block;
  background: var(--yellow-dim);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero h1 { margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: var(--yellow); }

.hero__subtitle {
  color: var(--white-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  font-weight: 500;
}
.hero__subtitle strong { color: var(--white); }

.hero__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.hero__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}
.hero__benefits li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero__image img {
  max-height: 560px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__content { max-width: 100%; }
  .hero__benefits { align-items: center; }
  .hero__image img { max-height: 360px; }
}

@media (max-width: 480px) {
  .hero { padding: 56px 0 32px; }
  .hero__image img { max-height: 280px; }
  .hero__benefits { align-items: flex-start; text-align: left; }
}

/* =========================================
   LOGOS CAROUSEL
   ========================================= */
.logos {
  background: var(--bg-dark);
  padding: 40px 0;
  border-top: 1px solid var(--white-faint);
  border-bottom: 1px solid var(--white-faint);
  overflow: hidden;
}

.logos__label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 28px;
}

.logos__wrapper { overflow: hidden; position: relative; }

.logos__track {
  display: flex;
  gap: 56px;
  width: max-content;
  align-items: center;
  animation: scroll-logos 30s linear infinite;
}
.logos__track:hover { animation-play-state: paused; }

@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logos__track img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: var(--logo-filter);
  opacity: 0.5;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.logos__track img:hover { opacity: 0.85; }

/* =========================================
   PROBLEM SECTION
   ========================================= */
.problem {
  background: var(--bg-dark-alt);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col--reverse .two-col__image { order: -1; }

.two-col__text h2 { margin-bottom: 16px; }
.two-col__text h3 { margin-bottom: 20px; font-weight: 700; color: var(--white-muted); }
.two-col__text p {
  color: var(--white-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.two-col__text p strong { color: var(--white); }
.two-col__text .btn { margin-top: 8px; }

.two-col__image img {
  width: 100%;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .two-col--reverse .two-col__image { order: 0; }
}

/* =========================================
   SOLUTION SECTION
   ========================================= */
.solution { background: var(--bg-dark); }

.solution__benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 32px;
}
.solution__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}
.solution__benefits li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================
   COMPARISON TABLE
   ========================================= */
.comparison { background: var(--bg-dark-alt); }

.comparison__head {
  text-align: center;
  margin-bottom: 48px;
}
.comparison__head p {
  color: var(--white-muted);
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 0.95rem;
}

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0 6px;
}

thead th {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
}
thead th:first-child { width: 30%; color: var(--white-muted); }
thead th:nth-child(2) {
  color: var(--yellow);
  background: var(--yellow-dim);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
thead th:nth-child(3) { color: var(--white-muted); }

thead th .th-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}
thead th .th-icon img { width: 20px; height: 20px; }

tbody tr td {
  padding: 14px 20px;
  font-size: 0.9rem;
  vertical-align: top;
  background: var(--bg-card);
}
tbody tr td:first-child {
  background: var(--bg-card-light, #22253a);
  font-weight: 600;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
tbody tr td:nth-child(2) {
  background: var(--yellow-dim);
  color: rgba(255,255,255,0.9);
}
tbody tr td:last-child {
  color: var(--white-muted);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.comparison__bonus {
  text-align: center;
  margin-top: 32px;
  color: var(--white-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* =========================================
   CASE STUDIES
   ========================================= */
.casestudies { background: var(--bg-dark); }

.casestudies__head {
  text-align: center;
  margin-bottom: 48px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 3px solid var(--yellow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-card__tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.case-card h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  line-height: 1.3;
}

.case-card__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0;
}

.metric-badge {
  background: var(--yellow-dim);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.case-card p {
  font-size: 0.875rem;
  color: var(--white-muted);
  line-height: 1.6;
  flex: 1;
}

.case-card__channel {
  font-size: 0.78rem;
  color: var(--white-faint);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-top: 1px solid var(--white-faint);
  padding-top: 12px;
  margin-top: auto;
}

@media (max-width: 767px) {
  .cases-grid { grid-template-columns: 1fr; }
}

/* =========================================
   METHODOLOGY
   ========================================= */
.methode { background: var(--bg-dark-alt); }

.methode__head {
  text-align: center;
  margin-bottom: 48px;
}
.methode__head p {
  color: var(--white-muted);
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 0.95rem;
}

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

.method-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease;
}
.method-card:hover { transform: translateY(-4px); }

.method-card__num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.method-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.method-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--yellow);
}

.method-card p {
  font-size: 0.875rem;
  color: var(--white-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .methode__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .methode__grid { grid-template-columns: 1fr; }
}

/* =========================================
   ABOUT
   ========================================= */
.about { background: var(--bg-dark); }

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 36px 0;
}

.stat {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 20px;
  border-left: 3px solid var(--yellow);
}

.stat__value {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--yellow);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat__value .prefix { font-size: 1.2rem; }
.stat__value .number { font-size: inherit; }
.stat__value .suffix { font-size: 1rem; opacity: 0.8; }

.stat__label {
  font-size: 0.8rem;
  color: var(--white-muted);
  margin-top: 4px;
  font-weight: 500;
}

.about__note {
  font-size: 0.875rem;
  color: var(--white-muted);
  font-style: italic;
  background: var(--yellow-dim);
  border-left: 3px solid var(--yellow);
  padding: 14px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 8px;
}

.about__image img {
  border-radius: var(--radius);
  width: 100%;
}

@media (max-width: 767px) {
  .about__stats { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.temoignages { background: var(--bg-dark-alt); }

.temoignages__head {
  text-align: center;
  margin-bottom: 48px;
}

.temoignages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.testi-card {
  background: var(--yellow-dim);
  border: 1px solid rgba(249, 214, 94, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testi-card__stars {
  display: flex;
  gap: 3px;
}
.testi-card__stars img {
  width: 18px;
  height: 18px;
}
.testi-card__star-half {
  width: 18px;
  height: 18px;
  background: var(--yellow);
  -webkit-mask: url('images/2024/10/icon-Star.svg') no-repeat center / contain;
  mask: url('images/2024/10/icon-Star.svg') no-repeat center / contain;
  opacity: 0.5;
}

.testi-card blockquote {
  font-size: 0.875rem;
  color: var(--white-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--white-faint);
  padding-top: 14px;
}
.testi-card__author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testi-card__author-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
}
.testi-card__author-info span {
  font-size: 0.78rem;
  color: var(--white-muted);
}

.temoignages__trust {
  display: flex;
  justify-content: center;
}
.temoignages__trust img {
  height: 60px;
  width: auto;
}

@media (max-width: 900px) {
  .temoignages__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .temoignages__grid { grid-template-columns: 1fr; }
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.cta-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border-radius: 20px;
  padding: 56px;
  overflow: hidden;
  position: relative;
}

.cta-section__content { max-width: 520px; }
.cta-section__content h2 { margin-bottom: 28px; line-height: 1.2; }
.cta-section__content p {
  color: var(--white-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.cta-section__image {
  flex-shrink: 0;
}
.cta-section__image img {
  height: 280px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .cta-section__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 28px;
  }
  .cta-section__image { display: none; }
}

/* =========================================
   FAQ
   ========================================= */
.faq { background: var(--bg-dark-alt); }

.faq__head {
  text-align: center;
  margin-bottom: 48px;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--white-faint);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  list-style: none;
  user-select: none;
}
.faq__question::-webkit-details-marker { display: none; }

.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

details[open] .faq__icon { transform: rotate(45deg); }

.faq__answer {
  padding: 0 24px 20px;
  color: var(--white-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}
.faq__answer p + p { margin-top: 10px; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--white-faint);
  padding: 56px 0 32px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer__brand img { height: 32px; width: auto; margin-bottom: 12px; }
.footer__tagline {
  font-size: 0.875rem;
  color: var(--white-muted);
  max-width: 260px;
}

.footer__nav h4, .footer__social h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 16px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  font-size: 0.875rem;
  color: var(--white-muted);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--white); }

.footer__social-links { display: flex; gap: 12px; }
.footer__social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-faint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  transition: color 0.2s, border-color 0.2s;
}
.footer__social-links a:hover { color: var(--yellow); border-color: var(--yellow); }

.footer__social-links svg { width: 18px; height: 18px; fill: currentColor; }

.footer__bottom {
  border-top: 1px solid var(--white-faint);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--white-muted);
}

.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a {
  font-size: 0.78rem;
  color: var(--white-muted);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--white); }

@media (max-width: 600px) {
  .footer__top { flex-direction: column; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================
   MISC HELPERS
   ========================================= */
.text-center { text-align: center; }

.section-subtitle {
  color: var(--white-muted);
  font-size: 0.95rem;
  margin-top: 12px;
}

/* =========================================
   LEGAL PAGES
   ========================================= */
.legal-page { max-width: 760px; margin: 0 auto; padding: 80px 20px; }
.legal-page h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 8px; }
.legal-page .updated { color: var(--white-muted); font-size: 0.875rem; margin-bottom: 48px; }
.legal-page h2 { font-size: 1.2rem; margin: 36px 0 12px; color: var(--yellow); }
.legal-page p, .legal-page li { color: var(--white-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; list-style: disc; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--yellow); font-size: 0.875rem; font-weight: 600; margin-bottom: 48px; transition: opacity 0.2s; }
.back-link:hover { opacity: 0.75; }
.legal-link { color: var(--yellow); }
.about__text--muted { color: var(--white-muted); font-size: 0.95rem; margin-bottom: 16px; }
.about__text--strong { color: var(--white); }
.star--dim { opacity: 0.4; }
.btn--mt { margin-top: 28px; }
