/* =====================================================
   WHY CARDS — LIGHT PREMIUM SYSTEM (2026)
   Clean / Single Source / No Conflicts
===================================================== */


/* =========================
   SECTION
========================= */

.vl24-why-cards{
  position:relative;
  padding:120px 0;
  background-size:cover;
  background-position:center;
  overflow:hidden;
}

.vl24-why-cards > *{
  position:relative;
  z-index:2;
}


/* =========================
   WRAP / GRID
========================= */

.vl24-why-cards .vl24-wrap{
  max-width:1240px;
  margin:0 auto;

  display:grid;
  grid-template-columns: 420px 1fr;
  gap:72px;

  padding:0 40px;
  align-items:flex-start;

  position:relative;
  z-index:2;
}



/* ensure content stays above band */
.vl24-why-cards .vl24-wrap > *{
  position:relative;
  z-index:2;
}


/* =========================
   LEFT — GLASS CARD
========================= */

.why-left{
  position:sticky;
  top:30px;

  background:transparent;

  padding:0; /* ⭐ eemalda ülemine padding */

  box-shadow:none;
  border-radius:0;

  backdrop-filter:none;

  display:flex;           /* ⭐ lisatud */
  flex-direction:column;  /* ⭐ lisatud */
  justify-content:flex-start; /* ⭐ lisatud */
}


/* =========================
   TITLE (GRADIENT)
========================= */



/* Intro text */

.why-intro{
  font-size:16px;
  line-height:1.7;

  color:#475569;
  max-width:42ch;
}


/* =========================
   RIGHT SIDE
========================= */

.why-right{
  min-width:0;
}


/* =========================
   TABS
========================= */

.why-tabs{

  display:inline-flex;

  background:rgba(255,255,255,.65);

  backdrop-filter:blur(14px) saturate(150%);
  -webkit-backdrop-filter:blur(14px) saturate(150%);

  border-radius:999px;

  padding:6px;

  box-shadow:
    0 12px 28px rgba(0,0,0,.10),
    inset 0 0 0 1px rgba(255,255,255,.6);

  margin:0 0 34px;

  gap:2px;
}



.why-tabs button{
  background:transparent;

  border:0;

  padding:11px 24px;

  border-radius:0;

  font-size:14px;
  font-weight:600;
  letter-spacing:.01em;

  color:#1e293b;

  box-shadow:none;

  transition:.25s;
}

.why-tabs button:hover{
    transform:none;
  filter:brightness(0.98);
}

.why-tabs button.active{
  background:#1a1205;
  color:#fff;

  border-radius:999px;

  box-shadow:
    0 6px 18px rgba(15,23,42,.25);
}



/* =========================
   PANELS
========================= */

.why-panels{
  position:relative;
}

.why-panel{
  display:none;
}

.why-panel.active{
  display:block;

  background: rgba(255,255,255,.32);

  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);

  border-radius:26px;

  padding:26px;

  box-shadow:
    0 24px 60px rgba(0,0,0,.12);
}


@keyframes fadeUp{
  from{opacity:0;transform:translateY(12px)}
  to{opacity:1;transform:none}
}


/* =========================
   IMAGE CARD
========================= */

.why-img{
  border-radius:20px 20px 1px 1px;
  overflow:hidden;

  box-shadow:
    0 36px 90px rgba(0,0,0,.22);

  transform:translateY(-22px);
  margin:-26px -26px 0;
}

.why-img img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}


/* =========================
   TEXT CARD
========================= */

.why-text{
 
  border:0;
  border-radius:0;
  box-shadow:none;

  padding:0;
  margin-top:-14px; /* hoiab pildi ja teksti koos */

  color:#1e293b;
  line-height:1.7;
}



/* Collapsed */

.why-text.collapsed{
  max-height:12em;
  overflow:hidden;
  position:relative;
}





/* =========================
   READ MORE
========================= */

