/* ============================================================
   SOETUPPA.EE — HOMEPAGE STYLES
   Primary: #e8762b  |  Navy: #1a2332  |  BG: #0f1620
   ============================================================ */

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

:root {
  --orange:   #e8762b;
  --orange-d: #c9601a;
  --navy:     #1a2332;
  --bg:       #0f1620;
  --bg2:      #141e2d;
  --white:    #ffffff;
  --gray:     #b0bec5;
  --red:      #c62828;
  --radius:   8px;
  --font:     'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body.page-template-front-page,
body.home {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
}

body.page-template-front-page .site-header,
body.home .site-header { display: none !important; }
body.page-template-front-page .site-footer,
body.home .site-footer { display: none !important; }
body.page-template-front-page #page,
body.home #page { margin: 0; padding: 0; }
body.page-template-front-page .site-main,
body.home .site-main { margin: 0; padding: 0; }
body.page-template-front-page .entry-content,
body.home .entry-content { margin: 0; padding: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.sp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 22, 32, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 118, 43, 0.15);
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp-nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.sp-nav__logo-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.sp-nav__logo-text span:first-child {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}

.sp-nav__logo-text span:last-child {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
}

.sp-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.sp-nav__links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.sp-nav__links a:hover { color: var(--orange); }

.sp-nav__cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background 0.2s !important;
}

.sp-nav__cta:hover { background: var(--orange-d) !important; color: var(--white) !important; }

/* Hamburger */
.sp-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.sp-nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.sp-nav__mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(15,22,32,0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 20px 24px 28px;
  border-bottom: 1px solid rgba(232,118,43,0.2);
  flex-direction: column;
  gap: 4px;
}

.sp-nav__mobile.open { display: flex; }

.sp-nav__mobile a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.sp-nav__mobile a:hover { color: var(--orange); }

.sp-nav__mobile a.cta-mobile {
  margin-top: 12px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  text-align: center;
  font-weight: 700;
}

/* ============================================================
   HERO
   ============================================================ */
.sp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.sp-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('http://192.168.150.138/wp-content/uploads/2026/04/Gemini_Generated_Image_nsd68dnsd68dnsd6-scaled.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 22, 32, 0.85) 0%,
    rgba(26, 35, 50, 0.75) 50%,
    rgba(15, 22, 32, 0.80) 100%
  );
}

/* Extra atmospheric gradient on top */
.sp-hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(15, 22, 32, 0.9) 100%
  );
}

.sp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  width: 100%;
}

.sp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 118, 43, 0.15);
  border: 1px solid rgba(232, 118, 43, 0.35);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.sp-hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.sp-hero__title {
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 780px;
}

.sp-hero__title em {
  font-style: normal;
  color: var(--orange);
}

.sp-hero__subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.65;
}

.sp-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 8px;
  transition: all 0.25s;
  border: 2px solid var(--orange);
}

.btn-primary:hover {
  background: var(--orange-d);
  border-color: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,118,43,0.35);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.25s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.sp-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.sp-hero__scroll svg { opacity: 0.5; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.sp-stats {
  background: var(--navy);
  border-top: 2px solid var(--orange);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sp-stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.sp-stats__item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.sp-stats__item:last-child { border-right: none; }

.sp-stats__number {
  font-size: 40px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -1px;
}

.sp-stats__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}

.sp-stats__sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ============================================================
   BRANDS BAR
   ============================================================ */
.sp-brands {
  background: var(--bg2);
  padding: 40px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sp-brands__label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}

.sp-brands__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 0;
}

.sp-brands__item {
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
  transition: color 0.25s;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: default;
}

.sp-brands__item:last-child { border-right: none; }

.sp-brands__item:hover { color: rgba(255,255,255,0.75); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sp-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.sp-section-header__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.sp-section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.8px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.sp-section-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   PRODUCT CATEGORIES GRID
   ============================================================ */
.sp-products {
  background: var(--bg);
  padding: 96px 24px;
}

.sp-products__quicknav {
  max-width: 1200px;
  margin: 0 auto 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
  align-items: center;
}

.sp-products__quicknav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.sp-products__quicknav-link:hover,
.sp-products__quicknav-link:focus-visible {
  color: var(--white);
  border-color: rgba(232, 118, 43, 0.45);
  background: rgba(232, 118, 43, 0.12);
  outline: none;
}

.sp-products__quicknav-link--accent {
  border-color: rgba(232, 118, 43, 0.35);
  color: var(--orange);
}

.sp-products__quicknav-link--accent:hover,
.sp-products__quicknav-link--accent:focus-visible {
  color: #fff;
  background: rgba(232, 118, 43, 0.25);
}

#tooted-peamised,
#tooted-vesi,
#tooted-juhtimine {
  scroll-margin-top: 96px;
}


