/* =============================================
   СУПЕРЛИМФ® КРЕМ-БАЛЬЗАМ — Standalone CSS
   Для Тильды: подключить как custom CSS
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap');

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

html { font-size: 17.5px; scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
  padding-bottom: 80px; /* space for sticky disclaimer */
}

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #8B1A30;
  --primary-rgb: 139, 26, 48;
  --gray-50: #F8F9FB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --wb-color: #7B3FA0;
  --ozon-color: #2451B4;
  --radius: 8px;
  --max-w: 1200px;
  --max-w-wide: 1280px;
}

/* ---- UTILITY ---- */
.sl-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.sl-container-wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- HEADER ---- */
.sl-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
}
.sl-header__inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sl-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.sl-logo img { height: 40px; width: auto; }
.sl-logo__text { display: flex; flex-direction: column; line-height: 1; }
.sl-logo__name {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.sl-logo__sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}
/* ---- BURGER BUTTON ---- */
.sl-burger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
  padding: 0;
}
.sl-burger:hover { background: var(--gray-100); }
.sl-burger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.sl-burger.is-open .sl-burger__line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.sl-burger.is-open .sl-burger__line:nth-child(2) { opacity: 0; }
.sl-burger.is-open .sl-burger__line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- DROPDOWN MENU ---- */
.sl-menu {
  display: none;
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 49;
}
.sl-menu.is-open { display: block; }
.sl-menu__inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sl-menu__link {
  display: block;
  padding: 0.75rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.sl-menu__link:hover { color: var(--primary); background: var(--gray-50); }
.sl-menu__btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}
@media (min-width: 480px) {
  .sl-menu__btns { flex-direction: row; }
  .sl-menu__btns .btn { flex: 1; justify-content: center; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-wb {
  border-color: var(--wb-color);
  color: var(--wb-color);
  background: transparent;
}
.btn-wb:hover { background: var(--wb-color); color: #fff; }
.btn-ozon {
  border-color: var(--ozon-color);
  color: var(--ozon-color);
  background: transparent;
}
.btn-ozon:hover { background: var(--ozon-color); color: #fff; }
.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover { background: #f3f4f6; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

/* ---- WAVE CONTAINERS ---- */
.sl-wave-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent),
                      linear-gradient(to bottom, transparent, black 14%, black 86%, transparent);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent),
              linear-gradient(to bottom, transparent, black 14%, black 86%, transparent);
  mask-composite: intersect;
}
.sl-wave-bg svg { width: 100%; height: 100%; }

.sl-wave-left {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 28%;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(to left, transparent, black 20%, black 100%);
  mask-image: linear-gradient(to left, transparent, black 20%, black 100%);
}
.sl-wave-left svg { width: 100%; height: 100%; }

.sl-wave-right {
  position: absolute;
  right: 0; top: 0;
  height: 100%;
  width: 28%;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 100%),
                      linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent, black 20%, black 100%),
              linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  mask-composite: intersect;
}
.sl-wave-right svg { width: 100%; height: 100%; }

.sl-wave-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent),
                      linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent),
              linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  mask-composite: intersect;
}
.sl-wave-card svg { width: 100%; height: 100%; }

