/* ==========================================================
   Sliiply Avaleht — slh-style.css
   Prefix: slh-  (ei konflikteeru slg- tootelehe koodiga)
   ========================================================== */

/* ----------------------------------------------------------
   1. :root — disainisüsteemi muutujad
   ---------------------------------------------------------- */
:root {
  --slh-mint:       #3BDFB2;
  --slh-mint-dark:  #1A8A68;
  --slh-bg:         #FFFFFF;
  --slh-dark-bg:    #1C1C1E;
  --slh-dark-card:  #2A2A2D;
  --slh-text:       #1C1C1E;
  --slh-muted:      #6B7280;
  --slh-border:     #E5E7EB;
  --slh-radius:     14px;
  --slh-radius-sm:  8px;
  --slh-shadow:     0 2px 16px rgba(0,0,0,0.08);
  --slh-shadow-lg:  0 8px 40px rgba(0,0,0,0.14);
  --slh-font:       'Poppins', sans-serif;
  --slh-transition: 0.25s ease;
}

/* ----------------------------------------------------------
   2. Reset + html
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.slh-hero,
.slh-triage,
.slh-scrubber,
.slh-duality,
.slh-social,
.slh-models,
.slh-brand,
.slh-guarantee,
.slh-sticky {
  font-family: var(--slh-font);
}

/* ----------------------------------------------------------
   2b. Woodmart flex-wrapper override
   Woodmart wrappib lehe sisu flex-konteinerisse — ilma selleta
   kuvatakse sektsioonid kõrvuti, mitte üksteise all.
   ---------------------------------------------------------- */
.slh-hero,
.slh-triage,
.slh-scrubber,
.slh-duality,
.slh-social,
.slh-models,
.slh-brand,
.slh-guarantee {
  display: block !important;
  width: 100% !important;
  float: none !important;
  flex-shrink: 0 !important;
  align-self: auto !important;
  box-sizing: border-box !important;
}

/* ----------------------------------------------------------
   3. .slh-container
   ---------------------------------------------------------- */
.slh-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----------------------------------------------------------
   4. Labels
   ---------------------------------------------------------- */
.slh-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slh-mint-dark);
  background: rgba(59, 223, 178, 0.12);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.slh-label--mint {
  color: var(--slh-dark-bg);
  background: var(--slh-mint);
}

/* ----------------------------------------------------------
   5. Section titles
   ---------------------------------------------------------- */
.slh-section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--slh-text);
  margin: 0 0 16px;
}

.slh-section-sub {
  font-size: 17px;
  color: var(--slh-muted);
  margin: 0 0 40px;
  max-width: 600px;
}

/* ----------------------------------------------------------
   6. Light overrides for dark sections
   ---------------------------------------------------------- */
.slh-title--light {
  color: #F0F0F0 !important;
}

.slh-sub--light {
  color: rgba(240,240,240,0.75) !important;
}

/* ----------------------------------------------------------
   7. Buttons — primary, secondary
   ---------------------------------------------------------- */
.slh-btn-primary,
.slh-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: var(--slh-radius-sm);
  font-family: var(--slh-font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--slh-transition), box-shadow var(--slh-transition), background var(--slh-transition);
  border: 2px solid transparent;
}

.slh-btn-primary {
  background: var(--slh-mint);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,223,178,0.35);
}
.slh-btn-primary:hover {
  background: var(--slh-mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(59,223,178,0.45);
}

.slh-btn-secondary {
  background: transparent;
  color: var(--slh-text);
  border-color: var(--slh-border);
}
.slh-btn-secondary:hover {
  border-color: var(--slh-mint);
  color: var(--slh-mint-dark);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------
   8. Scrubber CTA buttons (light/ghost-light for dark bg)
   ---------------------------------------------------------- */
.slh-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: var(--slh-radius-sm);
  font-family: var(--slh-font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: #FFFFFF;
  color: var(--slh-text);
  border: 2px solid transparent;
  transition: transform var(--slh-transition), box-shadow var(--slh-transition);
}
.slh-btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,0.25);
}

