/* ==========================================================================
   pievusmulkinimas.lt — stiliai (Stilius C: žalias blokas + pjovimo ruožai)
   Paletė 60-30-10 · Anton (antraštės) + DM Sans (tekstas)
   ========================================================================== */

:root {
  /* Spalvos */
  --bg:          #FAFAF8;   /* ~60% neutralus pagrindas */
  --surface:     #ECEEE9;   /* pilkos „surface" zonos */
  --ink:         #15181A;   /* pagrindinis tekstas */
  --ink-muted:   #4A4F4B;   /* antrinis tekstas (≥4.5:1 ant bg) */
  --ink-faint:   #5A5F5A;   /* šviesiausias leistinas ant surface */
  --green:       #2D5A3D;   /* ~30% akcentas */
  --green-row:   #356544;   /* ruožų antra juosta */
  --green-dark:  #234A31;   /* footer / tamsesnis */
  --on-green:    #DCE6DF;   /* tekstas ant žalio */
  --amber:       #C75A12;   /* ~10% CTA */
  --amber-dark:  #A8480D;   /* CTA hover/active */
  --amber-soft:  #F0C89A;   /* eyebrow ant tamsaus */

  /* Tipografija */
  --font-display: 'Anton', Impact, system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Išdėstymas */
  --maxw: 1120px;
  --pad: clamp(20px, 5vw, 48px);
  --radius: 10px;
  --header-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

/* --- Bendri komponentai ------------------------------------------------- */

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

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 12px;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
}

h2.display { font-size: clamp(26px, 4vw, 38px); }
h3 { font-size: 17px; font-weight: 500; margin: 0 0 6px; }

.lead { font-size: clamp(15px, 1.8vw, 18px); color: var(--ink-muted); max-width: 60ch; }

/* Bazinis .btn – neutralus, be geometrijos */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .15s ease, transform .05s ease;
}
.btn:active { transform: scale(.98); }

.btn--amber { background: var(--amber); color: #fff; }
.btn--amber:hover { background: var(--amber-dark); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }

/* Hero mygtukas – lygiagretainis */
.hero__cta-btn {
  align-self: flex-start;
  background: none;
  border-radius: 0;
  padding-left: clamp(28px, 2.5vw, 40px);
  padding-right: clamp(28px, 2.5vw, 40px);
}

.hero__cta-btn:hover { background: none; }

.hero__cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--amber);
  transform: skewX(-45deg);
  z-index: -1;
  transition: background-color .15s ease;
}

.hero__cta-btn:hover::before { background: var(--amber-dark); }

/* Kontaktų sekcija – čia paliekame lygiagretainį per ::before */
.contact .btn {
  position: relative;
  isolation: isolate;
  background: transparent;
  border: 0;
  padding: 14px 40px;
  border-radius: 0;
}
.contact .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: skewX(-45deg);
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background-color .15s ease, border-color .15s ease;
}
.contact .btn--amber::before { background: var(--amber); }
.contact .btn--amber:hover::before { background: var(--amber-dark); }
.contact .btn--ghost::before { background: transparent; border-color: rgba(255,255,255,.45); }
.contact .btn--ghost:hover::before { background: rgba(255,255,255,.12); }

/* „Kaip vyksta" mygtukas – irgi lygiagretainis (šalia įstrižų nuotraukų) */
.order .btn {
  position: relative;
  isolation: isolate;
  background: transparent;
  border: 0;
  padding: 14px 40px;
  border-radius: 0;
}
.order .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: skewX(-45deg);
  border-radius: 2px;
  background: var(--amber);
  transition: background-color .15s ease;
}
.order .btn:hover::before { background: var(--amber-dark); }

/* --- Skip link ---------------------------------------------------------- */
.skip-link {
  position: absolute; left: 8px; top: -48px;
  background: var(--amber); color: #fff;
  padding: 10px 16px; border-radius: 8px; z-index: 100;
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; }

