/* Locomotive Scroll: extra layout baseline (library CSS also styles the root) */
[data-scroll-container] {
  background: var(--page-bg);
  position: relative;
  z-index: 0;
  padding-bottom: 0;
}

/* Locomotive: nematomas ankeris sekcijos viršuje (data-scroll-section viduje) */
.scroll-fx-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 4px;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
  visibility: hidden;
}

/* Antriniai inkarai showcase bloke: #rinkodara, #atsiliepimai; sekcija #rinktis-mus */
.section-id-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
  visibility: hidden;
}

/* Scroll: matomumas ir lengvas kilimas (valdo JS: --sr-p nuo 0 iki 1) */
[data-scroll-reveal] {
  --sr-p: 0;
  opacity: calc(0.05 + 0.95 * var(--sr-p));
  transform: translate3d(0, calc((1 - var(--sr-p)) * 32px), 0);
  will-change: opacity, transform;
}

[data-scroll-reveal="from-left"] {
  transform: translate3d(calc((1 - var(--sr-p)) * -36px), 0, 0);
}

[data-scroll-reveal="from-right"] {
  transform: translate3d(calc((1 - var(--sr-p)) * 36px), 0, 0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --header-h: 72px;
  --page-pad: 24px;
  --radius-hero: 16px;
  --page-bg: #f5f5f5;
  --surface-header: var(--page-bg);
  --text-dark: #000000;
  --text-muted: #6b6b6b;
  --text-muted-light: #9a9a9a;
  --section-max-width: 97%;
}

html {
  background: var(--page-bg);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* Locomotive custom rail — keep scroll, hide UI */
.c-scrollbar {
  display: none !important;
}

html.has-scroll-smooth,
html.has-scroll-smooth body {
  background: var(--page-bg);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--page-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Fixed navbar — 1fr | nav | 1fr so links are centered to the viewport */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  min-height: var(--header-h);
  padding: 10px var(--page-pad);
  background: var(--page-bg);
}

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
}

.brand__mark {
  height: 2.25rem;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 40px);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav--desktop {
  grid-column: 2;
  justify-self: center;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.35rem 0.55rem;
  margin: -0.35rem -0.45rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav a:hover {
  background: rgba(0, 0, 0, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.18s ease, transform 0.18s ease,
    background 0.18s ease;
}

.btn:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 3px;
}

.btn--nav {
  flex-shrink: 0;
  padding-block: 0.72rem;
  padding-inline: 1.35rem;
  border-radius: 999px;
  background: var(--text-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.btn--nav-desktop {
  grid-column: 3;
  justify-self: end;
}

.btn--nav:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--nav:focus-visible {
  outline-color: #ffffff;
  outline-offset: 2px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 1300;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  background: var(--text-dark);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.skip-link:focus {
  left: 0.75rem;
  z-index: 100000;
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

/* Intro preloader: BEINER raidės banga + retract; hero „scroll in“ — is-hero-reveal (index <head> is-preloading) */
html.is-preloading,
html.is-preloading body {
  overflow: hidden;
  height: 100%;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 50000;
  overflow: hidden;
  pointer-events: auto;
}

.site-preloader__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--page-bg);
  transform-origin: 50% 0;
  transform: scaleY(1);
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.16, 1);
}

.site-preloader__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
}

.site-preloader__word {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: center;
  gap: 0.03em;
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(2.75rem, 12vw, 5.25rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--text-dark);
}

.site-preloader__char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 125%, 0) rotateZ(-2deg);
  will-change: transform, opacity;
  animation: site-preloader-char-in 0.72s cubic-bezier(0.22, 1, 0.34, 1) both;
  animation-delay: calc(var(--pre-char, 0) * 0.068s);
}

