:root{
  --hero-edge: 6vw; /* sama mis ticker padding */
}

/* =====================================
   HERO — CLEAN REF BUILD
===================================== */

/* BASE */

.hero-cinematic{
  position: relative;

  min-height:100vh;
  height:100vh;

  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);

  overflow:hidden;
  background:#000;
}




/* CONTENT POSITION */

.hero-content{
  position:absolute;

  left:0;
  right:0;
  bottom:10vh;

  max-width: var(--site-max);
  margin: 0 auto;

  padding: 0 var(--site-pad);

  width:100%;

  z-index:2;
}

/* TEXT BLOCK */

.hero-box{
  max-width:720px;
}

/* ICON */

.hero-feature svg{
  width:18px;
  height:18px;
  fill:#ffd27a;
}


/* CTA */

.hero-buttons{
  position:absolute;

  left:50%;
  bottom:24px;

  transform:translateX(-50%);

  display:flex;
  gap:22px;
}


/* PRIMARY */

.hero-buttons .btn-primary{
  padding:16px 38px;

  border-radius:999px;

  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;

  color:#1a1205;

  background:linear-gradient(135deg,#ffb000,#ff7a18);

  box-shadow:
    0 18px 55px rgba(255,160,40,.45),
    inset 0 0 0 1px rgba(255,255,255,.18);
}


/* SECONDARY */

.hero-buttons .btn-outline{
  padding:16px 38px;

  border-radius:999px;

  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;

  color:rgba(255,255,255,.92);

  background:rgba(255,255,255,.14);

  border:1px solid rgba(255,255,255,.22);

  box-shadow:0 16px 45px rgba(0,0,0,.28);
}

/* ===============================
   HERO TITLE — TRAJAN LOOK (Cinzel)
=============================== */

.hero-title{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-weight: 600 !important;          /* 500 kui tahad veidi kergem */
  text-transform: uppercase;
  letter-spacing: .00em;                /* “TALLINNA 1” spacing */
  font-size: clamp(44px, 6vw, 92px);
  line-height: .75;
  margin: 0 0 14px;

  color: rgba(255,255,255,.96);
  text-shadow:
    0 2px 4px rgba(0,0,0,0.55),
    0 6px 14px rgba(0,0,0,0.45),
    0 12px 28px rgba(0,0,0,0.35),
    0 0 1px rgba(0,0,0,0.9);
}


/* subtitle nagu näidisel – puhas, natuke smaller, kerge glow */
.hero-big{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1.25;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
  margin: 0 0 8px;
}

/* väike lokatsioon rida */
.hero-address{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,.70);
  text-shadow: 0 2px 10px rgba(0,0,0,.40);
}

/* ===============================
   HERO TICKER — GLASS FADE FINAL
=============================== */

.hero-features{
  position: relative;

  width:100%;
  margin:26px 0 0;

  padding:5px 0 78px;

  border-radius:18px;

  overflow:hidden;

}

/* Sisemine ala — sama padding mis tekst */
.hero-features-inner{
  width:100%;

  padding:0 6vw;

  display:flex;
  align-items:center;
  position:relative;

}


/* Track liigub */
.hero-features-track{
  display:flex;
  align-items:center;

  width:max-content;

  animation:featureScroll 28s linear infinite;
}


/* Üks ticker */
.hero-feature{
  position:relative;

  flex:0 0 auto;

  padding:2px 28px;

  display:flex;
  align-items:center;
  gap:10px;

  font-size:18px;
  font-weight:400;

  color:rgba(255,255,255,.95);

  white-space:nowrap;
}


/* PÜSTJOON = sama toon mis border */
.hero-feature + .hero-feature::before{
  content:"";

  position:absolute;

  left:0;
  top:20%;
  bottom:20%;

  width:1px;

  background: linear-gradient(
  to bottom,
  rgba(255,255,255,.12),
  rgba(255,255,255,.04)
);

}


/* Animatsioon */
@keyframes featureScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ===============================
   HERO TICKER GLASS MASK
=============================== */

