/* ============================================================
   GOLDEOR — SHARED CSS
   Navigation, Footer, Composants, Typographie, Animations
   ============================================================ */

/* --- TOP BANNER: styles are inline in top-banner.js --- */

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

:root {
  --bg-primary:    #0A0A0E;
  --bg-secondary:  #0D0D12;
  --bg-glass:      rgba(255,255,255,0.03);
  --bg-card:       rgba(255,255,255,0.04);
  --border:        rgba(255,255,255,0.07);
  --border-h:      rgba(255,255,255,0.13);
  --text:          rgba(255,255,255,0.57);
  --text-dim:      rgba(255,255,255,0.35);
  --text-faint:    rgba(255,255,255,0.22);
  --white:         #ffffff;
  --bg:            #0A0A0E;
  --text-dark:     #0A0A0A;

  --gradient: linear-gradient(135deg, #F5C88A 0%, #ECA0C0 35%, #C4A8E8 65%, #A0B8F0 100%);
  --gradient-90: linear-gradient(90deg, #F5C88A 0%, #ECA0C0 35%, #C4A8E8 65%, #A0B8F0 100%);
  --grad: linear-gradient(135deg, #F5C88A 0%, #ECA0C0 35%, #C4A8E8 65%, #A0B8F0 100%);
  --grad-silver: linear-gradient(180deg, #FFFFFF 0%, #C8C8C8 40%, #8C8C8C 100%);

  --r-card:  16px;
  --r-pill:  999px;
  --nav-h:   68px;

  --shadow-btn:   0 4px 24px rgba(236,160,192,0.28);
  --shadow-btn-h: 0 12px 36px rgba(196,168,232,0.45);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- GRADIENT TEXT --- */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.silver-text {
  background: var(--grad-silver);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- H2 GLOW --- */
.h2-glow {
  position: relative;
  display: inline-block;
}
.h2-glow::before {
  content: '';
  position: absolute;
  inset: -20px -30px;
  background: radial-gradient(ellipse at center,
    rgba(196,168,232,0.14) 0%,
    rgba(236,160,192,0.07) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

/* --- ARROW ANIMATION --- */
.arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--r-pill);
  padding: 13px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #0A0A0A;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-h);
}
.btn-primary:hover .arrow-icon {
  transform: rotate(-45deg);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.62);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.32);
  color: #fff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.82rem;
}

/* --- BADGE --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.6);
}

.badge-purple {
  border-color: rgba(196,168,232,0.2);
  background: rgba(196,168,232,0.08);
  color: #C4A8E8;
}

/* --- GLASS CARD --- */
.glass-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-image: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(192,192,192,0.06), rgba(255,255,255,0.1)) 1;
  border-image-slice: 1;
  border-radius: 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
/* Silver gradient border overlay (border-image doesn't work with border-radius) */
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(192,192,192,0.04), rgba(255,255,255,0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.glass-card:hover {
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.glass-card:hover::before {
  background: linear-gradient(135deg, rgba(245,200,138,0.15), rgba(236,160,192,0.1), rgba(196,168,232,0.12), rgba(160,184,240,0.1));
}
.glass-card > * { position: relative; z-index: 1; }

/* ============================================================
   NAVIGATION — Homepage-matching styles
   ============================================================ */
.hero__nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 68px;
  background: rgba(10,10,14,0.45);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 48px; width: auto; }

.nav__links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7);
  transition: all 0.3s; display: flex; align-items: center; gap: 5px;
  background-image: linear-gradient(90deg, transparent, transparent);
  background-size: 0% 1.5px; background-repeat: no-repeat; background-position: left bottom;
}
.nav__links a:hover {
  background: var(--gradient-90);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav__links .dropdown-indicator::after {
  content: ''; display: inline-block; width: 5px; height: 5px;
  border-right: 1.5px solid rgba(255,255,255,0.5);
  border-bottom: 1.5px solid rgba(255,255,255,0.5);
  transform: rotate(45deg); margin-left: 2px; margin-bottom: 2px; transition: border-color 0.3s, transform 0.3s;
}
.nav__links .dropdown-indicator:hover::after { border-color: #ECA0C0; }

/* Nav dropdown */
.nav__dropdown-wrap { position: relative; }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding-top: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 60;
}
.nav__dropdown-wrap:hover .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-wrap:hover .dropdown-indicator::after {
  transform: rotate(-135deg);
  border-color: #ECA0C0;
}
.nav__dropdown-inner {
  min-width: 300px;
  background: rgba(14,14,18,0.95);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.nav__dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}
.nav__dropdown-header svg { width: 12px; height: 12px; }
.nav__dropdown-sep {
  height: 1px;
  margin: 0 10px 4px;
  background: rgba(255,255,255,0.06);
}
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  transition: background 0.2s;
}
.nav__dropdown-item:hover {
  background: rgba(255,255,255,0.06);
  -webkit-text-fill-color: #fff;
}
.nav__dropdown-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.nav__cta {
  background: var(--gradient); color: var(--text-dark);
  font-size: 14px; font-weight: 700; padding: 12px 28px;
  border-radius: 999px; display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(236,160,192,0.3);
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(196,168,232,0.5);
}
.nav__cta:hover .arrow-icon { transform: rotate(-45deg); }

.nav__mobile-toggle {
  display: none; background: none; border: none; width: 32px; height: 32px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer;
}
.nav__mobile-toggle span {
  display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav__mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav__mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,14,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-height: 0;
  overflow: hidden;
  overflow-y: auto;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease, padding 0.45s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.active {
  max-height: calc(100vh - 68px);
  opacity: 1;
  padding: 20px 24px 32px;
}
.mobile-nav > a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav > a:hover {
  color: #fff;
}
.mobile-nav .nav__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--grad);
  color: #0A0A0A;
  -webkit-text-fill-color: #0A0A0A;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: none;
  box-shadow: 0 4px 24px rgba(236,160,192,0.28);
  transition: transform 0.25s, box-shadow 0.25s;
}
.mobile-nav .nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(196,168,232,0.45);
  color: #0A0A0A;
  -webkit-text-fill-color: #0A0A0A;
  background: var(--grad);
}