@keyframes site-preloader-char-in {
  70% {
    opacity: 1;
    transform: translate3d(0, -4%, 0) rotateZ(0deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateZ(0deg);
  }
}

.site-preloader.is-exiting {
  pointer-events: none;
}

.site-preloader.is-exiting .site-preloader__bg {
  transform: scaleY(0);
}

/* Hero po preloaderio: visas rėmas juda iš apačios (sinchronas su retract pabaiga) */
html.is-hero-reveal .hero-section .hero {
  animation: hero-intro-rise 0.95s cubic-bezier(0.18, 0.82, 0.22, 1) 0.28s both;
  will-change: transform, opacity;
}

@keyframes hero-intro-rise {
  from {
    opacity: 0;
    transform: translate3d(0, min(12vh, 112px), 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

html.is-hero-reveal .hero-section .hero__inner[data-scroll-reveal] {
  --sr-p: 1;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader__char {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .site-preloader__bg {
    transition: opacity 0.22s ease;
  }

  .site-preloader.is-exiting .site-preloader__bg {
    transform: none;
    opacity: 0;
  }

  html.is-hero-reveal .hero-section .hero {
    animation: none;
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}

.site-header__menu-toggle {
  display: none;
  position: relative;
  z-index: 1060;
  grid-column: 2;
  justify-self: end;
  align-self: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.15s ease;
}

.site-header__menu-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
}

.site-header__burger {
  display: grid;
  width: 22px;
  height: 16px;
  margin: 0 auto;
  align-content: space-between;
  justify-items: stretch;
}

.site-header__burger span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.2s ease;
  transform-origin: center;
}

.site-header.is-menu-open .site-header__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .site-header__burger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.is-menu-open .site-header__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__offcanvas {
  position: fixed;
  inset: 0;
  z-index: 1040;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.28s ease;
}

.site-header.is-menu-open .site-header__offcanvas {
  pointer-events: auto;
  visibility: visible;
}

.site-header__offcanvas-backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.site-header.is-menu-open .site-header__offcanvas-backdrop {
  opacity: 1;
}

.site-header__offcanvas-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 340px);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
  padding: calc(12px + env(safe-area-inset-top, 0px)) 20px
    calc(20px + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  background: var(--page-bg);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-menu-open .site-header__offcanvas-panel {
  transform: translate3d(0, 0, 0);
}

.nav--drawer {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  overflow: visible;
  flex: 0 0 auto;
}

.nav--drawer a {
  white-space: normal;
  padding: 0.65rem 0.75rem;
  margin: 0;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
}

.btn--nav-drawer {
  width: 100%;
  flex-shrink: 0;
  justify-content: center;
}

@media (min-width: 960px) {
  .site-header__menu-toggle,
  .site-header__offcanvas {
    display: none;
  }
}

@media (max-width: 959px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    grid-column: 1;
  }

  .site-header__menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav--desktop,
  .btn--nav-desktop {
    display: none !important;
  }
}

html.is-mobile-nav-open {
  overflow: hidden;
}

/* Hero: 100svh — Safari telefone ne „ilgesnis“ už matomą langą (100vh bug po toolbar / address bar) */
.hero-section {
  --hero-inset: 14px;
  --hero-frame-max: 100%;
  position: relative;
  z-index: 950;
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100svh;
  padding: var(--header-h) var(--hero-inset)
    calc(var(--hero-inset) + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: var(--hero-frame-max);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-hero);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #000000 url("../media/herobg.webp") center / cover no-repeat;
  z-index: 0;
}

/* WebGL juostos virš tos pačios pilno rėmo nuotraukos (kairė ~50% + keli px siūlei) */
.hero__rib-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(50% + 3px);
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: block;
  opacity: 0;
  transition: opacity 0.45s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero.hero--rib-ready .hero__rib-canvas {
  opacity: 1;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

.hero__inner {
  --hi-gutter: 20px;
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  padding: var(--hi-gutter);
  padding-bottom: calc(var(--hi-gutter) + 12px);
  gap: 0.9rem;
  align-content: stretch;
}

.hero__kicker {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  margin: clamp(28px, 5vh, 64px) 0 clamp(6px, 1.2vh, 16px);
  width: max-content;
  max-width: calc(100% - 8px);
  font-size: clamp(18px, 3.1vw, 24px);
  font-weight: 200;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.3;
  text-align: right;
  color: rgba(255, 255, 255, 0.92);
}

.hero__kicker-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}

.hero__kicker-line1 {
  display: block;
}

.hero__kicker-line2 {
  display: block;
}

@media (min-width: 768px) {
  .hero__inner {
    --hi-gutter: 24px;
    gap: 1rem;
    grid-template-columns: 1fr minmax(280px, 360px);
    grid-template-rows: auto 1fr auto;
    padding-bottom: calc(var(--hi-gutter) + 18px);
    align-items: start;
  }

  .hero__kicker {
    font-size: clamp(21px, 2.35vw, 28px);
    letter-spacing: 0.01em;
  }
}

.hero__title {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: center;
  margin: 0;
  margin-inline: 2px;
  max-width: min(100%, 16ch);
  font-size: clamp(24px, 5.5vw, 36px);
  font-weight: 200;
  line-height: 1.07;
  letter-spacing: -0.04em;
  color: #fff;
}

.hero__title-line {
  display: block;
}

@media (max-width: 767px) {
  .hero__title {
    font-size: clamp(32px, 8.6vw, 50px);
    line-height: 1.06;
    max-width: min(100%, 20ch);
  }

  .profile-card {
    --profile-photo-max-h: clamp(88px, 32vw, 112px);
  }

  .profile-card__sheet--photo {
    padding: 2px 3px;
  }

  .profile-card__sheet--copy {
    padding: 5px 6px 5px 7px;
  }

  .profile-card__body {
    gap: 0.05rem;
  }

  .profile-card__role {
    font-size: 0.625rem;
  }

  .profile-card__handle {
    font-size: 0.5rem;
  }

  .profile-card__name {
    margin: 0.06rem 0 0.7rem;
    font-size: 14px;
    line-height: 1.1;
  }

  .btn--card {
    margin-top: auto;
    align-self: stretch;
    width: 100%;
    justify-content: center;
    min-height: 40px;
    padding: 0.62rem 0.95rem;
    font-size: 0.8125rem;
    gap: 0.38rem;
  }

  .btn--card__dot {
    width: 5px;
    height: 5px;
  }
}

@media (min-width: 768px) {
  .hero__title {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    margin-inline: 4px;
    padding-bottom: 0;
    font-size: clamp(32px, 4.25vw, 48px);
    line-height: 1.08;
    max-width: min(100%, 14ch);
  }
}

@media (min-width: 1200px) {
  .hero__title {
    margin-inline: 6px;
    font-size: clamp(40px, 4.75vw, 64px);
    line-height: 1.05;
    max-width: min(100%, 18ch);
  }
}

.profile-card {
  --profile-shell-r: 12px;
  --profile-photo-max-h: clamp(104px, 28vw, 132px);
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: end;
  justify-self: stretch;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3.5fr);
  gap: 0;
  align-items: stretch;
  max-width: 100%;
  min-height: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

@media (min-width: 768px) {
  .profile-card {
    grid-column: 2;
    grid-row: 3;
    align-self: end;
    justify-self: end;
    width: 100%;
    max-width: 100%;
  }
}

.profile-card__sheet {
  --profile-shell-bg: #ffffff;
  background-color: #ffffff;
  background-image: none;
  min-width: 0;
  min-height: 0;
  border-radius: var(--profile-shell-r);
  box-sizing: border-box;
  isolation: isolate;
}

/* Padding = space from image to white shell. Smaller left/right = tighter sides. */
.profile-card__sheet--photo {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: center;
  min-height: 0;
  padding: 4px 4px;
}

.profile-card__photo-frame {
  box-sizing: border-box;
  flex: 0 0 auto;
  display: block;
  width: 100%;
  max-height: var(--profile-photo-max-h);
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}

.profile-card__sheet--copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 8px 9px 8px 10px;
}

.profile-card__photo {
  width: 100%;
  height: auto;
  max-height: var(--profile-photo-max-h);
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.profile-card__body {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  padding-bottom: 0;
  padding-right: 0;
}

.profile-card__role {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-muted);
}

.profile-card__handle {
  margin: 0;
  font-size: 0.5625rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-muted-light);
}

.profile-card__name {
  margin: 0.1rem 0 0.5rem;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.12;
}

.btn--card {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.8rem 0.65rem 0.8rem 0.68rem;
  gap: 0.35rem;
  border-radius: 999px;
  background: var(--text-dark);
  color: #fff;
  font-size: 0.6875rem;
}

.btn--card:hover {
  opacity: 0.9;
}

.btn--card__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  /* Šonai ≤ viršus/apačią — balta „kriauklė“ vizualiai simetriškesnė */
  .profile-card__sheet--photo {
    padding: 7px 5px;
  }

  .profile-card__sheet--copy {
    padding: 13px 10px 14px 11px;
  }

  .profile-card__body {
    gap: 0.22rem;
  }

  .profile-card__role {
    font-size: 0.75rem;
  }

  .profile-card__handle {
    font-size: 0.625rem;
  }

  .profile-card__name {
    margin: 0.12rem 0 0.72rem;
    font-size: 16px;
  }

  .btn--card {
    padding-block: 0.52rem;
    padding-inline: 1.2rem 1.24rem;
    gap: 0.45rem;
    font-size: 0.875rem;
    min-height: 0;
  }

  .btn--card__dot {
    width: 6px;
    height: 6px;
  }
}