.why-readmore{

  display:inline-flex;
  align-items:center;
  gap:6px;

  font-weight:600;

  color:#7a5220;

  text-decoration:none;

  border-bottom:1px solid rgba(122,82,32,.35);

  padding-bottom:2px;

  transition:.25s;
}

.why-readmore::after{
  content:"→";
  transition:.25s;
}

.why-readmore:hover{
  color:#c9a15a;
  border-color:#c9a15a;
}

.why-readmore:hover::after{
  transform:translateX(4px);
}




/* =========================
   MOBILE
========================= */

@media(max-width:900px){

  .vl24-why-cards{
    padding:80px 0;
  }

  .vl24-why-cards .vl24-wrap{
    grid-template-columns:1fr;
    gap:46px;

    padding:0 22px;
  }

  .why-left{
    position:static;
    padding:34px 28px;
  }

  .why-left h2{
    font-size:34px;
  }

  .why-tabs{
    overflow-x:auto;
    flex-wrap:nowrap;
    padding-bottom:6px;
  }

  .why-tabs::-webkit-scrollbar{
    display:none;
  }

  .vl24-why-cards .vl24-wrap::before{
    top:-34px;
    bottom:-24px;
  }

  .why-panel.active{
    padding:18px;
  }

  .why-img{
    margin:0 0 14px;
    transform:none;
  }

  .why-text{
    padding:10px 2px 0;
  }

  /* Pilt täidab kaardi laiuse */
  .why-panel.active{
    overflow:hidden; /* et nurgad jääks */
  }

  .why-img{
    margin:
      -18px   /* top */
      -18px   /* left/right */
      14px    /* bottom */
      -18px;

    border-radius:20px 20px 1px 1px;
  }

}

/* =========================
   TABLET FIX — stop overlap
   (901px–1200px)
========================= */
@media (max-width:1200px) and (min-width:901px){

  /* anna vasakule rohkem ruumi */
  .vl24-why-cards .vl24-wrap{
    grid-template-columns: 1fr;   /* kindel: tekst ei saa enam kaduda */
    gap:28px;
  }

  .why-left{
    position:static;             /* sticky OFF tabletis */
    padding:30px 0 10px;
  }

  /* tabs jäävad kenasti vasaku teksti alla */
  .why-tabs{
    margin:10px 0 18px;
  }

  /* parempoolne kaart ei tohi "välja joosta" */
  .why-panel.active{
    overflow:hidden;             /* lõikab box-shadow/overlap'i ära */
  }

  /* nulli desktop-overlap tabletis */
  .why-img{
    transform:none !important;
    margin: -22px -22px 14px -22px !important; /* pilt täidab kaardi laiuse */
    border-radius:22px 22px 1px 1px;
  }

  .why-text{
    margin-top:0 !important;
    padding:0 2px 0;
  }
}

/* KILL GLOBAL BG BLUR */
.vl24-why-cards::before{
  display:none !important;
}

.why-text.collapsed{
  max-height:18em;
}

.vl24-why-cards{
  isolation:isolate;
}

/* 1. remove global blur */
.vl24-why-cards::before{
  display:none !important;
}

/* 2. isolate section */
.vl24-why-cards{
  isolation:isolate;
}

/* 3. more collapsed text */
.why-text.collapsed{
  max-height:18em;
}

/* 4. better readmore */
.why-readmore{
  color:#6b4a1f;
  text-decoration:none;
  border-bottom:1px solid rgba(107,74,31,.35);
  padding-bottom:1px;
  transition:.2s;
}

.why-readmore:hover{
  color:#8a5a22;
  border-color:#8a5a22;
}



@media (max-width:1200px){

  .why-left{
    position:relative !important;
    top:auto !important;
  }

}

.vl24-why-cards::after{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255,220,160,.25),
      transparent 55%
    );

  pointer-events:none;
  z-index:1;
}

.why-img img{
  transition:transform 1.6s ease;
}