.sp-products__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sp-product-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.sp-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.sp-product-card:hover {
  border-color: rgba(232, 118, 43, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(232,118,43,0.15);
  color: var(--white);
}

.sp-product-card:hover::before { transform: scaleX(1); }

.sp-product-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 118, 43, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-product-card__icon svg { color: var(--orange); }

.sp-product-card__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.sp-product-card__brands {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sp-product-card__brand {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
}

.sp-product-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  flex: 1;
}

.sp-product-card__arrow {
  margin-top: auto;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.sp-product-card:hover .sp-product-card__arrow { gap: 10px; }

/* Secondary tier: hydraulics vs automation (separate concerns) */
.sp-products__tier-note {
  color: rgba(255, 255, 255, 0.7);
}

.sp-products__split {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.sp-products__split-col {
  min-width: 0;
}

/* Boilerid ja akupaagid: alamkategooriad + ülemine link — sama rida nagu “Vaata →” */
.sp-products__subrow-list {
  display: grid;
  gap: 0.75rem;
}

.sp-products__subrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.2s, background 0.2s;
}

.sp-products__subrow:hover,
.sp-products__subrow:focus-visible {
  border-color: rgba(232, 118, 43, 0.35);
  background: rgba(232, 118, 43, 0.08);
  color: var(--white);
  outline: none;
}

.sp-products__subrow__title {
  font-weight: 600;
  text-align: left;
}

.sp-products__subrow__cta {
  opacity: 0.8;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.sp-products__subrow--parent {
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .sp-products__split {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ABOUT / TRUST BADGES
   ============================================================ */
.sp-about {
  background: var(--navy);
  padding: 96px 24px;
}

.sp-about__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sp-about__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.sp-trust-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.sp-trust-badge:hover {
  background: rgba(232, 118, 43, 0.07);
  border-color: rgba(232, 118, 43, 0.25);
  transform: translateY(-3px);
}

.sp-trust-badge__icon {
  width: 52px;
  height: 52px;
  background: rgba(232, 118, 43, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.sp-trust-badge__number {
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.5px;
  line-height: 1;
}

.sp-trust-badge__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-align: center;
  line-height: 1.4;
}

.sp-trust-badge__sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.sp-faq {
  background: var(--bg);
  padding: 96px 24px;
}

.sp-faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.sp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.sp-faq__item {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}

.sp-faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: color 0.2s;
}

.sp-faq__question:hover { color: var(--orange); }

.sp-faq__icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s;
}

.sp-faq__item.open .sp-faq__icon {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(45deg);
}

.sp-faq__answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 18px;
}

.sp-faq__item.open .sp-faq__answer { display: block; }

/* Red warning block */
.sp-warning {
  background: rgba(198, 40, 40, 0.1);
  border: 1px solid rgba(198, 40, 40, 0.35);
  border-left: 4px solid #c62828;
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sp-warning__icon {
  color: #ef5350;
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.sp-warning__title {
  font-size: 15px;
  font-weight: 700;
  color: #ef5350;
  margin-bottom: 6px;
}

.sp-warning__text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.sp-cta {
  background: var(--navy);
  padding: 80px 24px;
  border-top: 2px solid var(--orange);
}

.sp-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sp-cta h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.7px;
  margin-bottom: 16px;
  color: var(--white);
  line-height: 1.15;
}

.sp-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.sp-cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sp-cta__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
}

.sp-cta__phone a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
}

.sp-cta__phone a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.sp-footer {
  background: #080d13;
  padding: 64px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.sp-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sp-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}

.sp-footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.sp-footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.sp-footer__col ul { list-style: none; }

.sp-footer__col ul li { margin-bottom: 10px; }

.sp-footer__col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.sp-footer__col ul a:hover { color: var(--orange); }

.sp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.sp-footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.sp-footer__legal {
  display: flex;
  gap: 20px;
}

.sp-footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.sp-footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sp-about__grid { grid-template-columns: repeat(3, 1fr); }
  .sp-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .sp-nav__links { display: none; }
  .sp-nav__burger { display: flex; }

  .sp-stats__inner { grid-template-columns: 1fr; }
  .sp-stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 24px; }
  .sp-stats__item:last-child { border-bottom: none; }

  .sp-brands__item { padding: 8px 16px; font-size: 13px; }

  .sp-products__grid { grid-template-columns: 1fr; }

  .sp-about__grid { grid-template-columns: repeat(2, 1fr); }

  .sp-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .sp-footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .sp-about__grid { grid-template-columns: 1fr; }
  .sp-hero__title { letter-spacing: -0.5px; }
  .sp-cta__actions { flex-direction: column; align-items: center; }
  .sp-hero__actions { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; width: 100%; max-width: 300px; }
}

/* ===== ADVICE SECTION (Räägi enne ostu) ===== */
.sp-advice {
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  position: relative;
}
.sp-advice::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
}
.sp-advice__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-advice__badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(232, 118, 43, 0.15);
  color: var(--orange);
  border: 1px solid rgba(232, 118, 43, 0.35);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.sp-advice__title {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 1rem;
  max-width: 820px;
}
.sp-advice__lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 2.5rem;
  max-width: 780px;
}
.sp-advice__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}
.sp-advice__card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.sp-advice__card:hover {
  border-color: rgba(232, 118, 43, 0.4);
  background: rgba(232, 118, 43, 0.06);
}
.sp-advice__card-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.sp-advice__card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.sp-advice__card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.sp-advice__why {
  padding: 1.25rem 1.5rem;
  background: rgba(232, 118, 43, 0.08);
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 900px;
}
.sp-advice__why strong {
  color: var(--orange);
}

@media (max-width: 600px) {
  .sp-advice { padding: 56px 18px; }
  .sp-advice__grid { gap: 1rem; }
}

/* === 2026-04-18 sp-warning--ok roheline versioon === */
.sp-warning.sp-warning--ok {
  background: #eaf7ee !important;
  border-color: #2ea04a !important;
  color: #1a5c2c !important;
}
.sp-warning.sp-warning--ok .sp-warning__icon {
  background: #2ea04a !important;
  color: #fff !important;
}
.sp-warning.sp-warning--ok .sp-warning__title {
  color: #1a5c2c !important;
}

/* Burger → X kui menüü lahti */
.sp-nav__burger[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.sp-nav__burger[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.sp-nav__burger[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
