/* =========================================================================
   hitto — investicinė NT plėtra ir turto valdymas
   Prototipas (HTML) → vėliau WordPress custom theme.
   Tamsi tema. Originalūs sprendimai. Jūros/Klaipėdos abstrakti stilistika.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------------- */
:root {
  --c-navy:        #0D2B4C;
  --c-navy-deep:   #061426;
  --c-blue:        #1872CF;
  --c-blue-soft:   #4f93da;
  --c-white:       #ffffff;

  --c-bg:          #071a30;
  --c-text:        #ffffff;
  --c-muted:       rgba(255, 255, 255, .58);
  --c-faint:       rgba(255, 255, 255, .40);
  --c-line:        rgba(255, 255, 255, .16);
  --c-line-soft:   rgba(255, 255, 255, .08);

  /* Tipografija */
  --font-display: "Horas Display", "Horas", -apple-system, BlinkMacSystemFont, sans-serif;   /* antraštės (ExtraBold) */
  --font-sans:    "Horas", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;         /* body / UI */

  --container:     1480px;
  --gutter:        clamp(22px, 5vw, 76px);

  --r-pill:        999px;
  --ease:          cubic-bezier(.19, 1, .22, 1);
  --dur:           .6s;

  /* Tipografijos skalė (nuosekli hierarchija) */
  --t-h3:      clamp(1.75rem, 2.4vw, 2.4rem);   /* kortelių / sekcijos punktų antraštės (UPPER) — mobile 28px */
  --t-h4:      clamp(1.05rem, 1.3vw, 1.4rem);   /* smulkios kortelių antraštės / vardai (UPPER) */
  --t-lead-l:  clamp(1.35rem, 2.1vw, 2.05rem);  /* didelis įvadas */
  --t-lead:    clamp(1.1rem, 1.55vw, 1.5rem);   /* sekcijos įvadas */
  --t-body:    clamp(1.05rem, 1.2vw, 1.2rem);   /* aprašomasis tekstas */
  --t-small:   clamp(.95rem, 1.05vw, 1.05rem);  /* smulkus tekstas */

  /* Tarpų sistema — 1=tarp sekcijų, 2=sekcijos viduje (H2→turinys, kortelių gap), 3=komponento viduje */
  --sp-1: clamp(90px, 13vh, 170px);
  --sp-2: clamp(40px, 6vh, 80px);
  --sp-3: 25px;
  --sp-micro: 8px;   /* meta↔antraštė, vardas↔pareigos */
  --sp-attach: 16px; /* funkciniai prieraišai bėgančiame tekste */
}