.slh-btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: var(--slh-radius-sm);
  font-family: var(--slh-font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.45);
  transition: border-color var(--slh-transition), transform var(--slh-transition);
}
.slh-btn-ghost-light:hover {
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* ----------------------------------------------------------
   9. Small button variant
   ---------------------------------------------------------- */
.slh-btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

/* ----------------------------------------------------------
   10. Text link
   ---------------------------------------------------------- */
.slh-text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--slh-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--slh-mint-dark);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color var(--slh-transition);
}
.slh-text-link:hover {
  border-color: var(--slh-mint);
}

/* ----------------------------------------------------------
   11. Stars
   ---------------------------------------------------------- */
.slh-stars {
  color: #F59E0B;
  font-size: 16px;
  letter-spacing: 1px;
}

/* ----------------------------------------------------------
   12. Scroll-in animations
   ---------------------------------------------------------- */
.slh-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.slh-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 13. cursor dot eemaldatud */

/* ----------------------------------------------------------
   14. Dark section base
   ---------------------------------------------------------- */
.slh-dark-section {
  background: var(--slh-dark-bg);
  position: relative;
  overflow: hidden;
}

.slh-dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.slh-dark-section h2,
.slh-dark-section h3,
.slh-dark-section p,
.slh-dark-section span:not(.slh-label--mint) {
  color: #F0F0F0 !important;
}

/* ----------------------------------------------------------
   15. Lamp
   ---------------------------------------------------------- */
.slh-lamp {
  position: absolute;
  z-index: 2;
}

.slh-lamp-left {
  top: 14%;
  left: 5%;
  transform: none;
}

.slh-lamp-shade {
  width: 70px;
  height: 50px;
  background: linear-gradient(160deg, #3a3a3c 0%, #2c2c2e 100%);
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  border-radius: 0 0 6px 6px;
  position: relative;
  box-shadow: inset 0 -8px 20px rgba(59,223,178,0.18);
}

.slh-lamp-bulb {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, #fffde7 30%, #f59e0b 80%);
  border-radius: 50%;
  box-shadow: 0 0 18px 8px rgba(255,220,100,0.45);
}

.slh-lamp-stem {
  width: 4px;
  height: 60px;
  background: #3a3a3c;
  margin: 0 auto;
}

.slh-lamp-base {
  width: 50px;
  height: 10px;
  background: #3a3a3c;
  border-radius: 0 0 6px 6px;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   16. Glow effect
   ---------------------------------------------------------- */
.slh-glow-left {
  position: absolute;
  top: 0;
  left: -4%;
  width: 600px;
  height: 700px;
  background:
    radial-gradient(ellipse at 30% 18%, rgba(59,223,178,0.22) 0%, rgba(59,223,178,0.08) 35%, transparent 60%),
    radial-gradient(ellipse at 22% 22%, rgba(255,220,100,0.10) 0%, transparent 40%);
  pointer-events: none;
  z-index: 2;
  animation: slhPulseGlow 4s ease-in-out infinite;
}

@keyframes slhPulseGlow {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.06); }
}

/* ----------------------------------------------------------
   S1 — Hero
   ---------------------------------------------------------- */
.slh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.slh-hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.slh-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,28,30,0.72) 0%,
    rgba(28,28,30,0.35) 60%,
    rgba(28,28,30,0.15) 100%
  );
  z-index: 1;
}

.slh-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex: 1;
  padding: 120px 0 80px;
}

.slh-hero-text-block {
  max-width: 600px;
}

.slh-trust-badge {
  display: inline-block;
  font-family: var(--slh-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--slh-mint);
  background: rgba(59,223,178,0.14);
  border: 1px solid rgba(59,223,178,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.slh-hero-title {
  font-family: var(--slh-font);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0 0 20px;
}

.slh-hero-sub {
  font-family: var(--slh-font);
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.82);
  margin: 0 0 32px;
  line-height: 1.6;
}

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

.slh-hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slh-hero-quote {
  font-family: var(--slh-font);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.slh-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.slh-scroll-hint span {
  font-family: var(--slh-font);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.slh-scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.45);
  border-bottom: 2px solid rgba(255,255,255,0.45);
  transform: rotate(45deg);
  animation: slhBounce 1.4s ease-in-out infinite;
}

@keyframes slhBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ----------------------------------------------------------
   S2 — Triage
   ---------------------------------------------------------- */
.slh-triage {
  padding: 96px 0;
  background: var(--slh-bg);
  text-align: center;
}

.slh-triage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 12px;
  text-align: left;
}

