@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&family=Noto+Sans:wght@400;500;600;700&family=Noto+Sans+Mono:wght@400;500;600&display=swap');

/* --- RESET & VARIABLES --- */
:root {
  /* Palette GeoStratum extraite du SVG */
  --brand-teal: #0f8994;       /* st0 : Cyan géologique */
  --brand-teal-dark: #016e74;  /* st2 : Profondeur */
  --brand-orange: #ff6914;     /* st13 : Énergie/Magma */
  --brand-orange-light: #fea42d; /* st1 : Sédiment */
  --brand-dark: #26363e;       /* Roche / Schiste */
  
  /* Thème UI */
  --bg: #f4f8fb;
  --panel: rgba(255, 255, 255, 0.86);
  --line: #d8e5ec;
  --text: #17232b;
  --muted: #536576;
  --rock: #4f5f69;
  
  /* Mapping sémantique */
  --accent: var(--brand-teal);
  --accent-hover: var(--brand-teal-dark);
  --danger: var(--brand-orange);
  
  --font-sans: 'Space Grotesk', 'Noto Sans', 'Liberation Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Noto Sans Mono', 'Liberation Mono', monospace;
  --radius: 14px;
  --header-height: clamp(64px, 7vh, 84px);
  --layout-max: 120rem;
  --layout-gutter: clamp(0.6rem, 2.4vw, 2.6rem);
  --panel-space: clamp(2.4rem, 4vw, 4.2rem);
  
  /* Ombres & Profondeur pour un look Pro */
  --shadow-sm: 0 10px 20px rgba(10, 40, 60, 0.08);
  --shadow-md: 0 16px 36px rgba(10, 40, 60, 0.12);
  --shadow-lg: 0 28px 56px rgba(10, 40, 60, 0.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* ACCESSIBILITÉ : Focus visible pour navigation clavier */
:focus-visible {
  outline: 3px solid var(--brand-teal);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -80px;
  z-index: 2100;
  background: #ffffff;
  color: #0d2430;
  border: 2px solid var(--brand-teal-dark);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0.8rem;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 10% -15%, rgba(15, 137, 148, 0.2), transparent 45%),
    radial-gradient(circle at 95% 5%, rgba(255, 105, 20, 0.14), transparent 30%),
    repeating-radial-gradient(circle at 20% 25%, rgba(38, 54, 62, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(to right, rgba(79, 95, 105, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(79, 95, 105, 0.08) 1px, transparent 1px);
  background-size: auto, auto, 130px 130px, 88px 88px, 88px 88px;
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* --- TYPOGRAPHIC ALIGNMENT --- */
.showcase-info > p,
.signal-head > p,
.signal-card p,
.feature-card p,
.detail-intro,
.detail-list li,
.detail-closing,
.policy-content p,
.policy-list-item {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover { color: var(--accent-hover); }

/* --- LAYOUT --- */
.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--header-height);
}

.site-header {
  height: var(--header-height);
  border-bottom: 1px solid rgba(15, 137, 148, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--layout-gutter);
  background: rgba(248, 252, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(15, 137, 148, 0.55) 20%, rgba(255, 105, 20, 0.55) 50%, rgba(15, 137, 148, 0.55) 80%, transparent 100%);
  opacity: 0.55;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.8vw, 1.4rem);
}

.theme-toggle {
  width: clamp(30px, 1.8vw, 38px);
  height: clamp(30px, 1.8vw, 38px);
  border-radius: 999px;
  border: 1px solid rgba(15, 137, 148, 0.36);
  background: rgba(255, 255, 255, 0.84);
  color: var(--brand-teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(15, 137, 148, 0.14);
  transition: transform 0.18s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 105, 20, 0.5);
  background: rgba(15, 137, 148, 0.12);
}

.theme-toggle-icon::before {
  content: '☾';
  font-size: 0.95rem;
  line-height: 1;
}

.theme-toggle[data-theme="dark"] .theme-toggle-icon::before {
  content: '☀';
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.social-icon-link {
  width: clamp(28px, 1.7vw, 34px);
  height: clamp(28px, 1.7vw, 34px);
  border-radius: 999px;
  border: 1px solid rgba(15, 137, 148, 0.35);
  background: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal-dark);
  box-shadow: 0 6px 12px rgba(15, 137, 148, 0.12);
}

.social-icon-svg {
  width: clamp(14px, 0.95vw, 17px);
  height: clamp(14px, 0.95vw, 17px);
  display: block;
  object-fit: contain;
}

.social-icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 105, 20, 0.5);
  background: rgba(15, 137, 148, 0.1);
  color: var(--brand-dark);
}

.header-link {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  padding: 0.25rem 0;
}
.header-link:hover { color: var(--brand-teal); }
.header-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-teal);
  transition: width 0.3s ease;
}
.header-link:hover::after {
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: 0.01em;
}