/* -------------------------------------------------------------------------
   2. Reset / base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;                 /* Horas neturi 400 — body = Medium (500) */
  font-size: 18px; line-height: 1.6;
  color: var(--c-text);
  background:
    radial-gradient(120% 90% at 80% 8%, #103055 0%, transparent 50%),
    radial-gradient(110% 120% at 6% 100%, #0a2340 0%, transparent 55%),
    var(--c-bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; }
p { margin: 0; }
::selection { background: var(--c-blue); color: #fff; }
:focus-visible { outline: 2px solid var(--c-blue-soft); outline-offset: 4px; border-radius: 3px; }

.skip-link { position: absolute; left: 16px; top: -60px; z-index: 300; background: #fff; color: var(--c-navy); padding: 10px 18px; border-radius: 10px; transition: top .25s var(--ease); }
.skip-link:focus { top: 16px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* =========================================================================
   3. PRELOADER — logo dalys subėga į vieną
   ========================================================================= */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--c-navy-deep);
  display: grid; place-items: center;
  transition: transform 1s var(--ease);
}
.preloader.is-done { transform: translateY(-101%); }

/* Solidus logo atsidengimas: mask wipe iš kairės + linija po juo */
.pl-logo { position: relative; width: 110px; }
.pl-logo img {
  display: block; width: 100%;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.05s cubic-bezier(.76, 0, .24, 1), opacity .5s ease;
}
.preloader.pl-in .pl-logo img { opacity: 1; clip-path: inset(0 0 0 0); }

/* Grain */
.grain { position: fixed; inset: -50%; z-index: 9998; pointer-events: none; opacity: .05; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* =========================================================================
   5. HEADER — DIDELIS logo (35%) viršuje + custom hamburger
   ========================================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: clamp(18px, 2.6vh, 34px);
  transition: padding var(--dur) var(--ease), transform var(--dur) var(--ease);
  transform: translateY(-105%);
}
.site-header.is-ready { transform: translateY(0); }
.site-header::before {
  content: ""; position: absolute; inset: 0;
  background: var(--c-navy-deep);
  border-bottom: 1px solid var(--c-line-soft);
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.site-header.is-scrolled::before { opacity: 1; }
.site-header.is-scrolled { padding-block: clamp(12px, 1.6vh, 18px); }

.header-inner { position: relative; width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }

/* Logo (sumažintas — nekonkuruoja su headline) */
.brand { display: inline-flex; z-index: 2; }
.brand img { width: 110px; height: auto; transition: width var(--dur) var(--ease); }

/* Custom hamburger */
.menu-btn { display: inline-flex; align-items: center; gap: 14px; background: transparent; border: none; padding: 8px 0; margin-top: clamp(6px, 1.2vw, 16px); cursor: pointer; }
.menu-btn__label { font-family: var(--font-sans); font-weight: 600; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: #fff; overflow: hidden; height: 1.2em; }
.menu-btn__label span { display: block; transition: transform .5s var(--ease); }
.menu-btn__label span::after { content: "UŽDARYTI"; display: block; }
.menu-btn.is-open .menu-btn__label span { transform: translateY(-50%); }
.menu-btn__icon { position: relative; width: 30px; height: 12px; }
.menu-btn__icon span { position: absolute; right: 0; height: 2px; background: #fff; border-radius: 2px; transition: transform .45s var(--ease), width .45s var(--ease), top .3s var(--ease), bottom .3s var(--ease); }
.menu-btn__icon span:nth-child(1) { top: 0; width: 30px; }
.menu-btn__icon span:nth-child(2) { bottom: 0; width: 18px; }
.menu-btn:hover .menu-btn__icon span:nth-child(2) { width: 30px; }
.menu-btn.is-open .menu-btn__icon span { width: 28px; }
.menu-btn.is-open .menu-btn__icon span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.menu-btn.is-open .menu-btn__icon span:nth-child(2) { bottom: 5px; transform: rotate(-45deg); }

/* -------------------------------------------------------------------------
   6. Meniu overlay
   ------------------------------------------------------------------------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90;
  background: var(--c-navy-deep); color: #fff;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden; clip-path: inset(0 0 100% 0);
  transition: opacity .5s var(--ease), visibility .5s, clip-path .85s var(--ease);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; clip-path: inset(0 0 0 0); }

.menu-panel { min-height: 100%; display: flex; flex-direction: column; }

/* --- turinys: centruotas sąrašas + CTA (mobile) --- */
.menu-content {
  flex: 1; min-height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(30px, 6vh, 60px);
  padding: clamp(120px, 15vh, 180px) var(--gutter) clamp(48px, 8vh, 84px);
  text-align: center;
}
.menu-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: center; gap: clamp(20px, 4.2vh, 44px); }
.menu-list a {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.65rem, 6.5vw, 2.3rem); line-height: 1; letter-spacing: -.01em;
  color: #fff; transition: color .3s ease, opacity .35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .menu-list:hover a { opacity: .4; }
  .menu-list a:hover { opacity: 1; color: var(--c-blue-soft); }
}

/* CTA — burbulas išsitempia į pilną mėlyną pill (fill + glow), rodyklė perbėga pro dešinę */
.menu-cta {
  --bubble: 48px; --cta-gap: 16px;
  position: relative; display: inline-flex; align-items: center; height: 56px; z-index: 0;
  font-family: var(--font-sans); font-weight: 600; font-size: clamp(.9rem, 2vw, 1rem);
  color: #fff;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .65s var(--ease);
}
.mobile-nav.is-open .menu-cta {
  opacity: 1; transform: none;
  transition-delay: calc(.3s + var(--i, 0) * .06s);
}
/* burbulas → pilnas pill */
.menu-cta__bubble {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%); z-index: -1;
  width: var(--bubble); height: var(--bubble); border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.75); background: transparent; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: width .55s cubic-bezier(.65,0,.2,1), background-color .45s ease, border-color .45s ease, box-shadow .5s ease;
}
.menu-cta__bubble svg { width: 18px; height: 18px; color: #fff; transition: opacity .3s ease, transform .5s cubic-bezier(.65,0,.2,1); }
/* tekstas */
.menu-cta__label {
  position: relative; white-space: nowrap; letter-spacing: 2px;
  padding-left: calc(var(--bubble) + var(--cta-gap));
  transition: transform .5s var(--ease);
}
/* atkeliaujanti rodyklė (dešinė) */
.menu-cta__arrow {
  position: relative; display: flex; padding: 0 20px;
  opacity: 0; transform: translateX(-10px);
  transition: opacity .4s ease .05s, transform .5s var(--ease) .05s;
}
.menu-cta__arrow svg { width: 18px; height: 18px; }
/* HOVER */
.menu-cta:hover .menu-cta__bubble, .menu-cta:focus-visible .menu-cta__bubble {
  width: 100%; background: var(--c-blue); border-color: var(--c-blue);
  box-shadow: 0 18px 48px -14px rgba(24,114,207,.75);
}
.menu-cta:hover .menu-cta__bubble svg, .menu-cta:focus-visible .menu-cta__bubble svg { opacity: 0; transform: translateX(22px); }
.menu-cta:hover .menu-cta__label, .menu-cta:focus-visible .menu-cta__label { transform: translateX(6px); }
.menu-cta:hover .menu-cta__arrow, .menu-cta:focus-visible .menu-cta__arrow { opacity: 1; transform: translateX(0); }

/* vaizdas — tik desktop split */
.menu-visual { display: none; }

/* laiptuotas atsiradimas atidarius */
.menu-list li {
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .65s var(--ease);
}
.mobile-nav.is-open .menu-list li {
  opacity: 1; transform: none;
  transition-delay: calc(.3s + var(--i, 0) * .06s);
}
@media (prefers-reduced-motion: reduce) {
  .menu-list li { transform: none; transition: opacity .3s ease; }
  .menu-cta { opacity: 1 !important; transform: none !important; }
}

/* --- DESKTOP: split ekranas su nuotrauka dešinėje --- */
@media (min-width: 901px) {
  .menu-panel { flex-direction: row; }
  .menu-content {
    flex: 1 1 50%; align-items: flex-start; justify-content: center; text-align: left;
    padding-inline: clamp(60px, 8vw, 150px);
  }
  .menu-list { align-items: flex-start; gap: clamp(26px, 4.4vh, 52px); }
  .menu-list a { font-size: clamp(1.9rem, 2.5vw, 2.7rem); }
  .menu-cta { align-self: flex-start; margin-top: clamp(10px, 2vh, 24px); }
  .menu-visual {
    display: block; flex: 1 1 50%; position: relative;
    background: var(--c-navy-deep) url('../assets/showcase-2.png') right center / cover no-repeat;
  }
  .menu-visual::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
      linear-gradient(to bottom, rgba(6,20,38,.5), rgba(6,20,38,0) 20%),
      linear-gradient(to right, rgba(6,20,38,.92), rgba(6,20,38,0) 30%);
  }
}

/* =========================================================================
   7. HERO — 30/70 su tekstu + originalus abstraktus elementas
   ========================================================================= */
.hero {
  position: relative; z-index: 2;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: clamp(150px, 19vh, 230px) 0 clamp(70px, 12vh, 150px);
}

/* Abstraktus elementas (architektūra + horizontas) */
.hero__art { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero__art svg {
  position: absolute; left: clamp(-60px, -3vw, 0px); top: 50%;
  height: min(94vh, 980px); width: auto;
  opacity: 0;
  animation: artFloat 22s ease-in-out infinite;
  transition: opacity 1.6s var(--ease) .4s;
}
.in-view .hero__art svg { opacity: 1; }
@keyframes artFloat {
  0%, 100% { transform: translate(0, -50%); }
  50% { transform: translate(-16px, calc(-50% - 12px)); }
}
.hero__art .beacon-ring { transform-box: fill-box; transform-origin: center; animation: beacon 3.4s ease-in-out infinite; }
@keyframes beacon { 0%, 100% { opacity: .28; } 50% { opacity: .9; } }

/* Besisukantis švyturio spindulys */
.hero__art svg { overflow: visible; }
.lh-beam { transform-box: view-box; transform-origin: 260px 296px; animation: lhSweep 11s linear infinite; }
@keyframes lhSweep { to { transform: rotate(360deg); } }

/* Judantis vanduo */
.lh-wave { transform-box: view-box; transform-origin: center; }
.lh-wave1 { animation: lhWaveA 7s ease-in-out infinite; }
.lh-wave2 { animation: lhWaveB 9s ease-in-out infinite; }
@keyframes lhWaveA { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(18px); } }
@keyframes lhWaveB { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-16px); } }

.hero__inner { position: relative; z-index: 1; width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.hero__split { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 2.6vh, 36px); align-items: start; justify-items: center; text-align: center; }

.hero__aside {
  order: 2;
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(1.05rem, 1.35vw, 1.4rem); line-height: 1.6; color: var(--c-muted);
  max-width: none; white-space: nowrap; margin-left: 0; margin-inline: auto;
  opacity: 0; transform: translateY(18px);
  transition: opacity .9s var(--ease) .35s, transform .9s var(--ease) .35s;
}
.in-view .hero__aside { opacity: 1; transform: translateY(0); }
.hero__aside .accent { color: var(--c-blue-soft); font-weight: 600; }