/* Nav responsive */
@media (max-width: 900px) {
  .hero__nav { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__cta.nav__cta--desktop { display: none; }
  .nav__mobile-toggle { display: flex; }
}

/* --- PAGE HERO --- */
.page-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 1;
}

.page-hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.glow-1 { top: -20%; left: -10%; }
.glow-2 { bottom: -30%; right: -5%; }

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.page-h1 {
  margin: 20px 0 24px;
  max-width: 700px;
}

.page-sub {
  font-size: 1.08rem;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero stats */
.page-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.page-hero-stats > div { text-align: left; }
.phs-n {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.phs-l {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 2px;
}

/* --- BREADCRUMB --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--text-dim);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: rgba(255,255,255,0.55); }

/* --- SECTIONS --- */
.section {
  padding: 100px 0;
  position: relative;
}
.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header p {
  margin-top: 16px;
  color: var(--text);
}

/* --- STATS ROW --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-cell { text-align: center; }
.stat-n {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-l {
  display: block;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 6px;
}

@media (max-width: 640px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* --- FEATURE GRID --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 28px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(255,255,255,0.05);
  margin-bottom: 18px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 0.88rem; color: var(--text); line-height: 1.7; }

@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* --- PROCESS / STEPS --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  padding: 28px;
  counter-increment: step;
  position: relative;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  position: absolute;
  top: 20px;
  right: 24px;
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { font-size: 0.86rem; color: var(--text); }

@media (max-width: 960px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* --- RESULTS GRID --- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.result-card {
  padding: 28px;
  text-align: center;
}
.result-n {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.result-l {
  display: block;
  font-size: 0.84rem;
  color: var(--text);
  margin-top: 8px;
}

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

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  padding: 28px;
}
.testimonial-stars {
  color: #F5C88A;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 2px;
}

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

/* --- AUDIENCE / TARGET --- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.audience-card {
  padding: 28px;
}
.audience-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.audience-card h3 { margin-bottom: 8px; }
.audience-card p { font-size: 0.86rem; color: var(--text); }

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

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  gap: 16px;
}
.faq-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.75;
}

.faq-item.open .faq-btn svg { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 400px; }

/* --- GEO BLOCK --- */
.geo-block {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-card);
  padding: 32px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.geo-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-card);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(192,192,192,0.04), rgba(255,255,255,0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.geo-block > * { position: relative; z-index: 1; }

/* --- CTA SECTION --- */
.cta-section {
  text-align: center;
  padding: 100px 0;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p {
  max-width: 520px;
  margin: 0 auto 32px;
  color: var(--text);
}

/* --- COMPARISON TABLE --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.comparison-table tr td:first-child {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* --- HIGHLIGHT BOX --- */
.highlight-box {
  background: rgba(196,168,232,0.06);
  border: 1px solid rgba(196,168,232,0.15);
  border-radius: var(--r-card);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.highlight-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-card);
  padding: 1px;
  background: linear-gradient(135deg, rgba(196,168,232,0.2), rgba(236,160,192,0.08), rgba(160,184,240,0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.highlight-box > * { position: relative; z-index: 1; }

/* --- TIMELINE --- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(196,168,232,0.3), rgba(160,184,240,0.1));
}
.timeline-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}
.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
  margin-top: 6px;
  position: relative;
  left: 19px;
}
.timeline-content {
  padding-left: 16px;
}
.timeline-year {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 0.88rem;
  color: var(--text);
}

/* --- VALUES --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  padding: 32px;
}
.value-card h3 { margin-bottom: 12px; }
.value-card p { font-size: 0.88rem; color: var(--text); }

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

/* --- SERVICE HUB CARDS --- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.service-row:nth-child(even) .service-row-text { order: 2; }
.service-row:nth-child(even) .service-row-visual { order: 1; }

.service-row-visual {
  position: relative;
  min-height: 280px;
  border-radius: var(--r-card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-watermark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 8rem;
  font-weight: 800;
  opacity: 0.04;
  color: var(--white);
  position: absolute;
}

.service-row-text h2 { margin-bottom: 16px; }
.service-row-text p { font-size: 0.9rem; margin-bottom: 20px; }
.service-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.service-tag {
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

@media (max-width: 960px) {
  .service-row { grid-template-columns: 1fr; gap: 24px; }
  .service-row:nth-child(even) .service-row-text { order: 1; }
  .service-row:nth-child(even) .service-row-visual { order: 2; }
}

/* --- CONTACT FORM --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-full { grid-column: 1 / -1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  color: #fff;
  padding: 13px 16px;
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(196,168,232,0.45);
  box-shadow: 0 0 0 3px rgba(196,168,232,0.1);
}
input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,0.28);
}
select {
  cursor: pointer;
}
select option {
  background: #0D0D12;
  color: #fff;
}
textarea { resize: vertical; min-height: 100px; }

/* --- CONTACT LAYOUT --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.reassurance-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.reassurance-check {
  color: #4ade80;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- METHOD STEPS (horizontal) --- */
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.method-step {
  text-align: center;
  padding: 24px;
  position: relative;
}
.method-step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.method-step h3 { font-size: 1rem; margin-bottom: 8px; }
.method-step p { font-size: 0.82rem; color: var(--text); }

@media (max-width: 640px) {
  .method-steps { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FOOTER — Homepage-matching styles
   ============================================================ */
.site-footer {
  position: relative; margin: 0 10px; padding: 80px 60px 40px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  border-radius: 24px 24px 0 0; overflow: hidden;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 300px;
  background: radial-gradient(ellipse 60% 30% at 50% 0%, rgba(196,168,232,0.06), transparent);
  pointer-events: none;
}
.site-footer::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: calc(33.33% + 0.5px) 35vh; background-position: 33.33% 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent 60%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent 60%);
}

.footer__inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }

/* Newsletter */
.footer__newsletter {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  padding: 40px; border-radius: 20px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08); margin-bottom: 64px;
}
.footer__newsletter-title {
  font-size: 1.8rem; font-weight: 700; line-height: 1.2;
  background: linear-gradient(180deg, #FFFFFF 0%, #C0C0C0 40%, #8A8A8A 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 12px;
}
.footer__newsletter-subtitle { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer__newsletter-form { display: flex; gap: 12px; }
.footer__newsletter-input {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 999px;
  color: #fff; padding: 14px 24px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem; outline: none; transition: border-color 0.3s;
}
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.footer__newsletter-input:focus { border-color: rgba(196,168,232,0.4); }
.footer__newsletter-btn {
  background: var(--gradient); color: var(--text-dark);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; font-weight: 700;
  padding: 14px 28px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s; white-space: nowrap;
  box-shadow: 0 4px 24px rgba(236,160,192,0.3);
  display: inline-flex; align-items: center; gap: 8px;
}
.footer__newsletter-btn svg { flex-shrink: 0; }
.footer__newsletter-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(196,168,232,0.5); }
.footer__newsletter-sub { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 10px; }

/* Footer grid */
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; }
.footer__col-title {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 20px;
}

.footer__brand-logo { margin-bottom: 16px; display: block; }
.footer__brand-logo img { height: 40px; width: auto; }
.footer__brand-desc { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 20px; }

.footer__socials { display: flex; gap: 10px; margin-bottom: 16px; }
.footer__social-btn {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
  transition: border-color 0.3s, color 0.3s; cursor: pointer; text-decoration: none;
}
.footer__social-btn:hover { border-color: rgba(196,168,232,0.4); color: #fff; }
.footer__social-btn svg { width: 16px; height: 16px; fill: currentColor; }

.footer__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px; color: rgba(255,255,255,0.6);
}
.footer__badge-stars { color: #FFC24D; letter-spacing: 1px; font-size: 11px; }

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: all 0.3s; }
.footer__links a:hover {
  background: var(--gradient-90);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.footer__contact-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.footer__contact-info span { font-size: 0.9rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px; }

.footer__contact-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: var(--gradient); color: var(--text-dark);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; font-weight: 700;
  padding: 14px 24px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s; margin-bottom: 10px; text-decoration: none;
  box-shadow: 0 4px 24px rgba(236,160,192,0.3);
}
.footer__contact-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(196,168,232,0.5); }
.footer__contact-btn:hover .arrow-icon { transform: rotate(-45deg); }
.footer__contact-note { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; }

/* Bottom bar */
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 16px;
}
.footer__bottom-left { display: flex; flex-direction: column; gap: 6px; }
.footer__bottom-left p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer__bottom-left a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.3s; }
.footer__bottom-left a:hover { color: rgba(255,255,255,0.7); }
.footer__bottom-right { display: flex; align-items: center; gap: 16px; }
.footer__bottom-right span { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer__seo-badge {
  display: inline-flex; align-items: center; padding: 4px 12px;
  border-radius: 999px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.4);
}