.brand-logo { height: clamp(34px, 2.1vw, 44px); width: auto; display: block; }

.header-center {
  display: inline-block !important;
  white-space: nowrap;
  max-width: clamp(7rem, 34vw, 16rem);
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(0.92rem, 0.3vw + 0.84rem, 1.25rem) !important;
  letter-spacing: clamp(0.02em, 0.05vw, 0.05em) !important;
}

main {
  flex: 1;
  width: min(calc(100% - (var(--layout-gutter) * 2)), var(--layout-max));
  margin: 0 auto;
  padding: clamp(0.9rem, 2.5vw, 3rem);
}

/* --- PANELS & SECTIONS --- */
.panel {
  margin-bottom: var(--panel-space);
  position: relative;
}

.panel:not(.hero-modern):not(.hero):not(.cta-panel):not(.signal-section):not(.accent-panel):not(.policy-shell) {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}

.panel:not(.hero-modern):not(.hero):not(.cta-panel):not(.signal-section):not(.accent-panel):not(.policy-shell)::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, rgba(15, 137, 148, 0.9), rgba(255, 105, 20, 0.85));
  opacity: 0.8;
}

h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.35rem);
  letter-spacing: -0.02em;
  color: var(--brand-dark);
}

.accent-panel {
  background: linear-gradient(145deg, rgba(15, 137, 148, 0.16) 0%, rgba(255, 255, 255, 0.96) 45%, rgba(255, 105, 20, 0.12) 100%);
  border: 1px solid rgba(15, 137, 148, 0.2);
  border-radius: calc(var(--radius) + 2px);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

/* --- HERO MODERN --- */
.hero-modern {
  position: relative;
  padding: 5.4rem 0;
  max-width: 980px;
  overflow: hidden;
}

/* Motif "Sommets Géométriques" & IA */
.hero-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: 
    conic-gradient(from 150deg at 80% 20%, rgba(15, 137, 148, 0.1) 0deg, transparent 40deg),
    conic-gradient(from 170deg at 75% 25%, rgba(255, 105, 20, 0.05) 0deg, transparent 30deg);
  opacity: 0.05;
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

/* Utilisation du logo comme filigrane technologique */
.hero-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 380px;
  height: 380px;
  background: url('./assets/logo_geostratum.svg') no-repeat center;
  opacity: 0.035;
  filter: grayscale(1);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.kicker {
  color: var(--brand-orange);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}
.kicker::before {
  content: "// ";
  color: var(--brand-teal-dark);
}

.hero-modern h1 {
  font-size: clamp(2.2rem, 1.5rem + 3.2vw, 3.7rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  background: linear-gradient(95deg, var(--brand-dark) 0%, var(--brand-teal-dark) 45%, var(--brand-teal) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: clamp(1.02rem, 0.9rem + 1vw, 1.3rem);
  color: var(--muted);
  margin-bottom: 2.2rem;
  font-weight: 500;
  max-width: 760px;
}

.hero {
  background: linear-gradient(135deg, rgba(15, 137, 148, 0.1) 0%, rgba(255, 255, 255, 0.95) 55%, rgba(255, 105, 20, 0.1) 100%);
  border: 1px solid rgba(15, 137, 148, 0.18);
  border-radius: calc(var(--radius) + 2px);
  padding: 2.6rem;
  box-shadow: var(--shadow-md);
}

.hero h1 {
  font-size: clamp(2rem, 1.45rem + 2vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--brand-dark);
}

.hero-actions {
  display: flex;
  gap: clamp(0.65rem, 1.4vw, 1rem);
  flex-wrap: wrap;
}

.hero-actions .btn {
  flex: 1 1 clamp(11rem, 30vw, 16rem);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-teal-dark) 0%, var(--brand-teal) 55%, #2ca9b6 100%);
  color: white;
  border: 1px solid rgba(15, 137, 148, 0.85);
  box-shadow: 0 8px 18px rgba(15, 137, 148, 0.28);
  padding: 0.85rem 1.75rem; /* Plus large pour l'effet "Store Button" */
  font-size: 0.95rem;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #088a92 0%, #1ca3ae 60%, #36b8c4 100%);
  border-color: #1297a3;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 137, 148, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(38, 54, 62, 0.22);
  color: var(--brand-dark);
}
.btn-secondary:hover {
  border-color: rgba(15, 137, 148, 0.45);
  background: rgba(15, 137, 148, 0.08);
  transform: translateY(-2px);
}

/* --- SHOWCASE SECTION (LITHOTHEQUE) --- */
.showcase-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.showcase-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 137, 148, 0.2);
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
}