/* scroll sufleris (dešinė hero pusė) */
.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(24px, 5vh, 52px); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--c-muted);
  opacity: 0; transform: translateY(12px);
  transition: opacity .8s var(--ease) .75s, transform .8s var(--ease) .75s, color .3s;
}
.in-view .hero__scroll { opacity: 1; transform: translateY(0); }
.hero__scroll:hover { color: #fff; }
.hero__scroll-label {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; writing-mode: vertical-rl;
}
.hero__scroll-track { position: relative; width: 1px; height: 54px; background: rgba(255,255,255,.16); overflow: hidden; }
.hero__scroll-dot {
  position: absolute; top: 0; left: 0; width: 100%; height: 45%;
  background: linear-gradient(to bottom, transparent, var(--c-blue-soft));
  animation: heroScrollCue 1.9s var(--ease) infinite;
}
@keyframes heroScrollCue { 0% { transform: translateY(-120%); } 60%, 100% { transform: translateY(240%); } }

.hero__headline {
  order: 1;
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(2.75rem, 8.4vw, 7.6rem);
  font-weight: 400; letter-spacing: -0.005em; line-height: .96;
  text-transform: none;
  margin-left: 0;
}
.hero__headline .line { display: block; }
.hero__headline .line > span {
  display: block; opacity: 0; filter: blur(14px); letter-spacing: .07em;
  transition: opacity 1s ease, filter 1s ease, letter-spacing 1.3s cubic-bezier(.16,1,.3,1);
  /* mėlynas atspindys perbėga per tekstą — viena kryptimi, be šuolio */
  background-image: linear-gradient(105deg, #ffffff 0%, #ffffff 46%, #6ea8ea 50%, #ffffff 54%, #ffffff 100%);
  background-size: 300% 100%; background-position: 0% 0; background-repeat: no-repeat;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: heroSheen 4s linear infinite;
}
/* apačios eilutė vos vėluoja — natūraliau */
.hero__headline .line:nth-child(2) > span { animation-delay: .4s; }
.in-view .hero__headline .line > span { opacity: 1; filter: blur(0); letter-spacing: -0.005em; }
.in-view .hero__headline .line:nth-child(1) > span { transition-delay: .40s; }   /* pauzė po užsikrovimo */
.in-view .hero__headline .line:nth-child(2) > span { transition-delay: .58s; }   /* antra eilutė — stagger */
/* vienakryptis: perbėga kairėn, tada trumpa pauzė (kilpa nematoma — abu galai už teksto ribų) */
@keyframes heroSheen {
  0%   { background-position: 0% 0; }
  72%  { background-position: 100% 0; }
  100% { background-position: 100% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__headline .line > span { animation: none; background: none; -webkit-text-fill-color: #fff; color: #fff; }
}

/* =========================================================================
   7a2. VIDEO juosta (tarp hero ir skaičių) — full-bleed, autoplay loop
   ========================================================================= */
.reel { position: relative; z-index: 2; width: 100%; overflow: hidden; }
.reel__video {
  display: block; width: 100%; height: clamp(360px, 56.25vw, 90vh);
  object-fit: cover;
  background: var(--c-navy-deep) url('../assets/poster.jpg') center / cover no-repeat;
}

/* =========================================================================
   7b. SKAIČIAI
   ========================================================================= */
.stats { position: relative; z-index: 2; padding: var(--sp-1) 0; }
.stats__inner { }
.stats__head { max-width: 640px; margin-bottom: var(--sp-2); }
.eyebrow-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 500; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--c-faint);
  margin-bottom: 22px;
}
.eyebrow-tag .dot { width: 8px; height: 8px; background: var(--c-blue); }
.stats__lead {
  font-family: var(--font-sans); font-weight: 500;
  font-size: var(--t-lead-l); line-height: 1.5; color: #fff;
}

.stats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(24px, 4vw, 64px); row-gap: var(--sp-2);
}
.stat {
  position: relative;
  padding-top: var(--sp-3);
}
.stat::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--c-line); transform: scaleX(0); transform-origin: left;
  transition: transform 1s var(--ease);
}
.stat.in-view::before { transform: scaleX(1); }

/* Skaičius — mask slide-up reveal */
.stat__num {
  overflow: hidden; padding-bottom: .06em;
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(3.25rem, 5.7vw, 5.35rem); line-height: 1.0;
  letter-spacing: -0.01em; color: #fff;
  font-variant-numeric: tabular-nums; font-feature-settings: "tnum";
}
.stat__num span {
  display: inline-block; white-space: nowrap;
  transform: translateY(115%);
  transition: transform 1.05s var(--ease);
}
.stat.in-view .stat__num span { transform: translateY(0); transition-delay: .1s; }