.hero-features::before{
  content:"";

  position:absolute;
  inset:0;

  border-radius:18px;

  /* HELEDAM GLASS */
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.18),
    rgba(255,255,255,.10),
    rgba(255,255,255,.04),
    rgba(255,255,255,0)
  );

  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);

  /* FADE MASK */
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 35%,
    rgba(0,0,0,.7) 55%,
    rgba(0,0,0,.3) 72%,
    rgba(0,0,0,0) 88%,
    rgba(0,0,0,0) 100%
  );

  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 35%,
    rgba(0,0,0,.7) 55%,
    rgba(0,0,0,.3) 72%,
    rgba(0,0,0,0) 88%,
    rgba(0,0,0,0) 100%
  );

  /* PEHME ÜLEMINE JOON */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 0 0 1px rgba(255,255,255,.22);

  pointer-events:none;

  z-index:0;
}


.hero-features-inner,
.hero-features-track{
  position:relative;
  z-index:2;
}

/* ===============================
   HERO SEPARATOR LINE
=============================== */

.hero-separator{
  position:absolute;

  left:6vw;
  right:6vw;

  bottom:64px;

  height:1px;

  background:linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,.22),
    transparent
  );

  z-index:6;
  pointer-events:none;
}

.hero-tickers{
  margin-bottom:6px;
}

.hero-separator{
  margin:4px 0 14px;
}

/* ============================
   HERO BUTTONS
============================ */

.hero-buttons a{

  height:5px;
  line-height:14px;

  padding:0 28px;

  min-width:210px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  border-radius:999px;

  font-size:14px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;

  text-decoration:none;

  backdrop-filter: blur(10px);

  transition:.2s ease;

  border:1px solid rgba(255,255,255,.22);

  box-shadow:none; /* EI MINGIT VANA STIILI */
}

/* ==============================
   ORANGE — LIGHT GOLD
============================== */

.hero-buttons .btn-primary{

  color:#fff;

  background:
    linear-gradient(
      180deg,
      rgba(255,145,0,.55),
      rgba(210,95,0,.55)
    );

  text-shadow:
    0 1px 1px rgba(0,0,0,.35);
}

/* ==============================
   WHITE — GLASS
============================== */

.hero-buttons .btn-outline{

  color: rgba(40,40,40,.85);

  background:
    rgba(255,255,255,.18);

  border:1px solid rgba(255,255,255,.35);

  text-shadow: 0 1px 2px rgba(255,255,255,.25);
}

.hero-buttons a:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

/* ===============================
   HERO – SCROLL BUTTON (LIKE REF)
=============================== */

.hero-scroll{
  position:absolute;
  left:50%;
  bottom:38px;
  transform:translateX(-50%);
  z-index:20;

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

  display:flex;
  align-items:center;
  justify-content:center;

  /* klaas + soe toon nagu pildil */
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.18),
    rgba(255,255,255,.08)
  );

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* õhuke hele ring + pehme sisejoon */
  border: 1px solid rgba(255,255,255,.26);

  box-shadow:
    0 14px 40px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.22);

  text-decoration:none;
  color: rgba(255,255,255,.92);

  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

/* chevron */
.hero-scroll-ico{
  display:block;
  filter:
    drop-shadow(0 1px 1px rgba(0,0,0,.35));
  opacity:.95;
}

/* hover – väga õrn, mitte “amatöör glow” */
.hero-scroll:hover{
  transform:translateX(-50%) translateY(2px);
  border-color: rgba(255,255,255,.34);
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.22),
    rgba(255,255,255,.10)
  );
}

/* mobiil: natuke väiksem */
@media (max-width: 768px){
  .hero-scroll{
    width:42px;
    height:42px;
    bottom:14px;
  }
}

.hero-scroll{
  overflow:hidden; /* lukustab glow kasti sisse */
}

.hero-scroll::before{
  content:"";
  position:absolute;
  inset:0;

  background: radial-gradient(
    ellipse at center,
    rgba(255,185,90,.45),
    rgba(255,185,90,.15) 45%,
    rgba(255,185,90,0) 70%
  );

  transform: scale(1.4); /* teeb suureks ilma overflowta */

  filter: blur(8px);
  pointer-events:none;
}