.slh-triage-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: #FAFAFA;
  border: 1.5px solid var(--slh-border);
  border-radius: var(--slh-radius);
  text-decoration: none;
  color: var(--slh-text);
  transition: border-color var(--slh-transition), box-shadow var(--slh-transition), transform var(--slh-transition);
}

.slh-triage-card:hover {
  border-color: var(--slh-mint);
  box-shadow: var(--slh-shadow);
  transform: translateY(-4px);
}

.slh-triage-icon {
  transition: transform var(--slh-transition);
}

.slh-triage-card:hover .slh-triage-icon {
  transform: rotate(8deg) scale(1.08);
}

.slh-triage-card h3 {
  font-family: var(--slh-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--slh-text);
  margin: 0;
}

.slh-triage-card p {
  font-family: var(--slh-font);
  font-size: 14px;
  color: var(--slh-muted);
  margin: 0;
  line-height: 1.55;
  flex: 1;
}

.slh-triage-link {
  font-family: var(--slh-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--slh-mint-dark);
  margin-top: auto;
}

/* ----------------------------------------------------------
   S3 — Scrubber
   ---------------------------------------------------------- */
.slh-scrubber {
  padding: 96px 0;
  text-align: center;
}

.slh-scrubber-hint {
  font-family: var(--slh-font);
  font-size: 14px;
  color: rgba(240,240,240,0.6) !important;
  margin: 0 0 36px;
  letter-spacing: 0.02em;
}

.slh-scrubber-wrap {
  max-width: 820px;
  margin: 0 auto 36px;
  background: var(--slh-dark-card);
  border-radius: var(--slh-radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

.slh-scrubber-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  overflow: hidden;
}

.slh-scrubber-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}

.slh-scrubber-img.loading {
  opacity: 0;
}

.slh-scrubber-age {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(28,28,30,0.75);
  backdrop-filter: blur(6px);
  color: var(--slh-mint) !important;
  font-family: var(--slh-font);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(59,223,178,0.3);
}

.slh-scrubber-info {
  padding: 22px 28px 20px;
  text-align: left;
  min-height: 120px;
  overflow: visible;
}

.slh-scrubber-title {
  font-family: var(--slh-font);
  font-size: 20px;
  font-weight: 700;
  color: #F0F0F0;
  margin-bottom: 8px;
}

.slh-scrubber-text {
  font-family: var(--slh-font);
  font-size: 14px;
  color: rgba(240,240,240,0.7);
  line-height: 1.6;
}

/* Track */
.slh-scrubber-track {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,0.1);
  margin: 0 28px 4px;
  border-radius: 3px;
  cursor: pointer;
  touch-action: none;
}

.slh-scrubber-fill {
  height: 100%;
  background: var(--slh-mint);
  border-radius: 3px;
  width: 0%;
  transition: width 0.2s ease;
}

.slh-scrubber-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border: 3px solid var(--slh-mint);
  border-radius: 50%;
  cursor: grab;
  transition: left 0.2s ease;
  touch-action: none;
}
.slh-scrubber-handle:active { cursor: grabbing; }

/* Stage buttons */
.slh-scrubber-stages {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 28px 20px;
  justify-content: center;
}

.slh-stage-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(240,240,240,0.7);
  font-family: var(--slh-font);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background var(--slh-transition), color var(--slh-transition), border-color var(--slh-transition);
}

.slh-stage-btn:hover,
.slh-stage-btn.active {
  background: var(--slh-mint);
  border-color: var(--slh-mint);
  color: #1C1C1E;
}

.slh-scrubber-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   S4 — Duality toggle
   ---------------------------------------------------------- */
.slh-duality {
  padding: 96px 0;
  background: #F8F9FA;
  text-align: center;
}

.slh-duality-toggle {
  display: inline-flex;
  background: #EEEEEE;
  border-radius: 40px;
  padding: 4px;
  gap: 0;
  margin-bottom: 48px;
}

.slh-toggle-btn {
  font-family: var(--slh-font);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: var(--slh-muted);
  border-radius: 36px;
  cursor: pointer;
  transition: background var(--slh-transition), color var(--slh-transition), box-shadow var(--slh-transition);
}