/* --- Antraštė / navigacija ---------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--green);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: var(--header-h);
  position: relative;
}
.brand {
  font-family: var(--font-display);
  font-size: 20px; color: #fff; text-decoration: none;
  text-transform: uppercase; letter-spacing: .01em;
}
.nav__links {
  display: flex; align-items: center; gap: 22px;
  list-style: none; margin: 0; padding: 0;
}
.nav__links a {
  text-decoration: none; color: var(--on-green);
  font-weight: 500; font-size: 14px;
}
.nav__links a:hover { color: #fff; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__cta { padding: 9px 16px; font-size: 14px; }
.nav__toggle {
  display: none;
  width: 42px; height: 38px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(255,255,255,.4);
  color: #fff; border-radius: 8px; cursor: pointer;
}
.nav__toggle .bars,
.nav__toggle .bars::before,
.nav__toggle .bars::after {
  display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px;
}
.nav__toggle .bars { position: relative; }
.nav__toggle .bars::before,
.nav__toggle .bars::after { content: ""; position: absolute; left: 0; }
.nav__toggle .bars::before { top: -6px; }
.nav__toggle .bars::after  { top: 6px; }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--ink);
}

/* Dešinė – pilna paveikslėlio zona */
.hero__right {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__tint {
  position: absolute;
  inset: 0;
  background: rgba(35, 74, 49, 0.72);
}

/* Paslaugų nuorodos dešinėje pusėje */
.hero__services {
  position: absolute;
  right: clamp(28px, 5vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
}

.hero__svc {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(15px, 1.6vw, 18px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.35);
  min-width: 230px;
  transition: color .15s;
}
.hero__svc:first-child { border-top: 1px solid rgba(255,255,255,.35); }
.hero__svc:hover { color: var(--amber-soft); }

.hero__svc-chev {
  color: var(--amber);
  font-size: 13px;
  flex-shrink: 0;
  line-height: 1;
}

/* @media (max-width: 1024px) {
  .hero__services { display: none; }
} */

/* Kairė – balta įstriža plokštė */
.hero__left {
  --title-w: 640px;   /* kiek pločio reikia antraštei – derinti pagal Anton */
  --cut: 48vh;        /* 45° įstrižainės kaina ties antrašte (atstumas nuo viršaus iki antraštės apačios) */
  position: relative;
  z-index: 2;
  width: min(94vw, calc(var(--pad) + var(--title-w) + var(--cut)));
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 80px) clamp(36px, 5vw, 64px) clamp(48px, 6vw, 80px) var(--pad);
}

.hero__left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: skewX(-45deg);
  transform-origin: top left;
  z-index: -1;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(10px, 1.5vw, 16px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 18px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8.5vw, 88px);
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 28px;
}

.hero__title-line {
  position: relative;
  display: inline-block;
  line-height: 1.05;
  padding: 6px 0.5em 12px 0.5em;   /* horizontalus oras, kad pasvirimas nekirstų teksto */
  margin-left: -0.1em;             /* kairės kraštinės vizualiai lygiuojasi */
}

.hero__title-chev {
  position: relative;
}
.hero__title-chev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;                
  width: 3em;           
  height: 1.3em;
  background-color: var(--amber);
  transform: translateY(-50%) skew(-45deg);
  z-index: -1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;   /* neleidžia keistai lūžti */
}

.hero__body { margin-bottom: 28px; }

.hero__subtitle {
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--ink);
}

.hero__desc {
  font-size: 15px;
  color: var(--ink-muted);
  max-width: 44ch;
  margin: 0;
  line-height: 1.7;
}

/* --- Raktažodžių juosta (CSS marquee) ----------------------------------- */
.ticker {
  background: var(--ink);
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex; gap: 0;
  animation: ticker 34s linear infinite;
  will-change: transform;
}
.ticker__track span {
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--amber-soft);
  padding: 10px 0; white-space: nowrap;
}
@keyframes ticker { to { transform: translateX(-25%); } }

/* --- service sekcija (McAninch stilius) ------------------------------- */
.service {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* Turinys (kairė pusė) */
.service__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: clamp(48px, 8vw, 80px) 0;
  margin-left: clamp(30px, 4vw, 360px);
  max-width: 520px;
}

@media (min-width: 1100px) {
  .service__content { margin-left: 14%; }
}

.service__inner {
  position: relative;
  opacity: 0;
  transform: translateX(-2em);
  transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1),
              transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.service.is-active .service__inner {
  opacity: 1;
  transform: translateX(0);
}

