/* =========================================================================
   Movesta — dizaino sistema
   Šviesus minimalizmas · Space Grotesk + Inter · mėlyna/oranžinė
   ========================================================================= */

:root {
  /* Popierius ir linijos */
  --paper: #ffffff;
  --paper-2: #f6f6f2;
  --paper-3: #eeeee7;
  --line: #e2e2da;
  --line-strong: #cfcfc4;

  /* Rašalas */
  --ink: #0c0e14;
  --ink-2: #3c414d;
  --muted: #6e7482;

  /* Prekės ženklas */
  --blue: #1637d8;
  --blue-deep: #0a1c66;
  --blue-tint: #edf1ff;
  --orange: #f97d0a;
  --orange-dark: #dd6b00;
  --orange-tint: #fff3e6;

  /* Tipografija */
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.875rem);
  --step-0: clamp(1rem, 0.97rem + 0.14vw, 1.0625rem);
  --step-1: clamp(1.125rem, 1.07rem + 0.28vw, 1.3125rem);
  --step-2: clamp(1.375rem, 1.25rem + 0.6vw, 1.75rem);
  --step-3: clamp(1.75rem, 1.5rem + 1.2vw, 2.5rem);
  --step-4: clamp(2.125rem, 1.6rem + 2.4vw, 3.5rem);
  --step-5: clamp(2.5rem, 1.75rem + 3vw, 4.375rem);

  /* Erdvė */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --wrap: 1240px;
  --section-y: clamp(4.5rem, 9vw, 8.5rem);

  --radius: 6px;
  --radius-lg: 14px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ------------------------------------------------------------------ reset */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--blue); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 0.75rem 1.25rem; font-size: var(--step--1);
}
.skip-link:focus { left: 0; }

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

.section { padding-block: var(--section-y); }

/* ------------------------------------------------------------- animacijos */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------------------------------------------------------------- header  */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 78px;
}

.logo { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ink); }
.logo__mark { width: 30px; height: 30px; color: var(--blue); flex: none; transition: transform 0.4s var(--ease); }
.logo:hover .logo__mark { transform: translateY(-2px) rotate(-4deg); }
.logo__text {
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.nav { display: flex; align-items: center; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav__sub, .nav__mobile-actions { display: none; }

.nav__link {
  position: relative; font-size: var(--step--1); font-weight: 500;
  letter-spacing: 0.02em; color: var(--ink-2); padding-block: 0.4rem;
  transition: color 0.25s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--blue); transition: right 0.35s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after, .nav__link.is-active::after { right: 0; }
.nav__link.is-active { color: var(--ink); }

.site-header__actions { display: flex; align-items: center; gap: 1rem; }

.header-phone {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: var(--step--1); font-weight: 500; color: var(--ink-2);
  transition: color 0.25s var(--ease);
}
.header-phone svg { width: 17px; height: 17px; color: var(--blue); }
.header-phone:hover { color: var(--ink); }

.burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: transparent; border-radius: var(--radius); cursor: pointer;
  padding: 0; place-items: center; gap: 5px; flex-direction: column;
}
.burger span {
  display: block; width: 18px; height: 1.6px; background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* --------------------------------------------------------------- mygtukai */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-body); font-size: var(--step--1); font-weight: 600;
  letter-spacing: 0.01em; padding: 0.9rem 1.5rem; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn .i-arrow { width: 17px; height: 17px; transition: transform 0.3s var(--ease); }
.btn:hover .i-arrow { transform: translateX(4px); }

.btn--accent { background: var(--orange); color: #fff; }
.btn--accent:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--blue); transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: var(--paper-2); }

.btn--small { padding: 0.6rem 1.1rem; background: var(--ink); color: #fff; }
.btn--small:hover { background: var(--blue); }

.contact-chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.65rem 1.05rem; border: 1px solid var(--line);
  border-radius: 100px; font-size: var(--step--1); font-weight: 500;
  background: var(--paper); transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.contact-chip svg { width: 16px; height: 16px; color: var(--blue); }
.contact-chip:hover { border-color: var(--ink); background: var(--paper-2); }

/* ------------------------------------------------------------------ hero  */

.hero { padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3.5rem, 7vw, 6.5rem); position: relative; }
.hero::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 70%;
  background: radial-gradient(60% 100% at 78% 20%, var(--blue-tint) 0%, rgba(237, 241, 255, 0) 70%);
  pointer-events: none; z-index: -1;
}