.why-panel.active:hover .why-img img{
  transform:scale(1.04);
}

.why-img{
  box-shadow:
    0 40px 100px rgba(0,0,0,.25),
    0 0 40px rgba(255,200,120,.15);
}

.vl24-why-cards{
  animation:sectionFade .8s ease both;
}

@keyframes sectionFade{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:none;
  }
}

/* =====================================
   MOBILE + TABLET — PRO LAYOUT FIX
===================================== */

@media (max-width:1200px){

  /* GRID → SINGLE COLUMN */
  .vl24-why-cards .vl24-wrap{
    grid-template-columns: 1fr !important;
    gap:32px;
  }


  /* LEFT BLOCK NORMAL FLOW */
  .why-left{
    position:relative !important;
    top:auto !important;

    padding:20px 0 10px;
  }


  /* RIGHT BLOCK FULL WIDTH */
  .why-right{
    width:100%;
    min-width:0;
  }


  /* ---------------------------
     STICKY TABS BAR
  --------------------------- */

  .why-tabs-wrap{
    position:sticky;
    top:64px; /* header kõrgus */

    z-index:50;

    margin:0 -22px -10px;
    padding:6px 22px;

    background: transparent !important;

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom:0 !important;
  box-shadow:none !important;
  }


  /* HORIZONTAL SCROLL TABS */

  .why-tabs{
    width:100%;

    overflow-x:auto;
    overflow-y:hidden;

    -webkit-overflow-scrolling:touch;

    scroll-snap-type:x mandatory;

    padding:6px 4px;

    gap:8px;
  }


  .why-tabs::-webkit-scrollbar{
    display:none;
  }


  .why-tabs button{
    flex:0 0 auto;

    scroll-snap-align:start;

    white-space:nowrap;

    font-size:13px;

    padding:9px 18px;
  }


  /* ACTIVE TAB STRONGER */

  .why-tabs button.active{
    box-shadow:
      0 4px 14px rgba(0,0,0,.25);
  }


  /* ---------------------------
     PANELS
  --------------------------- */

  .why-panels{
    padding-top:8px;
  }


  .why-panel.active{
    border-radius:22px;

    padding:18px;
  }


  /* IMAGE FULL WIDTH */

  .why-img{
    margin:
      -18px
      -18px
      14px
      -18px;

    border-radius:18px 18px 2px 2px;
  }


  /* TEXT */

  .why-text{
    font-size:15px;
    line-height:1.65;

    padding:6px 2px 0;
  }


  /* TITLE MOBILE */

  .why-left h2{
    font-size:clamp(28px,7vw,34px);
  }


  /* INTRO */

  .why-intro{
    max-width:100%;
  }

}


/* SHINE MOVE */

@keyframes goldShine{

  0%   { background-position:0% 0; }
  50%  { background-position:100% 0; }
  100% { background-position:0% 0; }

}