/* Antraštė su geltonuoju akcentu */
.service__heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 24px;
  position: relative;
}

.service__heading-chev {
  position: relative;
  white-space: nowrap;
}
.service__heading-chev::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 41%;
  height: 125%;
  width: 300%;
  background-color: var(--amber);
  transform: skew(-45deg);
  transform-origin: top;
  z-index: -1;
}

/* Tekstas */
.service__text p {
  margin: 0 0 8px;
  color: var(--ink-muted);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
}
.service__text p strong {
  color: var(--ink);
  font-size: 1.1em;
}

/* Įstrižos nuotraukų dėžutės */
.service__diag {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.service__diag-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

/* Įstrižos nuotraukos kaip <img> (vietoj background-image) */
.service__diag-img,
.order__diag-img {
  height: 100%;
  max-width: none;          /* atšaukia global img { max-width:100% } – kad veiktų width:200% */
  object-fit: cover;        /* atstoja background-size: cover */
  object-position: center;  /* atstoja background-position: center */
  display: block;
}

/* Apatinė kairė nuotrauka */
.service__diag--bl {
  bottom: 0;
  left: 0;
  width: 35%;
  height: 30%;
  transform-origin: top;
  transform: translateX(-100%) skew(-45deg);
  transition-duration: 1s;
}
.service__diag--bl .service__diag-img {
  width: 100%;
  height: 100%;
  transform: skew(45deg);
  transform-origin: top;
  transition-duration: 1s;
}
.service.is-active .service__diag--bl {
  transform: translateX(0%) skew(-45deg);
}
.service.is-active .service__diag--bl .service__diag-img {
  transform: skew(45deg);
}

/* Dešinės nuotraukos (didelės) */
.service__diag--br {
  right: 0;
  top: 0;
  width: 46%;
  height: 98%;
  transform-origin: bottom;
  transform: translateX(100%) skew(-45deg);
  transition-duration: 1s;
}
.service__diag--br .service__diag-img {
  width: 200%;
  min-height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  transform-origin: bottom;
  transform: translateX(-50%) skew(45deg);
  transition-duration: 1s;
}
.service.is-active .service__diag--br {
  transform: translateX(0%) skew(-45deg);
}
.service.is-active .service__diag--br .service__diag-img {
  transform: translateX(0%) skew(45deg);
}

/* Offset variacija (antra nuotrauka) */
.service__diag--offset {
  right: 10%;
  width: 52%;
  height: 90%;
  transform: translateX(120%) skew(-45deg);
  transition-duration: 1s;
}
.service__diag--offset .service__diag-img {
  width: 200%;
  height: 134%;
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: bottom;
  transform: translateX(-55%) skew(45deg);
  transition-duration: 1s;
}
.service.is-active .service__diag--offset {
  transform: translateX(0%) skew(-45deg);
}
.service.is-active .service__diag--offset .service__diag-img {
  transform: translateX(0%) skew(45deg);
}

/* Geltona permatomumo sluoksnis */
.service__diag--overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(199, 90, 18, 0.55);
  z-index: 2;
}
.service__diag--overlay {
  transition-duration: .75s;
}
.service__diag--overlay .service__diag-img {
  transition-duration: .75s;
}

/* Mobilus */
@media (max-width: 768px) {
  .service { min-height: auto; }

  .service__content {
    min-height: auto;
    margin-left: var(--pad);
    margin-right: var(--pad);
    max-width: 100%;
    padding: clamp(200px, 40vw, 300px) 0 clamp(48px, 8vw, 64px);
  }

  .service__dots { display: none; }

  .service__diag--bl { display: none; }

  .service__diag--br {
    width: 100%;
    height: 45%;
    top: 0;
    right: 0;
    transform: translateX(100%) skew(-45deg);
  }

  .service__diag--offset {
    width: 100%;
    height: 40%;
    right: 0;
    transform: translateX(120%) skew(-45deg);
  }

  .service__diag--overlay {
    width: 100%;
    height: 35%;
  }
}