.showcase-card:hover {
    border-color: rgba(15, 137, 148, 0.3);
    box-shadow: var(--shadow-lg);
}

.showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 137, 148, 0.18) 0.6px, transparent 0.6px);
    background-size: 18px 18px;
    opacity: 0.16;
    pointer-events: none;
}

.showcase-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.showcase-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.showcase-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Ombre icône app */
}

.showcase-brand h3 {
    font-size: 2rem;
    color: var(--text);
}

.showcase-list {
    list-style: none;
    margin: 1.5rem 0 2.5rem 0;
}

.showcase-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text);
    background: rgba(15, 137, 148, 0.05);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.showcase-list li::before {
    content: "✓";
    color: var(--brand-teal);
    font-weight: bold;
}

.showcase-visual {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--line);
    overflow: hidden;
    z-index: 1;
}

/* --- MOCKUP TÉLÉPHONE RÉALISTE (CSS ONLY) --- */
.app-frame {
    width: 260px;
    height: 520px;
    background: #0f172a; /* Bezel sombre premium */
    border-radius: 40px;
    box-shadow: 
        0 0 0 2px #334155, /* Bordure fine métal */
        0 25px 50px -12px rgba(0, 0, 0, 0.4); /* Ombre portée profonde */
    border: 8px solid #0f172a;
    padding: 0;
    position: relative;
    overflow: hidden;
    transform: rotate(-6deg) translateY(30px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.app-frame:hover {
    transform: rotate(0deg) translateY(0) scale(1.03);
    box-shadow: 0 35px 70px -15px rgba(15, 137, 148, 0.25);
}

/* Encoche (Notch) */
.app-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #0f172a;
    border-radius: 50%;
    z-index: 20;
}

.app-header {
    height: 60px;
    background: var(--brand-teal);
    width: 100%;
    position: relative;
}

.app-body {
    background: #f8fafc;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-row {
    height: 45px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 10px;
}
/* Simulation contenu ligne */
.app-row::before {
    content: '';
    width: 24px;
    height: 24px;
    background: #e2e8f0;
    border-radius: 6px;
}
.app-row::after {
    content: '';
    width: 60%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 4px;
}

.app-block {
    flex: 1;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}
/* Simulation carte/graphique */
.app-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.6;
}