.vl24-why-cards .why-left h2{
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.vl24-why-cards{
  padding:40px 0 110px;
}

/* =====================================
   TABLET = DESKTOP LAYOUT (901px–1200px)
   Pane faili kõige lõppu
===================================== */

@media (min-width:901px) and (max-width:1200px){

  /* restore 2 column layout */
  .vl24-why-cards .vl24-wrap{
    grid-template-columns: 420px 1fr !important;
    gap:56px;
  }

  /* vasak sticky nagu desktop */
  .why-left{
    position:sticky !important;
    top:120px;
    padding:50px 0 70px 0;
  }

  /* tabs ei ole sticky mobile bar */
  .why-tabs-wrap{
    position:static !important;
    margin:0;
    padding:0;
    backdrop-filter:none;
  }

  /* parem blokk */
  .why-right{
    width:auto;
  }

}

/* =====================================
WHY CARDS — TITLE
black → brand yellow → black
===================================== */

.vl24-why-cards .why-left h2{
  font-family:"Inter",sans-serif !important;
  font-size:clamp(30px,3.2vw,46px) !important;
  font-weight:700 !important;
  line-height:1.08 !important;
  letter-spacing:-.02em !important;

  background:linear-gradient(
  90deg,
  #f5f4f4 0%,
  #d0cfcf 20%,
  var(--brand-primary) 50%,
  #f5f576 60%,
  var(--brand-primary) 70%,
  #000 100%
) !important;

  -webkit-background-clip:text !important;
  background-clip:text !important;

  color:transparent !important;
  -webkit-text-fill-color:transparent !important;

  text-shadow:none !important;
  animation:none !important;
}


/* =====================================
WHY CARDS — INTRO TEXT (WHY STATS STYLE)
===================================== */

.vl24-why-cards .why-intro{

  font-family:"Inter",sans-serif;
  font-size:16px;
  line-height:1.75;

  /* sama nagu why-stats header text */
  color:rgba(255,255,255,.85);
}

/* =====================================
WHY CARDS — DARK GLASS BAND (WHITE TEXT READABLE)
===================================== */

.vl24-why-cards .vl24-wrap::before{
  content:"" !important;
  position:absolute !important;

  left:50% !important;
  transform:translateX(-50%) !important;

  top:-40px !important;
  bottom:-34px !important;

  width:100vw !important;

  background: linear-gradient(
  to bottom,
  rgba(0,0,0,.45) 0%,   /* ⭐ ülevalt palju heledam (oli .82) */
  rgba(0,0,0,.55) 30%,  /* smooth üleminek */
  rgba(0,0,0,.68) 60%,  /* tume kestab kauem */
  rgba(0,0,0,.45) 80%,
  rgba(0,0,0,.18) 95%,
  rgba(0,0,0,0) 100%
) !important;

  backdrop-filter: blur(14px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(120%) !important;

  /* keep your fade mask */
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 42%,
    rgba(0,0,0,.75) 60%,
    rgba(0,0,0,.35) 74%,
    rgba(0,0,0,0) 90%,
    rgba(0,0,0,0) 100%
  ) !important;

  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 42%,
    rgba(0,0,0,.75) 60%,
    rgba(0,0,0,.35) 74%,
    rgba(0,0,0,0) 90%,
    rgba(0,0,0,0) 100%
  ) !important;

  pointer-events:none !important;
  z-index:0 !important;
}

/* =================================
WHY CARDS TITLE — SAME AS SERVICES
================================= */

.vl24-why-cards .why-left h2{

  /* ⭐ IDENTNE SERVICES TITLE */
  font-family:"Outfit",sans-serif !important;
  font-weight:600 !important;

  font-size:clamp(36px,4vw,56px) !important;
  line-height:1.1 !important;

  letter-spacing:-0.02em !important;
  margin:0 0 16px !important;

  /* ⭐ sama gradient */
  background:linear-gradient(
    90deg,
    #f9f7f7 0%,
    #bab9b9 10%,
    #58752d 25%,
    var(--brand-primary) 50%,
    #5b7b2c 70%,
    #edebeb 90%
  ) !important;

  -webkit-background-clip:text !important;
  background-clip:text !important;
  -webkit-text-fill-color:transparent !important;
  color:transparent !important;

  text-shadow:none !important;
  animation:none !important;
}

/* =====================================
WHY TABS — VISUALLY ON IMAGE TOP
(works with current HTML structure)
===================================== */

/* tabs jäävad õigesse kohta */
.why-tabs-wrap{
  position:relative;
  z-index:20;
}

/* liigutame visuaalselt pildi peale */
.why-tabs{
  margin-bottom:-50px;   /* ⭐ tõmbab pildi peale */
  transform:translateY(25px);

  /* sama nurga kumerus kui kaardil */
  border-radius:20px 20px 0 0;

  background:rgba(255,255,255,.9);
  backdrop-filter:blur(16px);
}