.stat__label {
  margin-top: 16px;
  font-family: var(--font-sans); font-weight: 500; font-size: var(--t-small);
  color: var(--c-muted); letter-spacing: .01em;
  opacity: 0; transform: translateY(12px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.stat.in-view .stat__label { opacity: 1; transform: translateY(0); transition-delay: .25s; }

/* =========================================================================
   7c. POŽIŪRIS — tekstas kairėje + scroll-highlight (Willgrow stiliaus)
   ========================================================================= */
.approach { position: relative; z-index: 2; padding: var(--sp-1) 0; }
.approach__inner { position: relative; }
.approach__title, .approach__body { position: relative; z-index: 1; }

/* Bangelės dešinėje (jūrinė tema) */
.approach__waves {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: min(38%, 440px); height: 66%; z-index: 0; pointer-events: none;
  opacity: 0; transition: opacity 1.4s var(--ease) .3s;
}
.in-view .approach__waves { opacity: 1; }
.approach__waves svg { width: 100%; height: 100%; }
.approach__waves .wv { transform-box: view-box; animation: waveSway 6s ease-in-out infinite; }
.approach__waves .wv:nth-child(2) { animation-duration: 7.5s; animation-direction: reverse; }
.approach__waves .wv:nth-child(3) { animation-duration: 6.5s; }
.approach__waves .wv:nth-child(4) { animation-duration: 8s; animation-direction: reverse; }
.approach__waves .wv:nth-child(5) { animation-duration: 7s; }
.approach__waves .wv:nth-child(6) { animation-duration: 8.5s; animation-direction: reverse; }
@keyframes waveSway { 0%, 100% { transform: translateX(-12px); } 50% { transform: translateX(12px); } }

.approach__title {
  font-family: var(--font-display); color: #fff;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem); line-height: 1.02;
  letter-spacing: -0.005em;
  margin-bottom: var(--sp-2);
}
.approach__body {
  max-width: 720px;
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.approach__lead {
  font-family: var(--font-sans); font-weight: 500;
  font-size: var(--t-lead-l); line-height: 1.5;
}
.approach__sub {
  font-family: var(--font-sans); font-weight: 600;
  font-size: clamp(1.3rem, 1.8vw, 1.85rem); line-height: 1.2;
  color: var(--c-blue-soft); margin-bottom: 16px;
}
.approach__block p {
  font-family: var(--font-sans); font-weight: 500;
  font-size: var(--t-body); line-height: 1.6;
}

/* Generinė mask-reveal (antraštėms) */
.reveal-mask { display: block; overflow: hidden; padding-bottom: .1em; }
.reveal-mask > span { display: block; transform: translateY(115%); transition: transform 1.05s var(--ease); }
.in-view .reveal-mask > span { transform: translateY(0); }

/* Scroll-highlight tekstas */
.scroll-highlight { color: #fff; }
.scroll-highlight .hl-word { opacity: .1; transition: opacity .1s linear; }

/* Veidrodinė versija (tekstas dešinėje) + ripple žiedai kairėje */
.approach--mirror .approach__inner { display: flex; justify-content: flex-end; }
.approach--mirror .approach__wrap { max-width: 720px; }
.approach__art--left {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: min(34%, 400px); aspect-ratio: 1; z-index: 0; pointer-events: none;
  opacity: 0; transition: opacity 1.4s var(--ease) .3s;
}
.in-view .approach__art--left { opacity: 1; }
.approach__art--left svg { width: 100%; height: 100%; }
.ripple { transform-box: view-box; transform-origin: 200px 200px; opacity: 0; }
.ripple-1 { animation: rippleExpand 4.6s ease-out infinite; }
.ripple-2 { animation: rippleExpand 4.6s ease-out infinite 2.3s; }
@keyframes rippleExpand { 0% { transform: scale(1); opacity: .32; } 100% { transform: scale(4.4); opacity: 0; } }

/* =========================================================================
   7d. NUOTRAUKA — scroll-scale expansion (mažas rėmintas → full-screen)
   ========================================================================= */
.showcase { position: relative; z-index: 2; height: 118vh; }
.showcase__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.showcase__media {
  position: relative; width: 100%; height: 100%;
  transform: scale(.6); border-radius: 26px; overflow: hidden;
  will-change: transform;
}
.showcase__media img { width: 100%; height: 100%; object-fit: cover; }
.showcase__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(6,20,38,.6) 0%, rgba(6,20,38,0) 40%),
    linear-gradient(to right, rgba(6,20,38,.3) 0%, rgba(6,20,38,0) 38%);
}
.showcase__cap { position: absolute; left: 0; right: 0; bottom: clamp(34px, 6vh, 68px); z-index: 2; opacity: 0; }
.showcase__line { display: block; width: 15px; height: 15px; background: var(--c-blue); margin-bottom: var(--sp-3); }
.showcase__label {
  font-family: var(--font-sans); font-weight: 500;
  font-size: var(--t-lead); color: #fff; max-width: 24ch;
}

/* =========================================================================
   7e. VEIKLOS SRITYS — sticky kairė nav + dešinėje iš šono įslystantys paneliai
   ========================================================================= */
.services { position: relative; z-index: 2; padding: var(--sp-1) 0; }
.services__inner {
  display: grid;
  grid-template-columns: minmax(340px, 40%) 1fr;
  gap: clamp(48px, 7vw, 130px);
  align-items: start;
}

/* --- Kairė: prilipusi (sticky) --- */
.services__left { position: sticky; top: clamp(96px, 16vh, 170px); }
.services__title {
  font-family: var(--font-display); color: #fff;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem); line-height: 1.02;
  letter-spacing: -0.005em;
  margin-bottom: var(--sp-2);
}
.services__lead {
  display: none;                     /* rodom tik mobile (žr. responsyvumą) */
  max-width: 36ch;
  font-family: var(--font-sans); font-size: var(--t-lead-l);
  line-height: 1.5; color: #fff;
  margin-bottom: clamp(34px, 5vh, 64px);
}

.svc-nav { display: flex; flex-direction: column; }
.svc-nav__item {
  position: relative; display: grid; grid-template-columns: auto 1fr; align-items: baseline;
  gap: clamp(14px, 1.4vw, 24px); width: 100%; text-align: left; cursor: pointer;
  background: none; border: 0; border-top: 1px solid var(--c-line);
  padding: var(--sp-3) 0;
  transition: padding-left .4s cubic-bezier(.22,1,.36,1);
}
.svc-nav__item:last-child { border-bottom: 1px solid var(--c-line); }
.svc-nav__item.is-active { padding-left: 14px; }
.svc-nav__num {
  font-family: var(--font-display); font-size: 1rem; letter-spacing: .04em;
  color: var(--c-muted); transition: color .4s ease;
}
.svc-nav__item.is-active .svc-nav__num { color: var(--c-blue); }
.svc-nav__name {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: var(--t-h4); line-height: 1.12; letter-spacing: .01em;
  color: var(--c-muted); transition: color .4s ease;
}
.svc-nav__item.is-active .svc-nav__name { color: #fff; }
.svc-nav__item:hover .svc-nav__name { color: #fff; }
.svc-nav__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: transparent; }
.svc-nav__fill { position: absolute; inset: 0; width: 0; background: var(--c-blue); transition: width .5s cubic-bezier(.22,1,.36,1); }
.svc-nav__item.is-active .svc-nav__fill { width: 100%; }

/* --- Dešinė: sukrauti paneliai, kiekvienas įslysta iš dešinės --- */
.services__right { display: flex; flex-direction: column; overflow-x: clip; min-width: 0; }
.svc-panel {
  position: relative; min-height: 82vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(30px, 6vh, 70px) 0;
  opacity: 0; transform: translateX(90px);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
}
.svc-panel { border-top: 1px solid var(--c-line-soft); }
.svc-panel.in-view { opacity: 1; transform: translateX(0); }
.svc-panel__ghost { display: none; }
.svc-panel__body { position: relative; z-index: 1; max-width: 40ch; }
.svc-panel__title {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(2.25rem, 3vw, 2.5rem); line-height: 1.08; letter-spacing: .01em; color: #fff;
  overflow-wrap: anywhere;
}
.svc-panel__desc {
  margin-top: var(--sp-3);
  font-family: var(--font-sans); font-size: var(--t-body);
  line-height: 1.62; color: var(--c-muted);
}

/* =========================================================================
   7f. MŪSŲ INVESTICIJOS — kortelės karuselėje (drag + rodyklės + progresas)
   ========================================================================= */
.invest { position: relative; z-index: 2; padding: var(--sp-1) 0; overflow: hidden; }
.invest__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: clamp(24px, 4vw, 60px); margin-bottom: var(--sp-2);
}
.invest__title {
  font-family: var(--font-display); color: #fff;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem); line-height: 1.02;
  letter-spacing: -0.005em;
}
.invest__nav { display: flex; gap: 14px; flex-shrink: 0; }
.invest__arrow {
  width: clamp(48px, 4vw, 60px); height: clamp(48px, 4vw, 60px); border-radius: 50%;
  border: 1px solid var(--c-line); background: transparent; color: #fff;
  display: grid; place-items: center; cursor: pointer;
  transition: border-color .3s ease, background .3s ease, color .3s ease, opacity .3s ease;
}
.invest__arrow svg { width: 40%; height: auto; }
.invest__arrow:hover { border-color: var(--c-blue); background: var(--c-blue); }
.invest__arrow:disabled { opacity: .28; cursor: default; }
.invest__arrow:disabled:hover { border-color: var(--c-line); background: transparent; }

/* Viewport = fiksuota anga; juostą stumia JS transform'as (ne native scroll) */
.invest__viewport { overflow: hidden; touch-action: pan-y; }
.invest__track {
  display: flex; gap: clamp(20px, 2.2vw, 40px);
  width: max-content;
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  padding-right: var(--gutter);
  cursor: grab; will-change: transform; user-select: none; -webkit-user-select: none;
  transform-origin: 50% 50%;
}
.invest__track.is-drag { cursor: grabbing; }

.inv-card {
  flex: 0 0 auto; width: clamp(320px, 38vw, 540px);
  opacity: 0; transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.invest.in-view .inv-card { opacity: 1; transform: translateY(0); }
.invest.in-view .inv-card:nth-child(2) { transition-delay: .08s; }
.invest.in-view .inv-card:nth-child(3) { transition-delay: .16s; }
.invest.in-view .inv-card:nth-child(4) { transition-delay: .24s; }
.invest.in-view .inv-card:nth-child(5) { transition-delay: .32s; }
.invest.in-view .inv-card:nth-child(6) { transition-delay: .40s; }

/* Hover — kaimynai pritemsta, aktyvi kortelė lieka ryški (editorial fokusas) */
.invest__track:hover .inv-card { opacity: .48; transition: opacity .5s ease; }
.invest__track:hover .inv-card:hover { opacity: 1; }
.invest__track.is-drag .inv-card { opacity: 1 !important; }

.inv-card__media {
  position: relative; height: clamp(360px, 60vh, 600px); overflow: hidden; border-radius: 3px;
  background: #061426;
}
/* Vidinis vaizdo sluoksnis — platesnis nei rėmas; JS stumia parallax + fluid tempimą */
.inv-card__img {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 100% at 80% 0%, rgba(24,114,207,.20), transparent 60%),
    linear-gradient(158deg, #0e2c4d 0%, #071a30 60%, #061426 100%);
  background-size: cover; background-position: center;
  transform: scale(1.16); transform-origin: center; will-change: transform;
  transition: filter .6s ease;
}
.inv-card__img.is-photo { filter: brightness(.82) saturate(1.02); }
.inv-card:hover .inv-card__img.is-photo { filter: brightness(1) saturate(1.05); }
/* Nuolatinis tamsus perėjimas apačioje — kad tekstas ant nuotraukos būtų įskaitomas */
.inv-card__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(4,14,28,.86) 0%, rgba(4,14,28,.35) 34%, transparent 62%);
}

/* Indeksas — viršuje kairėje, editorial žymuo */
.inv-card__idx {
  position: absolute; top: clamp(16px, 2.4vw, 26px); left: clamp(16px, 2.4vw, 26px); z-index: 2;
  font-family: var(--font-display); font-size: clamp(.95rem, 1.1vw, 1.15rem);
  letter-spacing: .08em; color: rgba(255,255,255,.72);
}
.inv-card__idx::before { content: ""; display: inline-block; width: 22px; height: 1px; background: var(--c-blue); margin-right: 10px; vertical-align: middle; }

/* Tekstas ANT nuotraukos — apačioje */
.inv-card__overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: var(--sp-3);
}
.inv-card__meta {
  display: flex; align-items: center;
  font-family: var(--font-sans); font-size: .76rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--c-blue-soft); margin-bottom: clamp(10px, 1.4vw, 16px);
}
.inv-card__loc { color: rgba(255,255,255,.62); }
.inv-card__loc::before { content: "·"; margin: 0 .6em; color: rgba(255,255,255,.35); }
.inv-card__title {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: var(--t-h3); line-height: 1.08; letter-spacing: .01em; color: #fff;
  transform: translateY(6px); transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.inv-card:hover .inv-card__title { transform: translateY(0); }

.invest__foot {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 40px);
  margin-top: var(--sp-2);
}
.invest__progress { flex: 1; height: 2px; background: var(--c-line-soft); position: relative; overflow: hidden; }
.invest__progress-fill {
  position: absolute; top: 0; left: 0; height: 100%; width: 30%;
  background: var(--c-blue);
}
.invest__count {
  flex-shrink: 0; display: flex; align-items: baseline; gap: .55em;
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .06em; color: var(--c-faint);
}
.invest__count-cur { color: #fff; }
.invest__count-sep { color: var(--c-line); }

/* =========================================================================
   7g. NAUJIENOS — editorial sąrašas su plonomis linijomis + hover akcentu
   ========================================================================= */
.news { position: relative; z-index: 2; padding: var(--sp-1) 0; }
.news__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: clamp(20px, 4vw, 60px); margin-bottom: var(--sp-2);
}
.news__title {
  font-family: var(--font-display); color: #fff;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem); line-height: 1.02;
  letter-spacing: -0.005em;
}
.news__all {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: .82rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--c-blue-soft); transition: color .3s ease;
}
.news__all:hover { color: #fff; }
.news__all-arrow { transition: transform .3s ease; }
.news__all:hover .news__all-arrow { transform: translateX(5px); }

.news__layout {
  display: grid; grid-template-columns: 1.35fr 1fr;
  gap: clamp(36px, 5vw, 96px); align-items: start;
}

/* Bendra meta eilutė (data · kategorija) */
.news-feature__meta, .news-row__meta {
  display: flex; align-items: center;
  font-family: var(--font-sans); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
}
.news-feature__date, .news-row__date { color: var(--c-faint); font-variant-numeric: tabular-nums; letter-spacing: .04em; }
.news-feature__cat, .news-row__cat { color: var(--c-blue-soft); }
.news-feature__cat::before, .news-row__cat::before { content: "·"; margin: 0 .7em; color: var(--c-line); }

/* --- Pagrindinis (featured) įrašas --- */
.news-feature {
  display: block;
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.news.in-view .news-feature { opacity: 1; transform: translateY(0); }
.news-feature__media {
  position: relative; aspect-ratio: 3 / 2; overflow: hidden; border-radius: 3px;
  background: #061426; border: 1px solid var(--c-line-soft); margin-bottom: var(--sp-3);
}
.news-feature__img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.01); filter: brightness(.9);
  transition: transform .9s cubic-bezier(.22,1,.36,1), filter .6s ease;
}
.news-feature:hover .news-feature__img { transform: scale(1.05); filter: brightness(1); }
.news-feature__title {
  margin-top: clamp(12px, 1.4vw, 18px);
  font-family: var(--font-display); text-transform: uppercase;
  font-size: var(--t-h3); line-height: 1.08; letter-spacing: .01em; color: #fff;
  transition: color .3s ease;
}
.news-feature:hover .news-feature__title { color: var(--c-blue-soft); }
.news-feature__excerpt {
  margin-top: clamp(14px, 1.6vw, 20px); max-width: 46ch;
  font-family: var(--font-sans); font-size: var(--t-body); line-height: 1.6; color: var(--c-muted);
}
.news-feature__more {
  display: inline-flex; align-items: center; gap: 9px; margin-top: var(--sp-3);
  font-family: var(--font-sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: #fff;
}
.news-feature__more span { color: var(--c-blue); transition: transform .3s ease; }
.news-feature:hover .news-feature__more span { transform: translateX(5px); }

/* --- Šoninis sąrašas --- */
.news-side { display: flex; flex-direction: column; }
.news-row {
  display: grid; grid-template-columns: clamp(96px, 12vw, 148px) 1fr; align-items: center;
  gap: clamp(16px, 1.6vw, 26px);
  padding: var(--sp-3) 0; border-top: 1px solid var(--c-line);
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.news-row:last-child { border-bottom: 1px solid var(--c-line); }
.news.in-view .news-row { opacity: 1; transform: translateY(0); }
.news.in-view .news-row:nth-child(1) { transition-delay: .1s; }
.news.in-view .news-row:nth-child(2) { transition-delay: .18s; }
.news.in-view .news-row:nth-child(3) { transition-delay: .26s; }
.news-row__thumb {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 2px;
  background: #061426; border: 1px solid var(--c-line-soft);
}
.news-row__img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.01); filter: brightness(.88);
  transition: transform .8s cubic-bezier(.22,1,.36,1), filter .6s ease;
}
.news-row:hover .news-row__img { transform: scale(1.08); filter: brightness(1); }
.news-row__meta { font-size: .68rem; margin-bottom: 8px; }
.news-row__title {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: var(--t-h4); line-height: 1.12; letter-spacing: .01em; color: #fff;
  transition: color .3s ease;
}
.news-row:hover .news-row__title { color: var(--c-blue-soft); }

