:root{
  /* Light is default (auto -> light unless system prefers dark) */
  /*--bg: #FAFBFF;*/
  --bg-soft: #F0F4FF;
  --surface: #FFFFFF;
  --surface-2: #F7FAFF;
  --text: #0A0F1C;
  --muted: #4E5D78;
  --line: rgba(16, 24, 40, .10);

  --primary: #2D9CFF;
  --primary-hover: #0E8BF5;
  --primary-ink: #FFFFFF;

  --accent: #FFB946;

  --shadow: 0 20px 70px rgba(8, 18, 36, .08);
  --shadow2: 0 8px 24px rgba(8, 18, 36, .06);

  --radius: 20px;
  --radius2: 14px;

  --container: 1200px;
  --ease: cubic-bezier(.2,.9,.2,1);

  /* Hero image hook */
  --hero-image: none;
  --hero-overlay: rgba(250,251,255,.25);
  --hero-title: #fff;
  --hero-subtext: #fff;
  --hero-lead-text: #fff;
  --trust-text: #fff;
}

@media (prefers-color-scheme: dark){
  :root{
    /* Auto dark (only when user hasn't forced theme) */
    --bg: #0A0F1A;
    --bg-soft: #0D1424;
    --surface: #101828;
    --surface-2: #0C1420;
    --text: #E8F0FF;
    --muted: #A0AEC8;
    --line: rgba(255,255,255,.10);

    --primary: #4DA8FF;
    --primary-hover: #2D9CFF;
    --primary-ink: #0A0F1A;

    --accent: #FFB946;

    --shadow: 0 24px 80px rgba(0,0,0,.40);
    --shadow2: 0 10px 36px rgba(0,0,0,.28);

    --hero-overlay: rgba(8,12,22,.65);
    --hero-title: #fff;
    --hero-subtext: #fff;
    --hero-lead-text: #fff;
  }
}

/* Forced theme overrides (take priority) */
:root[data-theme="light"]{
  --bg: #FAFBFF;
  --bg-soft: #F0F4FF;
  --surface: #FFFFFF;
  --surface-2: #F7FAFF;
  --text: #0A0F1C;
  --muted: #4E5D78;
  --line: rgba(16, 24, 40, .10);
  --hero-title: #fff;
  --hero-subtext: #fff;
  --hero-lead-text: #fff;
  --trust-text: #fff;
  --pages-title: black;
  --stats-note: #fff;

  --primary: #2D9CFF;
  --primary-hover: #0E8BF5;
  --primary-ink: #FFFFFF;
 

  --accent: #FFB946;

  --shadow: 0 20px 70px rgba(8, 18, 36, .08);
  --shadow2: 0 8px 24px rgba(8, 18, 36, .06);

  --hero-overlay: rgba(250,251,255,);
}
:root[data-theme="dark"]{
  --bg: #0A0F1A;
  --bg-soft: #0D1424;
  --surface: #101828;
  --surface-2: #0C1420;
  --text: #E8F0FF;
  --muted: #A0AEC8;
  --line: rgba(255,255,255,.10);
  --hero-title: #fff;
  --hero-lead-text: #fff;
  --pages-title: white;
  --stats-note: #A0AEC8;

  --primary: #4DA8FF;
  --primary-hover: #2D9CFF;
  --primary-ink: #0A0F1A;

  --accent: #FFB946;

  --shadow: 0 24px 80px rgba(0,0,0,.40);
  --shadow2: 0 10px 36px rgba(0,0,0,.28);

  --hero-overlay: rgba(8,12,22,.65);
}

*{ box-sizing:border-box; }




::selection{
  background: rgba(63, 166, 255, 0.25);
  color: var(--text);
}
:root[data-theme="dark"] ::selection{
  background: rgba(89, 182, 255, 0.30);
}
html{ scroll-behavior:smooth; scroll-padding-top: 80px; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background .25s ease, color .25s ease;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  overflow-x: hidden;
}

.brand__img{
  width: 200px;
  height: auto;
  display: block;
}

@media (max-width:420px){
  .brand__img{
    width: clamp(120px, 100%, 200px);
  }
}

@media (max-width:290px){
  .header__inner{
    display:block !important;
  }
}



a{ color:inherit; text-decoration:none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:2px solid rgba(63,166,255,.6);
  outline-offset:3px;
  border-radius:10px;
}
:root[data-theme="dark"] a:focus-visible, 
:root[data-theme="dark"] button:focus-visible, 
:root[data-theme="dark"] input:focus-visible, 
:root[data-theme="dark"] select:focus-visible, 
:root[data-theme="dark"] textarea:focus-visible{
  outline:2px solid rgba(89,182,255,.65);
}

.container{ width:min(var(--container), calc(100% - 40px)); margin:0 auto; }

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.skip{
  position:absolute;
  left:14px; top:12px;
  padding:12px 16px;
  background: var(--surface);
  border:1px solid var(--line);
  border-radius:12px;
  font-weight: 600;
  transform:translateY(-150%);
  transition:transform .25s var(--ease);
  z-index:1000;
  box-shadow: var(--shadow2);
}
.skip:focus{ transform:translateY(0); }

.muted{ color: var(--muted); }

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 3px rgba(0,0,0,.02);
}
:root[data-theme="dark"] .header{ 
  background: rgba(12,18,36,.88); 
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]):not([data-theme="dark"]) .header{
    background: rgba(12,18,36,.88);
  }
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:18px 0;
  min-height: 72px;
}
.header__right{
  display:flex;
  align-items:center;
  gap:16px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  user-select:none;
  transition: opacity .2s var(--ease);
}
.brand:hover{
  opacity: 0.85;
}
.brand__mark{
  width:40px; height:40px;
  border-radius:11px;
  background: linear-gradient(135deg, var(--primary) 0%, #1F8EF5 100%);
  box-shadow: 0 4px 16px rgba(45, 156, 255, .25);
  border:1px solid rgba(255,255,255,.15);
  flex-shrink: 0;
  position: relative;
}
.brand__mark::after{
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,.3);
}
:root[data-theme="dark"] .brand__mark{ 
  box-shadow: 0 4px 20px rgba(77, 168, 255, .35);
  border-color: rgba(255,255,255,.20);
}
.brand__name{ font-weight:800; letter-spacing:-.2px; font-size: 18px; }

/* Theme switcher */
.theme-switch{
  position:relative;
}
.theme-switch__btn{
  width:40px; 
  height:40px;
  border-radius:10px;
  border:1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: all .2s var(--ease);
}
.theme-switch__btn:hover{
  background: var(--bg-soft);
  border-color: color-mix(in srgb, var(--primary) 40%, var(--line));
  transform: translateY(-1px);
}
.theme-switch__btn:active{
  transform: scale(0.96);
}
.theme-switch__icon{
  width:22px; 
  height:22px;
  opacity:.85;
}