/* et pilt ei läheks tabsiga konflikti */
.why-panel.active{
  padding-top:60px;
}

/* =====================================
WHY TABS — BRAND GREEN BACKGROUND
===================================== */

.why-tabs{

  /* ⭐ sinu keskkonna roheline */
  background:var(--brand-primary) !important;

  /* glass premium feel */
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);

  border-radius:20px 20px 0 0;

  box-shadow:
    0 20px 40px rgba(0,0,0,.25),
    inset 0 1px rgba(255,255,255,.25);
}

/* tab tekst */
.why-tabs button{
  color:#111 !important; /* must tekst rohelisel */
}

/* aktiivne tab */
.why-tabs button.active{
  background:#1a1205 !important;
  color:#fff !important;
}



/* =================================
WHY PANEL — FULL DARK CARD
removes glass completely
================================= */

.vl24-why-cards .why-panel.active{

  /* ❌ eemaldab klaasi */
  background:#1c1c1c !important;

  /* eemaldab blur */
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;

  /* jätab premium depth */
  box-shadow:
    0 40px 100px rgba(0,0,0,.55);

  border-radius:26px;
}

.vl24-why-cards .why-text{
  color:#fff;
}

/* =================================
WHY READMORE — GOLD LINK (FINAL)
================================= */

.vl24-why-cards .why-readmore{

  display:inline-flex;
  align-items:center;
  gap:6px;

  font-weight:600;
  font-size:15px;

  text-decoration:none;

  background:linear-gradient(
    180deg,
    #fff6c7 0%,
    #f0c95a 40%,
    #b8962e 70%,
    #fff1a3 100%
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  border-bottom:1px solid rgba(212,175,55,.35);

  transition:.25s ease;
}

/* arrow */
.vl24-why-cards .why-readmore::after{
  content:"→";
  margin-left:4px;
  transition:.25s ease;
}

/* hover */
.vl24-why-cards .why-readmore:hover{

  border-bottom-color:rgba(255,220,140,.8);

  text-shadow:
    0 0 12px rgba(255,210,120,.35);
}

.vl24-why-cards .why-readmore:hover::after{
  transform:translateX(5px);
}

/* =====================================================
   WHY CARDS — 2026 DARK GOLD WOW (FINAL)
   Paste as LAST block in why-cards css file
===================================================== */

.vl24-why-cards{
  position:relative;
  isolation:isolate;
  color:rgba(255,255,255,.92);
}

/* --- CINEMATIC OVERLAY ON FULL BG IMAGE --- */
.vl24-why-cards::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;

  background:
    radial-gradient(900px 520px at 22% 10%, rgba(255,210,140,.18), transparent 60%),
    radial-gradient(760px 520px at 85% 30%, rgba(255,200,120,.10), transparent 62%),
    linear-gradient(180deg,
      rgba(0,0,0,.38) 0%,
      rgba(0,0,0,.62) 28%,
      rgba(0,0,0,.78) 60%,
      rgba(0,0,0,.62) 82%,
      rgba(0,0,0,.40) 100%
    );
}

/* --- SUBTLE FILM GRAIN (removes “stock” vibe) --- */
.vl24-why-cards::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  opacity:.18;

  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.05) 0px,
      rgba(255,255,255,.05) 1px,
      transparent 2px,
      transparent 4px
    );
  mix-blend-mode:soft-light;
}

/* keep real content above overlays */
.vl24-why-cards > *,
.vl24-why-cards .vl24-wrap,
.vl24-why-cards .vl24-wrap > *{
  position:relative;
  z-index:2;
}

/* =====================================================
   LEFT SIDE — match HERO typography vibe
===================================================== */

.vl24-why-cards .why-intro{
  color:rgba(255,255,255,.78);
  max-width:46ch;
}