.slh-toggle-btn.active {
  background: #FFFFFF;
  color: var(--slh-text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Pane animation */
.slh-duality-pane {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.35s ease;
}

.slh-duality-pane.active {
  opacity: 1;
  max-height: 1200px;
}

.slh-duality-pane > * {
  display: initial;
}

/* Inner layout */
.slh-duality-pane {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}

/* Override grid on hidden pane */
.slh-duality-pane:not(.active) {
  display: block;
}

.slh-duality-visual img {
  width: 100%;
  border-radius: var(--slh-radius);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--slh-shadow-lg);
}

.slh-duality-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.slh-duality-points li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.slh-d-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(59,223,178,0.12);
  color: var(--slh-mint-dark);
  font-family: var(--slh-font);
  font-size: 15px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.slh-duality-points strong {
  font-family: var(--slh-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--slh-text);
  display: block;
  margin-bottom: 4px;
}

.slh-duality-points p {
  font-family: var(--slh-font);
  font-size: 14px;
  color: var(--slh-muted);
  margin: 0;
  line-height: 1.55;
}

/* ----------------------------------------------------------
   S5 — Sotsiaalne tõestus
   ---------------------------------------------------------- */
.slh-social {
  padding: 96px 0;
  background: var(--slh-bg);
  text-align: center;
}

.slh-social-header {
  margin-bottom: 56px;
}

.slh-social-number {
  display: block;
  font-family: var(--slh-font);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  color: var(--slh-mint-dark);
  line-height: 1;
  margin-bottom: 10px;
}

.slh-social-text {
  font-family: var(--slh-font);
  font-size: 18px;
  color: var(--slh-muted);
  margin: 0;
}

.slh-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.slh-testimonial {
  background: #FAFAFA;
  border: 1.5px solid var(--slh-border);
  border-radius: var(--slh-radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--slh-transition), box-shadow var(--slh-transition);
}

.slh-testimonial:hover {
  border-color: var(--slh-mint);
  box-shadow: var(--slh-shadow);
}

.slh-testimonial p {
  font-family: var(--slh-font);
  font-size: 15px;
  color: var(--slh-text);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.slh-testimonial cite {
  font-family: var(--slh-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: var(--slh-muted);
}

/* ----------------------------------------------------------
   S6 — Mudelid
   ---------------------------------------------------------- */
.slh-models {
  padding: 96px 0;
  background: #F8F9FA;
  text-align: center;
}

.slh-models-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.slh-model-card {
  background: #FFFFFF;
  border: 2px solid var(--slh-border);
  border-radius: var(--slh-radius);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--slh-transition), border-color var(--slh-transition), transform var(--slh-transition);
}

.slh-model-card:hover {
  box-shadow: var(--slh-shadow-lg);
  transform: translateY(-4px);
}

.slh-model-featured {
  border-color: var(--slh-mint);
  box-shadow: 0 4px 28px rgba(59,223,178,0.15);
}

.slh-model-badge {
  display: inline-block;
  font-family: var(--slh-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 4px;
}

.slh-badge-green {
  background: rgba(59,223,178,0.15);
  color: var(--slh-mint-dark);
}

.slh-badge-dark {
  background: rgba(28,28,30,0.08);
  color: var(--slh-text);
}

.slh-model-card h3 {
  font-family: var(--slh-font);
  font-size: 24px;
  font-weight: 800;
  color: var(--slh-text);
  margin: 0;
}

.slh-model-config {
  font-family: var(--slh-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--slh-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.slh-model-price-old {
  font-family: var(--slh-font);
  font-size: 16px;
  color: var(--slh-muted);
  text-decoration: line-through;
}

.slh-model-price {
  font-family: var(--slh-font);
  font-size: 36px;
  font-weight: 800;
  color: var(--slh-text);
  line-height: 1;
}

.slh-model-allinc {
  font-family: var(--slh-font);
  font-size: 13px;
  color: var(--slh-mint-dark);
  font-weight: 600;
  margin: 0;
}

.slh-model-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.slh-model-features li {
  font-family: var(--slh-font);
  font-size: 14px;
  color: var(--slh-text);
  padding-left: 20px;
  position: relative;
}

.slh-model-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--slh-mint-dark);
  font-weight: 700;
}

/* ----------------------------------------------------------
   S7 — Brändi lugu
   ---------------------------------------------------------- */
.slh-brand {
  padding: 96px 0;
  background: var(--slh-bg);
}

.slh-brand-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.slh-brand-img img {
  width: 100%;
  border-radius: var(--slh-radius);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--slh-shadow-lg);
}

.slh-brand-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slh-brand-text p {
  font-family: var(--slh-font);
  font-size: 16px;
  color: var(--slh-muted);
  line-height: 1.7;
  margin: 0;
}

/* ----------------------------------------------------------
   S8 — Garantii riba
   ---------------------------------------------------------- */
.slh-guarantee {
  background: var(--slh-dark-bg);
  padding: 28px 0;
}

.slh-guarantee-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.slh-guarantee-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--slh-font);
  font-size: 13px;
  font-weight: 600;
  color: rgba(240,240,240,0.85);
  white-space: nowrap;
}