/* =========================================================================
   7h. PRIVALUMAI — švari stulpelių juosta (didelė antraštė + 4 stulpeliai)
   ========================================================================= */
.perks { position: relative; z-index: 2; }
.perks__pin { padding: var(--sp-1) 0; }
@media (min-width: 901px) {
  .perks__pin { position: sticky; top: 0; min-height: 100vh; display: flex; align-items: center; }
}
.perks__inner { width: 100%; }
.perks__head { max-width: 60ch; margin-bottom: var(--sp-2); }
.perks__title {
  font-family: var(--font-display); color: #fff;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem); line-height: 1.02;
  letter-spacing: -0.005em; margin-bottom: var(--sp-2);
}
.perks__lead {
  max-width: 48ch; font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.15vw, 1.2rem); line-height: 1.6; color: var(--c-muted);
}

.perks__cols {
  display: grid; grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(48px, 7vw, 140px); row-gap: var(--sp-2);
}
.perk {
  border-top: 1px solid var(--c-line);
  padding-top: var(--sp-3);
  opacity: 0; transform: translateY(46px);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
}
.perk.is-in { opacity: 1; transform: none; }
.perk__title {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: var(--t-h3); line-height: 1.08; letter-spacing: .01em; color: #fff;
  margin-bottom: var(--sp-3);
}
.perk__text {
  font-family: var(--font-sans); font-size: var(--t-body);
  line-height: 1.62; max-width: 42ch; color: var(--c-muted);
}

/* =========================================================================
   7i. KOMANDA — portretų tinklelis (nuotrauka + vardas + pareigos + LinkedIn)
   ========================================================================= */
/* --tk-l: 0 = tamsu (kaip visur), 1 = šviesu. JS interpoliuoja pagal scroll (kaip tesonet). */
.team {
  position: relative; z-index: 2; --tk-l: 0;
  padding: clamp(130px, 22vh, 280px) 0;
  background-color: color-mix(in srgb, #ffffff calc(var(--tk-l) * 100%), #071a30);
}
.team__head { margin-bottom: var(--sp-2); }
.team__title {
  font-family: var(--font-display);
  color: color-mix(in srgb, #0D2B4C calc(var(--tk-l) * 100%), #ffffff);
  font-size: clamp(2.5rem, 4.2vw, 4.4rem); line-height: 1.02;
  letter-spacing: -0.005em;
}

/* Kortelių tinklelis — portretas viršuj, po juo vardas / pareigos / LinkedIn */
.team__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(20px, 2vw, 40px); }
.tmember {
  opacity: 0; transform: translateY(42px);
  transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1);
}
.tmember.in-view { opacity: 1; transform: none; }
.tmember:nth-child(2).in-view { transition-delay: .08s; }
.tmember:nth-child(3).in-view { transition-delay: .16s; }
.tmember:nth-child(4).in-view { transition-delay: .24s; }
.tmember:nth-child(5).in-view { transition-delay: .32s; }

.tmember__photo {
  position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 3 / 4;
  background: color-mix(in srgb, #0D2B4C 8%, #ffffff);
}
.tmember__img {
  position: absolute; inset: 0; background-size: cover; background-position: center top;
  transform: scale(1.02); transition: transform 1.3s cubic-bezier(.22,1,.36,1);
}
.tmember:hover .tmember__img { transform: scale(1.06); }

.tmember__meta { padding-top: var(--sp-3); }
.tmember__name {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: var(--t-h3); line-height: 1.12; letter-spacing: .01em;
  color: color-mix(in srgb, #0D2B4C calc(var(--tk-l) * 100%), #ffffff);
}
.tmember__role {
  margin-top: var(--sp-micro);
  font-family: var(--font-sans); font-size: var(--t-small); letter-spacing: .02em;
  color: color-mix(in srgb, rgba(13,43,76,.6) calc(var(--tk-l) * 100%), var(--c-muted));
}
.tmember__li {
  display: inline-flex; margin-top: clamp(12px, 1vw, 18px); line-height: 0;
  color: color-mix(in srgb, rgba(13,43,76,.42) calc(var(--tk-l) * 100%), rgba(255,255,255,.45));
  transition: color .3s ease;
}
.tmember__li svg { width: clamp(20px, 1.4vw, 24px); height: auto; display: block; }
.tmember__li:hover { color: var(--c-blue); }

/* =========================================================================
   7j. KODĖL MES? — horizontali kortelių juosta, valdoma scroll'u (pin)
   ========================================================================= */
.why { position: relative; z-index: 2; }        /* aukštis nustatomas JS (pin) */
.why__pin {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(clamp(90px, 13vh, 150px) + 10px) 0 clamp(40px, 6vh, 70px);
}
.why__head { flex-shrink: 0; margin-bottom: clamp(28px, 4vh, 54px); }
.why__title {
  font-family: var(--font-display); color: #fff;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem); line-height: 1.02;
  letter-spacing: -0.005em;
}

/* Viewport pilno pločio; kiekviena kortelė = visas ekranas, matoma tik viena */
.why__viewport { flex: 1; min-height: 0; overflow: hidden; }
.why__track { display: flex; width: max-content; height: 100%; will-change: transform; }
.why-card {
  flex: 0 0 100vw; height: 100%;
  display: flex; align-items: center;         /* vertikaliai centre — vienodai iš viršaus ir apačios */
}
.why-card__inner { width: 100%; }
.why-card__title {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 3.1rem); line-height: 1.14; letter-spacing: .005em; color: #fff;
}
.why-card__title em { font-style: normal; color: var(--c-blue); }

.why__progress { flex-shrink: 0; margin-top: clamp(24px, 3.5vh, 44px); height: 2px; background: var(--c-line-soft); position: relative; overflow: hidden; }
.why__progress-fill { position: absolute; inset: 0; transform-origin: left; transform: scaleX(0); background: var(--c-blue); }

/* =========================================================================
   7k. FOOTER — nuotrauka fone, atsidengia „iš po" svetainės apačios (sticky)
   ========================================================================= */
main {
  position: relative; z-index: 1;
  background:
    radial-gradient(120% 90% at 80% 8%, #103055 0%, transparent 50%),
    radial-gradient(110% 120% at 6% 100%, #0a2340 0%, transparent 55%),
    var(--c-bg);
  background-attachment: fixed;
}
/* Nuotrauka — atskira, atsidengia „iš po" apačios */
.reveal-foot { position: sticky; bottom: 0; z-index: 0; height: clamp(60vh, 56.25vw, 100vh); overflow: hidden; }
.reveal-foot__img { position: absolute; inset: 0; background-size: cover; background-position: center; background-image: url('../assets/footer2.png'); }
.showcase__media picture { display: contents; }
.reveal-foot__img::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(6,20,38,.45), transparent 42%);
}

/* Tamsus footeris — po nuotrauka */
.site-footer {
  position: relative; z-index: 2; color: #fff; overflow: hidden;
  background: radial-gradient(72% 80% at 86% 8%, rgba(24,114,207,.10), transparent 60%), var(--c-navy-deep);
}
.foot__inner {
  width: 100%; display: flex; flex-direction: column; gap: clamp(60px, 9vh, 104px);
  padding-block: clamp(64px, 10vh, 120px) clamp(36px, 5vh, 56px);
}

/* Brand — logo + tagline, apatinė mėlyna linija */
.foot__brand {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: clamp(20px, 4vw, 56px);
  padding-bottom: clamp(36px, 5vh, 56px); border-bottom: 1px solid rgba(79,147,218,.42);
}
.foot__logo { width: min(64vw, 640px); height: auto; display: block; }
.foot__tagline {
  display: inline-flex; align-items: center; gap: 12px; padding-bottom: 6px;
  font-family: var(--font-sans); font-size: clamp(.72rem, .82vw, .82rem);
  letter-spacing: .18em; text-transform: uppercase; color: var(--c-blue-soft);
}
.foot__mark { width: 10px; height: 10px; background: var(--c-blue); display: block; flex: none; }

/* Body — rekvizitų plakatas + šoninė (soc + apie) */
.foot__body {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, .5fr); gap: clamp(34px, 6vw, 96px);
  align-items: start;
}
.foot__rekv-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(4, auto); grid-auto-flow: column; column-gap: clamp(24px, 4vw, 56px); row-gap: clamp(26px, 3.6vh, 38px); }
.foot__rekv-item { display: grid; gap: 8px; margin: 0; }
.foot__rekv-item span { color: var(--c-blue-soft); font-size: clamp(.76rem, .88vw, .92rem); letter-spacing: .03em; }
.foot__rekv-item strong { color: #fff; font-weight: 600; font-size: clamp(1rem, 1.15vw, 1.2rem); line-height: 1.2; letter-spacing: -.005em; overflow-wrap: anywhere; }

.foot__side { display: grid; gap: clamp(26px, 4vh, 42px); align-content: start; }
.foot__note { font-family: var(--font-sans); font-size: var(--t-small); line-height: 1.6; color: var(--c-muted); max-width: 34ch; }

.foot__social { display: flex; gap: 12px; flex-wrap: wrap; }
.foot__social a {
  width: 44px; height: 44px; border: 1px solid var(--c-line); border-radius: 50%;
  display: grid; place-items: center; color: var(--c-muted);
  transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s ease;
}
.foot__social a:hover { color: #fff; border-color: var(--c-blue); background: var(--c-blue); transform: translateY(-3px); }
.foot__social svg { width: 18px; height: 18px; display: block; }

.foot__col-title { font-family: var(--font-sans); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--c-blue-soft); margin-bottom: var(--sp-3); }

/* Meniu — kvadrato + vertikalios linijos akcentai */
/* Meniu blokas — kairė: LinkedIn + copyright; dešinė: meniu sąrašas + teisinės; vertikali skiriamoji linija */
.foot__nav-block {
  display: grid; grid-template-columns: minmax(120px, .3fr) 1fr; gap: clamp(24px, 4vw, 56px);
  border-top: 1px solid rgba(79,147,218,.42); padding-top: clamp(40px, 5.5vh, 64px);
}
.foot__nav-side { display: flex; flex-direction: column; justify-content: space-between; gap: clamp(56px, 12vh, 130px); }
.foot__li {
  width: 46px; height: 46px; border: 1px solid var(--c-line); border-radius: 50%;
  display: grid; place-items: center; color: var(--c-muted);
  transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s ease;
}
.foot__li:hover { color: #fff; border-color: var(--c-blue); background: var(--c-blue); transform: translateY(-3px); }
.foot__li svg { width: 18px; height: 18px; display: block; }
.foot__copy { font-family: var(--font-sans); font-size: clamp(.82rem, .9vw, .92rem); line-height: 1.5; color: var(--c-faint); }

.foot__nav-main {
  display: flex; flex-direction: column; justify-content: flex-start; gap: calc(var(--sp-1) + 82px);
  border-left: 1px solid var(--c-line); padding-left: clamp(24px, 4vw, 56px);
}
.foot__nav-list { display: flex; flex-direction: column; gap: clamp(12px, calc(.5vh + 10px), 18px); }
.foot__nav-list a {
  font-family: var(--font-display); font-size: clamp(1.35rem, 2.2vw, 2.1rem); line-height: 1.2;
  letter-spacing: -.005em; color: var(--c-muted); width: max-content;
  transition: color .25s ease;
}
.foot__nav-list a:hover { color: #fff; }
.foot__legal { display: flex; flex-direction: column; gap: 6px; }
.foot__legal a { font-family: var(--font-sans); font-size: clamp(.85rem, .95vw, .98rem); color: var(--c-faint); transition: color .3s ease; }
.foot__legal a:hover { color: #fff; }

/* -------------------------------------------------------------------------
   8. Responsyvumas
   ------------------------------------------------------------------------- */
@media (max-width: 900px) {
  :root { --sp-1: clamp(64px, 10vh, 100px); --sp-2: clamp(28px, 5vh, 48px); }
  .menu-btn__label { display: none; }
  .brand img { width: 92px; }
  .pl-logo { width: 92px; }

  /* Video: planšetėse landscape 16:9 (be stipraus perkarpymo), su cap */
  .reel__video { height: clamp(200px, 58vw, 300px); }

  .hero { padding: clamp(118px, 16vh, 160px) 0 clamp(48px, 9vh, 90px); align-items: center; }
  .hero__split { grid-template-columns: 1fr; gap: clamp(24px, 3.5vh, 36px); justify-items: center; text-align: center; }
  .hero__headline {
    order: 1; margin-left: 0; text-align: center;
    font-family: var(--font-sans); font-weight: 700;
    font-size: clamp(2.7rem, 14.5vw, 3.75rem); line-height: 1.02;
  }
  .hero__aside { order: 2; max-width: none; margin-inline: auto; text-align: center; white-space: nowrap; font-size: clamp(0.82rem, 3.7vw, 1.1rem); }

  /* Švyturys — lieka, bet blankesnis */
  /* Mobile: švyturio/lempos fone visai nerodom */
  .hero__art { display: none; }

  /* Mobile: viršaus tarpas didesnis, kad vizualiai sutaptų su apačia (apačia = stats + approach viršus) */
  .stats { padding-top: clamp(200px, 29vh, 260px); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); column-gap: clamp(16px, 3.5vw, 28px); }

  .approach__body { max-width: 100%; }
  .approach__waves, .approach__art--left { display: none; }
  .approach--mirror .approach__wrap { max-width: 100%; }

  .services__inner { grid-template-columns: 1fr; gap: 80px; }
  .services__left { position: static; top: auto; }
  .services__lead { display: block; max-width: 100%; margin-bottom: 0; }
  .svc-nav { display: none; }               /* mobile: nav paslėptas, paneliai kalba patys */
  /* Visi paneliai vienodi (be first-child išimties) — kad ghost skaičius sėdėtų vienodai */
  .svc-panel { min-height: 0; padding: 25px 0; justify-content: flex-start; }
  .svc-panel__title { font-size: clamp(2rem, 8.5vw, 2.55rem); }   /* mobile ~32px */
  .svc-panel__ghost { font-size: clamp(2.6rem, 13vw, 4rem); top: 0; line-height: .8; }

  .invest__head { margin-bottom: clamp(28px, 5vh, 44px); }
  .invest__nav { display: none; }               /* mobile: valdymas per swipe */
  .inv-card { width: clamp(230px, 76vw, 320px); }

  .news__head { flex-direction: column; align-items: flex-start; gap: clamp(14px, 3vh, 18px); margin-bottom: clamp(24px, 4vh, 40px); }
  .news__layout { grid-template-columns: 1fr; gap: clamp(30px, 5vh, 44px); }
  .news-row { grid-template-columns: clamp(84px, 26vw, 120px) 1fr; }

  .perks__head { margin-bottom: clamp(30px, 5vh, 48px); }
  .perks__cols { grid-template-columns: 1fr 1fr; gap: clamp(22px, 4vw, 36px) clamp(20px, 4vw, 40px); }

  .team { padding: clamp(90px, 15vh, 140px) 0; }
  .team__head { margin-bottom: clamp(30px, 6vh, 52px); }
  /* Mobile: vertikalus stack'as — kortelė po kortelės (didelis portretas + info po juo) */
  .team__grid { grid-template-columns: 1fr; gap: clamp(44px, 11vw, 66px); }
  .tmember__photo { aspect-ratio: 4 / 5; }
  .tmember__meta { padding-top: clamp(18px, 4.5vw, 26px); }
  .tmember__role { font-size: clamp(.95rem, 3.8vw, 1.05rem); }
  .tmember__li { margin-top: clamp(14px, 3.5vw, 20px); }
  .tmember__li svg { width: 26px; }

  /* Kodėl mes? — mobile: vertical scroll valdo horizontalų tekstų judėjimą */
  .why__pin {
    position: sticky; top: 0; height: 100svh; overflow: hidden;
    padding: clamp(70px, 11vh, 110px) 0 clamp(28px, 5vh, 44px);
  }
  .why__viewport { flex: 1; min-height: 0; width: 100%; max-width: 100vw; overflow: hidden; }
  .why__track { width: max-content; }
  .why-card { flex-basis: 100vw; width: 100vw; max-width: 100vw; height: 100%; }
  .why__head { margin-bottom: clamp(24px, 4vh, 40px); }
  .why-card__title { font-size: clamp(1.6rem, 6.4vw, 2.6rem); }

  .foot__brand { flex-direction: column; align-items: flex-start; gap: 18px; }
  .foot__logo { width: min(92vw, 560px); }
  .foot__body { grid-template-columns: 1fr; gap: clamp(52px, 13vw, 72px); }
  .foot__nav-block { grid-template-columns: minmax(92px, .3fr) 1fr; gap: clamp(16px, 4vw, 26px); }
  .foot__nav-side { justify-content: space-between; gap: clamp(22px, 4vh, 32px); }   /* Sekite viršuj (prie meniu), copyright apačioj */
  .foot__nav-main { padding-left: clamp(16px, 4vw, 26px); }
  .foot__nav-list a { font-size: clamp(1.25rem, 5.6vw, 1.75rem); }
  .foot__social { flex-direction: column; gap: 12px; }   /* ikonos vertikaliai */

  /* Mobile: pagrindinės sekcijų antraštės +12px (didesnė apatinė riba) */
  .approach__title, .services__title, .invest__title, .news__title,
  .perks__title, .team__title, .why__title {
    font-size: clamp(3rem, 8.5vw, 4.4rem);
  }
}
@media (max-width: 600px) {
  /* Telefonuose vertikalus mobile_video rodomas pilnu 9:16 kadru — be perkarpymo */
  .reel__video { height: auto; aspect-ratio: 9 / 16; background-image: url('../assets/poster_mobile.jpg'); }
  /* Footer nuotrauka — portretinė mobile versija, tokio pat aukščio kaip video (9:16) */
  .reveal-foot { height: auto; aspect-ratio: 9 / 16; }
  .reveal-foot__img { background-image: url('../assets/footer2.2.png'); }
}

@media (max-width: 520px) {
  :root { --gutter: 22px; }
  .stats__grid { row-gap: 32px; }
  .stat__num { font-size: clamp(2.2rem, 9.5vw, 2.75rem); }
  .perks__cols { grid-template-columns: 1fr; gap: 0; }
  .perk { padding: 25px 0; }   /* mobile: 25px iš viršaus ir apačios */
}

/* -------------------------------------------------------------------------
   9. Reduced motion
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .pl-piece, .hero__aside, .hero__headline .line > span { opacity: 1 !important; transform: none !important; }
  .hero__art svg { animation: none !important; opacity: 1 !important; transform: translate(0, -50%) !important; }
  .stat::before { transform: scaleX(1) !important; }
  .stat__num span, .stat__label { opacity: 1 !important; transform: none !important; }
  .reveal-mask > span { opacity: 1 !important; transform: none !important; }
  .scroll-highlight .hl-word { opacity: 1 !important; }
  .approach__waves .wv, .ripple { animation: none !important; }
  .showcase__media { transform: scale(1) !important; border-radius: 0 !important; }
  .showcase__cap { opacity: 1 !important; }
  .svc-panel { opacity: 1 !important; transform: none !important; }
  .inv-card { opacity: 1 !important; transform: none !important; }
  .news-feature, .news-row { opacity: 1 !important; transform: none !important; }
  .news-feature__img, .news-row__img { transform: scale(1.01) !important; }
  .perk { opacity: 1 !important; transform: none !important; }
  .tmember { opacity: 1 !important; transform: none !important; }
  .tmember__img { transform: scale(1.02) !important; }
  .why__pin { position: static !important; height: auto !important; }
  .why__viewport { overflow-x: auto; scroll-snap-type: x mandatory; }
  .why__track { transform: none !important; }
}

/* =========================================================================
   12. KONTAKTŲ PUSLAPIS (kontaktai.html)
   ========================================================================= */
.cpage { position: relative; z-index: 2; padding: clamp(140px, 19vh, 210px) 0 clamp(80px, 12vh, 140px); }

.cpage__head { max-width: 60ch; margin-bottom: clamp(48px, 7vh, 96px); opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.cpage.in-view .cpage__head { opacity: 1; transform: none; }
.cpage__eyebrow { display: inline-block; font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--c-blue-soft); margin-bottom: clamp(18px, 2.4vh, 30px); }
.cpage__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 1.02; letter-spacing: -.01em; color: #fff; margin: 0; }
.cpage__title .accent { color: var(--c-blue-soft); }
.cpage__intro { margin: clamp(20px, 3vh, 32px) 0 0; max-width: 46ch; font-size: clamp(1.02rem, 1.4vw, 1.2rem); line-height: 1.65; color: var(--c-muted); }

.cpage__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(44px, 6vw, 110px); align-items: start; opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease) .12s, transform .8s var(--ease) .12s; }
.cpage.in-view .cpage__grid { opacity: 1; transform: none; }

/* --- forma --- */
.cform__fields { display: flex; flex-direction: column; gap: clamp(24px, 3.2vh, 38px); }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 44px); }
.field { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.field label { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--c-blue-soft); }
.field label span { color: var(--c-faint); font-weight: 500; letter-spacing: .1em; }
.field input, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--c-line);
  color: #fff; font-family: var(--font-sans); font-weight: 500; font-size: clamp(1rem, 1.2vw, 1.1rem);
  padding: 12px 2px; transition: border-color .35s var(--ease);
}
.field textarea { resize: vertical; min-height: 128px; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.28); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--c-blue-soft); }

.cform__submit {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 12px; margin-top: clamp(6px, 1.4vh, 16px);
  padding: clamp(15px, 1.7vh, 19px) clamp(30px, 3vw, 42px); border: none; border-radius: 999px; cursor: pointer;
  background: var(--c-blue); color: #fff; font-family: var(--font-sans); font-weight: 600; font-size: clamp(.95rem, 1.1vw, 1.05rem); letter-spacing: .01em;
  transition: background .35s var(--ease), transform .35s var(--ease), box-shadow .4s var(--ease);
}
.cform__submit svg { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.cform__submit:hover { background: #1a7fe0; transform: translateY(-2px); box-shadow: 0 18px 46px -14px rgba(24,114,207,.7); }
.cform__submit:hover svg { transform: translateX(4px); }

.cform__done { display: none; margin: 0; padding: clamp(28px, 4vh, 44px) clamp(28px, 4vw, 44px); border: 1px solid var(--c-line); border-radius: 18px; background: var(--c-line-soft); font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.3; color: #fff; }
.cform.is-sent .cform__fields { display: none; }
.cform.is-sent .cform__done { display: block; }

/* --- tiesioginiai kontaktai + rekvizitai --- */
.cinfo { display: flex; flex-direction: column; gap: clamp(26px, 3.4vh, 40px); }
.cinfo__block { display: flex; flex-direction: column; gap: 10px; }
.cinfo__label { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--c-blue-soft); margin: 0; }
.cinfo__value { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 2.4vw, 2.05rem); line-height: 1.15; letter-spacing: -.01em; color: #fff; width: max-content; max-width: 100%; transition: color .3s ease; }
a.cinfo__value:hover { color: var(--c-blue-soft); }
.cinfo__value--sm { font-size: clamp(1.15rem, 1.7vw, 1.45rem); line-height: 1.4; }

.cinfo__rekv { margin-top: clamp(8px, 1.5vh, 18px); padding-top: clamp(24px, 3.4vh, 38px); border-top: 1px solid var(--c-line); }
.cinfo__rekv .cinfo__label { margin-bottom: clamp(16px, 2.2vh, 24px); }
.rekv-list { display: flex; flex-direction: column; gap: 12px; margin: 0; }
.rekv-list__row { display: grid; grid-template-columns: 40% 1fr; gap: 16px; align-items: baseline; }
.rekv-list__row dt { margin: 0; font-size: var(--t-small); color: var(--c-faint); }
.rekv-list__row dd { margin: 0; font-size: var(--t-small); color: #fff; }

@media (max-width: 860px) {
  .cpage__grid { grid-template-columns: 1fr; gap: clamp(48px, 8vh, 72px); }
  .cform__row { grid-template-columns: 1fr; }
  .rekv-list__row { grid-template-columns: 44% 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .cpage__head, .cpage__grid { opacity: 1 !important; transform: none !important; }
}

/* Kontaktų forma — honeypot, GDPR sutikimas, klaida */
.cform__hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
.cform__consent { display: flex; align-items: flex-start; gap: 11px; margin-top: clamp(4px, 1vh, 12px); font-family: var(--font-sans); font-size: .92rem; line-height: 1.5; color: var(--c-muted); cursor: pointer; }
.cform__consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--c-blue); flex: none; cursor: pointer; }
.cform__consent a { color: var(--c-blue-soft); text-decoration: underline; text-underline-offset: 2px; }
.cform__err { margin: 0 0 clamp(14px, 2vh, 22px); padding: 13px 17px; border-radius: 12px; background: rgba(214,64,64,.12); border: 1px solid rgba(214,64,64,.34); color: #ffb1b1; font-family: var(--font-sans); font-size: .92rem; }

/* Kopijavimo apsauga (kliento pageidavimu) — formos laukai lieka redaguojami */
body { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; }
input, textarea, select, [contenteditable="true"] { -webkit-user-select: text; -moz-user-select: text; user-select: text; }
img, .inv-card__img, .tmember__img, .news-feature__img, .news-row__img, .reveal-foot__img, .showcase__media img, .reel__video { -webkit-user-drag: none; user-drag: none; -webkit-touch-callout: none; }