/* Buttons wrapper */
.hero-buttons{
  position: relative;
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-top: 18px;
}

/* COMMON glow base */
.hero-buttons a{
  position: relative;
  z-index: 2;
}

.hero-bg-img{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;

  opacity:0;

  transition: opacity 1s ease;

  will-change: opacity, transform;
}

.hero-slide.active .hero-bg-img{
  opacity:1;
}

/* === HERO SLIDE HARD FIX === */

.hero-slide{
  position:absolute !important;
  inset:0 !important;

  width:100% !important;
  height:100% !important;

  background-size:cover !important;
  background-position:center !important;
  background-repeat:no-repeat !important;

  opacity:0;
  z-index:0;

  
  backface-visibility: visible !important;
  will-change: auto !important;

  pointer-events:none;
}

.hero-slide.active{
  opacity:1;
  z-index:5;
}

/* ===============================
   HERO — CINEMATIC MOTION PACK (7)
   (iga slide saab JS-ist erineva klassi)
=============================== */

.hero-slide{
  opacity:0;
  transition: opacity 1.2s ease;
  will-change: transform, opacity;
  transform-origin: center;
}

.hero-slide.active{ opacity:1; }

/* duration tuleb JS-ist: --hero-move-dur: 5000ms */
.hero-slide.m1_push_left,
.hero-slide.m2_pull_out,
.hero-slide.m3_dolly_right,
.hero-slide.m4_tilt_push,
.hero-slide.m5_diag,
.hero-slide.m6_persp,
.hero-slide.m7_surge{
  animation-duration: var(--hero-move-dur, 5000ms);
  animation-timing-function: cubic-bezier(.2,.7,.1,1);
  animation-iteration-count: infinite;  /* REPEAT */
  animation-direction: alternate;
  animation-fill-mode: both;
}

/* 1) PUSH IN + pan left + väike tilt */
.hero-slide.m1_push_left{ animation-name: hero_m1; }
@keyframes hero_m1{
  0%   { transform: scale(1.06) translate(0,0) rotate(0deg); }
  100% { transform: scale(1.20) translate(-7%,-2%) rotate(-0.8deg); }
}

/* 2) ZOOM OUT + drift (see on “välja zoom”) */
.hero-slide.m2_pull_out{ animation-name: hero_m2; }
@keyframes hero_m2{
  0%   { transform: scale(1.26) translate(-2%, 1%) rotate(0.4deg); }
  100% { transform: scale(1.06) translate( 3%,-2%) rotate(-0.2deg); }
}

/* 3) Dolly paremale + roll (kaamera “liigub”) */
.hero-slide.m3_dolly_right{ animation-name: hero_m3; }
@keyframes hero_m3{
  0%   { transform: scale(1.10) translate(-8%,0) rotate(-0.4deg); }
  100% { transform: scale(1.18) translate( 8%,1%) rotate( 0.9deg); }
}

/* 4) Tilt + push-in (tekitab “kaamera kallutab”) */
.hero-slide.m4_tilt_push{ animation-name: hero_m4; }
@keyframes hero_m4{
  0%   { transform: scale(1.04) translate(0,2%) rotate(0deg); }
  55%  { transform: scale(1.18) translate(-2%,-3%) rotate(-1.2deg); }
  100% { transform: scale(1.14) translate( 3%,-1%) rotate( 0.6deg); }
}

/* 5) Diagonaal drift + mõõdukas zoom */
.hero-slide.m5_diag{ animation-name: hero_m5; }
@keyframes hero_m5{
  0%   { transform: scale(1.08) translate( 6%, 4%) rotate(0deg); }
  100% { transform: scale(1.22) translate(-6%,-5%) rotate(-0.6deg); }
}

/* 6) Perspective yaw (nagu kaamera pööraks paremale/vasakule) */
.hero-slide.m6_persp{
  animation-name: hero_m6;
  transform-origin: 30% 50%;
}
@keyframes hero_m6{
  0%{
    transform: perspective(900px) rotateY(-5deg) scale(1.10) translate(-2%,1%);
  }
  100%{
    transform: perspective(900px) rotateY(6deg) scale(1.18) translate(3%,-1%);
  }
}