/* --- HOME SIGNAL SECTION --- */
.signal-section {
  background: linear-gradient(160deg, rgba(15, 137, 148, 0.08) 0%, rgba(255, 255, 255, 0.95) 45%);
  border: 1px solid rgba(15, 137, 148, 0.22);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.signal-head {
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.signal-head .kicker {
  text-transform: none;
}

.signal-head h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.9rem;
  color: var(--brand-dark);
}

.signal-head p {
  color: var(--muted);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: clamp(0.8rem, 1.6vw, 1.15rem);
  margin-bottom: 1.5rem;
}

.signal-card {
  background: #ffffff;
  border: 1px solid rgba(15, 137, 148, 0.18);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.signal-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(15, 137, 148, 0.9), rgba(255, 105, 20, 0.85));
}

.signal-card h3 {
  color: var(--brand-teal-dark);
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.signal-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.signal-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: clamp(0.8rem, 1.6vw, 1rem);
}

.signal-media {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.signal-media:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.signal-media img {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.signal-media figcaption {
  padding: 0.75rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  border-top: 1px solid var(--line);
}

/* --- SERVICES CARDS --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: rgba(15, 137, 148, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(15, 137, 148, 0.1); /* Lueur IA */
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(15, 137, 148, 0.9), rgba(255, 105, 20, 0.85));
}

.card-icon {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--brand-teal);
    background: rgba(15, 137, 148, 0.1); /* Fond coloré style SaaS */
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.feature-card p {
  color: var(--muted);
  font-size: 1rem;
}

/* --- LITHOTHEQUE DETAILS --- */
.app-description h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.detail-intro {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 1000px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.25rem);
}

.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(15, 137, 148, 0.82), rgba(255, 105, 20, 0.8));
}

.detail-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.detail-icon {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(15, 137, 148, 0.12);
  color: var(--brand-teal-dark);
  border: 1px solid rgba(15, 137, 148, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.detail-card h3 {
  color: var(--brand-teal-dark);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.detail-illustration {
  margin: 0.2rem 0 0.9rem;
  border: 1px solid rgba(15, 137, 148, 0.24);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(15, 137, 148, 0.11), rgba(255, 255, 255, 0.96));
  padding: 0.35rem 0.45rem;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--brand-teal-dark);
}

.detail-illustration::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 137, 148, 0.18) 0.8px, transparent 0.8px);
  background-size: 14px 14px;
  opacity: 0.28;
  pointer-events: none;
}

.detail-illustration svg {
  width: 100%;
  max-width: 170px;
  height: 66px;
  display: block;
  position: relative;
  z-index: 1;
}

.detail-illustration .stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-illustration .thin {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.72;
}

.detail-illustration .fill-soft {
  fill: rgba(255, 255, 255, 0.82);
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linejoin: round;
}

.detail-illustration .dot {
  fill: var(--brand-orange);
  stroke: var(--brand-orange-light);
  stroke-width: 1;
}