.btn--footer {
  margin-top: 1.1rem;
  align-self: flex-start;
  flex-shrink: 0;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  background: var(--text-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.btn--footer:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.site-footer .btn--footer:focus-visible {
  outline-color: #000000;
  outline-offset: 3px;
}

/* Po hero: logotipas kairėje, tekstas centre — stalčiaus išlindimas (valdo JS pagal Locomotive scroll) */
/* Locomotive nustato inline transform ant data-scroll-section — negalima dėti stalčiaus čia */
.stance-section {
  --stance-drawer-y: 0px;
  position: relative;
  z-index: 2;
  padding: 120px var(--page-pad) 80px;
}

.stance-section__inner {
  transform: translate3d(0, var(--stance-drawer-y), 0);
  will-change: transform;
  max-width: var(--section-max-width);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 48px 80px;
  align-items: start;
}

.stance-section__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stance-section__logo {
  height: 40px;
  width: auto;
  display: block;
}

.stance-section__copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.stance-section__opening {
  margin: 0 0 28px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 26px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--text-dark);
}

.stance-section__lead {
  color: var(--text-muted);
  font-weight: 400;
  font-size: inherit;
}

.stance-section__body-text {
  font-weight: 400;
  font-size: inherit;
  color: var(--text-dark);
}

.stance-section__stress {
  font-weight: 700;
  font-size: inherit;
  font-style: normal;
  color: var(--text-dark);
}

.stance-section__note {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .stance-section {
    padding: 80px var(--page-pad) 56px;
  }

  .stance-section__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stance-section__copy {
    margin: 0;
    max-width: none;
  }

  .stance-section__opening {
    font-size: 16px;
  }
}

/* Projektai — laikinai paslėpta */
.projects-section {
  display: none;
  position: relative;
  z-index: 1;
  padding: 80px var(--page-pad) 100px;
}

.projects-section__inner {
  --projects-reveal-p: 1;
  max-width: var(--section-max-width);
  width: 100%;
  margin: 0 auto;
}

.projects-section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  align-items: start;
  margin-bottom: 56px;
}

.projects-section__head-left {
  text-align: left;
  justify-self: start;
  max-width: 100%;
  opacity: calc(0.12 + 0.88 * var(--projects-reveal-p));
  transform: translate3d(
    calc((1 - var(--projects-reveal-p)) * -56px),
    calc((1 - var(--projects-reveal-p)) * 36px),
    0
  );
}

.projects-section__title {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 128px;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.projects-section__meta {
  margin: 20px 0 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
}

.projects-section__intro {
  margin: 0;
  justify-self: end;
  max-width: 400px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  text-align: right;
  color: var(--text-muted);
  opacity: calc(0.12 + 0.88 * var(--projects-reveal-p));
  transform: translate3d(
    calc((1 - var(--projects-reveal-p)) * 48px),
    calc((1 - var(--projects-reveal-p)) * 44px),
    0
  );
}

.projects-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.project-card {
  --pc-reveal-p: 1;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  opacity: calc(0.2 + 0.8 * var(--pc-reveal-p));
  transform: translate3d(0, calc((1 - var(--pc-reveal-p)) * 52px), 0)
    scale(calc(0.965 + 0.035 * var(--pc-reveal-p)));
  transform-origin: center center;
  transition: transform 0.45s ease-in-out, opacity 0.35s ease-out;
}

@media (hover: hover) {
  .project-card:hover {
    transform: translate3d(0, calc((1 - var(--pc-reveal-p)) * 52px), 0)
      scale(calc((0.965 + 0.035 * var(--pc-reveal-p)) * 1.03));
    opacity: 1;
  }
}

.project-card__chrome {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding: 18px 22px;
  background: #ffffff;
  border-radius: 12px 12px 0 0;
}

.project-card__chrome::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  transform: scaleX(var(--pc-reveal-p, 0));
  transform-origin: left center;
  pointer-events: none;
}

.project-card__label {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

.project-card__name {
  font-weight: 700;
  color: var(--text-dark);
}

.project-card__year {
  font-weight: 400;
  color: #9a9a9a;
}

.project-card__dots {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 9px;
}

.project-card__dots span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #c4c4c4;
  transition: background-color 0.45s ease-in-out;
}

@media (hover: hover) {
  .project-card:hover .project-card__dots--traffic span:nth-child(1) {
    background: #ff5f57;
  }

  .project-card:hover .project-card__dots--traffic span:nth-child(2) {
    background: #febc2e;
  }

  .project-card:hover .project-card__dots--traffic span:nth-child(3) {
    background: #28c840;
  }

  .project-card:hover .project-card__dots--muted span {
    background: #9e9e9e;
  }
}

.project-card__media {
  position: relative;
  margin: 0;
  background: #eaeaea;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.project-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
  filter: blur(0);
  transform: scale(1);
  transition: filter 0.45s ease-in-out, transform 0.45s ease-in-out;
}

@media (hover: hover) {
  .project-card:hover .project-card__image {
    filter: blur(10px);
    transform: scale(1.04);
  }
}

.project-card__logo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.project-card__logo {
  display: block;
  height: 52px;
  width: auto;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.45s ease-in-out;
}