/* title: luxury, warm */
.vl24-why-cards .why-left h2{
  font-family:"Outfit",sans-serif !important;
  font-weight:600 !important;
  letter-spacing:-.02em !important;
  line-height:1.08 !important;

  color:rgba(255,255,255,.96) !important;
  text-shadow:
    0 24px 70px rgba(0,0,0,.45),
    0 2px 10px rgba(0,0,0,.35);
}

/* =====================================================
   TABS — luxury dark glass + metallic gold active
===================================================== */

.vl24-why-cards .why-tabs{
  display:inline-flex;
  gap:6px;
  padding:7px;
  border-radius:999px;

  background:rgba(10,10,12,.55) !important;
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);

  box-shadow:
    0 18px 44px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.10);

  margin:0 0 28px;
}

.vl24-why-cards .why-tabs button{
  background:transparent;
  border:0;
  padding:11px 20px;
  border-radius:999px;

  color:rgba(255,255,255,.82) !important;
  font-weight:650;
  transition:transform .18s ease, filter .18s ease, background .18s ease, box-shadow .18s ease;
}

.vl24-why-cards .why-tabs button:hover{
  filter:brightness(1.05);
}

.vl24-why-cards .why-tabs button.active{
  background:var(--vl24-gold-metal) !important;
  color:#111 !important;

  box-shadow:
    0 14px 30px rgba(0,0,0,.35),
    0 0 26px rgba(255,205,135,.18);
}

/* =====================================================
   PANEL — dark glass card (premium)
===================================================== */

.vl24-why-cards .why-panel.active{
  display:block;

  background:rgba(12,12,14,.62) !important;
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);

  border-radius:26px;
  padding:26px;

  box-shadow:
    0 42px 120px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.10);
}

.vl24-why-cards .why-text{
  color:rgba(255,255,255,.88) !important;
  line-height:1.75;
}

.vl24-why-cards .why-text p{
  margin:0 0 14px;
}

.vl24-why-cards .why-text ul{
  margin:10px 0 14px 18px;
}

.vl24-why-cards .why-text li{
  margin:0 0 8px;
  color:rgba(255,255,255,.82);
}

/* image: cinematic edge + gold ambient */
.vl24-why-cards .why-img{
  box-shadow:
    0 46px 120px rgba(0,0,0,.58),
    0 0 46px rgba(255,205,135,.16);
}

.vl24-why-cards .why-img img{
  filter:saturate(1.05) contrast(1.02);
}

/* =====================================================
   READMORE — gold
===================================================== */

.vl24-why-cards .why-readmore{
  color:rgba(255,220,160,.90);
  border-bottom:1px solid rgba(255,220,160,.32);
}

.vl24-why-cards .why-readmore:hover{
  color:rgba(255,235,190,.98);
  border-color:rgba(255,235,190,.55);
}

/* =====================================================
   MOBILE: keep same mood
===================================================== */

@media(max-width:900px){
  .vl24-why-cards .why-tabs{
    background:rgba(10,10,12,.62) !important;
  }

  .vl24-why-cards .why-panel.active{
    padding:18px;
    border-radius:22px;
  }
}

/* =====================================================
WHY — USE HERO EYEBROW 1:1 (no hero.css changes)
===================================================== */

.vl24-why-cards .hero-eyebrow{
  position:relative;
  display:inline-block;

  font-family:"Space Grotesk",sans-serif;
  font-size:16px;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-weight:700;

  margin-bottom:22px;
  white-space:nowrap;

  background:var(--vl24-gold-metal);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;

  padding:6px 12px;
  border-radius:6px;

  background-color:rgba(18,18,18,.35);
  backdrop-filter:blur(10px);

  border:1px solid rgba(255,255,255,.08);

  text-shadow:none;
  filter:none;
}

/* scan effect */
.vl24-why-cards .hero-eyebrow::after{
  content:"";
  position:absolute;
  top:0;
  left:-40%;
  width:40%;
  height:100%;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.9),
    rgba(255,255,255,.95),
    transparent
  );

  opacity:0;
  pointer-events:none;
}