.detail-illustration-map { color: #0d717a; }
.detail-illustration-struct { color: #0b6a73; }
.detail-illustration-notebook { color: #0b6472; }
.detail-illustration-ai { color: #165f89; }
.detail-illustration-exports { color: #176777; }
.detail-illustration-security { color: #22676d; }

.detail-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.detail-list li {
  color: var(--muted);
}

.detail-list li::marker {
  color: var(--brand-teal);
}

.detail-closing {
  margin-top: 1.5rem;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--brand-orange);
  background: rgba(255, 105, 20, 0.07);
  border-radius: 0 8px 8px 0;
  color: var(--text);
}

/* --- LITHOTHEQUE GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.25rem);
}

.gallery-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-img-wrapper {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  position: relative;
  background: #e2e8f0;
}

.gallery-img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-caption {
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.gallery-img-wrapper img,
.signal-media img,
.showcase-visual img,
.brand-logo,
.showcase-icon {
  -webkit-user-drag: none;
  user-select: none;
}

.showcase-visual::after,
.signal-media::after,
.gallery-img-wrapper::after {
  content: 'GeoStratum · Lithotheque';
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  bottom: 0.45rem;
  padding: 0.18rem 0.42rem;
  border-radius: 6px;
  background: rgba(6, 18, 26, 0.42);
  color: rgba(240, 248, 252, 0.9);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
}

/* --- CTA SECTION --- */
.cta-panel {
    background: linear-gradient(145deg, #21343d 0%, #314650 42%, #465d68 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(rgba(255, 255, 255, 0.2) 0.7px, transparent 0.7px),
      linear-gradient(120deg, rgba(15, 137, 148, 0.25), rgba(255, 105, 20, 0.2));
    background-size: 24px 24px, 100% 100%;
    opacity: 0.33;
    pointer-events: none;
}

.cta-panel h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-panel p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-panel .btn {
    position: relative;
    z-index: 1;
}


/* --- FOOTER --- */
.site-footer {
  border-top: 1px solid rgba(15, 137, 148, 0.22);
  background: rgba(248, 252, 255, 0.86);
  padding: 4rem 2rem 2rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: auto;
  backdrop-filter: blur(6px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr));
  gap: clamp(1.2rem, 2.8vw, 3rem);
  max-width: min(100%, var(--layout-max));
  margin: 0 auto 3rem auto;
}

.footer-col h4 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-brand {
  margin-bottom: 1rem;
  opacity: 0.8;
}

.footer-desc {
  font-weight: 600;
  color: var(--brand-teal);
}

.footer-address {
  font-style: normal;
  line-height: 1.8;
  text-align: start;
}

.footer-mail {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent);
}

.footer-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-social-link {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(15, 137, 148, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.45rem 0.78rem 0.43rem;
  font-size: 0.86rem;
}

.footer-social-svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  object-fit: contain;
}

.footer-social-link span {
  line-height: 1;
}

.footer-social-link:hover {
  color: var(--brand-teal-dark);
  border-color: rgba(255, 105, 20, 0.4);
  background: rgba(15, 137, 148, 0.09);
  transform: translateY(-2px);
}

.footer-legal-list {
  list-style: none;
}

.footer-legal-list li {
  margin-bottom: 0.5rem;
  text-align: start;
}

.footer-legal-list span {
  color: var(--text);
  font-weight: 500;
}

.footer-bottom {
  max-width: min(100%, var(--layout-max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  align-items: start;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-bottom > p:not(.footer-ip-notice) {
  text-align: start;
}

.footer-hosting {
  color: #5a6b7c;
}

.footer-ip-notice {
  flex: 1 1 100%;
  margin: 0.2rem 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.82rem;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 1.8vw, 1.5rem);
  justify-content: flex-end;
}

/* --- PRIVACY PAGE --- */
.privacy-main { max-width: 900px; }

.policy-shell {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(244, 250, 252, 0.94));
  border: 1px solid rgba(15, 137, 148, 0.22);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.policy-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(165deg, rgba(79, 95, 105, 0.08) 0 1px, transparent 1px 24px);
  opacity: 0.3;
  pointer-events: none;
}

.policy-shell > * {
  position: relative;
  z-index: 1;
}

.policy-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.policy-page-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.policy-status {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  min-height: 1.5rem;
}

.policy-content p {
  margin-bottom: 1.2rem;
  color: var(--text);
}

/* --- LANGUAGE SELECTOR --- */
.site-language-select {
  border: 1px solid rgba(15, 137, 148, 0.32);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-teal-dark);
  border-radius: 8px;
  max-width: clamp(6.8rem, 18vw, 10.8rem);
  padding: clamp(0.38rem, 0.9vw, 0.5rem) clamp(1.35rem, 1.8vw, 2rem) clamp(0.38rem, 0.9vw, 0.5rem) clamp(0.48rem, 1.2vw, 0.8rem);
  font-size: clamp(0.72rem, 0.2vw + 0.66rem, 0.85rem);
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
}

.site-language-select:hover {
  background: rgba(15, 137, 148, 0.12);
  border-color: rgba(15, 137, 148, 0.48);
}

.site-language-select:focus {
  border-color: var(--brand-orange);
}

.a11y-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 2000;
  min-width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px solid rgba(15, 137, 148, 0.55);
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.a11y-fab:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 105, 20, 0.62);
}

.a11y-panel {
  position: fixed;
  right: 1rem;
  bottom: 4.8rem;
  width: min(92vw, 290px);
  z-index: 2000;
  border-radius: 14px;
  border: 1px solid rgba(15, 137, 148, 0.35);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-lg);
  padding: 0.95rem;
  display: grid;
  gap: 0.62rem;
}

.a11y-panel[hidden] {
  display: none !important;
}

.a11y-panel-title {
  margin: 0;
  font-weight: 700;
  color: var(--brand-dark);
}

.a11y-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.a11y-option input {
  width: 1.05rem;
  height: 1.05rem;
}

.a11y-close {
  border: 1px solid rgba(15, 137, 148, 0.4);
  background: rgba(15, 137, 148, 0.1);
  color: var(--brand-dark);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  font-weight: 700;
  cursor: pointer;
}

.a11y-close:hover {
  border-color: rgba(255, 105, 20, 0.6);
  background: rgba(255, 105, 20, 0.12);
}

.policy-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-teal);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
}