@media (hover: hover) {
  .project-card:hover .project-card__logo {
    transform: scale(0.86);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stance-section__inner {
    transform: none;
    will-change: auto;
  }

  .projects-section__head-left,
  .projects-section__intro {
    opacity: 1;
    transform: none;
  }

  .stats-item {
    opacity: 1;
    transform: none;
  }

  .showcase-section__eyebrow,
  .showcase-section__eyebrow-mark,
  .showcase-section__headline-strong,
  .showcase-section__headline-gray,
  .showcase-section__headline-muted {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .showcase-section__black {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .case-card {
    opacity: 1;
    transform: none;
  }

  .showcase-section__black-signals li {
    animation: none;
  }

  .case-chart__bar {
    transform: none;
  }

  .project-card {
    opacity: 1;
    transform: none;
  }

  .project-card,
  .project-card__image,
  .project-card__logo {
    transition-duration: 0.01ms;
  }

  .project-card:hover,
  .project-card:hover .project-card__image,
  .project-card:hover .project-card__logo {
    transform: scale(1.03);
    filter: none;
  }

  .how-section__index,
  .how-section__head-left,
  .how-section__lead,
  .how-section__step {
    opacity: 1;
    transform: none;
  }

  .how-section__step-img {
    transform: none;
    filter: grayscale(0.12);
  }

  .project-card__chrome::after {
    transform: scaleX(1);
  }

  .stats-section__inner::after {
    transform: scaleX(1);
  }

  .compare-section__intro,
  .compare-section__eyebrow-mark,
  .compare-section__closing,
  .compare-section__row {
    opacity: 1;
    transform: none;
  }

  .btn--compare {
    transition-duration: 0.01ms;
  }

  .btn--compare:hover {
    transform: none;
  }

  .faq-section__intro,
  .faq-item {
    opacity: 1;
    transform: none;
  }

  [data-scroll-reveal] {
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  .faq-item__panel {
    transition-duration: 0.01ms;
  }

  .faq-item__icon {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 991px) {
  .projects-section__title {
    font-size: 88px;
  }

  .projects-section__meta {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .projects-section {
    padding: 56px var(--page-pad) 72px;
  }

  .projects-section__head {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .projects-section__head-left {
    max-width: none;
  }

  .projects-section__title {
    font-size: 64px;
  }

  .projects-section__meta {
    font-size: 17px;
  }

  .projects-section__intro {
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .projects-section__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Statistika — po Projektai */
.stats-section {
  position: relative;
  z-index: 1;
  padding: 72px var(--page-pad) 0;
}

.stats-section__inner {
  --stats-line-p: 0;
  position: relative;
  max-width: var(--section-max-width);
  width: 100%;
  margin: 0 auto;
  padding-bottom: 72px;
}

.stats-section__inner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  transform: scaleX(var(--stats-line-p, 0));
  transform-origin: left center;
  pointer-events: none;
}

.stats-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 32px;
  align-items: start;
}

.stats-item {
  --st-p: 1;
  text-align: left;
  opacity: calc(0.2 + 0.8 * var(--st-p));
  transform: translate3d(0, calc((1 - var(--st-p)) * 40px), 0)
    rotate(calc((1 - var(--st-p)) * -2.5deg));
  transform-origin: left 60%;
}

.stats-item__value {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 76px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #000000;
  font-variant-numeric: tabular-nums;
}

.stats-item__label {
  margin: 12px 0 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #888888;
}

@media (max-width: 991px) {
  .stats-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 40px;
  }

  .stats-item__value {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .stats-section {
    padding: 56px var(--page-pad) 0;
  }

  .stats-section__inner {
    padding-bottom: 56px;
  }

  .stats-section__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stats-item__value {
    font-size: 52px;
  }
}

/* Procesas — žingsniai su nuotraukomis */
.how-section {
  position: relative;
  z-index: 1;
  padding: 96px var(--page-pad) 92px;
}

.how-section__inner {
  --how-p: 1;
  max-width: var(--section-max-width);
  width: 100%;
  margin: 0 auto;
}

.how-section__intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 240px);
  gap: 8px 36px;
  align-items: start;
  margin-bottom: 56px;
}

.how-section__index {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding: 18px 0 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--text-muted-light);
  white-space: nowrap;
  opacity: calc(0.15 + 0.85 * var(--how-p));
  transform: translate3d(calc((1 - var(--how-p)) * -12px), 0, 0);
}

.how-section__head-left {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  text-align: left;
  max-width: 100%;
  width: min(100%, max-content);
  margin-left: 0;
  opacity: calc(0.12 + 0.88 * var(--how-p));
  transform: translate3d(
    calc((1 - var(--how-p)) * -56px),
    calc((1 - var(--how-p)) * 36px),
    0
  );
}

.how-section__title {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 128px;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.how-section__meta {
  margin: 20px 0 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
}

.how-section__lead {
  grid-column: 3;
  grid-row: 1;
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 240px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  text-align: right;
  color: var(--text-muted);
  opacity: calc(0.12 + 0.88 * var(--how-p));
  transform: translate3d(
    calc((1 - var(--how-p)) * 48px),
    calc((1 - var(--how-p)) * 44px),
    0
  );
}

.how-section__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-section__step {
  --how-step-p: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: 36px 0;
  opacity: calc(0.14 + 0.86 * var(--how-step-p));
  transform: translate3d(0, calc((1 - var(--how-step-p)) * 36px), 0);
}

.how-section__step:last-child {
  padding-bottom: 0;
}

.how-section__step:nth-child(even) .how-section__step-media {
  order: 2;
}

.how-section__step:nth-child(even) .how-section__step-body {
  order: 1;
  text-align: right;
  align-items: flex-end;
}

.how-section__step-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #dcdcdc;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.how-section__step-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  filter: grayscale(0.22) contrast(1.02);
  transform: scale(calc(1 + (1 - var(--how-step-p)) * 0.04));
}

.how-section__step-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}

.how-section__step-index {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(0, 0, 0, 0.07);
  user-select: none;
}

.how-section__step-title {
  margin: 0;
  max-width: 22rem;
  font-size: clamp(18px, 1.85vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-dark);
}

.how-section__step:nth-child(even) .how-section__step-title {
  margin-left: auto;
}

.how-section__step-text {
  margin: 0;
  max-width: 24rem;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.how-section__step:nth-child(even) .how-section__step-text {
  margin-left: auto;
}

@media (max-width: 991px) {
  .how-section {
    padding: 72px var(--page-pad) 72px;
  }

  .how-section__title {
    font-size: 88px;
  }

  .how-section__meta {
    font-size: 20px;
  }

  .how-section__step {
    grid-template-columns: 1fr;
    padding: 28px 0;
    gap: 20px;
  }

  .how-section__step:nth-child(even) .how-section__step-media,
  .how-section__step:nth-child(even) .how-section__step-body {
    order: unset;
  }

  .how-section__step:nth-child(even) .how-section__step-body {
    text-align: left;
    align-items: flex-start;
  }

  .how-section__step:nth-child(even) .how-section__step-title,
  .how-section__step:nth-child(even) .how-section__step-text {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .how-section {
    padding: 56px var(--page-pad) 56px;
  }

  .how-section__intro {
    grid-template-columns: 1fr;
    gap: 16px 0;
    margin-bottom: 40px;
  }

  .how-section__index {
    grid-column: 1;
    grid-row: 1;
    padding: 0;
  }

  .how-section__head-left {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    text-align: left;
    max-width: none;
    width: 100%;
    margin-left: 0;
  }

  .how-section__title {
    font-size: 64px;
  }

  .how-section__meta {
    font-size: 17px;
  }

  .how-section__lead {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    max-width: min(240px, 100%);
    text-align: left;
  }
}

/* Rinkodara / case study — juoda vieta kairėje, kortelės dešinėje */
.showcase-section {
  position: relative;
  z-index: 1;
  background: var(--page-bg);
  padding: 88px var(--page-pad) 100px;
}

.showcase-section__inner {
  --show-p: 1;
  --show-gray-p: 1;
  max-width: var(--section-max-width);
  width: 100%;
  margin: 0 auto;
}

.showcase-section__intro {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 32px 48px;
  align-items: start;
  margin-bottom: 100px;
}

.showcase-section__eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  opacity: calc(0.2 + 0.8 * var(--show-p));
  transform: translate3d(calc((1 - var(--show-p)) * -24px), 0, 0);
}

.showcase-section__eyebrow-mark {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #000000;
  font-size: 0;
  line-height: 0;
  color: transparent;
  overflow: hidden;
  transform: rotate(calc((1 - var(--show-p)) * -72deg))
    scale(calc(0.55 + 0.45 * var(--show-p)));
  transform-origin: center center;
}

.showcase-section__eyebrow-mark::before {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -58%);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
}

.showcase-section__headline {
  margin: 0;
  max-width: min(100%, 60rem);
  overflow: visible;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(36px, 3.9vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.showcase-section__headline-strong {
  display: inline;
  font-weight: 500;
  color: #000000;
  opacity: calc(0.08 + 0.92 * var(--show-p));
  transform: translate3d(
    calc((1 - var(--show-p)) * -56px),
    calc((1 - var(--show-p)) * 22px),
    0
  );
}

.showcase-section__headline-gray {
  display: inline;
  color: #8f8f8f;
  font-weight: 500;
  opacity: calc(0.06 + 0.94 * var(--show-gray-p, 1));
  transform: translate3d(
    calc((1 - var(--show-gray-p, 1)) * 48px),
    calc((1 - var(--show-gray-p, 1)) * 16px),
    0
  );
}

.showcase-section__headline-muted {
  display: block;
  margin-top: 0.15em;
  font-weight: 400;
  color: #9a9a9a;
  opacity: calc(0.08 + 0.92 * var(--show-p));
  transform: translate3d(
    calc((1 - var(--show-p)) * 64px),
    calc((1 - var(--show-p)) * 20px),
    0
  );
  filter: blur(calc((1 - var(--show-p)) * 5px));
}

.showcase-section__split {
  --showcase-split-min-h: clamp(560px, 62vh, 760px);
  display: grid;
  /* Nuotrauka siauresnė; didelis tarpas tarp whyus ir dešinio bloko (~300px) */
  grid-template-columns: minmax(140px, 0.38fr) minmax(300px, 1fr);
  column-gap: 300px;
  row-gap: 5px;
  align-items: stretch;
}

.showcase-section__split-right {
  display: flex;
  flex-direction: column;
  gap: 50px;
  min-width: 0;
  min-height: var(--showcase-split-min-h);
  height: 100%;
  box-sizing: border-box;
}

.showcase-section__split-lead {
  margin: 0;
  width: 100%;
  max-width: none;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 400;
  line-height: 1.62;
  color: var(--text-muted);
}

.showcase-section__black {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  box-sizing: border-box;
  min-height: var(--showcase-split-min-h, 560px);
  height: 100%;
  align-self: stretch;
  padding: 28px 26px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #000000;
  background-image: url("../media/whyus.webp");
  background-size: cover;
  background-position: 38% center;
  background-repeat: no-repeat;
  transform: translate3d(
      calc((1 - var(--show-p)) * -32px),
      calc((1 - var(--show-p)) * 40px),
      0
    )
    scale(calc(0.88 + 0.12 * var(--show-p)));
  transform-origin: left center;
  filter: brightness(calc(0.52 + 0.48 * var(--show-p)));
}

.showcase-section__black-copy {
  position: relative;
  z-index: 1;
  width: 100%;
}

.showcase-section__cards {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-width: 0;
  width: 100%;
  min-height: 520px;
}

.showcase-section__cards--tiles {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  row-gap: 5px;
  column-gap: 5px;
  min-height: 540px;
}

/* 4 kortelės: stulpelis 1→3, stulpelis 2→4; viršuje trumpa stat, apačioje didesnė */
.showcase-section__cards--mosaic {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5px;
  min-height: min(560px, 58vh);
  align-items: stretch;
}

.showcase-mosaic-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  flex: 1 1 50%;
  align-self: stretch;
}

.showcase-mosaic-column--stack .case-card--mosaic-cell:first-child {
  flex: 0 0 calc((100% - 5px) / 4);
  max-height: calc((100% - 5px) / 4);
  min-height: 96px;
  transition:
    border-radius 0.22s ease,
    margin-bottom 0.22s ease;
}

.showcase-mosaic-column--stack .case-card--mosaic-cell:last-child {
  flex: 1 1 0;
  min-height: 0;
  transition:
    border-radius 0.22s ease,
    margin-bottom 0.22s ease;
}

.case-card__corner-label {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted-light);
  pointer-events: none;
  user-select: none;
}

.case-card__corner-label--title {
  left: auto;
  right: 22px;
  max-width: min(18rem, 78%);
  font-size: clamp(16px, 1.65vw, 22px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: right;
  text-transform: none;
  color: var(--text-dark);
}

.case-card.case-card--tile.case-card--mosaic-stat {
  justify-content: center;
  align-items: flex-start;
}

.case-card__tile-label--solo {
  margin: 0;
  padding-top: clamp(32px, 3.5vw, 40px);
  padding-right: clamp(48px, 11vw, 100px);
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 1.58;
}

.case-card--mosaic-report {
  justify-content: flex-start;
}

.case-card--mosaic-report .case-card__tile-label.case-card__tile-label--solo {
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: 0;
}

.case-card--mosaic-platforms {
  justify-content: space-between;
}

.case-card__platforms-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  column-gap: clamp(8px, 1.5vw, 14px);
  margin-top: auto;
  padding-top: 12px;
  min-width: 0;
  width: 100%;
}

/* SVG failuose Airbnb/Booking – juodi keliai; Facebook – juodas diskas + balta F */
.case-card__platforms-logo {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.94;
}

/* Bendras „vizualinis“ aukštis ~20px: Airbnb bazė, Booking truputį mažesnis, FB kompaktiškas */
.case-card__platforms-logo--airbnb {
  height: 20px;
  max-height: 20px;
}

.case-card__platforms-logo--booking {
  height: 17px;
  max-height: 17px;
}

.case-card__platforms-fb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.case-card__platforms-fb-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #000000;
  white-space: nowrap;
}

.case-card__platforms-logo--facebook {
  flex-shrink: 0;
  height: 18px;
  width: 18px;
  max-height: 18px;
  max-width: 18px;
  opacity: 1;
}

.showcase-mosaic-column .case-card--mosaic-cell {
  min-height: 0;
}

.showcase-mosaic-column--stack .case-card--mosaic-cell:not(:last-child) {
  margin-bottom: 5px;
}

.showcase-mosaic-column .case-card__tile-value {
  padding-right: 0;
}

@media (hover: hover) {
  .showcase-mosaic-column--stack:hover .case-card--mosaic-cell:not(:last-child) {
    margin-bottom: 0;
  }

  .showcase-mosaic-column--stack:hover .case-card--mosaic-cell:first-child {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .showcase-mosaic-column--stack:hover .case-card--mosaic-cell:last-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

.showcase-mosaic-column--stack:focus-within .case-card--mosaic-cell:not(:last-child) {
  margin-bottom: 0;
}

.showcase-mosaic-column--stack:focus-within .case-card--mosaic-cell:first-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.showcase-mosaic-column--stack:focus-within .case-card--mosaic-cell:last-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

@media (prefers-reduced-motion: reduce) {
  .showcase-mosaic-column .case-card--mosaic-cell {
    transition: none;
  }
}

.showcase-section__black-signals {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.showcase-section__black-signals li {
  width: 6px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.42) 100%
  );
  transform-origin: bottom center;
  animation: showcase-signal-bars 1.35s ease-in-out infinite;
}

.showcase-section__black-signals li:nth-child(2) {
  animation-delay: 0.18s;
  height: 22px;
}

.showcase-section__black-signals li:nth-child(3) {
  animation-delay: 0.36s;
  height: 28px;
}

@keyframes showcase-signal-bars {
  0%,
  100% {
    transform: scaleY(0.38);
    opacity: 0.45;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.case-card__tile-value {
  margin: 0;
  padding-right: clamp(48px, 12vw, 72px);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-dark);
}

/* Mozaikos ∞ / 100% — po bendro .case-card__tile-value, kad neperrašytų 17–22px */
.case-card__tile-value.case-card__tile-value--stat {
  margin: 0;
  padding: 0;
  text-align: left;
  width: 100%;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-dark);
}

.case-card__tile-label {
  margin: 0;
  margin-top: auto;
  width: 100%;
  max-width: none;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #666666;
}

.case-card__tile-label.case-card__tile-label--solo {
  margin-top: 0;
  flex: 0 1 auto;
}

.case-card__tile-index {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(0, 0, 0, 0.045);
  pointer-events: none;
  user-select: none;
}

.case-card {
  --cc-p: 1;
  border-radius: 14px;
  padding: 28px 26px;
  background: #ffffff;
  opacity: calc(0.18 + 0.82 * var(--cc-p));
  transform: translate3d(0, calc((1 - var(--cc-p)) * 44px), 0);
}

.case-card.case-card--tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  padding: 26px 22px 24px;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.case-card-stack {
  grid-row: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  align-self: stretch;
}

.case-card--metrics {
  position: relative;
  overflow: hidden;
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

.case-card--review {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
}

.case-card__deco {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(0, 0, 0, 0.04) 32%,
    transparent 32.5%,
    transparent 49%,
    rgba(0, 0, 0, 0.03) 49.5%,
    rgba(0, 0, 0, 0.03) 62%,
    transparent 62.5%
  );
  pointer-events: none;
}

.case-card__kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888888;
}

.case-card__metric {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
}

.case-card--metrics .case-card__metric:last-of-type {
  margin-bottom: 0;
}

.case-card-stack .case-card--metrics .case-card__kicker {
  margin-bottom: 10px;
}

.case-card-stack .case-card--metrics .case-card__metric {
  font-size: 19px;
  line-height: 1.4;
}

.case-card-stack .case-card--review .case-card__stars {
  margin-bottom: 8px;
}

.case-card-stack .case-card--review .case-card__quote {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.case-card__stars {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 2px;
  color: #16a34a;
}

.case-card__quote {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-dark);
}

.case-card__attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.case-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.case-card--score {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.case-score {
  box-sizing: border-box;
  width: 140px;
  height: 140px;
  margin: 12px auto 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 16px solid #f2f2f2;
  background: #ffffff;
}

.case-score__value {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-dark);
}

.case-card__title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
}

.case-card__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #666666;
  max-width: 280px;
}