.hero__inner {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}

.hero__kicker {
  font-size: var(--step--1); font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.hero__kicker::before {
  content: ''; width: 42px; height: 1.5px; background: var(--blue); flex: none;
}

.hero__title { font-size: var(--step-5); margin-bottom: 1.4rem; }
.hero__title-accent { color: var(--blue-deep); }

.hero__text {
  font-size: var(--step-1); color: var(--ink-2); max-width: 34em;
  line-height: 1.6; margin-bottom: 2.2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }

.hero__stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem; margin: 0; border-top: 1px solid var(--line); padding-top: 1.6rem;
}
.stat dt { font-size: var(--step--1); color: var(--muted); order: 2; }
.stat dd {
  margin: 0; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem); letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 0.35rem;
}

.hero__visual { position: relative; }
.hero__panel {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.75rem);
  display: grid; place-items: center; overflow: hidden;
}
.hero__panel img { width: 100%; max-width: 520px; }

.hero__badge {
  position: absolute; left: clamp(-0.5rem, -1vw, -1.25rem); bottom: clamp(-1rem, -2vw, -1.75rem);
  display: grid; grid-template-columns: auto auto; align-items: center;
  gap: 0.2rem 0.7rem; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0.85rem 1.15rem;
  box-shadow: 0 18px 40px -24px rgba(12, 14, 20, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hero__badge:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -26px rgba(12, 14, 20, 0.45); }
.g-logo { width: 22px; height: 22px; grid-row: span 2; }
.hero__badge-score {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; line-height: 1;
}
.hero__badge .stars { grid-column: 2; }
.hero__badge-count { grid-column: 2; font-size: 0.78rem; color: var(--muted); }
.hero__badge-score { grid-column: 2; }

.stars { display: inline-flex; gap: 2px; }
.star { width: 14px; height: 14px; fill: #f5a623; }

/* -------------------------------------------------------- sekcijų antraštės */

.section-head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head__meta { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.1rem; }
.section-num {
  font-family: var(--font-display); font-weight: 700; font-size: var(--step--1);
  color: var(--blue); letter-spacing: 0.02em;
}
.kicker {
  font-size: var(--step--1); font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  padding-left: 0.8rem; border-left: 1px solid var(--line-strong);
}
.section-title { font-size: var(--step-4); }
.section-text { margin-top: 1.1rem; color: var(--ink-2); font-size: var(--step-1); max-width: 34em; }

/* ------------------------------------------------------------ paslaugų kortelės */

.s-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.s-card {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line); padding-top: 1.5rem;
}
.s-card__media {
  display: block; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 16 / 10; background: var(--paper-2); margin-bottom: 1.5rem;
}
.s-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85); transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}
.s-card:hover .s-card__media img { transform: scale(1.04); filter: saturate(1); }

.s-card__top { display: flex; align-items: baseline; gap: 0.9rem; margin-bottom: 1rem; }
.s-card__num { font-family: var(--font-display); font-weight: 700; font-size: var(--step--1); color: var(--blue); }
.s-card__title { font-size: var(--step-2); }
.s-card__title a { transition: color 0.25s var(--ease); }
.s-card:hover .s-card__title a { color: var(--blue); }
.s-card__body p { color: var(--ink-2); font-size: 0.97rem; }
.s-card__more {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto; padding-top: 1.2rem;
  font-weight: 600; font-size: var(--step--1); color: var(--ink);
}
.s-card__more .i-arrow { width: 17px; height: 17px; transition: transform 0.3s var(--ease); }
.s-card:hover .s-card__more { color: var(--blue); }
.s-card:hover .s-card__more .i-arrow { transform: translateX(5px); }

/* ------------------------------------------------------- paslaugų eilutės (/paslaugos) */

.s-row {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line);
}
.s-row:first-child { border-top: 0; padding-top: 0; }
.s-row:nth-child(even) .s-row__media { order: 2; }
.s-row__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.s-row__media img { width: 100%; height: 100%; object-fit: cover; }
.s-row__num { font-family: var(--font-display); font-weight: 700; color: var(--blue); font-size: var(--step--1); }
.s-row__title { font-size: var(--step-3); margin: 0.5rem 0 0.6rem; }
.s-row__price { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin-bottom: 1.2rem; }
.s-row__price em { font-style: normal; font-weight: 400; color: var(--muted); font-family: var(--font-body); font-size: 0.92rem; }
.s-row__body p { color: var(--ink-2); font-size: 0.99rem; }
.s-row__body .btn { margin-top: 0.6rem; }