.slh-guarantee-item svg {
  flex-shrink: 0;
  color: var(--slh-mint);
  transition: transform 0.4s ease;
}

.slh-guarantee-item:hover svg {
  transform: rotate(360deg);
}

/* ----------------------------------------------------------
   Sticky bar
   ---------------------------------------------------------- */
.slh-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(28,28,30,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.slh-sticky-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.slh-sticky-name {
  font-family: var(--slh-font);
  font-size: 15px;
  font-weight: 600;
  color: #F0F0F0;
  flex: 1;
}

.slh-sticky-price {
  font-family: var(--slh-font);
  font-size: 18px;
  font-weight: 800;
  color: var(--slh-mint);
}

/* ----------------------------------------------------------
   @media (max-width: 1024px) — tablet
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .slh-triage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slh-lamp {
    display: none;
  }

  .slh-glow-left {
    display: none;
  }

  .slh-duality-pane {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .slh-duality-pane:not(.active) {
    display: block;
  }

  .slh-brand-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ----------------------------------------------------------
   @media (max-width: 768px) — mobiil
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .slh-container { padding: 0 16px; }

  /* Hero */
  .slh-hero-content { padding: 90px 0 60px; }
  .slh-hero-title   { font-size: 32px; }
  .slh-hero-sub     { font-size: 16px; }
  .slh-cta-group    { flex-direction: column; }
  .slh-btn-primary,
  .slh-btn-secondary { width: 100%; justify-content: center; }

  /* Triage */
  .slh-triage     { padding: 64px 0; }
  .slh-triage-grid { grid-template-columns: 1fr; }

  /* Scrubber */
  .slh-scrubber { padding: 64px 0; }
  .slh-scrubber-info { padding: 18px 16px 14px; min-height: 160px; }
  .slh-scrubber-track { margin: 0 16px 4px; }
  .slh-scrubber-stages { padding: 10px 16px 16px; }
  .slh-scrubber-ctas { flex-direction: column; align-items: center; }
  .slh-btn-light,
  .slh-btn-ghost-light { width: 100%; justify-content: center; }


  /* Duality */
  .slh-duality  { padding: 64px 0; }
  .slh-duality-toggle { flex-direction: column; border-radius: 14px; }
  .slh-toggle-btn { border-radius: 10px; }

  /* Social */
  .slh-social { padding: 64px 0; }
  .slh-testimonials { grid-template-columns: 1fr; }

  /* Models */
  .slh-models { padding: 64px 0; }
  .slh-models-grid { grid-template-columns: 1fr; max-width: 100%; }

  /* Brand */
  .slh-brand { padding: 64px 0; }

  /* Guarantee */
  .slh-guarantee-inner { gap: 18px; justify-content: flex-start; }
  .slh-guarantee-item { font-size: 12px; }

  /* Sticky */
  .slh-sticky-name { font-size: 13px; }

  /* cursor dot eemaldatud */
}

@keyframes slhHandlePulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50%       { transform: translateX(-50%) scale(1.4); }
}
.slh-scrubber-handle.slh-pulse {
  animation: slhHandlePulse 0.9s ease-in-out 3;
  will-change: transform;
}

.slh-drag-hint {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  transition: opacity 1s ease;
}
.slh-drag-hint.hidden {
  opacity: 0;
  pointer-events: none;
}