.case-card--chart {
  --chart-p: 1;
  display: flex;
  flex-direction: column;
}

.case-chart__head {
  margin-bottom: 20px;
}

.case-chart__value {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.case-chart__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: #f0f0f0;
  color: var(--text-dark);
}

.case-chart__sub {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: #888888;
}

.case-chart__bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  flex: 1;
  min-height: 140px;
  margin-top: auto;
}

.case-chart__bar-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.case-chart__bar-tip {
  font-size: 9px;
  font-weight: 600;
  color: #9a9a9a;
  white-space: nowrap;
}

.case-chart__bar {
  width: 100%;
  max-width: 36px;
  height: var(--h);
  min-height: 8px;
  border-radius: 6px;
  background: #e4e4e4;
  transform-origin: bottom center;
  transform: scaleY(
    calc(0.04 + 0.96 * clamp(0, (var(--chart-p, 1) - 0) / 0.62, 1))
  );
}

.case-card--chart .case-chart__bar-wrap:nth-child(2) .case-chart__bar {
  transform: scaleY(
    calc(0.04 + 0.96 * clamp(0, (var(--chart-p, 1) - 0.09) / 0.62, 1))
  );
}

.case-card--chart .case-chart__bar-wrap:nth-child(3) .case-chart__bar {
  transform: scaleY(
    calc(0.04 + 0.96 * clamp(0, (var(--chart-p, 1) - 0.18) / 0.62, 1))
  );
}