/* ------------------------------------------------------------------ kainos */

.section--pricing { background: var(--paper-2); border-block: 1px solid var(--line); }

.p-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }

.p-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.2rem);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.p-card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: 0 24px 50px -34px rgba(12, 14, 20, 0.4); }
.p-card.is-featured { border-color: var(--blue); }
.p-card__flag {
  position: absolute; top: -0.7rem; left: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--blue); color: #fff; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 100px;
}
.p-card__title { font-size: var(--step-2); margin-bottom: 1rem; min-height: 2.2em; }
.p-card__price { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.2rem; }
.p-card__price span {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 3.6vw, 2.6rem);
  letter-spacing: -0.04em; color: var(--blue-deep);
}
.p-card__price em { font-style: normal; color: var(--muted); font-size: var(--step--1); }
.p-card__crew {
  font-size: var(--step--1); color: var(--muted); margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--line);
}
.p-card__list { display: grid; gap: 0.75rem; margin-bottom: 1.75rem; }
.p-card__list li { display: flex; gap: 0.7rem; font-size: 0.95rem; color: var(--ink-2); line-height: 1.45; }
.p-card__list svg { width: 17px; height: 17px; flex: none; color: var(--blue); margin-top: 3px; }
.p-card__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: var(--step--1);
}
.p-card__link .i-arrow { width: 17px; height: 17px; transition: transform 0.3s var(--ease); }
.p-card__link:hover { color: var(--blue); }
.p-card__link:hover .i-arrow { transform: translateX(5px); }

.p-foot {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.75rem, 4vw, 3.5rem); margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line);
}
.p-foot__lead { font-family: var(--font-display); font-weight: 700; font-size: var(--step-2); letter-spacing: -0.02em; margin-bottom: 1.2rem; }
.p-foot__contacts { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.p-notes { display: grid; gap: 0.6rem; }
.p-notes li {
  display: flex; gap: 0.5rem; font-size: 0.87rem; color: var(--muted); line-height: 1.5;
}
.p-notes li span { color: var(--orange); font-weight: 700; }
.p-notes--tight { margin-top: 1.6rem; }

/* --------------------------------------------------------------- atsiliepimai */

.r-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.r-head .section-head { margin-bottom: 0; }

.g-badge {
  display: grid; grid-template-columns: auto auto; align-items: center; gap: 0.15rem 0.75rem;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.35rem;
  background: var(--paper); transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.g-badge:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.g-badge .g-logo { grid-row: span 3; width: 26px; height: 26px; }
.g-badge__score { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1; }
.g-badge__count { font-size: 0.8rem; color: var(--muted); }

.r-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
  columns: 3; column-gap: 1.25rem;
}

.r-card {
  break-inside: avoid; margin-bottom: 1.25rem;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.r-card:hover { border-color: var(--line-strong); background: #fff; }
.r-card .stars { margin-bottom: 1rem; }
.r-card__text { font-size: 0.94rem; color: var(--ink-2); line-height: 1.6; }
.r-card__author {
  margin: 1.25rem 0 0; font-weight: 600; font-size: var(--step--1);
}
.r-card__author::before { content: '— '; color: var(--muted); }

/* ------------------------------------------------------------------ kontaktai */

.section--contact { background: var(--paper-2); border-top: 1px solid var(--line); }

.c-wrap {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}

.c-list { display: grid; gap: 1rem; margin: 2rem 0; }
.c-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 1rem; }
.c-list svg { width: 20px; height: 20px; color: var(--blue); flex: none; margin-top: 3px; }
.c-list a { color: var(--ink-2); transition: color 0.25s var(--ease); }
.c-list a:hover { color: var(--blue); }

.c-company { font-size: 0.82rem; color: var(--muted); padding-top: 1.5rem; border-top: 1px solid var(--line); }

.c-form-wrap {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3.5vw, 2.5rem);
}
.c-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 500; color: var(--ink-2); letter-spacing: 0.01em; }
.field input, .field textarea {
  font-family: inherit; font-size: 0.97rem; color: var(--ink);
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0.85rem 1rem; width: 100%;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:hover, .field textarea:hover { border-color: var(--line-strong); }
.field input:focus, .field textarea:focus { background: var(--paper); border-color: var(--blue); outline-offset: 1px; }
.field input.is-invalid, .field textarea.is-invalid { border-color: #d92d20; background: #fff5f4; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.form-foot .btn { min-width: 160px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin: 0; }
.form-note a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 2px; }

.form-status {
  grid-column: 1 / -1; margin: 0; font-size: 0.9rem; font-weight: 500; display: none;
  padding: 0.9rem 1.1rem; border-radius: var(--radius);
}
.form-status.is-ok { display: block; background: #edfaf1; color: #10693a; }
.form-status.is-err { display: block; background: #fff1f0; color: #b42318; }

/* --------------------------------------------------------- vidiniai puslapiai */

.crumbs { border-bottom: 1px solid var(--line); }
.crumbs .container {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  padding-block: 1rem; font-size: 0.82rem; color: var(--muted);
}
.crumbs a { color: var(--muted); transition: color 0.25s var(--ease); }
.crumbs a:hover { color: var(--ink); }
.crumbs span[aria-current] { color: var(--ink); font-weight: 500; }
.crumb-sep { color: var(--line-strong); }

.page-head { padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.5rem); }
.page-title { font-size: var(--step-4); }
.page-lead { margin-top: 1.2rem; font-size: var(--step-1); color: var(--ink-2); max-width: 36em; }
.page-head--404 { padding-block: clamp(5rem, 12vw, 9rem); text-align: left; }
.page-head--404 .hero__actions { margin-top: 2rem; }

.d-hero { padding-block: clamp(2.5rem, 5vw, 4rem); }
.d-hero__inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.d-hero__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; }
.d-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.d-price { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 1.4rem; }
.d-price span {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  letter-spacing: -0.04em; color: var(--blue-deep);
}
.d-price em { font-style: normal; color: var(--muted); font-size: var(--step--1); }
.d-contacts { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }

.section--detail { padding-top: clamp(2rem, 4vw, 3rem); }
.d-body { max-width: 62rem; margin-inline: 0; }
.d-lead {
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-3);
  letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 1.5rem;
}
.d-intro { font-size: var(--step-1); color: var(--ink-2); }