/* ---- SECTIONS ---- */
.sl-section {
  width: 100%;
  padding: 5rem 1.5rem;
}
.sl-section--white { background: #fff; }
.sl-section--gray { background: var(--gray-50); }
.sl-section--border-b { border-bottom: 1px solid var(--gray-200); }
.sl-section--border-t { border-top: 1px solid var(--gray-200); }
.sl-section--rel { position: relative; overflow: hidden; }

/* ---- HERO ---- */
.sl-hero {
  background: #fff;
  padding: 5rem 1.5rem 6rem;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.sl-hero__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.sl-hero__col { display: flex; flex-direction: column; gap: 2rem; }
.sl-hero__badges { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.sl-badge-primary {
  background: rgba(139,26,48,0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
}
.sl-badge-gray {
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
}
.sl-hero__h1 {
  font-weight: 900;
  text-transform: uppercase;
  color: #111827;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}
.sl-hero__h1 .accent { color: var(--primary); }
.sl-hero__desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-top: 1rem;
}
.sl-hero__desc strong { color: #111827; }
.sl-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  list-style: none;
}
.sl-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-700);
}
.sl-checklist__icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.sl-hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; padding-top: 0.5rem; }
.sl-hero__img { display: flex; justify-content: center; align-items: flex-end; }
.sl-hero__img img {
  width: 100%;
  max-width: 580px;
  max-height: 680px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

@media (max-width: 768px) {
  .sl-hero__grid { grid-template-columns: 1fr; }
  .sl-hero__img { order: -1; }
  .sl-hero__img img { max-height: 300px; }
  .sl-checklist { grid-template-columns: 1fr; }
}

/* ---- TRUST STRIP ---- */
.sl-trust {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 1.5rem;
}
.sl-trust__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
}
.sl-trust__logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.sl-trust__logo img { height: 36px; }
.sl-trust__logo span {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.sl-trust__divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
  flex-shrink: 0;
}
.sl-trust__text p { font-size: 0.95rem; color: var(--gray-700); line-height: 1.4; }
.sl-trust__text p strong { color: #111827; }
.sl-trust__text p.sub {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 0.25rem;
}
@media (max-width: 640px) {
  .sl-trust__inner { flex-direction: column; gap: 1rem; text-align: center; }
  .sl-trust__divider { display: none; }
}

/* ---- SECTION HEADINGS ---- */
.sl-h2 {
  font-weight: 700;
  font-size: 1.875rem;
  color: #111827;
  line-height: 1.3;
}
.sl-subtitle { font-size: 1rem; color: var(--gray-600); line-height: 1.7; }
.sl-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

/* ---- CARDS ---- */
.sl-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.sl-card--shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.sl-card__body { padding: 1.75rem; }
.sl-card__body--lg { padding: 2rem; }
.sl-card__z { position: relative; z-index: 2; }

/* ---- SYMPTOM CARDS ---- */
.sl-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.sl-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.sl-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .sl-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .sl-grid-3, .sl-grid-2, .sl-grid-4 { grid-template-columns: 1fr; } }

.sl-symptom-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.sl-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 6px;
  background: #f0e2e7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sl-icon-wrap svg { width: 20px; height: 20px; color: var(--gray-500); }
.sl-symptom-icon { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.sl-symptom-text { font-size: 0.95rem; color: var(--gray-700); font-weight: 500; line-height: 1.4; }

/* ---- HOW IT WORKS ---- */
.sl-how-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.sl-how-photos { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.sl-how-photos img { width: 100%; max-width: 520px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1)); }
.sl-how-list { display: flex; flex-direction: column; border-top: 1px solid var(--gray-200); }
.sl-how-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.sl-how-num {
  flex-shrink: 0;
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  background: rgba(139,26,48,0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.sl-how-title { font-weight: 600; font-size: 0.9rem; color: #111827; }
.sl-how-desc { font-size: 0.85rem; color: var(--gray-500); margin-top: 2px; line-height: 1.6; }
@media (max-width: 768px) { .sl-how-grid { grid-template-columns: 1fr; } }

/* ---- COMPOSITION ---- */
.sl-bullet-list { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.25rem; }
.sl-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.sl-bullet-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.sl-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.sl-divider { border: none; border-top: 1px solid var(--gray-200); margin: 1rem 0; }

/* ---- SPECIALIST CARDS ---- */
.sl-specialist-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sl-specialist-card .sl-aspect {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}
.sl-specialist-card .sl-finding {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.75;
  flex: 1;
}
.sl-specialist-card .sl-author-block {
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
}
.sl-specialist-card .sl-author-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: #111827;
}
.sl-specialist-card .sl-author-role {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ---- APPLICATION STEPS ---- */
.sl-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.sl-step { display: flex; align-items: flex-start; gap: 1rem; }
.sl-step-num {
  width: 2rem; height: 2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.sl-step-text { font-size: 0.95rem; color: var(--gray-700); font-weight: 500; line-height: 1.5; padding-top: 4px; }
@media (max-width: 768px) { .sl-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .sl-steps { grid-template-columns: 1fr; } }

/* ---- INFO CARDS (storage, contraindications) ---- */
.sl-info-list { display: flex; flex-direction: column; gap: 0.75rem; }
.sl-info-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.95rem; color: var(--gray-600); }
.sl-info-bullet { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-400); flex-shrink: 0; margin-top: 8px; }
.sl-info-icon { width: 16px; height: 16px; color: var(--gray-400); flex-shrink: 0; margin-top: 2px; }
.sl-info-item strong { color: #111827; }

/* ---- STAT CARDS ---- */
.sl-stat-num { font-size: 2.25rem; font-weight: 700; color: var(--primary); line-height: 1; }
.sl-stat-label { font-weight: 600; font-size: 1rem; color: #111827; margin-top: 0.5rem; }
.sl-stat-sub { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; margin-top: 0.25rem; }

/* ---- RESEARCH ---- */
.sl-research-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}
.sl-research-text { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.sl-research-text p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.75; }
.sl-research-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: var(--gray-500); margin-top: 0.5rem; }
.sl-research-img a {
  display: block;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  padding: 4px;
  transition: opacity 0.2s;
}
.sl-research-img a:hover { opacity: 0.85; }
.sl-research-img img { width: 176px; object-fit: contain; display: block; }
.sl-research-note { font-size: 0.8rem; color: var(--gray-400); line-height: 1.6; margin-top: 1rem; }
@media (max-width: 640px) { .sl-research-box { flex-direction: column; } .sl-research-img img { width: 100%; } }

/* ---- REVIEWS ---- */
.sl-review-card {}
.sl-stars { display: flex; gap: 3px; margin-bottom: 0.75rem; }
.sl-stars svg { width: 16px; height: 16px; fill: var(--primary); color: var(--primary); }
.sl-review-text { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; }
.sl-review-author { font-weight: 600; font-size: 0.9rem; color: #111827; margin-top: 0.75rem; }

/* ---- CERTIFICATE ---- */
.sl-cert-table {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.sl-cert-row { padding: 1rem 1.25rem; }
.sl-cert-row + .sl-cert-row { border-top: 1px solid var(--gray-200); }
.sl-cert-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.sl-cert-value { font-size: 0.9rem; font-weight: 500; color: #111827; white-space: pre-line; }

.sl-cert-img a {
  display: block;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  padding: 8px;
  transition: opacity 0.2s;
}
.sl-cert-img a:hover { opacity: 0.85; }
.sl-cert-img img { width: 100%; object-fit: contain; display: block; }
.sl-cert-note { display: flex; align-items: flex-start; gap: 0.75rem; margin-top: 1rem; }
.sl-cert-note svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.sl-cert-note p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* ---- INSTRUCTION LINKS ---- */
.sl-instruction-links { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.sl-instruction-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.sl-instruction-links a:hover { text-decoration: underline; }
.sl-instruction-links a svg { width: 16px; height: 16px; }
.sl-instruction-links .sep { color: var(--gray-200); }

/* ---- CTA ---- */
.sl-cta {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem;
}
.sl-cta video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sl-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(139,26,48,0.8);
}
.sl-cta__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.sl-cta__h2 {
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.3;
}
.sl-cta__desc { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.7; }
.sl-cta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ---- FOOTER ---- */
.sl-footer {
  background: var(--gray-800);
  padding: 2.5rem 1.5rem;
}
.sl-footer__inner { max-width: var(--max-w-wide); margin: 0 auto; display: flex; flex-direction: column; gap: 1.25rem; }
.sl-footer__brand { font-weight: 700; color: #fff; font-size: 1rem; }
.sl-footer__bottom {
  border-top: 1px solid #374151;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.sl-footer__info { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.85rem; color: #9CA3AF; line-height: 1.65; }
.sl-footer__links { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; font-size: 0.9rem; }
.sl-footer__links a { color: #6B7280; text-decoration: none; transition: color 0.2s; }
.sl-footer__links a:hover { color: #fff; }

/* ---- STICKY DISCLAIMER ---- */
.sl-disclaimer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(240, 237, 242, 0.95);
  backdrop-filter: blur(4px);
  border-top: 1px solid #d9d4e0;
  padding: 1rem 1.5rem;
}
.sl-disclaimer p {
  text-align: center;
  font-size: 0.85rem;
  color: #7a6e87;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.5;
}

/* ---- ICONS (inline SVG helpers) ---- */
svg.sl-icon { display: inline-block; vertical-align: middle; }