.theme-switch__dropdown{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  width:180px;
  padding:6px;
  border-radius:12px;
  border:1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  backdrop-filter: blur(16px);
  opacity:0;
  transform:translateY(-8px);
  pointer-events:none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s;
  visibility: hidden;
  z-index:100;
}
:root[data-theme="dark"] .theme-switch__dropdown{
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.theme-switch__dropdown.is-open{
  opacity:1;
  transform:translateY(0);
  pointer-events:all;
  visibility: visible;
  transition-delay: 0s;
}

.theme-switch__option{
  width:100%;
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border:0;
  border-radius:8px;
  background:transparent;
  color: var(--text);
  font-size:14px;
  font-weight:550;
  cursor:pointer;
  transition: background .2s var(--ease);
  text-align:left;
}
.theme-switch__option:hover{
  background: var(--bg-soft);
}
.theme-switch__option[data-active="true"]{
  background: var(--bg-soft);
  color: var(--primary);
}
.theme-switch__option svg{
  width:20px;
  height:20px;
  opacity:.8;
  flex-shrink:0;
}
.theme-switch__option[data-active="true"] svg{
  opacity:1;
}

/* Language Switch */
.lang-switch{
  position:relative;
  display:flex;
  align-items:center;
}
.lang-switch__btn{
  width:40px;
  height:40px;
  border-radius:10px;
  border:1px solid var(--line);
  background: var(--surface);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  cursor:pointer;
  transition: all .2s var(--ease);
  color: var(--text);
  padding:0;
  font-size:12px;
  font-weight:700;
}
.lang-switch__btn:hover{
  background: var(--bg-soft);
  border-color: color-mix(in srgb, var(--primary) 30%, var(--line));
  transform: translateY(-1px);
}
.lang-switch__icon{
  width:16px;
  height:16px;
  display:none;
}
.lang-switch__text{
  font-size:13px;
  font-weight:700;
  letter-spacing:0.3px;
}

.lang-switch__dropdown{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  min-width:160px;
  padding:8px;
  border-radius:12px;
  border:1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 8px 32px rgba(8,18,36,.12);
  opacity:0;
  transform:translateY(-8px);
  pointer-events:none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s;
  visibility: hidden;
  z-index:100;
}
:root[data-theme="dark"] .lang-switch__dropdown{
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.lang-switch__dropdown.is-open{
  opacity:1;
  transform:translateY(0);
  pointer-events:all;
  visibility: visible;
  transition-delay: 0s;
}

.lang-switch__option{
  width:100%;
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border:0;
  border-radius:8px;
  background:transparent;
  color: var(--text);
  font-size:14px;
  font-weight:550;
  cursor:pointer;
  transition: background .2s var(--ease);
  text-align:left;
}
.lang-switch__option:hover{
  background: var(--bg-soft);
}
.lang-switch__option[data-active="true"]{
  background: var(--bg-soft);
  color: var(--primary);
}
.lang-switch__flag{
  font-size:20px;
  line-height:1;
  flex-shrink:0;
}

/* Nav */
.nav{ display:flex; align-items:center; gap:0; position:relative; }
.nav__toggle{
  display:none;
  width:40px;
  height:40px;
  border-radius:10px;
  border:1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  cursor:pointer;
  padding:0;
  align-items:center;
  justify-content:center;
  transition: all .2s var(--ease);
}
.nav__toggle:hover{
  background: var(--bg-soft);
  border-color: color-mix(in srgb, var(--primary) 40%, var(--line));
  transform: translateY(-1px);
}
.nav__toggle:active{
  transform: scale(0.96);
}

.nav__burger{
  width:18px;
  height:14px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
}
.nav__burger-line{
  display:block;
  width:100%;
  height:2px;
  background: var(--text);
  border-radius:2px;
  transition: all .3s var(--ease);
  opacity:.85;
}
.nav__toggle[aria-expanded="true"] .nav__burger-line:nth-child(1){
  transform: translateY(6px) rotate(45deg);
  opacity:1;
}
.nav__toggle[aria-expanded="true"] .nav__burger-line:nth-child(2){
  opacity:0;
  transform: translateX(10px);
}
.nav__toggle[aria-expanded="true"] .nav__burger-line:nth-child(3){
  transform: translateY(-6px) rotate(-45deg);
  opacity:1;
}

.nav__panel{ 
  display:flex; 
  align-items:center; 
  gap:4px; 
}
.nav__links{
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__close,
.nav__footer{
  display: none;
}
.nav__link{
  font-size:15px;
  font-weight: 600;
  color: color-mix(in srgb, var(--text) 80%, transparent);
  padding:10px 16px;
  border-radius:8px;
  transition:all .2s var(--ease);
  position: relative;
}
.nav__link:hover{
  background: var(--bg-soft);
  color: var(--text);
}
.nav__link[aria-current="page"]{
  background: var(--bg-soft);
  color: var(--text);
}
.nav__link:active{
  transform: scale(0.98);
}

/* Nav Dropdown */
.nav__dropdown{
  position: relative;
}
.nav__link--dropdown{
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  border: 0;
  background: transparent;
}
.nav__link--dropdown .nav__arrow{
  width: 16px;
  height: 16px;
  opacity: 0.6;
  transition: transform 0.2s var(--ease);
}
.nav__link--dropdown[aria-expanded="true"] .nav__arrow{
  transform: rotate(180deg);
}
.nav__dropdown-menu{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 320px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(8, 18, 36, 0.12);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s 0.25s;
  visibility: hidden;
  z-index: 100;
}
:root[data-theme="dark"] .nav__dropdown-menu{
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.nav__dropdown-menu.is-open{
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  visibility: visible;
  transition-delay: 0s;
}
.nav__dropdown-item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: transparent;
  transition: all 0.2s var(--ease);
  color: var(--text);
}
.nav__dropdown-item:hover{
  background: var(--bg-soft);
  transform: translateX(2px);
}
.nav__dropdown-item[aria-current="page"]{
  background: var(--bg-soft);
  transform: translateX(2px);
}
.nav__dropdown-item svg{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--primary);
  margin-top: 2px;
}
.nav__dropdown-item div{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__dropdown-title{
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.nav__dropdown-desc{
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.btn--header{
  padding:10px 18px;
  font-size:14px;
  font-weight:650;
}

.progress{ 
  height: 3px; 
  background: transparent; 
  overflow: hidden;
}
.progress__bar{
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 80%, var(--accent)) 100%);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:10px;
  padding:10px 18px;
  border:1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-weight:600;
  font-size:14px;
  cursor:pointer;
  transition:all .25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.btn:hover{ 
  transform:translateY(-1px); 
}
.btn:hover::before{
  opacity: 1;
}
.btn:active{ transform:translateY(0); }

.btn--primary{
  background: linear-gradient(135deg, var(--primary) 0%, #1F8EF5 100%);
  border-color: rgba(255,255,255,.15);
  color: var(--primary-ink);
}
:root[data-theme="dark"] .btn--primary{ 
  border-color: rgba(255,255,255,.20); 
}
.btn--primary:hover{ 
  transform:translateY(-1px);
}

.btn--ghost{
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}
.btn--lg{ padding:11px 20px; border-radius:11px; font-size: 15px; }
.btn--block{ width:100%; }
.btn--mobile-only{ display: none; }
.btn:disabled{
  opacity: 0.6;
  cursor: not-allowed;
  transform: translateY(0) !important;
}

/* Hero */
.hero{
  position:relative;
  padding:120px 0 0;
  background: var(--bg-soft);
  overflow:hidden;
  height: 100svh;
}
.hero--compact{
  height: auto;
  padding: 80px 0 48px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 20px var(--primary-ink);
}

/* Professional energy pattern background */
.hero--compact::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/hero-taust.png');
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

/* Elegant fade overlay */
.hero--compact::after{
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 100% 50% at 50% 0%, 
      transparent 0%,
      transparent 30%,
      var(--bg) 200%
    );
  pointer-events: none;
}

.hero__content { transform: translateY(var(--parallax-y, 0px)); }

.hero--compact .hero__content{
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero--compact .hero__title{
  margin-bottom: 16px;
}
.hero--compact .hero__lead{
  margin: 0 auto;
  max-width: 65ch;
}
.hero__bg{
  position:absolute;
  inset:0;
  background-color: transparent;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.4) saturate(1.5);
}
.hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: var(--hero-overlay);
}

.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.3fr 1.1fr;
  gap:32px;
  align-items:start;
}

.eyebrow{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; margin:0 0 10px; }
.pill{
  display:inline-flex;
  align-items:center;
  padding:7px 14px;
  border-radius:999px;
  border:1px solid color-mix(in srgb, var(--line) 60%, transparent);
  background: linear-gradient(135deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 95%, var(--primary)) 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight:700;
  font-size:12px;
  letter-spacing: 0.3px;
}
.eyebrow__muted{ 
  color: var(--muted); 
  font-size:13px; 
  padding: 5px 11px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 40%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
}

.hero__title{
  margin:0 0 12px;
  font-size:clamp(28px, 3.8vw, 44px);
  line-height:1.12;
  letter-spacing:-.7px;
  font-weight: 800;
  color: var(--hero-title);
}
:root[data-theme="light"] .hero__title {
  background: linear-gradient(135deg, var(--hero-title) 0%, color-mix(in srgb, var(--hero-title) 75%, transparent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.pages-title {
    color: var(--pages-title);
}

.hero__lead{
  margin:0 0 14px;
  color: var(--hero-lead-text, var(--text));
  font-size:16px;
  line-height:1.5;
  max-width:62ch;
  font-weight: 500;
  padding: 16px 0;
}
.hero__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px; }

/* Trust */
.trust{ display:grid; grid-template-columns:1fr; gap:10px; max-width:720px; }
.trust__item{
  display:flex;
  gap:12px;
  align-items:center;
  padding:14px 0;
  transition: all .3s var(--ease);
  color: var(--trust-text, var(--text));
}
.trust__item:hover{
  transform: translateY(-2px);
}
.trust__icon{
  width:40px; height:40px;
  border-radius:12px;
  background: linear-gradient(135deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 90%, var(--accent)) 100%);
  border:1px solid color-mix(in srgb, var(--primary) 20%, transparent);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--primary) 25%, transparent);
}
.trust__icon svg{ width:20px; height:20px; opacity:1; color: var(--primary-ink); }

/* Cards */
.card{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background: var(--surface);
  transition: all .3s var(--ease);
  position: relative;
  padding: 20px;
  margin: 18px 0;
  border-left: 5px solid var(--primary);
}
.card::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(45,156,255,.03) 0%, rgba(45,156,255,0) 100%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.card:hover{
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary) 20%, var(--line));
}
.card:hover::before{
  opacity: 1;
}
.card--soft{ padding:20px; }
.card--accent{
  border-left: 5px solid var(--accent);
}
.card--accent:hover{
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
}
.card__title{ margin:0 0 8px; font-size:17px; letter-spacing:-.2px; font-weight: 700; }
.card__text{ margin:0; font-size:15px; line-height: 1.6; color: var(--muted); }
.card__lead{ margin:0 0 12px; font-size:14px; line-height: 1.55; }

.hero__card{ display:flex; flex-direction:column; gap:14px; }
.hero__card .card{ padding:22px; }

.hero__badge{
  padding:16px 18px;
  border-radius:16px;
  border:1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow2);
  position:relative;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.hero__badge:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(10, 20, 40, .14);
}
:root[data-theme="dark"] .hero__badge:hover{
  box-shadow: 0 14px 40px rgba(0,0,0,.40);
}
.hero__badge::before{
  content:"";
  position:absolute;
  left:12px;
  top:12px;
  width:10px;
  height:10px;
  border-radius:999px;
  background: var(--accent);
}
.hero__badge-title{ display:block; font-weight:800; margin-bottom:2px; padding-left:14px; }
.hero__badge-text{ display:block; padding-left:14px; }

/* Forms */
.field{ display:block; margin-bottom:14px; }
.field__label{ display:block; font-weight:700; font-size:13px; margin-bottom:7px; color: color-mix(in srgb, var(--text) 86%, transparent); }
.field__hint{
  display:block;
  min-height:18px;
  margin-top:6px;
  font-size:12px;
  color: #D94141;
}

.input{
  width:100%;
  border-radius:11px;
  border:1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding:13px 16px;
  font-size:15px;
  transition:all .25s var(--ease);
  box-shadow: 0 1px 4px rgba(0,0,0,.02);
}
.input::placeholder{ color: color-mix(in srgb, var(--muted) 60%, transparent); }
.input:hover{ 
  border-color: color-mix(in srgb, var(--primary) 30%, var(--line)); 
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.input:focus-visible{ 
  border-color: var(--primary);
  background: var(--surface); 
  box-shadow: 0 0 0 4px rgba(45, 156, 255, .10);
}
:root[data-theme="dark"] .input:focus-visible{
  box-shadow: 0 0 0 4px rgba(77, 168, 255, .15);
}
.input--area{ resize:vertical; min-height:120px; }
.input:disabled{
  opacity: 0.6;
  cursor: not-allowed;
  background: var(--bg-soft);
}

.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin:12px 0 12px;
  color: color-mix(in srgb, var(--text) 84%, transparent);
  font-size:14px;
  line-height: 1.5;
}
.check input{ margin-top:3px; cursor: pointer; }
.form-note{ margin:10px 0 0; font-size:12px; }