.vl24-why-cards .hero-eyebrow.is-scanning::after{
  opacity:.85;
  animation:vl24Scan 5s cubic-bezier(.22,1,.36,1) forwards;
}

/* final gold state */
.vl24-why-cards .hero-eyebrow.is-final{
  background:linear-gradient(
    180deg,
    #fff6c7 0%,
    #f0c95a 35%,
    #b8962e 65%,
    #fff1a3 100%
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  text-shadow:
    0 1px 1px rgba(0,0,0,.6),
    0 0 14px rgba(212,175,55,.35);
}

/* =================================
WHY TITLE — FINAL 2026 GOLD
================================= */

.vl24-why-cards .why-left h2{

  font-family:"Outfit",sans-serif !important;
  font-weight:600 !important;

  font-size:clamp(38px,4vw,58px) !important;
  line-height:1.08 !important;
  letter-spacing:-0.02em !important;

  background:linear-gradient(
    180deg,
    #fff8d6 0%,
    #f2cc6b 35%,
    #c7a43a 60%,
    #fff1b2 100%
  ) !important;

  -webkit-background-clip:text !important;
  background-clip:text !important;
  -webkit-text-fill-color:transparent !important;
  color:transparent !important;

  text-shadow:
    0 10px 40px rgba(0,0,0,.55),
    0 0 20px rgba(255,210,120,.25);

}

/* =====================================================
WHY — HERO EYEBROW TRUE 1:1
(copy hero.css values exactly)
===================================================== */

/* desktop */
.vl24-why-cards .hero-eyebrow{

  font-family:"Space Grotesk",sans-serif !important;
  font-size:16px !important;
  letter-spacing:.28em !important;
  font-weight:700 !important;
  text-transform:uppercase !important;

  padding:6px 12px !important;
  border-radius:6px !important;

  margin-bottom:22px !important;

  white-space:nowrap !important;

  background:var(--vl24-gold-metal) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  -webkit-text-fill-color:transparent !important;
  color:transparent !important;

  background-color:rgba(18,18,18,.35) !important;
  backdrop-filter:blur(10px) !important;
  -webkit-backdrop-filter:blur(10px) !important;

  border:1px solid rgba(255,255,255,.08) !important;

  text-shadow:none !important;
  filter:none !important;
}

/* MOBILE — IDENTNE hero.css */
@media(max-width:768px){

  .vl24-why-cards .hero-eyebrow{
    font-size:12px !important;
    letter-spacing:.18em !important;

    padding:4px 8px !important;
    border-radius:4px !important;

    margin-bottom:10px !important;
  }
}

/* =====================================
WHY LEFT — stop full-width stretch
===================================== */

.vl24-why-cards .why-left{
  align-items:flex-start !important;  /* ⭐ EI venita child’e 100% */
}

/* extra safety: eyebrow never stretches */
.vl24-why-cards .why-left .hero-eyebrow{
  align-self:flex-start !important;
  width:auto !important;
  max-width:max-content !important;
}

/* =====================================
WHY CARDS — SHARPER CORNERS (2026)
paste as LAST block
===================================== */


/* =========================
TAB BAR (taust)
========================= */

.vl24-why-cards .why-tabs{
  border-radius:14px !important;   /* ⭐ oli 999px → nüüd teravam */
}


/* =========================
TAB BUTTONS
========================= */

.vl24-why-cards .why-tabs button{
  border-radius:10px !important;   /* ⭐ oli pill */
}

.vl24-why-cards .why-tabs button.active{
  border-radius:10px !important;
}


/* =========================
RIGHT PANEL / TEXT CARD
========================= */

.vl24-why-cards .why-panel.active{
  border-radius:16px !important;   /* ⭐ oli 26px */
}


/* =========================
IMAGE TOP CORNERS
========================= */

.vl24-why-cards .why-img{
  border-radius:16px 16px 2px 2px !important;
}