.case-card--chart .case-chart__bar-wrap:nth-child(4) .case-chart__bar {
  transform: scaleY(
    calc(0.04 + 0.96 * clamp(0, (var(--chart-p, 1) - 0.27) / 0.62, 1))
  );
}

.case-card--chart .case-chart__bar-wrap:nth-child(5) .case-chart__bar {
  transform: scaleY(
    calc(0.04 + 0.96 * clamp(0, (var(--chart-p, 1) - 0.36) / 0.62, 1))
  );
}

.case-card--chart .case-chart__bar-wrap:nth-child(6) .case-chart__bar {
  transform: scaleY(
    calc(0.04 + 0.96 * clamp(0, (var(--chart-p, 1) - 0.45) / 0.62, 1))
  );
}

.case-chart__bar--peak {
  background: #000000;
}

.case-chart__bar-label {
  font-size: 10px;
  font-weight: 500;
  color: #9a9a9a;
}

@media (max-width: 1320px) {
  .showcase-section__intro {
    margin-bottom: 100px;
  }

  .showcase-section__split {
    column-gap: min(260px, 22vw);
    row-gap: 5px;
  }
}

@media (max-width: 1100px) {
  .showcase-section__headline {
    max-width: min(100%, 52rem);
    font-size: clamp(30px, 3.6vw, 48px);
  }

  .showcase-section__intro {
    margin-bottom: 100px;
  }

  .showcase-section__split {
    column-gap: min(200px, 18vw);
    row-gap: 5px;
  }
}

@media (max-width: 991px) {
  .showcase-section__intro {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 100px;
  }

  .showcase-section__headline {
    max-width: min(100%, 50rem);
    font-size: clamp(26px, 4.8vw, 40px);
  }

  .showcase-section__split {
    grid-template-columns: 1fr;
    row-gap: clamp(20px, 3vh, 36px);
  }

  .showcase-section__split-right {
    min-height: 0;
    height: auto;
  }

  .showcase-section__black {
    min-height: 280px;
    height: auto;
  }

  .showcase-section__cards {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .showcase-section__cards--mosaic {
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 5px;
    min-height: min(440px, 52vh);
  }

  .showcase-mosaic-column {
    height: auto;
    flex: none;
    width: 100%;
  }

  .showcase-mosaic-column--stack .case-card--mosaic-cell:first-child {
    flex: 0 0 auto;
    max-height: none;
    min-height: 120px;
  }

  .showcase-mosaic-column--stack {
    flex: 1 1 auto;
    min-height: min(280px, 38vh);
  }

  .showcase-section__cards--tiles {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 5px;
  }

  .case-card-stack {
    grid-row: auto;
  }
}

@media (max-width: 767px) {
  .showcase-section {
    padding: 56px var(--page-pad) 72px;
  }

  .showcase-section__intro {
    margin-bottom: 100px;
  }

  .showcase-section__headline {
    max-width: 100%;
    font-size: clamp(24px, 6.2vw, 34px);
  }

  .showcase-section__black {
    min-height: 220px;
    border-radius: 12px;
  }

  .case-card {
    border-radius: 12px;
    padding: 22px 20px;
  }

  .case-card.case-card--tile {
    padding: 22px 18px 20px;
  }

  .case-card__tile-label {
    padding-top: 12px;
  }

  .case-card__tile-index {
    font-size: clamp(44px, 14vw, 64px);
    right: 12px;
    top: 8px;
  }
}

/* Mažas juodas „+“ — DUK ir poraštės el. paštas */
.faq-item__icon,
.site-footer__email-icon {
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
  color: transparent;
  overflow: hidden;
}

.faq-item__icon::before,
.site-footer__email-icon::before {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -58%);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}

.faq-item__icon {
  transition: transform 0.32s ease;
}

/* Palyginimas — ilgalaikė vs BEINER */
.compare-section {
  position: relative;
  z-index: 910;
  padding: 96px var(--page-pad) 100px;
  background: #000000;
  color: #ececec;
}