/* --- order sekcija (McAninch stilius) ----------------------------------- */
.order {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* Turinys (kairė pusė) */
.order__content {
  position: relative;
  top: clamp(0px, 4vw, 60px);
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: clamp(48px, 8vw, 80px) 0;
  margin-left: 12%;
  max-width: 520px;
}

.order__inner {
  position: relative;
  opacity: 0;
  transform: translateX(-2em);
  transition: opacity .5s cubic-bezier(0.77, 0, 0.175, 1),
              transform .5s cubic-bezier(0.77, 0, 0.175, 1);
}
.order.is-active .order__inner {
  opacity: 1;
  transform: translateX(0);
}

/* Antraštė su geltonuoju akcentu */
.order__heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 24px;
  position: relative;
}
.order__heading-chev {
  position: relative;
  white-space: nowrap;
}
.order__heading-chev::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 41%;
  height: 125%;
  width: 300%;
  background-color: var(--amber);
  transform: skew(-45deg);
  transform-origin: top;
  z-index: -1;
}

/* Tekstas */
.order__text p {
  margin: 0 0 10px;
  color: var(--ink-muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
}
.order__text p strong {
  color: var(--ink);
  font-size: 1.1em;
}
.order__step-num {
  font-family: var(--font-display);
  color: var(--amber);
  font-size: 1.1em;
  margin-right: 6px;
}
.order__cta {
  margin-top: 20px;
}

/* Dešinė didelė nuotrauka */
.order__diag--br {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  transform-origin: bottom;
  transform: translateX(100%) skew(-45deg);
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.order__diag--br .order__diag-img {
  width: 200%;
  min-height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: right;
  transform: translateX(-50%) skew(45deg);
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.order.is-active .order__diag--br {
  transform: translateX(0%) skew(-45deg);
}
.order.is-active .order__diag--br .order__diag-img {
  transform: translateX(0%) skew(45deg);
}

/* Geltona permatomumo sluoksnis */
.order__diag--overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(199, 90, 18, 0.55);
  z-index: 2;
}

/* Viršutinės 3 mini nuotraukos (tripple) */
.order__tripple {
  position: absolute;
  top: 0;
  z-index: 1;
  overflow: hidden;
  height: 24vw;
  width: 25%;
  transform: translateX(100%) skew(-45deg);
  transition: transform cubic-bezier(0.77, 0, 0.175, 1);
}
.order__tripple-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform cubic-bezier(0.77, 0, 0.175, 1);
}
.order__tripple-inner .order__diag-img {
  width: 200%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: bottom;
  transform: skew(45deg);
}

.order__tripple--1 {
  right: 54%;
  z-index: 2;
  transition-duration: .5s;
}
.order__tripple--1 .order__tripple-inner { transition-duration: .5s; }

.order__tripple--2 {
  right: 27%;
  z-index: 3;
  transition-duration: 1s;
}
.order__tripple--2 .order__tripple-inner { transition-duration: 1s; }

.order__tripple--3 {
  right: 0%;
  z-index: 3;
  transition-duration: .25s;
}
.order__tripple--3 .order__tripple-inner { transition-duration: .25s; }

/* Aktyvus — tripple animacija */
.order.is-active .order__tripple {
  transform: translateX(0%) skew(-45deg);
}
.order.is-active .order__tripple-inner {
  transform: translateX(0%);
}

/* Mobilus */
@media (max-width: 768px) {
  .order { min-height: auto; }

  .order__content {
    min-height: auto;
    margin-left: var(--pad);
    margin-right: var(--pad);
    max-width: 100%;
    padding: clamp(200px, 40vw, 300px) 0 clamp(48px, 8vw, 64px);
  }

  .order__diag--br {
    display: none;
  }

  .order__tripple {
    height: 28%;
    width: 38%;
  }
  .order__tripple--1 { right: auto; left: 0; }
  .order__tripple--2 { right: auto; left: 30%; }
  .order__tripple--3 { right: 0; }
}

@media (min-width: 769px) {
  .order__content {
    align-items: flex-start;          /* nebe vertikalus centras */
    padding-top: calc(24vw + 40px);   /* 24vw = .order__tripple aukštis + tarpas */
  }
}

@media (max-width: 1024px) {
  .order,
  .order__content {
    min-height: auto;
  }
}

/* --- Sekcijos ----------------------------------------------------------- */
.section { padding: clamp(44px, 7vw, 80px) 0; scroll-margin-top: calc(var(--header-h) + 12px); }
.section--surface { background: var(--surface); }
.section__head { max-width: 60ch; margin-bottom: 28px; }

/* Paslaugos */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.card {
  background: #fff;
  border: 1px solid rgba(21,24,26,.10);
  border-radius: 12px;
  padding: 22px;
}
.card .icon { width: 28px; height: 28px; color: var(--green); }
.card h3 { margin-top: 12px; }
.card p { margin: 0; color: var(--ink-muted); font-size: 15px; }

/* Deklaruojamos — amber juosta */
.declared { background: var(--amber); color: #fff; }
.declared .container { padding-block: clamp(36px, 6vw, 56px); }
.declared h2 { color: #fff; }
.declared p { color: #fff; max-width: 62ch; margin: 12px 0 0; }

/* Kaip vyksta — sunumeruoti žingsniai (tikras procesas) */
.steps { counter-reset: step; display: grid; gap: 14px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
  padding: 18px 0; border-top: 1px solid rgba(21,24,26,.12);
}
.step:first-child { border-top: none; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 22px; color: var(--amber);
  line-height: 1;
}
.step h3 { margin: 0 0 4px; }
.step p { margin: 0; color: var(--ink-muted); font-size: 15px; }

/* Kaina */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  border: 1px solid rgba(21,24,26,.12);
  overflow: hidden;
}
.pricing-cell {
  padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 28px);
  background: #fff;
}
.pricing-divider {
  background: rgba(21,24,26,.10);
}
.pricing-val {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  color: var(--green);
  margin: 0 0 6px;
  line-height: 1;
}
.pricing-sub {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.5;
}
.pricing-sub a {
  color: var(--amber);
  font-weight: 500;
}
.pricing-footnote {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 12px 0 0;
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-divider {
    height: 1px;
    width: auto;
  }
}

/* ==========================================================================
   #regionas — žemėlapio sekcija (pridėti į styles.css, pakeičia .region__towns)
   Naudoja esamus :root kintamuosius (--green, --amber, --ink, --ink-muted...)
   ========================================================================== */

/* Dviejų stulpelių tinklelis: tekstas | žemėlapis */
.region-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 880px) {
  .region-grid { grid-template-columns: 0.82fr 1fr; }
}

.region-grid__text .lead { margin-top: 14px; }

/* „iki 50 km" eilutė su pin ikona */
.region-grid__radius {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
}
.region-grid__radius strong { color: var(--ink); white-space: nowrap; }
.region-grid__radius-icon {
  flex: none;
  color: var(--green);
  margin-top: 1px;
}
.region-grid__radius-icon svg { width: 20px; height: 20px; display: block; }

.region-grid__cta { margin-top: 24px; align-self: flex-start; }

/* --- Žemėlapis ----------------------------------------------------------- */
.region-grid__map {
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
}
.region-map__svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Rajono plotas (žalsva „žemė") + kraštinė brandos žalia */
.region-map__land {
  fill: var(--on-green);
  stroke: var(--green);
  stroke-width: 2;
  stroke-linejoin: round;
}

/* Vandens ženklas plote */
.region-map__wm {
  font-family: var(--font-display);
  fill: var(--green-dark);
  opacity: 0.6;
  letter-spacing: 0.08em;
}

/* Miestų etiketės */
.region-map__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  fill: var(--ink-muted);
}
.region-map__label--hub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  fill: var(--ink);
}