.d-block { margin-top: clamp(2.25rem, 4vw, 3.25rem); }
.d-block__title { font-size: var(--step-2); margin-bottom: 1.2rem; }
.d-block p { color: var(--ink-2); }

.d-list { display: grid; gap: 0.9rem; }
.d-list li { display: flex; gap: 0.8rem; color: var(--ink-2); line-height: 1.55; }
.d-list svg { width: 19px; height: 19px; flex: none; color: var(--blue); margin-top: 4px; }
.d-list strong { color: var(--ink); font-weight: 600; }

.d-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.d-tags li {
  border: 1px solid var(--line); border-radius: 100px; padding: 0.5rem 1rem;
  font-size: 0.9rem; color: var(--ink-2); background: var(--paper-2);
}

.d-cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: var(--blue-tint); border: 1px solid #dbe3ff; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between; gap: 1.75rem; flex-wrap: wrap;
}
.d-cta__title { font-size: var(--step-2); max-width: 26em; }
.d-cta__text { margin-top: 0.7rem; color: var(--ink-2); max-width: 34em; }

.section--why { background: var(--paper-2); border-block: 1px solid var(--line); }
.w-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.w-item {
  background: var(--paper); padding: clamp(1.5rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: 0.9rem; min-height: 180px;
  transition: background 0.3s var(--ease);
}
.w-item:hover { background: var(--blue-tint); }
.w-num {
  font-family: var(--font-display); font-weight: 700; font-size: 1.6rem;
  color: var(--blue); letter-spacing: -0.04em; line-height: 1;
}
.w-text { font-weight: 500; color: var(--ink); margin-top: auto; line-height: 1.4; }

.prose { max-width: 52rem; margin-inline: 0; }
.prose__block { margin-bottom: clamp(2rem, 4vw, 2.75rem); }
.prose h2 { font-size: var(--step-2); margin-bottom: 1rem; }
.prose p { color: var(--ink-2); }

/* ---------------------------------------------------------------- footer  */

.site-footer { background: var(--ink); color: #d5d7dd; padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.site-footer a { color: #d5d7dd; transition: color 0.25s var(--ease); }
.site-footer a:hover { color: #fff; }

.f-top {
  display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}
.logo--footer { color: #fff; margin-bottom: 1.2rem; }
.logo--footer .logo__mark { color: var(--orange); }
.f-tagline { font-family: var(--font-display); font-weight: 500; color: #fff; font-size: var(--step-1); letter-spacing: -0.02em; max-width: 16em; }
.f-legal { font-size: 0.83rem; color: #8f95a3; line-height: 1.8; margin-top: 1.5rem; }

.f-col__title {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #8f95a3; font-weight: 500; font-family: var(--font-body); margin-bottom: 1.2rem;
}
.f-col ul { display: grid; gap: 0.7rem; font-size: 0.92rem; }

.f-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.82rem; color: #8f95a3;
}
.f-bottom p { margin: 0; }

/* ---------------------------------------------------------------- slapukai */

.cookie {
  position: fixed; left: 50%; bottom: 1rem; transform: translateX(-50%);
  z-index: 120; width: min(760px, calc(100% - 2rem));
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -30px rgba(12, 14, 20, 0.5);
  padding: 1.1rem 1.35rem; display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  animation: cookie-in 0.5s var(--ease) both;
}
.cookie[hidden] { display: none; }
.cookie p { margin: 0; font-size: 0.85rem; color: var(--ink-2); flex: 1 1 340px; line-height: 1.5; }
.cookie__actions { display: flex; align-items: center; gap: 1rem; }
.cookie__link { font-size: 0.82rem; color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }

@keyframes cookie-in { from { opacity: 0; transform: translate(-50%, 16px); } }

/* -------------------------------------------------------------- responsive */

@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 620px; }
  .hero__badge { left: auto; right: 0; }
  .f-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .burger { display: flex; }

  /* .site-header turi backdrop-filter, todėl jis yra fixed vaikų konteineris —
     dėl to meniu aukštį nurodome aiškiai. */
  .nav {
    position: fixed; inset: 78px 0 auto; background: var(--paper);
    height: calc(100vh - 78px); height: calc(100dvh - 78px);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 2rem var(--gutter) 3rem; gap: 0; overflow-y: auto;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { font-size: 1.4rem; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; padding-block: 0.9rem; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .nav__sub { display: grid; gap: 0.85rem; padding-block: 1.5rem; }
  .nav__sub-link { font-size: 0.95rem; color: var(--muted); }
  .nav__mobile-actions { display: block; margin-top: auto; padding-top: 1.5rem; }
  .nav__phone { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 600; }
  .nav__phone svg { width: 18px; height: 18px; color: var(--blue); }

  .s-grid { grid-template-columns: 1fr; }
  .r-grid { columns: 2; }
  .p-grid { grid-template-columns: 1fr; max-width: 480px; }
  .p-foot, .c-wrap, .d-hero__inner { grid-template-columns: 1fr; }
  .s-row { grid-template-columns: 1fr; }
  .s-row:nth-child(even) .s-row__media { order: 0; }
  .d-hero__media { order: -1; }
}

@media (max-width: 640px) {
  .site-header__inner { min-height: 66px; }
  .nav {
    inset-block-start: 66px;
    height: calc(100vh - 66px); height: calc(100dvh - 66px);
  }
  .site-header__actions .btn--accent { display: none; }
  .header-phone {
    width: 44px; height: 44px; justify-content: center;
    border: 1px solid var(--line); border-radius: var(--radius);
  }
  .header-phone span { display: none; }
  .header-phone svg { width: 19px; height: 19px; }
  .hero__kicker { font-size: 0.75rem; letter-spacing: 0.14em; }
  .hero__kicker::before { display: none; }
  .logo__text { font-size: 1.25rem; }
  .hero__stats { grid-template-columns: 1fr; gap: 0.9rem; }
  .stat { display: flex; align-items: baseline; gap: 0.7rem; border-bottom: 1px solid var(--line); padding-bottom: 0.9rem; }
  .stat dd { font-size: 1.6rem; margin-bottom: 0; }
  .hero__badge { position: static; margin-top: 1rem; display: inline-grid; }
  .r-grid { columns: 1; }
  .c-form { grid-template-columns: 1fr; }
  .f-top { grid-template-columns: 1fr; }
  .d-cta { flex-direction: column; align-items: flex-start; }
  .btn { width: auto; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
}