/* Footer responsive */
@media (max-width: 900px) {
  .site-footer { padding: 48px 24px 32px; margin: 0 8px; }
  .footer__newsletter { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .footer__newsletter-form { flex-direction: column; }
  .footer__newsletter-btn { justify-content: center; width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 550px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* --- LARGE PLATFORM CARDS (for Pub page) --- */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.platform-card {
  padding: 36px;
}
.platform-card h3 { margin-bottom: 12px; }
.platform-card p { font-size: 0.88rem; margin-bottom: 20px; }
.platform-metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.platform-metric {
  text-align: center;
}
.platform-metric .pm-n {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.platform-metric .pm-l {
  font-size: 0.72rem;
  color: var(--text-dim);
  display: block;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .platform-cards { grid-template-columns: 1fr; }
}

/* --- TWO COL GRID --- */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 640px) {
  .two-col { grid-template-columns: 1fr; }
}

/* --- UTILITY --- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* --- FADE UP ANIMATION --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- MOBILE COLLAPSIBLE SECTIONS --- */
.mobile-section {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-section-toggle {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.mobile-section-toggle:hover {
  color: #fff;
}
.mobile-arrow {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: transform 0.3s ease;
  display: inline-block;
}
.mobile-section.open .mobile-arrow {
  transform: rotate(180deg);
}
.mobile-sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  margin-bottom: 0;
}
.mobile-section.open .mobile-sub-menu {
  max-height: 500px;
  padding-bottom: 8px;
}
.mobile-sub-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  padding: 10px 0;
  font-weight: 500;
  transition: color 0.2s;
  border-bottom: none !important;
}
.mobile-sub-menu a:hover {
  color: rgba(255,255,255,0.9);
}

/* --- LEGAL PAGES --- */
.legal-page {
  min-height: 100vh;
  background: var(--bg-primary);
  padding-top: var(--nav-h);
}
.legal-container {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 3rem);
}
.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.legal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0.6rem 0 0.5rem;
}
.legal-date {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.legal-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}
.legal-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-content h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  margin-top: 0.75rem;
}
.legal-content ul, .legal-content ol {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.legal-content li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  list-style: disc;
}
.legal-content ol li { list-style: decimal; }
.legal-content a {
  color: #C4A8E8;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s;
}
.legal-content a:hover { color: var(--white); }
.legal-content strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.legal-content em {
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.legal-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.legal-block p {
  font-size: 0.86rem;
  margin: 0;
}

/* --- 404 PAGE --- */
.not-found-page {
  min-height: 100vh;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
.nf-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.nf-glow {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(196,168,232,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.nf-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem);
  z-index: 10;
}
.nf-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.nf-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(7rem, 22vw, 14rem);
  font-weight: 800;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.nf-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.nf-sub {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.68;
  max-width: 480px;
}
.nf-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
.nf-shortcuts {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
.shortcuts-label {
  font-size: 0.74rem;
  color: var(--text-dim);
  font-weight: 600;
}
.shortcuts-list {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.shortcuts-list a {
  font-size: 0.82rem;
  color: var(--text);
  transition: color 0.18s;
}
.shortcuts-list a:hover { color: var(--white); }
@media (max-width: 640px) {
  .nf-links { flex-direction: column; width: 100%; }
  .nf-links .btn { width: 100%; justify-content: center; }
}

/* --- COOKIE BANNER RGPD --- */
.cookie-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
  backdrop-filter: blur(2px);
}
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, calc(100vw - 2rem));
  background: rgba(13,13,18,0.98);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 1.75rem;
  z-index: 9999;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cb-header { display: flex; align-items: flex-start; gap: 1rem; }
.cb-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.cb-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
.cb-sub { font-size: 0.82rem; color: var(--text); line-height: 1.65; }
.cb-details {
  display: flex; flex-direction: column; gap: 0.85rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}
.cb-category {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.cb-category:last-of-type { border-bottom: none; padding-bottom: 0; }
.cb-cat-title { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 0.25rem; }
.cb-cat-desc { font-size: 0.76rem; color: var(--text); line-height: 1.55; }
.cb-toggle { flex-shrink: 0; cursor: pointer; position: relative; }
.cb-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cb-toggle-slider {
  display: block; width: 42px; height: 24px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  transition: background 0.2s;
  position: relative;
}
.cb-toggle-slider::before {
  content: ''; position: absolute;
  width: 18px; height: 18px; border-radius: 50%;
  background: white; top: 3px; left: 3px;
  transition: transform 0.2s;
}
.cb-toggle input:checked + .cb-toggle-slider {
  background: linear-gradient(135deg, #F5C88A 0%, #ECA0C0 35%, #C4A8E8 65%, #A0B8F0 100%);
}
.cb-toggle input:checked + .cb-toggle-slider::before { transform: translateX(18px); }
.cb-toggle-disabled { font-size: 0.72rem; color: var(--text-dim); cursor: default; }
.cb-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cb-btn {
  flex: 1; min-width: 120px;
  padding: 11px 16px; border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem; font-weight: 700;
  cursor: pointer; border: none;
  transition: transform 0.18s, box-shadow 0.18s;
}
.cb-btn:hover { transform: translateY(-1px); }
.cb-btn-refuse {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
}
.cb-btn-refuse:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.cb-btn-custom {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.55);
}
.cb-btn-custom:hover { color: var(--white); }
.cb-btn-accept {
  background: linear-gradient(135deg, #F5C88A 0%, #ECA0C0 35%, #C4A8E8 65%, #A0B8F0 100%);
  color: #0A0A0A;
  box-shadow: 0 4px 20px rgba(236,160,192,0.28);
}
.cb-btn-accept:hover { box-shadow: 0 8px 28px rgba(196,168,232,0.45); }
.cb-btn-save {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
}
.cb-legal {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; font-size: 0.72rem; color: var(--text-faint);
}
.cb-legal a { color: var(--text-faint); text-decoration: underline; text-underline-offset: 3px; transition: color 0.18s; }
.cb-legal a:hover { color: var(--text); }
.cookie-manager-btn {
  background: none; border: none;
  font-size: 0.73rem; color: var(--text-faint);
  cursor: pointer; transition: color 0.18s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 0; text-decoration: underline; text-underline-offset: 3px;
}
.cookie-manager-btn:hover { color: rgba(255,255,255,0.45); }
@media (max-width: 640px) {
  .cookie-banner { bottom: 0; left: 0; right: 0; transform: none; width: 100%; border-radius: 20px 20px 0 0; }
  .cb-actions { flex-direction: column; }
  .cb-btn { width: 100%; }
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }
