/* ==========================================================================
   veiki – pagrindinio puslapio sekcijos

   2 ETAPAS: statinė būklė. Viskas atrodo teisingai ir be JavaScript.
   3 etape ant viršaus užsidės scroll animacijos – jos NIEKO nepakeis
   statiniame išdėstyme, tik pridės judesį.
   ========================================================================== */

/* ==========================================================================
   1. HERO / PORTALAS  (#virsus)
   ========================================================================== */

.v-hero {
  position: relative;
  background: var(--bg);
  color: var(--fg);
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5vw 60px;
  box-sizing: border-box;
}

/* Portalo intro įsijungia TIK kai JS modulis paruoštas (3 etapas).
   Iki tol hero yra paprasta pilno aukščio sekcija – ir tai gerai:
   H1 nupiešiamas iš karto, todėl jis lieka LCP elementu. */
.portal-ready .v-hero {
  height: 260vh;
  min-height: 0;
  padding: 0;
  display: block;
}

/* Telefone intro trumpesnis: vienas piršto brūkštelėjimas nuslenka mažiau
   nei pelės ratukas, tad 260vh čia jaustųsi kaip užstrigęs puslapis. */
.portal-lite .v-hero { height: 180vh; }

/* Uždanga tarp hero ir portalo – tik telefone (žr. hero.php komentarą).
   z-index 10: virš hero turinio, bet po durimis (20), tad pro portalo
   skylę matosi ji, o ne tekstas. */
.v-doors__veil { display: none; }
.portal-lite .v-doors__veil {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  background: var(--c-ink);
  pointer-events: none;
  will-change: opacity;
}

/* Švytėjimas nupieštas 520 px – platesnis už telefono ekraną. */
.portal-lite .v-doors__glow {
  width: min(520px, 88vw);
  height: min(520px, 88vw);
}

.v-hero__stage {
  display: contents;
}

.portal-ready .v-hero__stage {
  display: flex;
  position: sticky;
  top: 0;
  height: 100svh;
  align-items: center;
  justify-content: center;
  padding: 90px 5vw 40px;
  box-sizing: border-box;
  overflow: hidden;
}

.v-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 0 5vw;
}

.v-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-grey);
  font-weight: 600;
  margin-bottom: 26px;
}

.v-hero__title {
  margin: 0 0 36px;
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

/* Kiekviena eilutė savo „langelyje" – 3 etape iš jo išslys aukštyn. */
.v-hero__line { overflow: hidden; }
.v-hero__line > span { display: block; padding: 0.06em 0.1em 0.03em; }
.v-hero__line--accent > span { color: var(--c-accent); }
.v-hero__nowrap { white-space: nowrap; }
.v-hero__veiki { color: var(--c-bone); }

/* Buvusi „veikiA" animacija nuimta: 9 s ciklas pritemdydavo paskutinę raidę
   iki 0,25 ir tuo momentu žodis skaitydavosi „veiki". Žodžių žaismas lieka
   semantinis — „veiki" yra žodyje „veikia". */

.v-hero__lead {
  margin: 0 auto 48px;
  font-size: 17px;
  line-height: 1.7;
  max-width: 32em;
  color: var(--c-grey);
}

.v-hero__cta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Tekstinė nuoroda su apatiniu brūkšniu */
.v-link-underline {
  font-weight: 600;
  font-size: 15px;
  color: var(--c-bone);
  border-bottom: 1px solid rgba(236, 234, 226, 0.4);
  padding-bottom: 3px;
  transition: color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
@media (hover: hover) {
  .v-link-underline:hover { color: var(--c-accent); border-color: var(--c-accent); }
}

/* --- Durys (portalo perdanga) – rodomos tik su JS --------------------- */

.v-doors { display: none; }

.portal-ready .v-doors {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  will-change: opacity;
}

.v-doors__glow {
  position: absolute;
  left: 50%; top: 50%;
  width: 520px; height: 520px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 140, 255, 0.32), transparent 68%);
  filter: blur(18px);
}

.v-doors__portal {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--c-portal-a), var(--c-portal-b) 78%);
}

.v-doors__ring {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(157, 140, 255, 0.55);
  box-shadow: 0 0 70px rgba(157, 140, 255, 0.35),
              inset 0 0 40px rgba(157, 140, 255, 0.15);
}

.v-doors__logo {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: var(--font-logo);
  font-weight: 600;
  font-size: clamp(38px, 5.5vw, 70px);
  letter-spacing: -0.01em;
  color: var(--c-bone);
  white-space: nowrap;
}

.v-doors__hint {
  position: absolute;
  bottom: 30px; left: 0; right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-grey);
}
.v-doors__hint::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(rgba(236, 234, 226, 0.5), transparent);
}

/* ==========================================================================
   2. LOGO JUOSTA
   ========================================================================== */

.v-marquee {
  background: var(--bg);
  color: var(--fg);
  padding: 20px 0 60px;
  overflow: hidden;
}

.v-marquee__track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-left: 5vw;
}

.v-marquee__tile {
  width: 300px;
  height: 200px;
  flex: none;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-head);
}

.v-marquee__tile--outline {
  border: 1px solid rgba(236, 234, 226, 0.12);
  background: linear-gradient(135deg, rgba(236, 234, 226, 0.05), rgba(236, 234, 226, 0.02));
}

.v-marquee__tile--solid {
  background: var(--c-accent);
  color: var(--c-ink);
}

/* ==========================================================================
   3. POŽIŪRIS  (#istorija) – redakcinis dviejų kolonų išdėstymas
   ========================================================================== */

.v-story {
  position: relative;
  background: var(--bg);
  color: var(--fg);
}

.v-story__stage {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  padding: var(--pad-section);
  max-width: 1240px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .v-story__stage {
    grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
    align-items: center;
  }

  /* Sekcija sustoja, kol pereinamos visos trys tezės.
     Be to jos praslysdavo pro skaitymo zoną: pirmoji spėdavo užsidegti tik
     ekrano apačioje, o vidurinei likdavo ~200 px slinkimo. Dabar tezės
     stovi vietoje ekrano viduryje, o slinkimas jas tik perjungia. */
  .portal-ready .v-story { height: 220vh; }
  .portal-ready .v-story__stage {
    position: sticky;
    top: 0;
    min-height: 100svh;
    align-content: center;
  }
}

/* Tas pats sustojimas telefone. Iki 2026-07-27 jis gyveno tik min-width:900
   bloke, todėl telefone tezės praslinkdavo neužsidegusios – sekcija atrodė
   kaip paprastas sąrašas.

   Kelias čia ILGESNIS nei kompiuteryje, o ne trumpesnis. Su 190vh vienai
   tezei tekdavo 244 px, o vienas piršto brūkštelėjimas nuslenka 500–900 px –
   vidurinė tezė praskriedavo neperskaityta. Su 250vh kiekviena gauna ~440 px,
   tad brūkštelėjimas perjungia vieną, ne tris. */
@media (max-width: 899px) {
  .portal-ready .v-story { height: 250vh; }
  .portal-ready .v-story__stage {
    position: sticky;
    top: 0;
    min-height: 100svh;
    align-content: center;
  }
}

.v-story__eyebrow {
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 16px;
}

.v-story__title {
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.v-story__lead {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 34em;
}

.v-story__bar {
  margin-top: 32px;
  width: 140px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.v-story__bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 80ms linear;
}

/* --- Tezės ----------------------------------------------------------------- */

.v-story__list {
  display: flex;
  flex-direction: column;
}

.v-thesis {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 2.4vw, 32px);
  padding: clamp(24px, 3vw, 38px) 0;
  border-top: 1px solid var(--border);
  /* 300 ms, ne 600: highlight turi sekti scrollą, o ne vėluoti paskui jį. */
  transition: opacity 300ms var(--ease-out);
}
.v-thesis:last-child { border-bottom: 1px solid var(--border); }

.v-thesis__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fg-3);
  padding-top: 0.45em;
  transition: color 300ms var(--ease-out);
}

.v-thesis__title {
  font-size: clamp(21px, 2.4vw, 31px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 10px;
  transition: color 300ms var(--ease-out);
}

.v-thesis__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 34em;
  transition: opacity 300ms var(--ease-out);
}

/* Būsenos – tik tada, kai JS iš tikrųjų jas valdo.
   Neaktyvios lieka SKAITOMOS (0,55), ne blankios: šviesiame fone stipriai
   pritemdytas tekstas atrodo kaip neįsikrovęs turinys, ne kaip dizainas. */
.portal-ready .v-thesis { opacity: 0.55; }
.portal-ready .v-thesis.is-past { opacity: 0.72; }
.portal-ready .v-thesis.is-active { opacity: 1; }
.portal-ready .v-thesis.is-active .v-thesis__num { color: var(--accent); }
.portal-ready .v-thesis.is-active .v-thesis__title { color: var(--accent); }

/* ==========================================================================
   4. PASLAUGOS  (#paslaugos) – šviesi
   ========================================================================== */

.v-sec-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 48px;
}
.v-sec-head__num {
  font-weight: 700;
  font-size: 14px;
  color: var(--c-accent);
  flex: none;
}
.v-sec-head__title { margin: 0; }

.v-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(var(--grid-min, 400px), 100%), 1fr));
  gap: 24px;
}

.v-service {
  border: 2px solid rgba(26, 26, 34, 0.14);
  border-radius: var(--r-card);
  padding: 44px 40px;
  background: var(--c-light-card);
  transition: border-color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
@media (hover: hover) {
  .v-service:hover { border-color: var(--c-accent); }
}

.v-service__num {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 22px;
  color: var(--c-accent);
}
.v-service__title {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.01em;
}
.v-service__text {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-on-light-2);
}

.v-tags { display: flex; flex-wrap: wrap; gap: 10px; font-weight: 600; font-size: 13px; }
.v-tag {
  border: 1.5px solid rgba(26, 26, 34, 0.3);
  border-radius: var(--r-pill);
  padding: 6px 14px;
}

/* Violetinė paslaugų kortelė */
.v-service--accent {
  border-color: var(--c-accent);
  background: var(--c-accent);
  color: var(--c-ink);
}
@media (hover: hover) {
  .v-service--accent:hover { background: var(--c-accent-light); border-color: var(--c-accent-light); }
}
.v-service--accent .v-service__num  { color: var(--c-ink); }
.v-service--accent .v-service__text { color: var(--c-on-light-3); }
.v-service--accent .v-tag { border-color: var(--c-ink); }

/* Plati „pagrindinio pasiūlymo" kortelė */
.v-service--wide {
  grid-column: 1 / -1;
  border-color: var(--c-accent);
  background: rgba(157, 140, 255, 0.08);
}
.v-service--wide .v-service__text { max-width: 44em; }

.v-badge {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-ink);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ==========================================================================
   5. PROCESAS  (#procesas)
   ========================================================================== */

.v-process {
  padding: clamp(64px, 9vw, 110px) 5vw 40px;
  background: var(--bg);
  color: var(--fg);
}

.v-step {
  border-top: 1px solid var(--border-strong);
  padding-top: 22px;
}
.v-step__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  color: var(--c-accent);
  margin-bottom: 12px;
}
.v-step__title { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.v-step__text  { margin: 0; font-size: 15px; line-height: 1.6; color: var(--fg-2); }

/* ==========================================================================
   6. DARBAI  (#darbai) – redakcinės kortelės
   ========================================================================== */

.v-work {
  padding: var(--pad-section);
  background: var(--bg);
  color: var(--fg);
}

.v-work__list {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 96px);
}

/* --- Vienas darbas --------------------------------------------------------- */

.v-work-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 40px);
  color: var(--fg);
}

@media (min-width: 900px) {
  .v-work-card {
    grid-template-columns: 1.55fr 1fr;
    align-items: center;
  }
}

.v-work-card__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: clamp(12px, 2vw, 24px);
}

.v-work-card__desktop {
  flex: 1 1 auto;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform var(--dur-slow) var(--ease-out);
}
.v-work-card__desktop img { width: 100%; height: auto; display: block; }

/* Telefonas – mažas akcentas šalia, ne atskira sekcija */
.v-work-card__mobile {
  flex: 0 0 clamp(88px, 12%, 132px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform var(--dur-slow) var(--ease-out);
}
.v-work-card__mobile img { width: 100%; height: auto; display: block; }

@media (hover: hover) {
  .v-work-card:hover .v-work-card__desktop { transform: translateY(-6px); }
  .v-work-card:hover .v-work-card__mobile  { transform: translateY(-12px); }
}

.v-work-card__name {
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.v-work-card__name span { color: var(--c-accent); }

.v-work-card__desc {
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 32em;
  margin-bottom: 18px;
}

.v-work-card__facts {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg-3);
  margin-bottom: 22px;
}

.v-work-card__more {
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 3px;
  transition: color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
@media (hover: hover) {
  .v-work-card:hover .v-work-card__more { color: var(--c-accent); border-color: var(--c-accent); }
}

/* --- Kvietimas ------------------------------------------------------------- */

.v-work-invite {
  border: 2px dashed rgba(157, 140, 255, 0.45);
  border-radius: var(--r-card);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
}
.v-work-invite__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

/* ==========================================================================
   7. KAS MES  (#apie)
   ========================================================================== */

.v-about {
  padding: var(--pad-section);
  background: var(--bg);
  color: var(--fg);
}

.v-about__grid {
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

@media (min-width: 900px) {
  .v-about__grid { grid-template-columns: 1.1fr 1fr; }
}

.v-about__lead {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 16em;
}

.v-about__text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 34em;
}

@media (min-width: 900px) {
  /* Tekstas prasideda šiek tiek žemiau – tipografinis „laiptelis“. */
  .v-about__body { padding-top: 0.5em; }
}

/* ==========================================================================
   9. ATSILIEPIMAI  (#atsiliepimai) – šviesi, lipni kaladė
   ========================================================================== */

.v-quotes {
  padding: clamp(48px, 7vw, 80px) 5vw clamp(64px, 9vw, 110px);
  background: var(--bg);
  color: var(--fg);
}
.v-quotes__stack { max-width: 720px; margin: 0 auto; }

/* Grynas CSS sticky – jokio JS čia nereikia. */
.v-quote-slot {
  position: sticky;
  margin-bottom: 52vh;
}
.v-quote-slot:last-child { margin-bottom: 0; }

.v-quote {
  border-radius: var(--r-card);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-card);
}
.v-quote__mark {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--c-accent);
}
.v-quote__text {
  margin: 0 0 26px;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
}
.v-quote__who { display: flex; align-items: center; gap: 12px; }
.v-quote__badge {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: -0.02em;
}
.v-quote__meta { font-size: 13.5px; line-height: 1.45; font-weight: 600; }

/* Trys temos, kaip dizaine */
.v-quote--a { background: var(--c-light-card); border: 1px solid rgba(26, 26, 34, 0.12); transform: rotate(-1deg); }
.v-quote--b { background: var(--c-accent); color: var(--c-ink); transform: rotate(1.2deg); }
.v-quote--c { background: var(--c-on-light); color: var(--c-bone); transform: rotate(-0.6deg); }

.v-quote--b .v-quote__mark { color: inherit; }
.v-quote--b .v-quote__text { font-weight: 600; }

.v-quote--a .v-quote__badge { background: var(--c-on-light); color: var(--c-light-bg); }
.v-quote--b .v-quote__badge { background: var(--c-ink); color: var(--c-light-bg); font-weight: 400; font-size: 20px; }
.v-quote--c .v-quote__badge { background: var(--c-light-bg); border: 1.5px solid rgba(26, 26, 34, 0.2); }

/* ==========================================================================
   10. KONTAKTAI  (#kontaktai)
   ========================================================================== */

.v-contact {
  background: var(--c-contact-bg);
  color: var(--c-ink);
  padding: var(--pad-section);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}

.v-contact__title {
  margin: 0 0 24px;
  font-weight: 600;
  font-size: clamp(34px, 5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.v-contact__title em { font-style: normal; color: var(--c-accent-dark); }

.v-contact__lead {
  margin: 0 0 40px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--c-on-light-3);
  max-width: 30em;
}

.v-contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 600;
  font-size: 16px;
}
.v-contact__email { color: var(--c-accent-dark); }
.v-contact__place { color: #5B5866; }

/* ==========================================================================
   11. FOOTER
   ========================================================================== */

.v-footer {
  background: var(--c-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 110px 5vw 30px;
  border-top: 1px solid rgba(236, 234, 226, 0.12);
}

.v-footer__glow,
.v-footer__ring {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
}
.v-footer__glow {
  bottom: -170px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(157, 140, 255, 0.35), transparent 65%);
  filter: blur(28px);
}
.v-footer__ring {
  bottom: -230px;
  width: 500px; height: 500px;
  border: 1.5px solid rgba(157, 140, 255, 0.5);
}

.v-footer__title {
  position: relative;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.v-footer__cta { position: relative; padding: 14px 32px; font-size: 15.5px; }

.v-footer__legal {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  font-size: 12.5px;
  color: var(--c-grey-dark);
  font-weight: 600;
}
.v-footer__legal a { color: var(--c-grey-dark); transition: color var(--dur-fast) var(--ease-out); }
@media (hover: hover) { .v-footer__legal a:hover { color: var(--c-accent); } }

/* ==========================================================================
   Mažiau judesio – viskas galutinėje būklėje
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .v-quote-slot { position: static; margin-bottom: 24px; }
  .v-quote--a, .v-quote--b, .v-quote--c { transform: none; }
}

/* ==========================================================================
   Darbų archyvas – /darbai/
   Šviesus puslapis; kortelės nekeičiamos, nes jos naudoja semantinius
   --fg / --fg-2 kintamuosius ir vienodai veikia abiejose temose.
   ========================================================================== */

.v-archive {
  background: var(--c-light-bg);
  color: var(--c-on-light);
  min-height: 100svh;
  padding-top: 150px;
  --bg: var(--c-light-bg);
  --bg-card: var(--c-light-card);
  --fg: var(--c-on-light);
  --fg-2: var(--c-on-light-2);
  --fg-3: #77737F;
  --border: rgba(26, 26, 34, 0.14);
  --border-strong: rgba(26, 26, 34, 0.26);
  --accent: var(--c-accent-dark);
}

.v-archive__head {
  max-width: 1240px;
  margin-inline: auto;
  padding: 0 5vw clamp(24px, 4vw, 48px);
}

.v-archive__title {
  font-size: clamp(40px, 6.5vw, 84px);
  letter-spacing: -0.02em;
  margin: 14px 0 22px;
}

.v-archive__lead {
  font-size: clamp(16.5px, 1.7vw, 19px);
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 42em;
}

.v-work--archive { padding-top: clamp(16px, 2vw, 32px); }

.v-work--archive .v-work-invite {
  border-color: rgba(123, 102, 255, 0.4);
}

/* ==========================================================================
   Paslaugų puslapiai – /svetainiu-kurimas/ ir kt.
   Šviesus, redakcinis, be jokių animacijos triukų: šie puslapiai
   pirmiausia skirti skaityti ir būti perskaityti robotų.
   ========================================================================== */

.v-svc {
  background: var(--c-light-bg);
  color: var(--c-on-light);
  min-height: 100svh;
  padding: 150px 5vw clamp(40px, 6vw, 80px);
  --bg: var(--c-light-bg);
  --bg-card: var(--c-light-card);
  --fg: var(--c-on-light);
  --fg-2: var(--c-on-light-2);
  --fg-3: #77737F;
  --border: rgba(26, 26, 34, 0.14);
  --border-strong: rgba(26, 26, 34, 0.26);
  --accent: var(--c-accent-dark);
}

.v-svc__head,
.v-svc__block,
.v-svc__end { max-width: 860px; margin-inline: auto; }
.v-svc__block--wide { max-width: 1240px; }

.v-svc__title {
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 14px 0 24px;
}

.v-svc__lead p {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
  color: var(--fg-2);
  margin-bottom: 16px;
}

.v-svc__cta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.v-svc__cta .v-btn--primary { background: var(--accent); color: #fff; }
.v-svc__cta .v-link-underline { color: var(--fg); border-bottom-color: var(--border-strong); }

.v-svc__block { margin-top: clamp(48px, 7vw, 88px); }

.v-svc__h2 {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.015em;
  margin-bottom: clamp(20px, 3vw, 32px);
}

/* Kas įeina */
.v-svc__list { display: flex; flex-direction: column; gap: 16px; }
.v-svc__list li {
  padding-left: 22px;
  position: relative;
  font-size: 16.5px;
  line-height: 1.6;
}
.v-svc__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.v-svc__list strong { display: block; font-weight: 700; }
.v-svc__list span { color: var(--fg-2); }

/* Kam tinka */
.v-svc__pills { display: flex; flex-wrap: wrap; gap: 10px; }
.v-svc__pills li {
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
}

/* Kaip vyksta */
.v-svc__steps { display: flex; flex-direction: column; gap: 22px; counter-reset: step; }
.v-svc__steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.v-svc__step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  padding-top: 2px;
}
.v-svc__steps strong { display: block; font-size: 17px; margin-bottom: 4px; }
.v-svc__steps p { color: var(--fg-2); font-size: 16px; line-height: 1.6; }

/* Susiję darbai */
.v-work--svc { padding: 0; background: transparent; }
.v-work--svc .v-work__list { gap: clamp(36px, 5vw, 64px); }

/* DUK */
.v-faq { display: flex; flex-direction: column; }
.v-faq__item { border-top: 1px solid var(--border); }
.v-faq__item:last-child { border-bottom: 1px solid var(--border); }
.v-faq__item > summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 40px 20px 0;
  position: relative;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(16.5px, 1.8vw, 19px);
  line-height: 1.4;
}
.v-faq__item > summary::-webkit-details-marker { display: none; }
.v-faq__item > summary::after {
  content: '+';
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
}
.v-faq__item[open] > summary::after { content: '–'; }
@media (hover: hover) {
  .v-faq__item > summary:hover { color: var(--accent); }
}
.v-faq__a { padding: 0 40px 22px 0; }
.v-faq__a p { color: var(--fg-2); font-size: 16.5px; line-height: 1.65; margin-bottom: 12px; }

/* Pabaiga */
.v-svc__end {
  margin-top: clamp(56px, 8vw, 104px);
  padding: clamp(32px, 5vw, 56px);
  border: 2px dashed rgba(123, 102, 255, 0.4);
  border-radius: var(--r-card);
  text-align: center;
}
.v-svc__end-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 30px);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.v-svc__end-text {
  color: var(--fg-2);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 34em;
  margin: 0 auto 24px;
}
.v-svc__end .v-btn--primary { background: var(--accent); color: #fff; }

@media (max-width: 600px) {
  .v-svc { padding-top: 120px; }
  .v-svc__steps li { grid-template-columns: 32px 1fr; gap: 12px; }
}

/* Paslaugų kortelė kaip nuoroda į paslaugos puslapį. */
.v-service--link {
  display: block;
  color: inherit;
  cursor: pointer;
}
.v-service__more {
  display: inline-block;
  margin-top: 20px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--c-accent-dark);
  border-bottom: 1px solid transparent;
}
@media (hover: hover) {
  .v-service--link:hover { border-color: var(--c-accent); }
  .v-service--link:hover .v-service__more { border-bottom-color: currentColor; }
}
.v-service--link:focus-visible { outline: 2px solid var(--c-accent-dark); outline-offset: 4px; }

/* Nuoroda į darbų archyvą po kortelėmis. */
.v-work__all { margin-top: clamp(24px, 3vw, 40px); text-align: center; }
.v-work--svc + .v-work__all,
.v-svc .v-work__all { text-align: left; }