/* Žymekliai */
.region-map__dot      { fill: var(--green); }
.region-map__dot--hub { fill: var(--amber); }
.region-map__ring      { stroke: var(--green); fill: none; stroke-width: 1.1; }
.region-map__ring--hub { stroke: var(--amber); fill: none; stroke-width: 1.4; }

/* Pulsavimo animacija */
.region-map__pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: region-pulse 2.4s ease-out infinite;
}
.region-map__pulse--2 { animation-delay: 0.8s; }
.region-map__pulse--3 { animation-delay: 1.6s; }

@keyframes region-pulse {
  0%   { r: 7px;  opacity: 0.55; }
  100% { r: 25px; opacity: 0; }
}

/* --- Legenda po žemėlapiu ------------------------------------------------ */
.region-map__legend {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: center;
  font-size: 13px;
  color: var(--ink-muted);
}
.region-map__legend li { display: flex; align-items: center; gap: 8px; }
.region-map__legend-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--green); flex: none;
}
.region-map__legend-dot--hub { width: 13px; height: 13px; background: var(--amber); }

/* --- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .region-map__pulse { animation: none; opacity: 0; }
}


/* Darbai */
.works {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px;
}
.works img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; height: auto; clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%); }

/* DUK — <details> akordeonas, JS nereikia */
.faq { max-width: 760px; }
.faq details {
  border-top: 1px solid rgba(21,24,26,.14);
}
.faq details:last-child { border-bottom: 1px solid rgba(21,24,26,.14); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 0; font-weight: 500; font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { color: var(--ink-faint); font-size: 18px; flex: none; transition: transform .15s ease; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq details p { margin: 0 0 18px; color: var(--ink-muted); }

/* Kontaktai */
.contact { background: var(--green); color: var(--on-green); }
.contact .container { padding-block: clamp(44px, 7vw, 72px); text-align: center; }
.contact h2 { color: #fff; }
.contact__cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }
.contact a.plain { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.contact .eyebrow { color: var(--amber-soft); }
.contact .lead { color: var(--on-green); margin-inline: auto; }
.callbar svg { width: 20px; height: 20px; }

/* Footer */
.site-footer { background: var(--green-dark); color: var(--on-green); }
.site-footer .container {
  padding-block: 28px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.site-footer a { color: #fff; }

.backlink {
  text-decoration: none;
}
.backlink:hover {
  text-decoration: underline;
  color: var(--amber-soft);
}

/* --- Mobile „sticky" skambučio juosta ----------------------------------- */
.callbar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--amber);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: #fff; text-decoration: none; font-weight: 500;
  padding: 14px; font-size: 16px;
}

/* --- Fokuso matomumas (a11y) -------------------------------------------- */
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px; }
.site-header :focus-visible, .hero :focus-visible, .contact :focus-visible { outline-color: #fff; }

/* --- Responsyvumas ------------------------------------------------------ */
@media (max-width: 860px) {
  .works { grid-template-columns: repeat(1, 1fr); }
}

@media (max-width: 1000px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--green);
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 6px var(--pad) 14px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav__links a { display: block; padding: 12px 0; }
}

@media (max-width: 768px) {
  .callbar { display: block; }
  body { padding-bottom: 56px; } /* vietos „sticky" juostai */
  .site-footer { margin-bottom: 0; }
}

@media (max-width: 800px) {
    /* Hero: mobilus – pilnas plotis, paveikslėlis fone */
  .hero { min-height: 100dvh; }
  .hero__left {
    width: 100%;
    min-height: 100dvh;
    padding: clamp(40px, 8vw, 60px) var(--pad) clamp(72px, 14vw, 100px);
  }
  .hero__left::before {
    display: none;
    z-index: -1;
  }

  .hero__tint    { background: rgba(21, 24, 26, .58); }
  .hero__eyebrow  { color: var(--amber-soft); }
  .hero__title    { color: #fff; }
  .hero__subtitle { color: #fff; }
  .hero__desc     { color: rgba(255, 255, 255, .9); }
  .hero__services { display: none; }
}

@media (min-width: 800px) and (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero__left {
    --cut: 320px;                       /* PX, ne vh! atstumas nuo hero viršaus iki hero__desc apačios */
    min-height: 100dvh;                    /* hero aukštis pagal turinį, nebe 100dvh */
    justify-content: flex-start;         /* turinys viršuje, kur balta plačiausia (ne centre) */
    padding-top: clamp(64px, 9vh, 110px);
    padding-bottom: clamp(72px, 12vh, 120px);
  }
  .hero__desc { max-width: 32ch; }       /* siauresnis stulpelis – telpa net giliau */
}

@media (max-width: 460px) {
  .works { grid-template-columns: 1fr; }
  .nav__cta { display: none; }
}

/* --- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track { animation: none; }
  .btn, .faq summary .plus { transition: none; }
}