.compare-section__inner {
  --compare-p: 1;
  --compare-head-line-p: 0;
  max-width: min(920px, var(--section-max-width));
  width: 100%;
  margin: 0 auto;
}

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

.compare-section__intro {
  margin-bottom: 40px;
  max-width: 38rem;
  opacity: calc(0.12 + 0.88 * var(--compare-p));
  transform: translate3d(0, calc((1 - var(--compare-p)) * 28px), 0);
}

.compare-section__eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.compare-section__eyebrow-mark {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f5f5;
  font-size: 0;
  line-height: 0;
  color: transparent;
  overflow: hidden;
  transform: rotate(calc((1 - var(--compare-p)) * -48deg))
    scale(calc(0.55 + 0.45 * var(--compare-p)));
  transform-origin: center center;
}

.compare-section__eyebrow-mark::before {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -58%);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #000000;
}

.compare-section__title {
  margin: 0 0 18px;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #ffffff;
}

.compare-section__title-break {
  display: block;
  margin-top: 0.12em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.compare-section__panel {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 36px;
}

.compare-section__table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}

.compare-section__th {
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  vertical-align: bottom;
  border-bottom: none;
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.08) calc(var(--compare-head-line-p, 0) * 100%),
      transparent calc(var(--compare-head-line-p, 0) * 100%)
    )
    left bottom / 100% 1px no-repeat,
    rgba(0, 0, 0, 0.35);
}

.compare-section__th--corner {
  width: 22%;
  min-width: 7rem;
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.08) calc(var(--compare-head-line-p, 0) * 100%),
      transparent calc(var(--compare-head-line-p, 0) * 100%)
    )
    left bottom / 100% 1px no-repeat,
    rgba(0, 0, 0, 0.45);
}

.compare-section__th--brand {
  color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.08) calc(var(--compare-head-line-p, 0) * 100%),
      transparent calc(var(--compare-head-line-p, 0) * 100%)
    )
    left bottom / 100% 1px no-repeat,
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.06);
}

.compare-section__row {
  --compare-row-p: 1;
  opacity: calc(0.1 + 0.9 * var(--compare-row-p));
  transform: translate3d(0, calc((1 - var(--compare-row-p)) * 20px), 0);
}

.compare-section__label {
  padding: 20px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.2);
  vertical-align: top;
  width: 22%;
  min-width: 7rem;
}

.compare-section__row:not(:last-child) .compare-section__label {
  border-bottom: none;
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(255, 255, 255, 0.07) calc(var(--compare-row-p, 1) * 100%),
      transparent calc(var(--compare-row-p, 1) * 100%)
    )
    left bottom / 100% 1px no-repeat,
    rgba(0, 0, 0, 0.2);
}

.compare-section__cell {
  padding: 20px 22px;
  vertical-align: top;
  color: rgba(255, 255, 255, 0.55);
}

.compare-section__cell--lt {
  background: transparent;
}

.compare-section__row:not(:last-child) .compare-section__cell--lt {
  border-bottom: none;
  background-color: transparent;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.07) calc(var(--compare-row-p, 1) * 100%),
    transparent calc(var(--compare-row-p, 1) * 100%)
  );
  background-size: 100% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
}

.compare-section__cell--win {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
}

.compare-section__row:not(:last-child) .compare-section__cell--win {
  border-bottom: none;
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(255, 255, 255, 0.07) calc(var(--compare-row-p, 1) * 100%),
      transparent calc(var(--compare-row-p, 1) * 100%)
    )
    left bottom / 100% 1px no-repeat,
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.06);
}

.compare-section__cell--win strong {
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.compare-section__per {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.35);
}

.compare-section__hint {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

.compare-section__cell--win .compare-section__hint {
  color: rgba(255, 255, 255, 0.5);
}

.compare-section__closing {
  margin: 0 0 22px;
  max-width: 36rem;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.62);
  opacity: calc(0.15 + 0.85 * var(--compare-p));
  transform: translate3d(0, calc((1 - var(--compare-p)) * 16px), 0);
}

.compare-section__closing em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
}

.btn--compare {
  display: inline-flex;
  padding: 0.72rem 1.5rem;
  border-radius: 999px;
  background: #f5f5f5;
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn--compare:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.calendly-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.calendly-modal.is-open {
  display: block;
}

.calendly-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(14, 14, 14, 0.28);
  backdrop-filter: blur(10px) saturate(1.04);
  -webkit-backdrop-filter: blur(10px) saturate(1.04);
}

.calendly-modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 980px);
  height: min(88vh, 760px);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.calendly-modal__panel .calendly-inline-widget {
  width: 100%;
  height: 100% !important;
  min-width: 320px;
}

.calendly-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #111;
  background: rgba(255, 255, 255, 0.92);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 767px) {
  .calendly-modal__panel {
    width: min(95vw, 520px);
    height: min(86vh, 720px);
    border-radius: 12px;
  }
}

@media (max-width: 767px) {
  .compare-section {
    padding: 72px var(--page-pad) 80px;
  }

  .compare-section__intro {
    margin-bottom: 28px;
  }

  .compare-section__panel {
    margin-left: calc(-1 * var(--page-pad));
    margin-right: calc(-1 * var(--page-pad));
    width: calc(100% + 2 * var(--page-pad));
    max-width: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .compare-section__table {
    font-size: 13px;
  }

  .compare-section__th,
  .compare-section__label,
  .compare-section__cell {
    padding: 14px 16px;
  }

  .compare-section__th {
    font-size: 10px;
  }

  .compare-section__closing {
    font-size: 15px;
  }
}

/* DUK — dviejų stulpelių akordeonas */
.faq-section {
  position: relative;
  z-index: 1;
  padding: 96px var(--page-pad) 110px;
}

.faq-section__inner {
  --faq-reveal-p: 1;
  max-width: var(--section-max-width);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px 72px;
  align-items: center;
}

.faq-section__intro {
  opacity: calc(0.14 + 0.86 * var(--faq-reveal-p));
  transform: translate3d(calc((1 - var(--faq-reveal-p)) * -32px), 0, 0);
}

.faq-section__title {
  margin: 0 0 24px;
  font-size: clamp(64px, 9.5vw, 118px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: #000000;
}

.faq-section__lead {
  margin: 0;
  max-width: 320px;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  color: #666666;
}

.faq-section__accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  --faq-p: 1;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  opacity: calc(0.12 + 0.88 * var(--faq-p));
  transform: translate3d(0, calc((1 - var(--faq-p)) * 22px), 0);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 22px 24px;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: inherit;
}

.faq-item.is-open .faq-item__trigger {
  padding-bottom: 14px;
}

.faq-item__question {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #000000;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s ease;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-item__answer {
  margin: 0;
  padding: 0 24px 24px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  color: #666666;
  max-width: 52ch;
}

@media (max-width: 991px) {
  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-section__lead {
    max-width: 42ch;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 64px var(--page-pad) 80px;
  }

  .faq-section__title {
    margin-bottom: 18px;
  }

  .faq-item__trigger {
    padding: 18px 18px 18px 20px;
  }

  .faq-item.is-open .faq-item__trigger {
    padding-bottom: 10px;
  }

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

  .faq-item__icon,
  .site-footer__email-icon {
    width: 16px;
    height: 16px;
  }

  .faq-item__icon::before,
  .site-footer__email-icon::before {
    font-size: 10px;
  }

  .faq-item__answer {
    padding: 0 20px 20px;
  }
}

/* Poraštė — virš compare (910) ir blur (900) tame pačiame kontekste */
.site-footer {
  position: relative;
  z-index: 920;
  margin: 0;
}

.site-footer__top {
  padding: 72px var(--page-pad) 80px;
  background: var(--page-bg);
}

.site-footer__inner {
  max-width: var(--section-max-width);
  width: 100%;
  margin: 0 auto;
}

.site-footer__top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px 56px;
  align-items: start;
}