.policy-subheading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.policy-warning {
  background: rgba(255, 105, 20, 0.1);
  border-left: 3px solid var(--brand-orange);
  padding: 1rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: #9c3f00; /* Texte foncé pour lisibilité sur fond clair */
  border-radius: 0 4px 4px 0;
}

.policy-list-item {
  margin-left: 1.5rem;
  list-style-type: square;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.policy-list-item::marker {
  color: var(--brand-teal);
}

/* --- DARK THEME --- */
:root.theme-dark {
  color-scheme: dark;
  --bg: #06121a;
  --panel: rgba(10, 19, 27, 0.88);
  --line: #2b4352;
  --text: #e1edf5;
  --muted: #98aebd;
  --brand-dark: #d8eaf4;
  --shadow-sm: 0 12px 24px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 20px 44px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 28px 56px rgba(0, 0, 0, 0.55);
}

:root.theme-dark body {
  background-image:
    radial-gradient(circle at 12% -12%, rgba(15, 137, 148, 0.2), transparent 42%),
    radial-gradient(circle at 90% 8%, rgba(255, 105, 20, 0.14), transparent 26%),
    repeating-radial-gradient(circle at 22% 26%, rgba(143, 170, 184, 0.14) 0 1px, transparent 1px 17px),
    linear-gradient(to right, rgba(124, 148, 162, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(124, 148, 162, 0.12) 1px, transparent 1px);
}

:root.theme-dark .site-header {
  background: rgba(8, 16, 24, 0.88);
  border-bottom-color: rgba(69, 111, 133, 0.55);
}

:root.theme-dark .skip-link {
  background: #0b1a25;
  color: #e8f4fb;
  border-color: #6cb0cf;
}

:root.theme-dark .header-link {
  color: #bad0de;
}

:root.theme-dark .theme-toggle,
:root.theme-dark .social-icon-link {
  background: rgba(13, 24, 33, 0.9);
  border-color: rgba(96, 138, 160, 0.48);
  color: #cfe5f0;
  box-shadow: none;
}

:root.theme-dark .social-icon-svg,
:root.theme-dark .footer-social-svg {
  filter: invert(1);
}

:root.theme-dark .site-language-select {
  background: rgba(13, 24, 33, 0.92);
  border-color: rgba(96, 138, 160, 0.52);
  color: #d7eaf3;
}

:root.theme-dark .site-language-select:hover {
  background: rgba(15, 137, 148, 0.22);
}

:root.theme-dark .a11y-fab {
  background: rgba(10, 20, 30, 0.96);
  border-color: rgba(107, 153, 177, 0.62);
  color: #d7ecf7;
}

:root.theme-dark .a11y-panel {
  background: rgba(10, 20, 30, 0.98);
  border-color: rgba(107, 153, 177, 0.55);
}

:root.theme-dark .a11y-panel-title,
:root.theme-dark .a11y-option {
  color: #e4f2fa;
}

:root.theme-dark .a11y-close {
  background: rgba(15, 137, 148, 0.22);
  border-color: rgba(107, 153, 177, 0.5);
  color: #e4f2fa;
}

:root.theme-dark .a11y-close:hover {
  background: rgba(255, 105, 20, 0.2);
  border-color: rgba(255, 170, 110, 0.64);
}

:root.theme-dark .panel:not(.hero-modern):not(.hero):not(.cta-panel):not(.signal-section):not(.accent-panel):not(.policy-shell) {
  background: rgba(11, 20, 29, 0.9);
  border-color: rgba(66, 101, 120, 0.62);
}

:root.theme-dark .hero {
  background: linear-gradient(145deg, rgba(11, 25, 34, 0.95) 0%, rgba(14, 32, 43, 0.9) 60%, rgba(42, 31, 22, 0.75) 100%);
  border-color: rgba(72, 114, 136, 0.6);
}

:root.theme-dark .hero-modern h1 {
  background: linear-gradient(95deg, #f1f8fd 0%, #c4e8f6 45%, #7ad5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

:root.theme-dark .btn-secondary {
  background: rgba(13, 24, 33, 0.9);
  border-color: rgba(105, 148, 169, 0.45);
  color: var(--text);
}

:root.theme-dark .btn-secondary:hover {
  background: rgba(15, 137, 148, 0.22);
  border-color: rgba(255, 105, 20, 0.52);
}

:root.theme-dark .showcase-card,
:root.theme-dark .signal-card,
:root.theme-dark .signal-media,
:root.theme-dark .feature-card,
:root.theme-dark .detail-card,
:root.theme-dark .gallery-item {
  background: rgba(11, 20, 29, 0.9);
  border-color: rgba(66, 101, 120, 0.58);
}

:root.theme-dark .detail-illustration {
  border-color: rgba(89, 136, 161, 0.48);
  background: linear-gradient(145deg, rgba(17, 53, 72, 0.66), rgba(10, 20, 30, 0.9));
  color: #9fd8ea;
}

:root.theme-dark .detail-illustration::before {
  background-image: radial-gradient(rgba(133, 184, 206, 0.22) 0.8px, transparent 0.8px);
  opacity: 0.3;
}

:root.theme-dark .detail-illustration .fill-soft {
  fill: rgba(9, 24, 34, 0.82);
}

:root.theme-dark .detail-illustration .dot {
  fill: #ff913f;
  stroke: #ffd0a8;
}

:root.theme-dark .showcase-list li {
  background: rgba(15, 137, 148, 0.18);
}

:root.theme-dark .showcase-visual {
  background: linear-gradient(145deg, #142431 0%, #1a2f3f 100%);
  border-left-color: rgba(66, 101, 120, 0.58);
}

:root.theme-dark .signal-section {
  background: linear-gradient(155deg, rgba(11, 25, 34, 0.94) 0%, rgba(18, 33, 43, 0.9) 100%);
  border-color: rgba(74, 114, 136, 0.6);
}

:root.theme-dark .gallery-img-wrapper {
  background: #0f1b25;
}

:root.theme-dark .showcase-visual::after,
:root.theme-dark .signal-media::after,
:root.theme-dark .gallery-img-wrapper::after {
  background: rgba(5, 11, 16, 0.62);
  color: rgba(234, 246, 252, 0.95);
}

:root.theme-dark .accent-panel {
  background: linear-gradient(145deg, rgba(11, 25, 34, 0.95) 0%, rgba(18, 33, 43, 0.9) 60%, rgba(48, 33, 20, 0.72) 100%);
  border-color: rgba(72, 114, 136, 0.62);
}

:root.theme-dark .site-footer {
  background: rgba(8, 16, 24, 0.88);
  border-top-color: rgba(74, 114, 136, 0.6);
}

:root.theme-dark .footer-bottom {
  border-top-color: rgba(74, 114, 136, 0.52);
}

:root.theme-dark .footer-social-link {
  background: rgba(13, 24, 33, 0.9);
  border-color: rgba(96, 138, 160, 0.45);
  color: #d7eaf3;
}

:root.theme-dark .policy-shell {
  background: linear-gradient(150deg, rgba(11, 20, 29, 0.95), rgba(15, 27, 37, 0.94));
  border-color: rgba(74, 114, 136, 0.62);
}

:root.theme-dark .policy-toolbar,
:root.theme-dark .policy-heading {
  border-bottom-color: rgba(74, 114, 136, 0.45);
}

:root.theme-dark .consent-banner {
  background: rgba(8, 16, 24, 0.94);
  border-top-color: rgba(74, 114, 136, 0.5);
}

:root.a11y-large-text {
  font-size: 112%;
}

:root.a11y-high-contrast {
  --text: #0a1117;
  --muted: #273847;
  --line: #8da5b6;
}

:root.theme-dark.a11y-high-contrast {
  --text: #ffffff;
  --muted: #dcecf6;
  --line: #90b4ca;
}

:root.a11y-high-contrast :focus-visible {
  outline: 4px solid #ff8f33;
  outline-offset: 3px;
}

:root.a11y-reduce-motion *,
:root.a11y-reduce-motion *::before,
:root.a11y-reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

/* --- ANIMATIONS --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 64rem) {
    .showcase-card {
        grid-template-columns: 1fr;
    }
    .showcase-visual {
        display: none; /* Hide abstract visual on mobile to save space */
    }
    .signal-grid {
      grid-template-columns: 1fr;
    }
    .signal-media-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .panel:not(.hero-modern):not(.hero):not(.cta-panel):not(.signal-section):not(.accent-panel):not(.policy-shell) {
      padding: 1.5rem;
    }
    .hero {
      padding: 1.9rem;
    }
    .hero-modern h1 { font-size: 2.5rem; }
}

@media (max-width: 48rem) {
  main { padding: 1.15rem; }
  .hero-modern { padding: 3.5rem 0; }
  .policy-toolbar { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .header-social { gap: 0.32rem; }
  .theme-toggle {
    width: 31px;
    height: 31px;
  }
  .theme-toggle-icon::before {
    font-size: 0.8rem;
  }
  .social-icon-link {
    width: 30px;
    height: 30px;
  }
  .social-icon-svg {
    width: 15px;
    height: 15px;
  }
  .footer-bottom { text-align: center; }
  .footer-links-row { justify-content: center; }
  .consent-banner { flex-direction: column; text-align: center; }
  .details-grid { grid-template-columns: 1fr; }
  .detail-illustration svg { max-width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .signal-section { padding: 1.4rem; }
  .signal-media-grid { grid-template-columns: 1fr; }
  .panel { margin-bottom: 2.8rem; }
  .a11y-fab {
    right: 0.8rem;
    bottom: 0.8rem;
    min-width: 48px;
    height: 48px;
  }
  .a11y-panel {
    right: 0.8rem;
    bottom: 4.3rem;
  }
}

/* --- CONSENT BANNER --- */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(246, 250, 253, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.consent-banner.is-visible {
  transform: translateY(0);
}
.consent-banner.fade-out {
  opacity: 0;
  pointer-events: none;
}