/* 7) “SURGE”: kiire algus -> aeglustub -> lõpus väike boost (filmilik) */
.hero-slide.m7_surge{ animation-name: hero_m7; animation-direction: normal; }
@keyframes hero_m7{
  0%   { transform: scale(1.02) translate(0,0) rotate(0deg); }
  18%  { transform: scale(1.18) translate(-4%,-2%) rotate(-0.9deg); } /* kiire */
  78%  { transform: scale(1.24) translate(-6%,-2%) rotate(-0.4deg); } /* rahulikum */
  100% { transform: scale(1.30) translate(-8%,-3%) rotate(-0.8deg); } /* lõpu boost */
}

/* MOBILE: vähem “liiga lähedalt”, aga ikka tajutav */
@media (max-width:768px){
  .hero-slide{
    background-position: center center; /* mitte center top */
  }

  /* mobiilis “näita rohkem tervet pilti” = vähenda scale’i */
  @keyframes hero_m1{
    0%{ transform: scale(1.01) translate(0,0) rotate(0deg); }
    100%{ transform: scale(1.10) translate(-4%,-1%) rotate(-0.7deg); }
  }
  @keyframes hero_m2{
    0%{ transform: scale(1.16) translate(-2%,1%) rotate(0.3deg); }
    100%{ transform: scale(1.02) translate( 2%,-1%) rotate(-0.2deg); }
  }
  @keyframes hero_m3{
    0%{ transform: scale(1.04) translate(-6%,0) rotate(-0.3deg); }
    100%{ transform: scale(1.12) translate( 6%,1%) rotate( 0.7deg); }
  }
  @keyframes hero_m4{
    0%{ transform: scale(1.01) translate(0,2%) rotate(0deg); }
    55%{ transform: scale(1.12) translate(-2%,-2%) rotate(-1.0deg); }
    100%{ transform: scale(1.10) translate( 2%,-1%) rotate( 0.6deg); }
  }
  @keyframes hero_m5{
    0%{ transform: scale(1.03) translate( 5%, 3%) rotate(0deg); }
    100%{ transform: scale(1.14) translate(-5%,-4%) rotate(-0.6deg); }
  }
  @keyframes hero_m6{
    0%{ transform: perspective(800px) rotateY(-4deg) scale(1.04) translate(-1%,1%); }
    100%{ transform: perspective(800px) rotateY( 5deg) scale(1.12) translate( 2%,-1%); }
  }
  @keyframes hero_m7{
    0%{ transform: scale(1.01) translate(0,0) rotate(0deg); }
    18%{ transform: scale(1.12) translate(-3%,-1%) rotate(-0.8deg); }
    78%{ transform: scale(1.16) translate(-4%,-1%) rotate(-0.4deg); }
    100%{ transform: scale(1.20) translate(-5%,-2%) rotate(-0.7deg); }
  }
}

/* ===============================
   HERO TICKER — POSITION CONTROL
=============================== */

/* REGULEERI SIIT */
:root{
  --ticker-desktop-top: 18px;
  --ticker-desktop-bottom: 24px;

  --ticker-mobile-top: 10px;
  --ticker-mobile-bottom: 0px;
}

/* Desktop */
.hero-features{
  margin-top: var(--ticker-desktop-top);
  padding-bottom: var(--ticker-desktop-bottom);
}

/* Mobile */
@media (max-width:768px){
  .hero-features{
    margin-top: var(--ticker-mobile-top) !important;
    padding-bottom: var(--ticker-mobile-bottom) !important;
  }
}

/* ======================================
   HERO BUTTON
====================================== */

.hero-buttons a{
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  z-index: 5 !important;
}

/* text stays top */
.hero-buttons a span{
  position: relative;
  z-index: 10;
}