.site-footer__column {
  min-width: 0;
}

.site-footer__top-grid > .site-footer__column:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__plus {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  color: #b0b0b0;
}

.site-footer__phone {
  display: block;
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: #000000;
}

.site-footer__email {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  text-decoration: none;
}

.site-footer__email:hover {
  opacity: 0.75;
}

.site-footer__email-text {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.site-footer__column-title {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888888;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.site-footer__links a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: #000000;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.site-footer__links a:hover {
  border-bottom-color: rgba(0, 0, 0, 0.35);
}

.site-footer__links a:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 3px;
  border-radius: 2px;
}

.site-footer__social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
}

.site-footer__social a:hover {
  opacity: 0.55;
}

.site-footer__external {
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.65;
}

.site-footer__bottom {
  padding: 52px var(--page-pad) calc(52px + env(safe-area-inset-bottom, 0px));
  background: #000000;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto minmax(0, max-content);
  gap: 40px 48px;
  align-items: start;
}

.site-footer__legal {
  font-size: 11px;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__legal p {
  margin: 0 0 16px;
}

.site-footer__legal p:last-child {
  margin-bottom: 0;
}

.site-footer__map-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__map-link:hover {
  color: #ffffff;
}

.site-footer__policies {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  justify-content: center;
  padding-top: 8px;
}

.site-footer__policies a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.site-footer__policies a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}

.site-footer__policies a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  justify-self: end;
}

.site-footer__brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
}

.site-footer__brand-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #ffffff;
}

.site-footer__brand-line {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.48);
}

a.site-footer__brand-line {
  text-decoration: none;
}

a.site-footer__brand-line:hover {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a.site-footer__brand-line:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  border-radius: 3px;
}

@media (max-width: 991px) {
  .site-footer__top-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__column:first-child {
    grid-column: 1 / -1;
  }

  .site-footer__bottom-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-footer__policies {
    justify-content: flex-start;
  }

  .site-footer__brand {
    justify-self: start;
    align-items: flex-start;
  }

  .site-footer__brand-copy {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .site-footer__top {
    padding: 52px var(--page-pad) 56px;
  }

  .site-footer__top-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-footer__column:first-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    padding: 40px var(--page-pad) calc(44px + env(safe-area-inset-bottom, 0px));
  }
}

/* Apatinis blur: virš daugumos sekcijų (z-index auto), žemiau .hero-section (950), .compare-section (910), .site-footer (920) */
.viewport-blur-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(15vh, 120px);
  z-index: 905;
  pointer-events: none;
  backdrop-filter: blur(22px) saturate(1.06);
  -webkit-backdrop-filter: blur(22px) saturate(1.06);
  mask-image: linear-gradient(
    to top,
    #000000 0%,
    #000000 18%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to top,
    #000000 0%,
    #000000 18%,
    transparent 100%
  );
  background: linear-gradient(
    to top,
    rgba(245, 245, 245, 0.72) 0%,
    rgba(245, 245, 245, 0.35) 45%,
    transparent 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .viewport-blur-footer {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

/* ——— Privatumo politikos puslapis (be Locomotive) ——— */
body.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-page__main {
  flex: 1 0 auto;
  width: 100%;
  padding: calc(var(--header-h) + 40px)
    clamp(var(--page-pad), 5vw, 64px) 64px;
  box-sizing: border-box;
}

.legal-page__inner {
  max-width: none;
  width: 100%;
  margin: 0;
}

.legal-page__panel {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Kaip ref. nuotraukoje: didelė antraštė per plotį kairėje; žemiau 2 stulpeliai —
   siauras „Atnaujinta“ kairėje, tekstas dešinėje (kairė lygiuotė bloke) */
.legal-page__title {
  margin: 200px 0 clamp(40px, 6vw, 96px);
  width: 100%;
  max-width: none;
  min-height: 0;
  display: block;
  text-align: left;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(56px, 7.5vw, 96px);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.02;
  color: var(--text-dark);
}

.legal-page__grid {
  display: grid;
  grid-template-columns: minmax(100px, clamp(128px, 20vw, 220px)) minmax(0, 1fr);
  column-gap: clamp(20px, 3vw, 40px);
  row-gap: 0;
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0;
}

.legal-page__meta {
  margin: 0;
  padding-top: 4px;
  width: 100%;
  max-width: 30ch;
  text-align: left;
  position: sticky;
  top: calc(var(--header-h) + 14px);
}

.legal-page__updated-label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.legal-page__updated-date {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-dark);
}

.legal-page__content {
  width: 100%;
  max-width: min(640px, 100%);
  min-width: 0;
  margin: 0;
  justify-self: start;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  text-align: left;
}

.legal-page__content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page__content a:hover {
  opacity: 0.75;
}

.legal-page__lead {
  width: 100%;
  margin: 0 0 100px;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.5;
  letter-spacing: -0.018em;
  color: var(--text-dark);
  text-align: left;
}

.legal-page__h2 {
  margin: 36px 0 14px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-dark);
  text-align: left;
}

.legal-page__h2:first-of-type {
  margin-top: 0;
}

.legal-page__h3 {
  margin: 22px 0 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--text-dark);
  text-align: left;
}

.legal-page__content > p:not(.legal-page__lead) {
  margin: 0 0 14px;
  text-align: left;
}

.legal-page__list {
  margin: 0 0 18px;
  padding-left: 1.25rem;
  list-style-position: outside;
  text-align: left;
}

.legal-page__list li {
  margin-bottom: 8px;
  text-align: left;
}

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

.legal-page__list--contact {
  list-style: none;
  padding-left: 0;
  list-style-position: unset;
}

.legal-page__list--contact li {
  margin-bottom: 10px;
  text-align: left;
}

@media (max-width: 767px) {
  .legal-page__main {
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 48px;
  }

  .legal-page__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 20px;
  }

  .legal-page__title,
  .legal-page__grid,
  .legal-page__content,
  .legal-page__lead {
    width: 100%;
    max-width: 100%;
  }

  .legal-page__title {
    font-size: clamp(40px, 12vw, 56px);
    margin-top: 48px;
    margin-bottom: 28px;
  }

  .legal-page__meta {
    position: static;
    max-width: none;
    padding-top: 0;
    padding-bottom: 4px;
  }

  .legal-page__lead {
    margin-bottom: 100px;
    font-size: clamp(18px, 4.2vw, 24px);
    line-height: 1.5;
  }
}