/* Interest pick */
.pick{
  margin: 10px 0 6px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.pick__legend{
  padding:0 4px;
  font-weight:800;
  font-size:13px;
  color: color-mix(in srgb, var(--text) 86%, transparent);
}
.pick__item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 9px 6px;
  color: color-mix(in srgb, var(--text) 80%, transparent);
  font-size: 14px;
  transition: background .2s var(--ease);
  border-radius: 8px;
  cursor: pointer;
}
.pick__item:hover{
  background: var(--surface);
}
.pick__item input{ margin-top:2px; cursor: pointer; }
.pick--wide{ grid-column: 1 / -1; }

/* Stats */
.stats{ padding:28px 0 0; position:relative; }
.stats__grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:14px; }
.stat{
  padding:18px 16px;
  border-radius:16px;
  background: linear-gradient(135deg,
 color-mix(in srgb, var(--surface) 100%, transparent) 0%,
 color-mix(in srgb, var(--surface) 100%, transparent) 100%);
  border:1px solid color-mix(in srgb, var(--line) 40%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.stat::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, transparent) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.stat:hover{
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}
.stat:hover::before{
  opacity: 1;
}
.stat__num{ 
  font-weight:900; 
  letter-spacing:-.5px; 
  font-size:22px;
  position: relative;
  color: var(--text);
}
:root[data-theme="light"] .stat__num {
  background: linear-gradient(135deg, var(--text) 0%, color-mix(in srgb, var(--text) 75%, var(--accent)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat__label{ margin-top:6px; font-size:12px; font-weight: 800; position: relative; }
.stats__note{ margin:10px 0 0; font-size:12px; font-weight: 500; opacity: 0.8; color: var(--stats-note); }

/* Sections */
.section{ padding:90px 0; }
  .section--soft{ background: var(--bg-soft); }
.section--alt, .section--soft{
  background: var(--bg-soft);
  background-image: url('../images/illustration-bg.svg') !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section {
    background-image: url('../images/section-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.section__head{ max-width:860px; margin-bottom:32px; }
.kicker{
  margin:0 0 12px;
  color: var(--muted);
  font-weight:800;
  letter-spacing:.3px;
  font-size:14px;
  text-transform: uppercase;
}
.section__title{ 
  margin:0 0 12px; 
  font-size:clamp(26px, 3.2vw, 38px); 
  letter-spacing:-.6px; 
  font-weight: 800;
  color: var(--text);
}
:root[data-theme="light"] .section__title {
  background: linear-gradient(135deg, var(--text) 0%, color-mix(in srgb, var(--text) 85%, var(--muted)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section__lead{ margin:0; font-size:16px; line-height:1.6; }

/* Cards grid */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.cards--3{
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid{
  display: grid;
  gap: 24px;
}

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

.cards-grid--3col{
  grid-template-columns: repeat(3, 1fr);
}
.cards-grid--4col{
  grid-template-columns: repeat(4, 1fr);
}
.card--feature{
  padding: 32px 24px;
  text-align: center;
}
.card--feature .card__icon{
  margin: 0 auto 16px;
}
.card__h{ margin:0 0 8px; font-size:16px; letter-spacing:-.2px; }
.card__icon{
  width:48px; height:48px;
  border-radius:16px;
  border:1px solid var(--line);
  background: var(--bg-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
}
.card__icon svg{
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}
.card__icon--primary{
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border-color: color-mix(in srgb, var(--primary) 20%, transparent);
}
.card__icon--primary svg{
  stroke: var(--primary);
}
.card__icon--accent{
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border-color: color-mix(in srgb, var(--accent) 20%, transparent);
}
.card__icon--accent svg{
  stroke: var(--accent);
}
.card__icon--success{
  background: color-mix(in srgb, #10b981 8%, transparent);
  border-color: color-mix(in srgb, #10b981 20%, transparent);
}
.card__icon--success svg{
  stroke: #10b981;
}
.card__link{
  display: block;
  font-weight: 600;
  color: var(--primary);
  font-size: 18px;
  margin: 8px 0;
  transition: color .2s var(--ease);
  z-index: 999;
    position: relative;
}
.card__link:hover{
  color: var(--accent);
}

/* Mask icons (flat) */
.ico{
  width:24px; height:24px;
  display:block;
  background: var(--primary);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.ico--solar{
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3Cline x1='7' y1='15' x2='7' y2='15'/%3E%3Cline x1='12' y1='15' x2='12' y2='15'/%3E%3Cline x1='17' y1='15' x2='17' y2='15'/%3E%3Cline x1='7' y1='19' x2='7' y2='19'/%3E%3Cline x1='12' y1='19' x2='12' y2='19'/%3E%3Cline x1='17' y1='19' x2='17' y2='19'/%3E%3C/svg%3E");
}
.ico--battery{
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='18' height='11' rx='2'/%3E%3Cpath d='M22 10v4'/%3E%3Cpath d='M6 11v4'/%3E%3Cpath d='M10 11v4'/%3E%3Cpath d='M14 11v4'/%3E%3C/svg%3E");
}
.ico--charger{
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E");
}
.ico--heat{
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z'/%3E%3Cpath d='M12 18a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z'/%3E%3C/svg%3E");
}
.ico--grid{
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E");
}

/* Lists */
.list{ margin:14px 0 0; padding:0; list-style:none; }
.list li{
  position:relative;
  padding-left:20px;
  margin:9px 0;
  color: color-mix(in srgb, var(--text) 82%, transparent);
  line-height: 1.5;
}
.list li::before{
    content: "✔";
    position: absolute;
    left: 0;

    width: 8px;
    height: 8px;
    border-radius: 999px;

    color: var(--accent);
}

/* Steps */
.steps{ list-style:none; margin:0; padding:0; display:grid; gap:14px; }
.step{
  display:flex;
  gap:16px;
  padding:18px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background: var(--surface);
  transition: all .3s var(--ease);
}
.step:hover{
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary) 20%, var(--line));
}
.step__num{
  width:44px; height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--bg-soft);
  border:1px solid var(--line);
  font-weight:860;
  font-size: 18px;
  color: var(--text);
  flex-shrink: 0;
}
.step__h{ margin:0 0 6px; letter-spacing:-.2px; }
.step__body p{ margin:0; line-height:1.6; }

.cta-strip{
  margin-top:28px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  transition: all .3s var(--ease);
      padding: 48px;
}
.cta-strip:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(8, 18, 36, .10);
  border-color: color-mix(in srgb, var(--primary) 15%, var(--line));
}
:root[data-theme="dark"] .cta-strip:hover{
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.cta-strip__h{ margin:0 0 6px; letter-spacing:-.2px; }
.cta-strip p{ margin:0; }

/* Grid 2 */
.grid-2{ display:grid; grid-template-columns:repeat(2, 1fr); gap:16px; }
.feature{
  padding:24px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 2px 12px rgba(0,0,0,.03);
  transition: all .3s var(--ease);
  border-bottom: 5px solid var(--accent);
}
.feature:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(8, 18, 36, .10);
  border-color: color-mix(in srgb, var(--primary) 15%, var(--line));
  border-bottom: 5px solid var(--accent);
}
:root[data-theme="dark"] .feature:hover{
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.feature__h{ margin:0 0 8px; letter-spacing:-.2px; }

/* Calculator */
.calc{ display:grid; grid-template-columns:1fr 1fr; gap:16px; align-items:start; }
.calc__form{
  padding:22px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow2);
}
.calc__note{ margin:10px 0 0; font-size:12px; }
.result{ padding:22px; }
.result__h{ margin:0 0 12px; }
.result__grid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:12px; }
.result__item{
  padding:14px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: var(--bg-soft);
}
.result__value{ margin-top:8px; font-weight:860; font-size:20px; letter-spacing:-.3px; }
.result__cta{ margin-top:16px; }
.tiny{ font-size:12px; }

/* Reviews */
.reviews{ display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; }
.review{ padding:22px; }
.review__text{
  margin:0 0 16px;
  font-size:16px;
  line-height:1.65;
  color: color-mix(in srgb, var(--text) 86%, transparent);
}
.review__meta{ display:flex; gap:8px; align-items:center; margin-top: auto; }
.review__name{ font-weight:850; }
.review__sep{ opacity:.6; }

/* FAQ */
.faq{ display:grid; gap:10px; }
.faq__item{
  border-radius:var(--radius2);
  border:1px solid var(--line);
  background: var(--surface);
  overflow:hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.03);
  transition: all .3s var(--ease);
}
.faq__item:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 18, 36, .10);
  border-color: color-mix(in srgb, var(--primary) 15%, var(--line));
}
:root[data-theme="dark"] .faq__item:hover{
  box-shadow: 0 10px 32px rgba(0,0,0,.35);
}
.faq__q{
  width:100%;
  text-align:left;
  padding:20px 20px;
  border:0;
  background:transparent;
  color: var(--text);
  font-weight:720;
  font-size: 16px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  transition: background .2s var(--ease);
}
.faq__q:hover{
  background: var(--bg-soft);
}
.faq__q::after{
  content:"▾";
  opacity:.85;
  transform:translateY(-1px);
  transition:transform .18s var(--ease);
}
.faq__q[aria-expanded="true"]::after{ transform:rotate(180deg); }
.faq__a{ 
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.faq__q[aria-expanded="true"] + .faq__a{
  max-height: 500px;
  padding: 0 20px 20px;
}
.faq__a p{ margin:0; line-height:1.6; }

/* Quote */
.quote{ display:grid; grid-template-columns:1.2fr .8fr; gap:16px; }
.quote__form{
  padding:22px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow2);
}
.quote__grid{ display:grid; gap:12px; }
.quote__message{ grid-column:1 / -1; }
.quote__actions{ display:flex; flex-direction:column; gap:10px; margin-top:10px; }
.quote__aside{ display:flex; flex-direction:column; gap:16px; }
.contact{ display:flex; flex-direction:column; gap:8px; margin-top:12px; z-index: 1; position: relative; }
.contact__link{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background: var(--surface);
  transition:transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact__link svg{
  flex-shrink: 0;
  stroke: currentColor;
}
.contact__link:hover{ 
  transform:translateY(-2px); 
  background: var(--bg-soft); 
  border-color: color-mix(in srgb, var(--primary) 30%, var(--line));
  color: var(--primary);
}

/* Solutions Cards */
.cards--solutions{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.cards--solutions .card{
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Product Detail */
.product-detail{
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.65fr;
  gap: 56px;
  align-items: start;
}
.product-detail--reverse{
  grid-template-columns: 1fr 1.2fr 0.65fr;
}
.product-detail__content{
  order: 2;
}
.product-detail__image{
  order: 1;
}
.product-detail__aside{
  order: 3;
}
.product-detail__image{
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-soft) 0%, color-mix(in srgb, var(--surface) 95%, var(--primary)) 100%);
  border: 2px solid var(--line);
  position: sticky;
  top: 100px;
  box-shadow: 0 8px 32px rgba(8, 18, 36, .08);
  transition: all .3s var(--ease);
}
.product-detail__image:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(8, 18, 36, .12);
  border-color: color-mix(in srgb, var(--primary) 30%, var(--line));
}
:root[data-theme="dark"] .product-detail__image{
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}
:root[data-theme="dark"] .product-detail__image:hover{
  box-shadow: 0 16px 48px rgba(0, 0, 0, .45);
}
.product-detail__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail__image img[src$=".svg"]{
  object-fit: contain;
  padding: 20px;
}
.product-detail__image-placeholder{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
}
.product-detail__image-placeholder svg{
  width: 48px;
  height: 48px;
  stroke: var(--muted);
  opacity: 0.5;
}
.product-detail__badge{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 12%, transparent) 0%, color-mix(in srgb, var(--primary) 6%, transparent) 100%);
  border: 2px solid color-mix(in srgb, var(--primary) 25%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--primary) 15%, transparent);
  transition: all .3s var(--ease);
}
.product-detail__badge:hover{
  transform: scale(1.05);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--primary) 25%, transparent);
}
.product-detail__badge svg{
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  filter: drop-shadow(0 2px 4px rgba(45, 156, 255, .2));
}
.product-detail__badge--battery{
  background: linear-gradient(135deg, color-mix(in srgb, #10b981 12%, transparent) 0%, color-mix(in srgb, #10b981 6%, transparent) 100%);
  border-color: color-mix(in srgb, #10b981 25%, transparent);
  box-shadow: 0 4px 16px color-mix(in srgb, #10b981 15%, transparent);
}
.product-detail__badge--battery:hover{
  box-shadow: 0 8px 24px color-mix(in srgb, #10b981 25%, transparent);
}
.product-detail__badge--battery svg{
  stroke: #10b981;
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, .2));
}
.product-detail__badge--charger{
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, transparent) 0%, color-mix(in srgb, var(--accent) 6%, transparent) 100%);
  border-color: color-mix(in srgb, var(--accent) 25%, transparent);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent) 15%, transparent);
}
.product-detail__badge--charger:hover{
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 25%, transparent);
}
.product-detail__badge--charger svg{
  stroke: var(--accent);
  filter: drop-shadow(0 2px 4px rgba(255, 185, 70, .2));
}
.product-detail__badge--hvac{
  background: linear-gradient(135deg, color-mix(in srgb, #f59e0b 12%, transparent) 0%, color-mix(in srgb, #f59e0b 6%, transparent) 100%);
  border-color: color-mix(in srgb, #f59e0b 25%, transparent);
  box-shadow: 0 4px 16px color-mix(in srgb, #f59e0b 15%, transparent);
}
.product-detail__badge--hvac:hover{
  box-shadow: 0 8px 24px color-mix(in srgb, #f59e0b 25%, transparent);
}
.product-detail__badge--hvac svg{
  stroke: #f59e0b;
  filter: drop-shadow(0 2px 4px rgba(245, 158, 11, .2));
}
.product-detail__title{
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.product-detail__lead{
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 65ch;
}
.product-detail__features{
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.feature-item{
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  background: transparent;
  transition: all .3s var(--ease);
}
.feature-item:hover{
  background: var(--bg-soft);
  transform: translateX(4px);
}
.feature-item svg{
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  stroke: var(--primary);
  margin-top: 2px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  padding: 8px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
  box-sizing: content-box;
}
.feature-item h3{
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.2px;
}
.feature-item p{
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
.product-detail__specs{
  margin-bottom: 36px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--bg-soft) 0%, color-mix(in srgb, var(--surface) 98%, var(--primary)) 100%);
  border: 2px solid var(--line);
  box-shadow: 0 4px 16px rgba(8, 18, 36, .04);
  transition: all .3s var(--ease);
}
.product-detail__specs:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 18, 36, .08);
  border-color: color-mix(in srgb, var(--primary) 20%, var(--line));
}
:root[data-theme="dark"] .product-detail__specs{
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}
:root[data-theme="dark"] .product-detail__specs:hover{
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}
.product-detail__specs h3{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
}
.specs-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.spec-item{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-label{
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}
.spec-value{
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.product-detail__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-detail__aside{
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.stat-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.stat-list__item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 50%, transparent);
}
.stat-list__item:last-child{
  border-bottom: none;
}
.stat-list__label{
  font-size: 14px;
  color: var(--muted);
}
.stat-list__value{
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

/* Product section separation */
.section--product{
  padding: 80px 0;
  position: relative;
}
.section--product::before{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1400px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line) 50%, transparent 100%);
}

/* Product Detail Responsive */
@media (max-width: 1024px){
  .product-detail{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-detail__content,
  .product-detail__image,
  .product-detail__aside{
    order: initial;
  }
  .product-detail__image{
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 768px){
  .product-detail{
    gap: 32px;
  }
  .product-detail__badge{
    width: 56px;
    height: 56px;
  }
  .product-detail__badge svg{
    width: 28px;
    height: 28px;
  }
  .specs-grid{
    grid-template-columns: 1fr;
  }
}
.section--product:first-of-type::before{
  display: none;
}

@media (max-width: 1200px){
  .product-detail,
  .product-detail--reverse{
    grid-template-columns: 1.2fr 0.8fr;
  }
  .product-detail--reverse .product-detail__content{
    order: 1;
  }
  .product-detail--reverse .product-detail__image{
    order: 2;
  }
  .product-detail--reverse .product-detail__aside{
    order: 2;
  }
  .product-detail__image{
    display: none;
  }
}

@media (max-width: 980px){
  .product-detail,
  .product-detail--reverse{
    grid-template-columns: 1fr;
  }
  .product-detail--reverse .product-detail__content{
    order: 1;
  }
  .product-detail--reverse .product-detail__aside{
    order: 2;
  }
  .product-detail__aside{
    position: static;
  }
  .specs-grid{
    grid-template-columns: 1fr;
  }
  .section--product{
    padding: 60px 0;
  }
}

@media (max-width: 720px){
  .product-detail__features{
    gap: 16px;
  }
  .feature-item{
    flex-direction: column;
    gap: 8px;
  }
  .product-detail__actions{
    flex-direction: column;
  }
  .product-detail__actions .btn{
    width: 100%;
    justify-content: center;
  }
  .section--product{
    padding: 48px 0;
  }
}

.card__icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-ink);
  flex-shrink: 0;
}
.card__icon svg{
  width: 28px;
  height: 28px;
}
.cards--solutions .list{
  margin-top: 8px;
}

/* Process Steps */
.steps{
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.steps::before{
  content: '';
  position: absolute;
  left: 41px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 30%, transparent) 100%);
  opacity: 0.3;
}
.step{
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}
.step__num{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 80%, transparent) 100%);
  color: var(--primary-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  z-index: 1;
}
.step__body{
  flex: 1;
  padding-top: 4px;
}
.step__h{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.3px;
}

/* Benefits Grid */
.grid-2{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.feature{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature__icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.feature__icon svg{
  width: 24px;
  height: 24px;
}
.feature__h{
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.2px;
}

/* Reviews */
.reviews{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.review{
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review__rating{
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
}
.review__text{
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.review__meta{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.review__author{
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.review__name{
  font-weight: 700;
  font-size: 14px;
}

/* CTA Section */
.cta-section{
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary) 4%, transparent) 0%, 
    color-mix(in srgb, var(--accent) 3%, transparent) 100%);
}
.cta-box{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.cta-box__content{
  max-width: 640px;
}
.cta-box__title{
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.8px;
  margin: 0 0 14px;
  line-height: 1.2;
}
.cta-box__text{
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.cta-box__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 720px){
  .cards--solutions{
    grid-template-columns: 1fr;
  }
  .steps::before{
    left: 50%;
    right: 50%;
  }
  .step__num{
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .grid-2{
    grid-template-columns: 1fr;
  }
  .reviews{
    grid-template-columns: 1fr;
  }
  .cta-box{
    padding: 32px 24px;
  }
  .cta-box__title{
    font-size: 26px;
  }
  .cta-box__actions{
    flex-direction: column;
    width: 100%;
  }
  .cta-box__actions .btn{
    width: 100%;
  }
}

/* Footer */
.footer{
  padding:64px 0 32px;
  border-top:1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}
.footer__grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.2fr;
  gap:48px;
  align-items:start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer__col{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__brand{ 
  display:flex; 
  align-items:center; 
  gap:10px; 
  margin-bottom:4px;
  font-size: 20px;
}
.footer__desc{
  line-height: 1.6;
  font-size: 15px;
}
.footer__heading{
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin: 0;
}
.footer__links{ 
  display:flex; 
  flex-direction:column; 
  gap:4px; 
}
.footer__links a{
  color: color-mix(in srgb, var(--text) 75%, transparent);
  padding:8px 0;
  transition:color .2s var(--ease), transform .2s var(--ease);
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
}
.footer__links a:hover{ 
  color: var(--primary);
  transform: translateX(4px);
}
.footer__social{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.footer__contact-link{
  display: flex;
  align-items: center;
  gap: 12px;
  color: color-mix(in srgb, var(--text) 85%, transparent);
  font-size: 15px;
  font-weight: 500;
  transition: color .2s var(--ease);
  padding: 8px 0;
}
.footer__contact-link svg{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
}
.footer__contact-link:hover{
  color: var(--primary);
}
.footer__contact{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__contact-item{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__contact-label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: color-mix(in srgb, var(--text) 60%, transparent);
}
.footer__contact-item a{
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  transition: color .2s var(--ease);
}
.footer__contact-item a:hover{
  color: var(--primary);
}
.footer__contact-item p{
  margin: 0;
  color: color-mix(in srgb, var(--text) 85%, transparent);
  font-size: 15px;
}
.footer__bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__copyright{
  font-size: 14px;
}
.footer__legal{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  flex-flow: wrap;
}
.footer__legal a{
  transition: color .2s var(--ease);
}
.footer__legal a:hover{
  color: var(--text);
}

/* Toast - Responsive */
.toast{
  position:fixed;
  right:20px;
  bottom:20px;
  max-width:380px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform:translateY(20px);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s var(--ease), transform .25s var(--ease);
  color: color-mix(in srgb, var(--text) 90%, transparent);
  font-size: 14px;
  font-weight: 550;
  backdrop-filter: blur(12px);
  z-index: 9999;
}
.toast.is-on{ opacity:1; transform:translateY(0); pointer-events:auto; }

@media(max-width: 640px){
  .toast{
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    font-size: 13px;
    padding: 12px 14px;
    border-radius: 12px;
  }
}

@media(max-width: 400px){
  .toast{
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 12px;
    padding: 10px 12px;
  }
}

/* Reveal Animations - GPU optimized */
[data-reveal]{
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
[data-reveal].is-in{ 
  opacity: 1; 
  transform: translateY(0); 
  will-change: auto;
}

/* Reveal fade-up (default) */
[data-reveal="fade-up"]{
  opacity: 0;
  transform: translateY(48px);
}
[data-reveal="fade-up"].is-in{
  opacity: 1;
  transform: translateY(0);
}

/* Reveal fade-in */
[data-reveal="fade"]{
  opacity: 0;
  transform: translateY(0);
}
[data-reveal="fade"].is-in{
  opacity: 1;
}

/* Reveal scale */
[data-reveal="scale"]{
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="scale"].is-in{
  opacity: 1;
  transform: scale(1);
}

/* Reveal slide-left */
[data-reveal="slide-left"]{
  opacity: 0;
  transform: translateX(-48px);
}
[data-reveal="slide-left"].is-in{
  opacity: 1;
  transform: translateX(0);
}

/* Reveal slide-right */
[data-reveal="slide-right"]{
  opacity: 0;
  transform: translateX(48px);
}
[data-reveal="slide-right"].is-in{
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animations */
[data-reveal].is-in:nth-child(1){ transition-delay: 0ms; }
[data-reveal].is-in:nth-child(2){ transition-delay: 80ms; }
[data-reveal].is-in:nth-child(3){ transition-delay: 160ms; }
[data-reveal].is-in:nth-child(4){ transition-delay: 240ms; }
[data-reveal].is-in:nth-child(5){ transition-delay: 320ms; }
[data-reveal].is-in:nth-child(6){ transition-delay: 400ms; }

/* Smooth scroll behavior */
html{
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  [data-reveal]{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px){
  .hero{ padding: 64px 0 42px; height: auto; }
  .hero--compact{ padding: 60px 0 36px; }
  .hero__grid{ grid-template-columns:1fr; gap: 28px; }
  .stats__grid{ grid-template-columns:repeat(2, 1fr); }
  .cards{ grid-template-columns:repeat(2, 1fr); }
  .cards--3{ grid-template-columns: 1fr; }
  .cards-grid--3col{ grid-template-columns: repeat(2, 1fr); }
  .cards-grid--4col{ grid-template-columns: repeat(2, 1fr); }
  .calc{ grid-template-columns:1fr; }
  .reviews{ grid-template-columns:1fr; gap: 14px; }
  .quote{ grid-template-columns:1fr; }
  .footer__grid{ grid-template-columns:repeat(2, 1fr); gap: 36px; }
  .cta-strip{ flex-direction:column; align-items:flex-start; }
  .grid-2{ grid-template-columns:1fr; }
  .section{ padding: 64px 0; }
}

@media (max-width: 1080px){
  .nav__panel{
    gap: 2px;
  }
  .nav__link{
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media (max-width: 920px){
  .btn--header{
    display: none;
  }
  .btn--mobile-only{
    display: inline-flex;
  }
  .nav__toggle{ display:flex; z-index: 1001; position: relative; }
  .header__inner{ padding: 14px 0; min-height: 68px; }
    /* Theme switcher - jääb nupu alla */
  .theme-switch__dropdown{
    right: 0;
    left: auto;
    width: 160px;
  }

  .nav {
    order: 1;
  }

  /* Language switcher - jääb nupu alla */
  .lang-switch__dropdown{
    right: 0;
    left: auto;
    width: 160px;
  }

  .nav__panel{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width: 100vw;
    max-height: 100vh;
    max-height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: max(env(safe-area-inset-top), 80px) max(env(safe-area-inset-right), 20px) max(env(safe-area-inset-bottom), 20px) max(env(safe-area-inset-left), 20px);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    z-index:9998;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
  }
  .nav__panel::before{
    content:'';
    position:absolute;
    top: max(env(safe-area-inset-top), 16px);
    left: max(env(safe-area-inset-left), 16px);
    right: max(env(safe-area-inset-right), 16px);
    bottom: max(env(safe-area-inset-bottom), 16px);
    background: var(--surface);
    border-radius:20px;
    border:1px solid var(--line);
    box-shadow: 0 24px 80px rgba(0,0,0,.25);
    pointer-events: none;
    z-index: 0;
  }
  :root[data-theme="dark"] .nav__panel{
    background: rgba(10, 15, 26, 0.85);
  }
  :root[data-theme="dark"] .nav__panel::before{
    box-shadow: 0 24px 80px rgba(0,0,0,.6);
  }
  .nav__panel.is-open{ 
    display:flex; 
    animation: fadeIn .3s var(--ease);
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Nav close button - show in mobile */
  .nav__close{
    display: flex;
    position: absolute;
    top: max(env(safe-area-inset-top), 20px);
    right: max(env(safe-area-inset-right), 20px);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all .2s var(--ease);
  }
  .nav__close:hover{
    background: var(--bg-soft);
    transform: scale(1.05);
  }
  .nav__close svg{
    width: 20px;
    height: 20px;
  }

  /* Nav links container */
  .nav__links{
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1 auto;
    justify-content: start;
    position: relative;
    z-index: 1;
    margin-top: 40px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100dvh - 200px);
    padding-bottom: 16px;
  }

  .nav__link{ 
    padding:14px 20px; 
    font-size: 16px;
    font-weight: 600;
    position:relative;
    z-index:1;
    text-align:center;
    border-radius:14px;
    color: var(--text);
  }
  .nav__link:hover{
    background: var(--bg-soft);
    transform: translateY(-1px);
  }
  .nav__link[aria-current="page"]{
    background: var(--bg-soft);
  }

  /* Mobile nav dropdown */
  .nav__dropdown{
    position: relative;
  }
  .nav__link--dropdown{
    width: 100%;
    justify-content: center;
  }
  .nav__dropdown-menu{
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0 8px;
    background: transparent;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s var(--ease), max-height 0.4s var(--ease);
    visibility: hidden;
  }
  .nav__dropdown-menu.is-open{
    max-height: fit-content;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    visibility: visible;
  }
  .nav__dropdown-item{
    background: var(--bg-soft);
    border: 1px solid var(--line);
    margin-bottom: 8px;
    padding: 14px 16px;
    border-radius: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .nav__dropdown-item svg{
    width: 24px;
    height: 24px;
    margin-top: 0;
  }
  .nav__dropdown-item:hover{
    background: color-mix(in srgb, var(--primary) 12%, var(--bg-soft));
    border-color: var(--primary);
    transform: translateY(-2px);
  }
  .nav__dropdown-item[aria-current="page"]{
    background: color-mix(in srgb, var(--primary) 15%, var(--bg-soft));
    border-color: var(--primary);
  }
  .nav__dropdown-item .nav__dropdown-title{
    font-size: 15px;
  }
  .nav__dropdown-item .nav__dropdown-desc{
    font-size: 13px;
  }

 /* Nav footer with contacts - show in mobile */
  .nav__footer{
    display: block;
    position: relative;
    z-index: 1;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    margin-top: auto;
    margin-bottom: env(safe-area-inset-bottom, 0);
  }
  .nav__contact{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .nav__contact-item{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--bg-soft);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: all .2s var(--ease);
  }
  .nav__contact-item:hover{
    background: color-mix(in srgb, var(--primary) 15%, var(--bg-soft));
    color: var(--primary);
  }
  .nav__contact-item svg{
    width: 18px;
    height: 18px;
    opacity: 0.8;
  }


}

@media (max-width: 720px){

  
  .hero{ padding: 54px 0 36px; }
  .hero--compact{ padding: 48px 0 32px; }
  
  /* Mobile-optimized background */
  .hero--compact::before{
    background-size: auto 100%;
    background-position: center center;
    opacity: 0.4;
  }
  .hero__title{ font-size: clamp(28px, 7vw, 42px); }
  .section{ padding: 54px 0; }
  .section__head{ margin-bottom: 24px; }
  




 

  .quote__grid{ grid-template-columns:1fr; }
  .cards{ grid-template-columns:1fr; }
  .cards-grid--3col{ grid-template-columns: 1fr; }
  .cards-grid--4col{ grid-template-columns: 1fr; }
  .stats__grid{ grid-template-columns:1fr; gap: 12px; }
  
  .btn{ padding: 11px 16px; font-size: 14px; }
  .btn--lg{ padding: 12px 18px; font-size: 15px; }
  
  .trust__item{ padding: 14px 16px; }
  .card--soft{ padding: 18px; }
  .review{ padding: 20px; }
  .feature{ padding: 20px; }
  
  .footer{ padding: 42px 0 52px; }


  
  .section__title{
    -webkit-text-fill-color: var(--text);
    background: none;
  }
}

@media (max-width: 480px){
  .container{ width: calc(100% - 28px); }
  
  .hero{ padding: 48px 0 32px; }
  .hero__title{ font-size: clamp(26px, 8vw, 36px); line-height: 1.12; }
  .hero__lead{ font-size: 16px; }
  .hero__actions{ flex-direction: column; width: 100%; }
  .hero__actions .btn{ width: 100%; justify-content: center; }
  
  .section{ padding: 48px 0; }
  .section__title{ font-size: clamp(24px, 6vw, 32px); }
  
  .brand__name{ font-size: 16px; }
  .brand__mark{ width: 36px; height: 36px; }
  
  .trust{ gap: 10px; }
  .trust__item{ flex-direction: column; text-align: center; padding: 16px 14px; }
  .trust__icon{ margin: 0 auto; }
  
  .card__h{ font-size: 17px; }
  .card__title{ font-size: 18px; }
  
  .step{ flex-direction: column; padding: 18px; }
  .step__num{ margin: 0 auto; }
  
  .cta-strip{ padding: 20px; text-align: center; }
  
  .result__grid{ grid-template-columns: 1fr; }
  
  .review__text{ font-size: 16px; }
  
  .faq__q{ padding: 18px 16px; font-size: 14px; }
  
  .footer{ padding: 42px 0 32px; }
  .footer__grid{ 
    grid-template-columns: 1fr; 
    gap: 32px; 
    margin-bottom: 32px; 
    padding-bottom: 32px; 
  }

  .footer__bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
















/* Split sections (full background image + alternating content) */
:root{
  --split-image: none;
  --split-overlay: rgba(250,251,255,.82);
}
@media (prefers-color-scheme: dark){
  :root{ --split-overlay: rgba(8,12,22,.72); }
}
:root[data-theme="light"]{ --split-overlay: rgba(250,251,255,.82); }
:root[data-theme="dark"]{ --split-overlay: rgba(8,12,22,.72); }

.split{
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--line);
  height: 100svh;
  
}

@media (max-width: 1200px){
  .split{
    height: auto;
  }
}



.split:first-of-type{
  border-top: 0;
}

.split__grid{
  position: relative;
  display: grid;
  /*grid-template-columns: 1fr 1.25fr;*/
  grid-template-rows: auto auto;
  gap: 24px 48px;
  align-items: start;
}
.split__content{
  grid-column: 1;
  grid-row: 1;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  background: var(--bg-soft);
  border-left: 5px solid var(--accent);
}
.split__aside{
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.split__image{
  grid-column: 2;
  grid-row: 1 / 3;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.split__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
}
.split__image .image-placeholder{
  aspect-ratio: 3/4;
  border-radius: 20px;
}

/* Product Grid - 2x2 Layout */
.split__image--grid{
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.product-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 100%;
  aspect-ratio: 3/4;
}
.product-grid__item{
  position: relative;
  overflow: hidden;
}
.product-grid__item img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 980px){
  .product-grid{
    gap: 16px;
  }
}
@media (max-width: 640px){
  .product-grid{
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 12px;
  }
}

.split--reverse{
  background: var(--bg-soft);
}

.split--reverse .split__grid{
  /*grid-template-columns: 1.25fr 1fr;*/
}
.split--reverse .split__content{ 
  grid-column: 2;
  grid-row: 1;
  border-left: 1px solid var(--line);;
  border-right: 5px solid var(--accent);
}
.split--reverse .split__aside{
  grid-column: 2;
  grid-row: 2;
}
.split--reverse .split__image{
  grid-column: 1;
  grid-row: 1 / 3;
}

.split .section__head{ margin-bottom: 0; }
.split .section__lead{ max-width: 70ch; }

@media (max-width: 1200px){
  .split__grid,
  .split--reverse .split__grid{
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
  }
  .split__content,
  .split--reverse .split__content{ 
    grid-column: 1;
    grid-row: 1;
  }
  .split__image,
  .split--reverse .split__image{
    grid-column: 1;
    grid-row: 2;
  }
  .split__aside,
  .split--reverse .split__aside{
    grid-column: 1;
    grid-row: 3;
  
    grid-column: 1;
  }
}

@media (max-width: 980px){
  .split{ padding: 64px 0; }
}

@media (max-width: 720px){
  .split{ padding: 54px 0; }
  .split__content{ padding: 24px; }
  .split__content{ padding: 18px; }
}
/* Split New Components */
.split__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.split__badge svg{
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}
.split__badge--industrial{ border-color: var(--accent); }
.split__badge--industrial svg{ color: var(--accent); }
.split__badge--battery{ border-color: #10b981; }
.split__badge--battery svg{ color: #10b981; }
.split__badge--frequency{ border-color: #f59e0b; }
.split__badge--frequency svg{ color: #f59e0b; }

.split__features{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.split__feature{
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.split__check{
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.split__feature span{
  flex: 1;
  line-height: 1.5;
}

.split__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.split__info-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow1);
}
.split__info-header{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.split__info-header svg{
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}
.split__info-header h3{
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.split__checklist{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.split__checklist li{
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
  font-size: 14px;
  color: var(--muted);
}
.split__checklist li::before{
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.split__stat-card{
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow2);
  color: #fff;
}
.split__stat-card--accent{
  background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
}
.split__stat-card--warning{
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.split__stat-icon{
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.split__stat-content{
  flex: 1;
}
.split__stat-label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
  font-weight: 600;
  margin-bottom: 4px;
}
.split__stat-value{
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}
.split__stat-card p{
  margin: 0;
  opacity: 0.85;
  color: #fff;
}

/* Professional Wave Graphics for Split Sections */
.split{
  position: relative;
  isolation: isolate;
}
.split__visual-bg{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
  overflow: hidden;
  /* GPU optimization */
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.split__bg-graphic{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.05) translateZ(0);
  /* GPU optimization */
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.split__grid,
.split__content,
.split__aside,
.split__image{
  position: relative;
  z-index: 1;
}

/* Tablet - reduce complexity */
@media (max-width: 1200px){
  .split__visual-bg{
    opacity: 0.75;
  }
  .split__bg-graphic{
    transform: scale(1.03) translateZ(0);
  }
}

/* Mobile - optimize for performance */
@media (max-width: 720px){
  .split__visual-bg{
    opacity: 0.5;
    will-change: auto; /* Remove will-change on mobile */
  }
  .split__bg-graphic{
    transform: none; /* Remove transform on mobile for better performance */
    object-position: center center;
  }
  .split:hover .split__bg-graphic{
    transform: none; /* Disable hover animation on mobile */
  }
}
.split__stat-card p{
  margin: 0;
  opacity: 0.85;
  color: #fff;
}

@media (max-width: 720px){
  .split__badge{
    padding: 8px 14px;
    font-size: 13px;
  }
  .split__badge svg{
    width: 16px;
    height: 16px;
  }
  .split__actions{
    flex-direction: column;
  }
  .split__actions .btn{
    width: 100%;
  }
  .split__stat-value{
    font-size: 24px;
  }
}

/* Content Grid (About page) */
.content-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}
.content-grid__text{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-grid__text h2{
  margin-bottom: 8px;
}
.content-grid__text .lead{
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 8px;
}
.content-grid__text p{
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.content-grid__media{
  position: sticky;
  top: 100px;
}

/* Image Placeholder */
.image-placeholder{
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
}
.image-placeholder svg{
  width: 48px;
  height: 48px;
  stroke: var(--muted);
  opacity: 0.5;
}
.image-placeholder span{
  font-size: 14px;
  font-weight: 500;
}

/* Stats Grid */
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card{
  padding: 32px;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  text-align: center;
}
.stat-card__value{
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card__label{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.stat-card__desc{
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Team Grid */
.team-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team-card__image{
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
}
.team-card__image .image-placeholder{
  aspect-ratio: 1;
  border-radius: 20px;
}
.team-card__content{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-card__name{
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.3px;
}
.team-card__role{
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin: 0;
}
.team-card__desc{
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* CTA Box */
.cta-box{
  padding: 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-box__content{
  flex: 1;
}
.cta-box__title{
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.5px;
}
.cta-box__text{
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}
.cta-box__actions{
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cta-box .btn--primary{
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.cta-box .btn--primary:hover{
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}
.cta-box .btn--ghost{
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.cta-box .btn--ghost:hover{
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1200px){
  .content-grid{
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .content-grid__media{
    position: static;
  }
  .stats-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px){
  .stats-grid{
    grid-template-columns: 1fr;
  }
  .team-grid{
    grid-template-columns: 1fr;
  }
  .cta-box{
    flex-direction: column;
    padding: 32px;
    gap: 32px;
    text-align: center;
  }
  .cta-box__actions{
    width: 100%;
    flex-direction: column;
  }
  .cta-box__actions .btn{
    width: 100%;
    justify-content: center;
  }
}

/* Benefits Grid */
.benefits-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.benefit-card{
  padding: 32px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.benefit-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}
.benefit-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.benefit-card:hover::before{
  opacity: 1;
}
.benefit-card__number{
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--muted);
  z-index: 0;
}
.benefit-card__icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.benefit-card__icon svg{
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}
.benefit-card__title{
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}
.benefit-card__desc{
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

.section__cta{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}

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

@media (max-width: 640px){
  .benefits-grid{
    grid-template-columns: 1fr;
  }
  .benefit-card{
    padding: 24px;
  }
  .benefit-card__number{
    font-size: 36px;
    top: 20px;
    right: 20px;
  }
  .section__cta{
    flex-direction: column;
  }
  .section__cta .btn{
    width: 100%;
    justify-content: center;
  }
}

/* System Price */
.system-price{
  margin-top: 20px;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

/* Badge Styles */
.kicker--block{
  display: block;
  margin-bottom: 12px;
}
.kicker--primary{
  color: var(--primary);
}




.center {
  justify-content: center;
  display: flex;
}

/* ====================================
   FAQ PAGE STYLES
   ==================================== */

.faq-section {
  padding: 60px 0 100px;
  background: var(--bg);
}

/* FAQ Controls */
.faq-controls {
  margin-bottom: 40px;
}

/* Search Box */
.faq-search {
  position: relative;
  margin-bottom: 24px;
}

.faq-search__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted);
  pointer-events: none;
  z-index: 2;
}

.faq-search__input {
  width: 100%;
  padding: 18px 54px 18px 54px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius2);
  font-size: 16px;
  color: var(--text);
  font-family: inherit;
  transition: all 0.3s var(--ease);
}

.faq-search__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(45, 156, 255, 0.1);
}

.faq-search__input::placeholder {
  color: var(--muted);
}

.faq-search__clear {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s var(--ease);
  z-index: 2;
}

.faq-search__clear:hover {
  background: var(--line);
  color: var(--text);
}

.faq-search__clear svg {
  width: 16px;
  height: 16px;
}

/* Filter Buttons */
.faq-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius2);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.faq-filter-btn:hover {
  border-color: var(--primary);
  background: var(--bg-soft);
}

.faq-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-ink);
}

.faq-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  background: var(--line);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.faq-filter-btn.active .faq-filter-count {
  background: rgba(255, 255, 255, 0.25);
  color: var(--primary-ink);
}

/* Results Info */
.faq-results-info {
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}

.faq-results-info #resultsCount {
  color: var(--primary);
  font-weight: 700;
}

/* No Results */
.faq-no-results {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.faq-no-results svg {
  width: 64px;
  height: 64px;
  color: var(--muted);
  margin-bottom: 24px;
  opacity: 0.5;
}

.faq-no-results h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.faq-no-results p {
  font-size: 16px;
  color: var(--muted);
  max-width: 400px;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  gap: 16px;
}

/* FAQ Item */
.faq-item {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius2);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow2);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s var(--ease);
}

.faq-question:hover {
  background: var(--bg-soft);
}

.faq-question__text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.faq-question__text mark {
  background: rgba(45, 156, 255, 0.2);
  color: var(--primary);
  padding: 2px 4px;
  border-radius: 4px;
}

.faq-question__icon {
  width: 24px;
  height: 24px;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.faq-question.active .faq-question__icon {
  transform: rotate(180deg);
  color: var(--primary);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 1000px;
}

.faq-answer p {
  padding: 0 28px 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.faq-answer p mark {
  background: rgba(45, 156, 255, 0.15);
  color: var(--text);
  padding: 2px 4px;
  border-radius: 4px;
}

/* FAQ CTA */
.faq-cta {
  margin-top: 80px;
  padding: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.faq-cta__content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.faq-cta__content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-cta .btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.faq-cta .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.faq-cta .btn--secondary svg {
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0 60px;
  }

  .faq-filters {
    gap: 8px;
  }

  .faq-filter-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .faq-filter-count {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 12px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question__text {
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  .faq-cta {
    padding: 40px 24px;
    margin-top: 60px;
  }

  .faq-cta__content h2 {
    font-size: 24px;
  }

  .faq-cta__content p {
    font-size: 16px;
  }

  .faq-cta__actions {
    flex-direction: column;
  }

  .faq-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .faq-search__input {
    padding: 16px 48px 16px 48px;
    font-size: 15px;
  }

  .faq-search__icon {
    width: 18px;
    height: 18px;
    left: 16px;
  }

  .faq-filter-btn {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    justify-content: center;
  }
}

/* ====================================
   LEGAL PAGES STYLES (Privacy, Terms)
   ==================================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}

.legal-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 16px;
}

.legal-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul,
.legal-section ol {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-section li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 12px;
}

.legal-section li:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.legal-section a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.legal-section strong {
  font-weight: 700;
  color: var(--text);
}

/* Contact Box in Legal Pages */
.contact-box {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius2);
  padding: 24px;
  margin: 24px 0;
}

.contact-box p {
  margin-bottom: 12px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
  .legal-section {
    margin-bottom: 40px;
  }

  .legal-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .legal-section h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 15px;
  }

  .contact-box {
    padding: 20px;
  }
}










.hp{
  position:absolute;
  left:-10000px;
  width:1px;height:1px;
  overflow:hidden;
  opacity:0;
  pointer-events:none;
}




.kujundusstuudio {
  fill: var(--muted);
  height: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.kujundusstuudio a {
    color: var(--primary);
    font-weight: 900;
}

























/* Cookie Consent */
:root {
  --cc-bg: #fff;
  --cc-surface: rgba(255, 255, 255, 0.04);
  --cc-surface-hover: rgba(255, 255, 255, 0.07);
  --cc-btn: linear-gradient(135deg, var(--primary) 0%, #1F8EF5 100%);
  --cc-btn-text: #fff;
  --cc-btn-hover: linear-gradient(135deg, #1A73E8 0%, #1669E0 100%);
  --cc-border: rgba(255, 255, 255, 0.08);
  --cc-text: #000;
  --cc-text-secondary: rgba(0, 0, 0, 0.6);
  --cc-accent: #00d4ff;
  --cc-accent-soft: rgba(0, 212, 255, 0.12);
  --cc-success: #22c55e;
  --cc-font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ═══════════════════════════════════════════════════════════════
   CONTAINER
═══════════════════════════════════════════════════════════════ */
#cc-root {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 9999;
  font-family: var(--cc-font);
  -webkit-font-smoothing: antialiased;
}

#cc-banner {
  width: 380px;
  max-width: calc(100vw - 32px);
  background: var(--cc-bg);
  border: 1px solid var(--cc-border);
  border-radius: 12px;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 20px 50px -12px rgba(0, 0, 0, 0.6),
    0 8px 20px -8px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  animation: cc-slide-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cc-slide-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ═══════════════════════════════════════════════════════════════
   MAIN CONTENT (Collapsed State)
═══════════════════════════════════════════════════════════════ */
.cc-inner {
  padding: 20px;
}

.cc-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--cc-text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.cc-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--cc-text-secondary);
  margin: 0 0 16px;
}

.cc-text a {
  color: var(--cc-text);
  text-decoration: none;
  transition: opacity 0.15s;
}

.cc-text a:hover {
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.cc-actions {
  display: flex;
  gap: 8px;
}

.cc-btn {
  flex: 1;
  height: 38px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-btn--ghost {
  color: var(--cc-text-secondary);
}

.cc-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cc-text);
}

.cc-btn--outline {
  background: var(--cc-btn);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cc-btn-text);
}

.cc-btn--outline:hover {
  background: var(--cc-btn-hover);
  border-color: rgba(255, 255, 255, 0.18);
}

.cc-btn--primary {
  background: #fff;
  color: #000;
  font-weight: 600;
}

.cc-btn--primary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.cc-btn:focus-visible {
  outline: 2px solid var(--cc-accent);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   SETTINGS PANEL (Expanded State)
═══════════════════════════════════════════════════════════════ */
.cc-settings {
  display: none;
  border-top: 1px solid var(--cc-border);
}

#cc-banner[data-open="1"] .cc-settings {
  display: block;
  animation: cc-fade-in 0.2s ease;
}

#cc-banner[data-open="1"] .cc-inner {
  display: none;
}

@keyframes cc-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cc-settings-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--cc-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cc-settings-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cc-text);
}

.cc-close-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-text-secondary);
  transition: all 0.15s;
}

.cc-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cc-text);
}

.cc-close-btn svg {
  width: 14px;
  height: 14px;
}

/* Cookie Categories */
.cc-categories {
  padding: 4px 20px 12px;
}

.cc-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.cc-category + .cc-category {
  border-top: 1px solid var(--cc-border);
}

.cc-category-info {
  flex: 1;
  min-width: 0;
}

.cc-category-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cc-text);
  margin-bottom: 3px;
}

.cc-badge {
  font-size: 10px;
  font-weight: 500;
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cc-text-secondary);
}

.cc-badge--required {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.cc-category-desc {
  font-size: 12px;
  line-height: 1.45;
  color: var(--cc-text-secondary);
}

/* Toggle Switch */
.cc-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
  min-height: 0;
}

.cc-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cc-toggle[aria-checked="true"] {
  background: #22c55e;
}

.cc-toggle[aria-checked="true"]::after {
  left: 23px;
  background: #fff;
}

.cc-toggle[aria-disabled="true"] {
  cursor: not-allowed;
}

.cc-toggle[aria-disabled="true"][aria-checked="true"] {
  background: #22c55e;
  opacity: 1;
}

.cc-toggle:focus-visible {
  outline: 2px solid var(--cc-accent);
  outline-offset: 2px;
}

/* Settings Actions */
.cc-settings-actions {
  padding: 4px 20px 20px;
  display: flex;
  gap: 8px;
}

.cc-settings-actions .cc-btn {
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════════
   MINI FLOATING BUTTON
═══════════════════════════════════════════════════════════════ */
#cc-mini {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9998;
  width: 40px;
  height: 40px;
  border: 1px solid var(--cc-border);
  border-radius: 10px;
  background: var(--cc-bg);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--cc-text-secondary);
  transition: all 0.2s ease;
  font-family: var(--cc-font);
  font-size: 0;
}

#cc-mini::before {
  content: '';
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--cc-accent), #4a7cff);
  border-radius: 4px;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}

#cc-mini:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

#cc-mini:focus-visible {
  outline: 2px solid var(--cc-accent);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 420px) {

  
  #cc-banner {
    width: 100%;
  }
  
  #cc-mini {
    left: 8px;
    bottom: 8px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  #cc-banner,
  .cc-settings,
  .cc-btn,
  .cc-toggle,
  .cc-toggle::after,
  #cc-mini {
    animation: none;
    transition: none;
  }
}




























/* ==========================================================
   3D Coverflow Slider — CLIPPED (no background color)
   Fix: 3D elements are clipped inside .slideshow-track (clip-layer),
        so nothing can escape container bounds.
   ========================================================== */

.slideshow-container{
  /* TUNING */
  --cf-radius: 18px;

  --cf-card-radius: 16px;
  --cf-card-w: min(860px, 56%);
  --cf-card-top: 0%;
  --cf-card-h: 100%;

  --cf-perspective: 1200px;
  --cf-shift: 70%;
  --cf-tilt: 14deg;
  --cf-z: 86px;

  --cf-scale: .96;
  --cf-scale-step: .10;
  --cf-focus-boost: .045;

  --cf-opacity-step: .7;
  --cf-blur-step: 3.35px;
  --cf-sat-step: .08;

  position: relative;
  margin: 24px auto;
  aspect-ratio: 24 / 9;

  /* ✅ ÄRA klipi siin (perspective + overflow = glitch) */
  overflow: visible;

  border-radius: var(--cf-radius);
  perspective: var(--cf-perspective);
  isolation: isolate;
}

/* full-bleed (ekraaniservast servani) */
.slideshow-container--bleed{
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Track = CLIP LAYER (siin klipime kõik 3D childid ära) */
.slideshow-track{
  position: absolute;
  inset: 0;

  /* ✅ nüüd kõik, mis liigub/scale’b/translateZ, jääb sisse */
  overflow: hidden;
  border-radius: inherit;

  /* ✅ kindlam klipp (3D puhul töötab paremini kui overflow üksi) */
  -webkit-clip-path: inset(0 round var(--cf-radius));
  clip-path: inset(0 round var(--cf-radius));

  transform-style: preserve-3d;

  /* servade “hajutus” (ei kata keskmist, lihtsalt maskib ääri) */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

/* Slide card */
.mySlides{
  position: absolute;
  left: 50%;
  top: var(--cf-card-top);
  height: var(--cf-card-h);
  width: var(--cf-card-w);

  transform-style: preserve-3d;
  border-radius: var(--cf-card-radius);
  overflow: hidden;

  z-index: var(--z, 1);
  opacity: 0;

  transform: translateX(-50%) scale(.92);
  filter: blur(8px) saturate(.92);

  transition:
    transform .85s cubic-bezier(.2,.9,.2,1),
    opacity .55s ease,
    filter .55s ease;

  will-change: transform, opacity, filter;
  pointer-events: none;

  backface-visibility: hidden;
  transform-origin: 50% 50%;
}

/* Visible (active + neighbors) */
.mySlides.is-visible{
  opacity: calc(1 - (var(--abs, 3) * var(--cf-opacity-step)));
  filter:
    blur(calc(var(--abs, 3) * var(--cf-blur-step)))
    saturate(calc(1 - (var(--abs, 3) * var(--cf-sat-step))));

  transform:
    translateX(calc(-50% + (var(--d, 0) * var(--cf-shift))))
    translateZ(calc((2 - var(--abs, 3) + (var(--boost, 0) * 1.15)) * var(--cf-z)))
    rotateY(calc(var(--d, 0) * calc(-1 * var(--cf-tilt))))
    scale(calc(var(--cf-scale) - (var(--abs, 3) * var(--cf-scale-step)) + (var(--boost, 0) * var(--cf-focus-boost))));
}

/* Active */
.mySlides.is-active{
  pointer-events: auto;
  opacity: 1;
  filter: none;
}

/* Image — NEVER CROP, NEVER ESCAPE */
.mySlides img{
  width: 100%;
  height: 100%;
  display: block;

  object-fit: contain !important;
  object-position: 50% 50% !important;

  max-width: 100%;
  max-height: 100%;

  transform: translateZ(0);
    pointer-events: none;     /* et drag/swipe läheks trackile */
  -webkit-user-drag: none;  /* Safari/Chrome: disable image drag */
  user-drag: none;
}

/* Caption + numbertext */
.text, .numbertext{
  z-index: 7;
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.numbertext{
  top: 0;
  padding: 10px 14px;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  letter-spacing: .2px;
  text-shadow: 0 8px 22px rgba(0,0,0,.55);
}

.text{
  bottom: 12px;
  padding: 10px 14px;
  color: rgba(255,255,255,.92);
  text-align: center;
  text-shadow: 0 10px 26px rgba(0,0,0,.6);
}

/* Arrows */
.prev, .next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;

  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 800;
  font-size: 22px;

  border-radius: 999px;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);

  transition: transform .18s ease, background-color .18s ease, opacity .18s ease;
  user-select: none;
  opacity: .92;
}

.prev{ left: 16px; }
.next{ right: 16px; }

.prev:hover, .next:hover{
  background: rgba(0,0,0,.48);
  transform: translateY(-50%) scale(1.06);
}

.prev:active, .next:active{
  transform: translateY(-50%) scale(.98);
}

.prev:focus-visible, .next:focus-visible{
  outline: 2px solid rgba(255,255,255,.55);
  outline-offset: 3px;
}

/* Dots */
.dots{ margin-top: 10px; }

.dot{
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: var(--muted);
  border-radius: 999px;
  display: inline-block;
  transition: transform .2s ease, background-color .2s ease, width .2s ease;
}

.dot.active{
  background-color: var(--line);
  width: 22px;
}

.dot:hover{ transform: scale(1.15); }

/* Responsive */
@media (max-width: 900px){
  .slideshow-container{
    --cf-card-w: min(920px, 78%);
    --cf-shift: 60%;
    --cf-z: 74px;
  }
  .prev{ left: 12px; }
  .next{ right: 12px; }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce){
  .mySlides{ transition: none; }
  .prev, .next, .dot{ transition: none; }
}





/* HERO SLIDER */

.mySlides-hero{
  position: absolute;
    /* left: 50px; */
    top: var(--cf-card-top);
    height: var(--cf-card-h);
    width: var(--cf-card-w);
    transform-style: preserve-3d;
    border-radius: var(--cf-card-radius);
    overflow: hidden;
    z-index: var(--z, 1);
    opacity: 0;
    transform: translateX(-50%) scale(.92);
    filter: blur(8px) saturate(.92);
    transition: transform .85s cubic-bezier(.2, .9, .2, 1), opacity .55s ease, filter .55s ease;
    will-change: transform, opacity, filter;
    pointer-events: none;
    backface-visibility: hidden;
    transform-origin: 50% 50%;
    /* right: 50px; */
    left: 50%;
    justify-items: center;
}



.slideshow-container--bleed-hero {
    width: 100%;
    max-width: none;
    /* margin-left: calc(50% - 50vw); */
    /* margin-right: calc(50% - 50vw); */
    align-self: center;
}


.slideshow-container-hero {
    --cf-radius: 18px;
    --cf-card-radius: 16px;
    --cf-card-w: min(860px, 56%);
    --cf-card-top: 0%;
    --cf-card-h: 100%;
    --cf-perspective: 1200px;
    --cf-shift: 70%;
    --cf-tilt: 14deg;
    --cf-z: 86px;
    --cf-scale: .96;
    --cf-scale-step: .10;
    --cf-focus-boost: .045;
    --cf-opacity-step: 1;
    --cf-blur-step: 3.35px;
    --cf-sat-step: .08;
    position: relative;
    margin: 24px auto;
    aspect-ratio: 1 / 1;
    overflow: visible;
    border-radius: var(--cf-radius);
    perspective: var(--cf-perspective);
    isolation: isolate;
}







.slideshow-track-hero {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    -webkit-clip-path: inset(0 round var(--cf-radius));
    clip-path: inset(0 round var(--cf-radius));
    transform-style: preserve-3d;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}





/* Visible (active + neighbors) */
.mySlides-hero.is-visible{
  opacity: calc(1 - (var(--abs, 3) * var(--cf-opacity-step)));
  filter:
    blur(calc(var(--abs, 3) * var(--cf-blur-step)))
    saturate(calc(1 - (var(--abs, 3) * var(--cf-sat-step))));

  transform:
    translateX(calc(-50% + (var(--d, 0) * var(--cf-shift))))
    translateZ(calc((2 - var(--abs, 3) + (var(--boost, 0) * 1.15)) * var(--cf-z)))
    rotateY(calc(var(--d, 0) * calc(-1 * var(--cf-tilt))))
    scale(calc(var(--cf-scale) - (var(--abs, 3) * var(--cf-scale-step)) + (var(--boost, 0) * var(--cf-focus-boost))));
  width: 100%;
  height: 100%;
}




.mySlides-hero.is-active{
  pointer-events: auto;
  opacity: 1;
  filter: none;
}



.mySlides-hero img{
  width: 100%;
  height: 100%;
  display: block;

  object-fit: contain !important;
  object-position: 50% 50% !important;

  max-width: 100%;
  max-height: 100%;

  transform: translateZ(0);
    pointer-events: none;     /* et drag/swipe läheks trackile */
  -webkit-user-drag: none;  /* Safari/Chrome: disable image drag */
  user-drag: none;
}





/* Swipe/drag support (touch + mouse) */
.slideshow-track,
.slideshow-track-hero{
  touch-action: pan-y;          /* lase vertikaalset scrolli, aga anna meile horisontaal */
  user-select: none;
  cursor: grab;
  overscroll-behavior-x: contain;
}

.slideshow-track:active,
.slideshow-track-hero:active{
  cursor: grabbing;
}



.next-hero, .prev-hero {
  display: none;
}