/* hover layer */
.hero-buttons a::before{
  content:"";
  position:absolute;
  inset:0;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,.22),
    rgba(255,255,255,.06)
  );

  transform: scale(0);
  transform-origin: var(--mx,50%) var(--my,50%);

  transition: transform 2.95s cubic-bezier(.2,.7,.1,1);

  border-radius: inherit;

  z-index:2;
}

/* activate */
.hero-buttons a:hover::before{
  transform: scale(2.4);
}

/* ===============================
   MOBILE CTA — SOFT CINEMATIC SHINE (SLOW)
=============================== */

@media (max-width:768px){

  .hero-buttons a::after{
    content:"";
    position:absolute;
    inset:-50%;

    background: linear-gradient(
      120deg,
      transparent 25%,
      rgba(255,255,255,.18) 45%,
      rgba(255,255,255,.28) 50%,
      rgba(255,255,255,.18) 55%,
      transparent 75%
    );

    transform: translateX(-140%) rotate(14deg);

    opacity:.45;

    animation: mobileBtnShineSlow 6.5s linear infinite;

    filter: blur(10px);

    pointer-events:none;
  }

  @keyframes mobileBtnShineSlow{
    from{
      transform: translateX(-160%) rotate(14deg);
    }
    to{
      transform: translateX(160%) rotate(14deg);
    }
  }

}

s
/* Desktop */
.hero-feature svg{
  width:26px;
  height:26px;
  min-width:26px;
}

/* Mobile */
@media (max-width:768px){
  .hero-feature svg{
    width:22px;
    height:22px;
    min-width:22px;
  }
}

.hero-feature svg{
  fill: none !important;                /* seest tühi */
  
  stroke: #ffb000 !important;           /* KULDNE JÄRJEJOON */
  stroke-width:1.8;

  stroke-linecap:round;
  stroke-linejoin:round;

  width:26px;
  height:26px;
  min-width:26px;

  filter: drop-shadow(0 0 4px rgba(255,176,0,.35)); /* pehme glow */
}

/* ===============================
   HERO READY LABEL (VISIBLE)
=============================== */

.hero-ready-label{
  display:inline-flex;
  align-items:center;

  margin-bottom:16px;

  padding:7px 18px;

  font-size:14px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;

  color:#ffffff;

  /* Dark glass base */
  background:
    linear-gradient(
      135deg,
      rgba(0,0,0,.55),
      rgba(0,0,0,.35)
    );

  border-radius:999px;

  /* Strong separation */
  box-shadow:
    0 10px 30px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,215,140,.45);

  backdrop-filter: blur(10px);

  position:relative;
  overflow:hidden;

  white-space:nowrap;
}


/* Gold edge glow */

.hero-ready-label:after{
  content:"";
  position:absolute;
  inset:-1px;

  border-radius:inherit;

  background:
    linear-gradient(
      135deg,
      transparent 20%,
      rgba(255,190,90,.6),
      transparent 80%
    );

  opacity:.6;
  pointer-events:none;
}


/* Shine animation */

.hero-ready-label:before{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      120deg,
      transparent 25%,
      rgba(255,255,255,.35),
      transparent 75%
    );

  transform:translateX(-120%);
  animation:readyLabelShine 6s infinite;
}

@keyframes readyLabelShine{
  to{ transform:translateX(120%); }
}


/* Hover polish */

.hero-ready-label:hover{
  transform:translateY(-1px);
  box-shadow:
    0 14px 40px rgba(0,0,0,.55);
}


/* Mobile */

@media(max-width:900px){

  .hero-ready-label{
    font-size:11px;
    padding:6px 14px;
    margin-bottom:12px;
  }

}

/* === HERO TICKER OVERFLOW FIX (FINAL) === */

.hero-features{
  overflow:hidden;
  width:100%;
}

.hero-features-viewport{
  width:100%;
  overflow:hidden;
  position:relative;
}

.hero-features-track{
  display:flex;
  width:max-content;
  flex-wrap:nowrap;

  will-change:transform;

  animation: featureScroll 28s linear infinite;
}

.hero-feature{
  flex:0 0 auto;
}

html, body{
  overflow-y: auto !important;
  height: auto !important;
  position: static !important;
}

body{
  overscroll-behavior: auto !important;
}

/* === MOBILE TRUE FULLSCREEN HERO FIX === */

@media (max-width:768px){

  .hero-cinematic{

    /* päris mobiili ekraan */
    min-height: 100svh;
    height: 100svh;

    /* fallback vanematele */
    min-height: 100vh;
    height: 100vh;

    /* ära söö kõrgust ära */
    padding-top: 0;
    margin-top: 0;
  }

}

.hero-title{



  /* ⭐ TÄHTEDE VAHE */
  letter-spacing:-0.05em; /* -0.02 kuni 0.05 */

  /* ⭐ kui tahad kontrollida murdumist */
  max-width:12ch;

  /* optional */
  margin-bottom:24px;

}

/* =================================
VL24 HERO CINEMATIC MOTION SYSTEM
================================= */

.hero-cinematic [data-motion]{
  opacity:0;
  transition:
    transform 1s cubic-bezier(.16,1,.3,1),
    opacity 1s ease;
  will-change:transform,opacity;
}

/* visible state */
.hero-cinematic.is-loaded [data-motion]{
  opacity:1;
  transform:none;
}

/* directions */

[data-motion="left"]{
  transform:translateX(-80px);
}

[data-motion="right"]{
  transform:translateX(80px);
}

[data-motion="bottom"]{
  transform:translateY(60px);
}

[data-motion="top"]{
  transform:translateY(-60px);
}

[data-motion="scale"]{
  transform:scale(.9);
}

/* delay support */
.hero-cinematic [data-motion-delay]{
  transition-delay: var(--delay);
}

/* =================================
HERO SCROLL CINEMATIC CTA
================================= */

.hero-scroll{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  cursor:pointer;
}

/* icon base */
.hero-scroll-ico{
  transition:all .3s ease;
}

/* loop animation */
.hero-scroll{
  animation:heroScrollPulse 3s ease infinite;
}

/* cinematic pulse */
@keyframes heroScrollPulse{

  /* idle */
  0%,70%,100%{
    transform:translateX(-50%) scale(1);
    filter:none;
  }

  /* grow */
  75%{
    transform:translateX(-50%) scale(1.25);
  }

  /* rotate + glow */
  80%{
    transform:translateX(-50%) scale(1.3) rotate(8deg);
    filter:
      drop-shadow(0 0 8px rgba(255,255,255,.8))
      drop-shadow(0 0 20px rgba(255,255,255,.4));
  }

  /* bounce */
  85%{
    transform:translateX(-50%) scale(1.2) rotate(-6deg);
  }

  /* settle */
  90%{
    transform:translateX(-50%) scale(1);
    filter:none;
  }
}

/* hover stronger */
.hero-scroll:hover{
  animation-duration:1.5s;
}




/* =========================================
MOBILE + TABLET TRUE FULLSCREEN HERO
NO SCROLL / NO CUT / NO MENU TRIGGER
========================================= */

@media (max-width:1024px){

  /* HERO päris ekraan */
  .hero-cinematic{
    height:100dvh !important;
    min-height:100dvh !important;

    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-end !important;

    overflow:hidden !important;
    margin-top:0 !important;
    padding-top:var(--header-h) !important;
  }

  /* content ei ole enam absolute */
  .hero-content{
    position:relative !important;
    bottom:auto !important;

    padding-bottom:20px !important;

    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-end !important;

    height:100%;
  }

  /* CTA ei lähe ekraanist välja */
  .hero-buttons{
    position:relative !important;
    left:auto !important;
    bottom:auto !important;
    transform:none !important;

    margin-top:18px !important;
  }

  /* ticker ei söö ruumi */
  .hero-features{
    padding-bottom:0 !important;
    margin-top:12px !important;
  }

  /* scroll nupp ei tekita overflow */
  .hero-scroll{
    bottom:16px !important;
  }

  /* tekst natuke väiksem et kõik mahuks */
  .hero-title{
    font-size:clamp(34px,8vw,56px) !important;
    line-height:.9 !important;
  }

  .hero-big{
    font-size:clamp(16px,4vw,22px) !important;
  }

}


