/* ==========================================================================
   Sonnos klausos centras – temos stiliai
   Aiški, didelė tipografika, aukštas kontrastas, dideli mygtukai.
   ========================================================================== */

:root {
  --font-display: "Nunito", "Nunito Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Nunito Sans", "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;

  --purple-950: #23103a;
  --purple-900: #2f1550;
  --purple-800: #42165e;
  --purple-700: #5b2286;
  --purple-600: #7a3aae;
  --purple-300: #c9b4de;
  --purple-200: #dccdeb;
  --purple-100: #ede4f5;
  --purple-50:  #f6f1fa;
  --green-800: #1b6330;
  --green-700: #237a3b;
  --green-600: #2e8b47;
  --green-100: #e1f3e5;
  --green-50:  #f0f9f1;
  --gold: #e9a825;
  --ink: #1f1630;
  --ink-soft: #574b66;
  --paper: #fbf9fd;
  --cream: #f8f4ee;
  --white: #fffdff;
  --line: #ded6e8;
  --line-strong: #b9a9cc;
  --danger: #b3261e;

  --fs-base: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --fs-sm: 0.925rem;
  --fs-lead: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --fs-h1: clamp(2.4rem, 1.8rem + 2.6vw, 4rem);
  --fs-h2: clamp(1.9rem, 1.55rem + 1.5vw, 2.75rem);
  --fs-h3: clamp(1.35rem, 1.25rem + 0.5vw, 1.6rem);
  --fs-h4: 1.2rem;

  --lh-body: 1.6;
  --measure: 66ch;

  --section: clamp(4rem, 3rem + 4vw, 7rem);
  --section-sm: clamp(3rem, 2rem + 3vw, 5rem);
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --container: 76rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(35, 16, 58, .06), 0 2px 10px rgba(35, 16, 58, .06);
  --shadow: 0 18px 40px -18px rgba(35, 16, 58, .3);
  --header-h: 5.5rem;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* Didesnio teksto režimas (mygtukas antraštėje) */
html { font-size: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
html.text-large { font-size: 118%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   Bazė
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
body.nav-open { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--purple-900);
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); line-height: 1.08; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; }
h4 { font-size: var(--fs-h4); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 700; }
small { font-size: var(--fs-sm); }
img, picture, video, svg { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; }
ul, ol { padding-left: 1.4em; margin: 0 0 1.2em; }
li { margin-bottom: .45em; }
li::marker { color: var(--purple-700); font-weight: 700; }
hr { border: 0; border-top: 2px solid var(--line); margin: 2.5rem 0; }
blockquote { margin: 1.5rem 0; padding: 1rem 1.5rem; border-left: 5px solid var(--purple-300); background: var(--purple-50); border-radius: 0 var(--radius) var(--radius) 0; }
table { border-collapse: collapse; width: 100%; margin-bottom: 1.5rem; }
th, td { text-align: left; padding: .75rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--purple-900); font-family: var(--font-display); }
figure { margin: 0 0 1.5rem; }
figcaption { font-size: var(--fs-sm); color: var(--ink-soft); margin-top: .5rem; }
address { font-style: normal; }

a { color: var(--purple-700); text-decoration: underline; text-decoration-thickness: .1em; text-underline-offset: .18em; transition: color .15s; }
a:hover { color: var(--purple-600); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--green-600);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-dark a:focus-visible, .on-dark button:focus-visible { outline-color: #ffffff; }

.icon { flex: none; width: 1.25em; height: 1.25em; }
.screen-reader-text, .sr-only {
  position: absolute !important; 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: 1rem; top: -100px; z-index: 1000;
  background: var(--green-700); color: #fff; padding: .75rem 1.25rem; border-radius: var(--radius-pill);
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 1rem; outline: 3px solid #fff; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--narrow { max-width: 52rem; }
.container--text { max-width: 48rem; }
.flow > * + * { margin-top: 1.1em; }
.measure { max-width: var(--measure); }
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }

/* --------------------------------------------------------------------------
   Mygtukai
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 3.5rem; padding: .7rem 1.75rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.0625rem; line-height: 1.2;
  border-radius: var(--radius-pill); border: 2px solid transparent;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: background-color .15s, color .15s, border-color .15s, transform .15s var(--ease-out), box-shadow .15s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 1.35em; height: 1.35em; }
.btn--primary { background: var(--green-700); color: #fff; box-shadow: 0 6px 18px -6px rgba(35, 122, 59, .6); }
.btn--primary:hover { background: var(--green-800); color: #fff; }
.btn--brand { background: var(--purple-700); color: #fff; }
.btn--brand:hover { background: var(--purple-800); color: #fff; }
.btn--ghost { background: transparent; color: var(--purple-800); border-color: var(--purple-700); }
.btn--ghost:hover { background: var(--purple-50); color: var(--purple-900); }
.btn--light { background: #fff; color: var(--purple-800); }
.btn--light:hover { background: var(--purple-50); color: var(--purple-900); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .7); }
.btn--outline-light:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn--lg { min-height: 4rem; padding: .9rem 2.25rem; font-size: 1.2rem; }
.btn--sm { min-height: 2.9rem; padding: .4rem 1.25rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .6; pointer-events: none; }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display); font-weight: 800; text-decoration: none; }
.link-arrow .icon { transition: transform .2s var(--ease-out); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Antraštė (header)
   -------------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: 0 1px 0 var(--line); transition: box-shadow .2s; }
.site-header.is-stuck { box-shadow: 0 6px 24px -12px rgba(35, 16, 58, .35); }

.topbar { background: var(--purple-900); color: #fff; font-size: .95rem; }
.topbar__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 2.6rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .5rem; color: #fff; text-decoration: none; }
.topbar__item .icon { width: 1.1em; height: 1.1em; opacity: .85; }
.topbar__item--promo { font-weight: 700; color: #e8f6ea; }
.topbar__item--promo .icon { color: #8fe0a2; }
a.topbar__item:hover { color: #e6d9f5; }
.topbar__spacer { flex: 1; }
@media (max-width: 1400px) { .topbar__item--address { display: none; } }

.textsize {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: var(--radius-pill); padding: .25rem .9rem; font: inherit; font-weight: 700; cursor: pointer;
  transition: background .15s;
}
.textsize:hover { background: rgba(255, 255, 255, .12); }
.textsize[aria-pressed="true"] { background: #fff; color: var(--purple-900); }
.textsize .icon { width: 1.2em; height: 1.2em; }

.masthead__inner { display: flex; align-items: center; gap: 1.25rem; min-height: var(--header-h); width: min(100% - 2 * var(--gutter), 90rem); }
.topbar__inner { width: min(100% - 2 * var(--gutter), 90rem); }
.topbar__item--phone { font-weight: 800; font-size: 1.05rem; }
.topbar__item--phone .icon { color: #8fe0a2; opacity: 1; }
.brand { display: inline-flex; align-items: center; text-decoration: none; margin-right: auto; flex: none; }
.brand img { height: 3.4rem; width: auto; max-width: none; }
.brand__text { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--purple-700); }

.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .25rem; }
.nav li { margin: 0; }
.nav a {
  display: inline-flex; align-items: center; min-height: 2.75rem; padding: .25rem .7rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink);
  text-decoration: none; border-radius: var(--radius-pill); position: relative; white-space: nowrap;
}
.nav a:hover { color: var(--purple-700); background: var(--purple-50); }
.nav .current-menu-item > a, .nav .current_page_item > a, .nav .current-menu-ancestor > a { color: var(--purple-700); }
.nav .current-menu-item > a::after, .nav .current_page_item > a::after { content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .2rem; height: 3px; border-radius: 3px; background: var(--green-600); }
.nav__extra { display: none; }

.masthead__actions { display: flex; align-items: center; gap: .75rem; }
.phone-link { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--purple-900); font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; line-height: 1.1; padding: .4rem .6rem; border-radius: var(--radius); }
.phone-link:hover { background: var(--purple-50); color: var(--purple-700); }
.phone-link__icon { display: inline-grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--green-100); color: var(--green-700); }
.phone-link__icon .icon { width: 1.35rem; height: 1.35rem; }
.phone-link__text { white-space: nowrap; }
@media (max-width: 1560px) {
  .phone-link__text { display: none; }
  .phone-link { padding: 0; }
  .phone-link__icon { width: 3.25rem; height: 3.25rem; background: var(--green-700); color: #fff; }
}
.phone-link small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .8rem; color: var(--ink-soft); }

.nav-toggle {
  display: none; align-items: center; gap: .5rem; min-height: 3rem; padding: .4rem .9rem;
  background: var(--purple-50); color: var(--purple-900); border: 2px solid var(--purple-200); border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; cursor: pointer;
}
.nav-toggle .icon { width: 1.5rem; height: 1.5rem; }
.nav-toggle .icon--close { display: none; }
body.nav-open .nav-toggle .icon--menu { display: none; }
body.nav-open .nav-toggle .icon--close { display: block; }

@media (max-width: 1300px) {
  .nav a { font-size: .98rem; padding: .25rem .55rem; }
  .brand img { height: 3rem; }
}
@media (max-width: 1200px) {
  :root { --header-h: 4.5rem; }
  .topbar { display: none; }
  .brand img { height: 2.75rem; }
  .nav-toggle { display: inline-flex; }
  .phone-link { padding: 0; }
  .phone-link__text { display: none; }
  .phone-link__icon { width: 3rem; height: 3rem; background: var(--green-700); color: #fff; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: 99;
    background: var(--white); overflow-y: auto; padding: 1rem var(--gutter) 6rem;
    transform: translateX(100%); visibility: hidden; transition: transform .3s var(--ease-out), visibility 0s .3s;
  }
  body.nav-open .nav { transform: none; visibility: visible; transition: transform .3s var(--ease-out), visibility 0s; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav li { border-bottom: 1px solid var(--line); }
  .nav a { display: flex; width: 100%; min-height: 3.75rem; padding: .75rem .25rem; font-size: 1.3rem; border-radius: 0; white-space: normal; }
  .nav a:hover { background: transparent; }
  .nav .current-menu-item > a::after { display: none; }
  .nav .current-menu-item > a { padding-left: .9rem; border-left: 5px solid var(--green-600); }
  .nav__extra { display: grid; gap: 1rem; margin-top: 1.5rem; }
  .nav__extra .btn { width: 100%; }
  .nav__extra .textsize { color: var(--purple-900); border-color: var(--purple-300); justify-content: center; min-height: 3.25rem; }
  .nav__extra .textsize[aria-pressed="true"] { background: var(--purple-900); color: #fff; }
  .nav__contact { text-align: center; color: var(--ink-soft); }
  .nav__contact a { color: var(--purple-900); font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; text-decoration: none; display: block; }
}

/* --------------------------------------------------------------------------
   Skambučio lipdukas (visuose puslapiuose, apačioje dešinėje)
   -------------------------------------------------------------------------- */
.call-sticker {
  position: fixed; right: max(1rem, env(safe-area-inset-right)); bottom: max(1rem, env(safe-area-inset-bottom)); z-index: 200;
  display: inline-flex; align-items: center; gap: .65rem;
  min-height: 3.75rem; padding: .5rem 1.4rem .5rem .6rem;
  background: var(--green-700); color: #fff; text-decoration: none;
  border-radius: var(--radius-pill); box-shadow: 0 14px 30px -8px rgba(27, 99, 48, .6), 0 0 0 4px rgba(255, 255, 255, .9);
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; line-height: 1.1;
  transition: transform .2s var(--ease-out), background .15s;
}
.call-sticker:hover { background: var(--green-800); color: #fff; transform: translateY(-2px); }
.call-sticker__icon { display: inline-grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; background: rgba(255, 255, 255, .18); }
.call-sticker__icon .icon { width: 1.5rem; height: 1.5rem; }
.call-sticker small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .78rem; opacity: .9; }
@keyframes sticker-pulse { 0% { box-shadow: 0 14px 30px -8px rgba(27, 99, 48, .6), 0 0 0 4px rgba(255, 255, 255, .9), 0 0 0 4px rgba(35, 122, 59, .5); } 100% { box-shadow: 0 14px 30px -8px rgba(27, 99, 48, .6), 0 0 0 4px rgba(255, 255, 255, .9), 0 0 0 22px rgba(35, 122, 59, 0); } }
.call-sticker.is-pulsing { animation: sticker-pulse 2.2s var(--ease-out) 3; }
@media (max-width: 640px) {
  .masthead__actions .btn--header { display: none; }
  .masthead__inner { gap: .75rem; }
}
@media (max-width: 600px) {
  .call-sticker { padding: .4rem 1.1rem .4rem .45rem; min-height: 3.5rem; font-size: 1rem; }
  .call-sticker small { display: none; }
}

/* --------------------------------------------------------------------------
   Sekcijos
   -------------------------------------------------------------------------- */
.section { padding-block: var(--section); }
.section--sm { padding-block: var(--section-sm); }
.section--tint { background: var(--purple-50); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--purple-900); color: #f3ecfa; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark a { color: #fff; }
.section--dark .eyebrow { color: #a7e3b3; }
.section--dark .eyebrow::before { background: #a7e3b3; }

.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head p { font-size: var(--fs-lead); color: var(--ink-soft); }
.section--dark .section__head p { color: #d9c9ea; }
.section__head h2 { margin-bottom: .4em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 800; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-700); margin: 0 0 1rem;
}
.eyebrow::before { content: ""; width: .6em; height: .6em; border-radius: 50%; background: var(--green-600); flex: none; }

/* --------------------------------------------------------------------------
   Pradinis: hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 2rem + 3vw, 5rem) clamp(3rem, 2rem + 3vw, 5rem); background: var(--paper); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60rem 40rem at 105% -10%, var(--purple-100), transparent 60%),
    radial-gradient(40rem 30rem at -10% 110%, var(--green-50), transparent 60%);
}
.hero__inner { position: relative; display: grid; gap: 2.5rem; align-items: center; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
.hero__title { color: var(--purple-900); margin-bottom: .5em; max-width: 14ch; }
.hero__title em { font-style: normal; color: var(--purple-700); }
.hero__text { font-size: var(--fs-lead); color: var(--ink-soft); max-width: 34rem; margin-bottom: 1.75rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.75rem; }
.hero__points { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .75rem 1.75rem; }
.hero__points li { display: inline-flex; align-items: center; gap: .55rem; margin: 0; font-weight: 700; color: var(--purple-900); }
.hero__points .icon { width: 1.6rem; height: 1.6rem; padding: .25rem; border-radius: 50%; background: var(--green-100); color: var(--green-700); }

.hero__media { position: relative; min-height: 20rem; display: flex; align-items: flex-end; justify-content: center; }
.hero__blob {
  position: absolute; inset: 8% 4% 0 8%; z-index: 0;
  background: var(--purple-700);
  border-radius: 58% 42% 46% 54% / 52% 44% 56% 48%;
}
.hero__blob::after {
  content: ""; position: absolute; inset: -14% -8% 20% 30%;
  border: 3px solid rgba(255, 255, 255, .18); border-radius: 55% 45% 50% 50% / 50% 55% 45% 50%;
}
.hero__leaf { position: absolute; z-index: 2; left: 2%; top: 6%; width: 4.5rem; height: 4.5rem; color: var(--green-600); transform: rotate(-20deg); }
.hero__media picture, .hero__media > .hero__img { position: relative; z-index: 1; width: min(100%, 34rem); min-width: 0; }
.hero__media picture .hero__img { width: 100%; }
.hero__img { position: relative; z-index: 1; filter: drop-shadow(0 20px 30px rgba(35, 16, 58, .28)); }
.hero__badge {
  position: absolute; z-index: 3; left: 0; bottom: 4%;
  display: flex; align-items: center; gap: .75rem; padding: .75rem 1.1rem;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  font-family: var(--font-display); font-weight: 800; color: var(--purple-900); line-height: 1.15;
}
.hero__badge .stars { color: var(--gold); display: inline-flex; }
.hero__badge .stars .icon { width: 1.1rem; height: 1.1rem; }
.hero__badge small { display: block; font-family: var(--font-body); font-weight: 600; color: var(--ink-soft); font-size: .85rem; }
.hero__badge strong { font-size: 1.35rem; }

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .hero__title { max-width: none; }
  .hero__media { min-height: 0; margin-top: .5rem; }
  .hero__media picture, .hero__media > .hero__img { width: min(100%, 26rem); }
  .hero__badge { bottom: 0; left: 0; }
}
@media (max-width: 600px) {
  .hero__actions .btn { width: 100%; }
  .hero__points { flex-direction: column; gap: .6rem; }
}

/* Pasitikėjimo juosta */
.trust { background: var(--purple-950); color: #fff; }
.trust__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 2.5rem; padding-block: 1rem; }
.trust__item { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff; text-decoration: none; }
.trust__item .icon { color: #8fe0a2; }
.trust__item .stars { display: inline-flex; color: var(--gold); }
.trust__item .stars .icon { color: var(--gold); width: 1.05rem; height: 1.05rem; }

/* --------------------------------------------------------------------------
   Privalumai
   -------------------------------------------------------------------------- */
.features { display: grid; gap: clamp(1.5rem, 1rem + 2vw, 3rem) clamp(1.5rem, 1rem + 2vw, 2.5rem); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature { display: grid; grid-template-columns: auto 1fr; gap: 1rem 1.15rem; align-items: start; }
.feature__icon { display: grid; place-items: center; width: 3.75rem; height: 3.75rem; border-radius: 1.1rem; background: var(--purple-100); color: var(--purple-700); }
.feature__icon .icon { width: 1.9rem; height: 1.9rem; }
.feature__body h3 { margin-bottom: .35em; font-size: 1.35rem; }
.feature__body p { color: var(--ink-soft); margin-bottom: .6em; }
.feature__body .link-arrow { font-size: 1rem; }
.feature--highlight .feature__icon { background: var(--green-700); color: #fff; }
.feature__tag { display: inline-block; margin-left: .5rem; padding: .15rem .6rem; border-radius: var(--radius-pill); background: var(--green-100); color: var(--green-800); font-family: var(--font-body); font-weight: 700; font-size: .8rem; vertical-align: middle; }
@media (max-width: 960px) { .features { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .features { grid-template-columns: minmax(0, 1fr); } }

/* --------------------------------------------------------------------------
   Žingsniai
   -------------------------------------------------------------------------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 2rem; grid-template-columns: repeat(4, minmax(0, 1fr)); counter-reset: step; }
.step { position: relative; margin: 0; padding-top: 1rem; }
.step__num { display: grid; place-items: center; width: 3.25rem; height: 3.25rem; border-radius: 50%; background: var(--purple-700); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.step:not(:last-child)::before { content: ""; position: absolute; top: calc(1rem + 1.6rem); left: 3.25rem; right: -2rem; height: 3px; background: var(--purple-200); }
.step h3 { font-size: 1.3rem; margin-bottom: .3em; }
.step p { color: var(--ink-soft); }
@media (max-width: 960px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step:nth-child(2)::before { display: none; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
  .step { display: grid; grid-template-columns: auto 1fr; gap: 0 1rem; padding-top: 0; }
  .step__num { margin-bottom: 0; }
  .step h3, .step p { grid-column: 2; }
  .step::before { display: none; }
  .step:not(:last-child)::before { display: block; top: 3.25rem; bottom: -1.5rem; left: calc(1.625rem - 1.5px); right: auto; width: 3px; height: auto; }
}

/* --------------------------------------------------------------------------
   Paslaugų kortelės
   -------------------------------------------------------------------------- */
.cards { display: grid; gap: 1.75rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.card { display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .2s var(--ease-out), box-shadow .2s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 3 / 2; background: var(--purple-50); display: grid; place-items: center; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media .icon { width: 4rem; height: 4rem; color: var(--purple-300); }
.card__body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: 1.35rem; margin-bottom: .4em; }
.card__body h3 a { color: inherit; text-decoration: none; }
.card__body h3 a::after { content: ""; position: absolute; inset: 0; }
.card { position: relative; }
.card__body p { color: var(--ink-soft); flex: 1; }
.card__body .link-arrow { margin-top: 1rem; }

/* --------------------------------------------------------------------------
   Specialistai
   -------------------------------------------------------------------------- */
.team { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 26rem), 1fr)); }
.team--center { max-width: 68rem; margin-inline: auto; }
.person { display: grid; grid-template-columns: minmax(9rem, 12rem) 1fr; gap: 1.5rem; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-sm); }
.person__photo { aspect-ratio: 4 / 5; border-radius: calc(var(--radius-lg) - .5rem); overflow: hidden; background: var(--purple-100); }
.person__photo img { width: 100%; height: 100%; object-fit: cover; }
.person__photo .icon { width: 50%; height: 100%; margin-inline: auto; color: var(--purple-300); }
.person__body h3 { margin-bottom: .2em; font-size: 1.45rem; }
.person__role { color: var(--green-700); font-weight: 700; margin-bottom: .75rem; }
.person__bio { color: var(--ink-soft); font-size: 1rem; margin-bottom: 1rem; }
.person__body .btn { width: 100%; font-size: 1rem; padding-inline: 1rem; }
@media (max-width: 520px) {
  .person, .sc-team .person { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .sc-team .person__body .btn { width: 100%; }
  .person__photo { max-width: 16rem; margin-inline: auto; }
}

/* --------------------------------------------------------------------------
   Registracijos forma
   -------------------------------------------------------------------------- */
.register { background: var(--purple-900); color: #f3ecfa; position: relative; overflow: hidden; }
.register::before { content: ""; position: absolute; width: 60rem; height: 60rem; right: -30rem; top: -20rem; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .06); pointer-events: none; }
.register::after { content: ""; position: absolute; width: 40rem; height: 40rem; right: -14rem; top: -8rem; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .06); pointer-events: none; }
.register__inner { position: relative; display: grid; gap: 3rem; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: start; }
.register__intro h2 { color: #fff; }
.register__intro > p { font-size: var(--fs-lead); color: #d9c9ea; max-width: 30rem; }
.register__phone { display: inline-flex; align-items: center; gap: 1rem; margin: 1.5rem 0; padding: .75rem 1.5rem .75rem .75rem; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .15); border-radius: var(--radius-pill); color: #fff; text-decoration: none; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; }
.register__phone:hover { background: rgba(255, 255, 255, .14); color: #fff; }
.register__phone .phone-link__icon { background: var(--green-600); color: #fff; width: 3.25rem; height: 3.25rem; }
.register__phone small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .85rem; color: #d9c9ea; }
.register__facts { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .75rem; }
.register__facts li { display: flex; align-items: flex-start; gap: .75rem; margin: 0; color: #f3ecfa; }
.register__facts .icon { color: #a7e3b3; margin-top: .2em; }
.register__facts strong { color: #fff; }

.form-card { background: var(--white); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.5rem; margin-bottom: .3em; }
.form-card > p { color: var(--ink-soft); margin-bottom: 1.25rem; }

.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.field { display: grid; gap: .4rem; }
.field label, .field__label { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--purple-900); }
.field label .req { color: var(--danger); }
.field label .opt { font-family: var(--font-body); font-weight: 600; font-size: .9rem; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  width: 100%; min-height: 3.5rem; padding: .75rem 1rem; font: inherit; font-size: 1.1rem; color: var(--ink);
  background: #fff; border: 2px solid var(--line-strong); border-radius: .9rem; transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 7rem; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--purple-700); box-shadow: 0 0 0 4px var(--purple-100); outline: none; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); }
.field__hint { font-size: .9rem; color: var(--ink-soft); }
.field__error { display: none; font-weight: 700; color: var(--danger); font-size: .95rem; }
.field.has-error .field__error { display: block; }
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: .75rem; }
.field--check input { width: 1.6rem; height: 1.6rem; min-height: 0; margin: .15rem 0 0; padding: 0; accent-color: var(--green-700); border-radius: .35rem; }
.field--check label { font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--ink-soft); }
.field--hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form__actions { display: grid; gap: .75rem; }
.form__note { font-size: .9rem; color: var(--ink-soft); text-align: center; }
.form__status { display: none; padding: 1rem 1.25rem; border-radius: .9rem; font-weight: 700; }
.form__status.is-error { display: block; background: #fdecea; color: var(--danger); }
.form__status.is-success { display: block; background: var(--green-100); color: var(--green-800); }
.form-success { text-align: center; padding: 2rem 1rem; }
.form-success__icon { display: grid; place-items: center; width: 5rem; height: 5rem; margin: 0 auto 1.25rem; border-radius: 50%; background: var(--green-100); color: var(--green-700); }
.form-success__icon .icon { width: 2.75rem; height: 2.75rem; }
.form-success h3 { font-size: 1.7rem; }
.form-success p { color: var(--ink-soft); font-size: 1.1rem; }
.form.is-sending { opacity: .6; pointer-events: none; }

@media (max-width: 960px) {
  .register__inner { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
}
@media (max-width: 600px) {
  .form__row { grid-template-columns: minmax(0, 1fr); }
  .register__phone { font-size: 1.25rem; }
}

/* --------------------------------------------------------------------------
   Atsiliepimai
   -------------------------------------------------------------------------- */
.rating-badge { display: inline-flex; align-items: center; gap: 1rem; padding: .75rem 1.25rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); text-decoration: none; color: var(--ink); }
.rating-badge:hover { border-color: var(--purple-300); color: var(--ink); }
.rating-badge__score { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--purple-900); line-height: 1; }
.rating-badge .stars { display: inline-flex; color: var(--gold); }
.rating-badge .stars .icon { width: 1.25rem; height: 1.25rem; }
.rating-badge__meta { display: grid; gap: .1rem; font-size: .95rem; color: var(--ink-soft); }
.rating-badge__meta strong { color: var(--ink); font-size: 1rem; }
.rating-badge .icon--google { width: 1.5rem; height: 1.5rem; }
.reviews__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.5rem; }
.reviews__head .section__head { margin-bottom: 0; }
.reviews { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.review { display: flex; flex-direction: column; gap: 1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.review .stars { display: inline-flex; color: var(--gold); }
.review .stars .icon { width: 1.15rem; height: 1.15rem; }
.review__text { flex: 1; color: var(--ink); font-size: 1.05rem; }
.review__text p { margin: 0; }
.review__more { display: none; }
.review.is-open .review__more { display: inline; }
.review__toggle { align-self: flex-start; background: none; border: 0; padding: 0; font: inherit; font-weight: 700; color: var(--purple-700); cursor: pointer; text-decoration: underline; text-underline-offset: .18em; }
.review__author { display: flex; align-items: center; gap: .75rem; font-family: var(--font-display); font-weight: 800; color: var(--purple-900); }
.review__avatar { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--purple-100); color: var(--purple-700); font-size: 1.1rem; flex: none; }
.review__author small { display: block; font-family: var(--font-body); font-weight: 600; color: var(--ink-soft); font-size: .85rem; }
.reviews__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }
@media (max-width: 960px) { .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .reviews { grid-template-columns: minmax(0, 1fr); } }

/* --------------------------------------------------------------------------
   Gamintojai
   -------------------------------------------------------------------------- */
.brands { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem 4rem; }
.brands__logo { display: flex; flex-direction: column; align-items: center; gap: .5rem; text-decoration: none; color: var(--ink-soft); font-weight: 700; font-size: 1rem; }
.brands__logo img { height: 7rem; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.brands__note { text-align: center; color: var(--ink-soft); margin-top: 2rem; }

/* --------------------------------------------------------------------------
   D.U.K.
   -------------------------------------------------------------------------- */
.faq { max-width: 52rem; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: 1.25rem .5rem; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--purple-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--purple-700); }
.faq summary .icon { flex: none; width: 2.25rem; height: 2.25rem; padding: .5rem; border-radius: 50%; background: var(--purple-100); color: var(--purple-700); transition: transform .25s var(--ease-out), background .15s; }
.faq details[open] summary .icon { transform: rotate(45deg); background: var(--purple-700); color: #fff; }
.faq__answer { padding: 0 .5rem 1.5rem; color: var(--ink-soft); max-width: var(--measure); }
.faq__answer > :last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Kontaktai / žemėlapis
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); align-items: start; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
.contact-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; margin: 0; }
.contact-list .icon-badge { display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: .9rem; background: var(--purple-100); color: var(--purple-700); }
.contact-list .icon-badge .icon { width: 1.4rem; height: 1.4rem; }
.contact-list strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--purple-900); }
.contact-list a { font-weight: 700; }
.contact-list .big { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; text-decoration: none; color: var(--purple-900); }
.contact-list .big:hover { color: var(--purple-700); }
.contact-list p { margin: 0; color: var(--ink-soft); white-space: pre-line; }
.map { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--purple-100); min-height: 20rem; max-height: 34rem; aspect-ratio: 16 / 10; box-shadow: var(--shadow-sm); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map__placeholder { position: absolute; inset: 0; display: grid; place-content: center; gap: 1rem; text-align: center; padding: 2rem; background: linear-gradient(160deg, var(--purple-100), var(--purple-50)); }
.map__placeholder .icon { width: 3.5rem; height: 3.5rem; color: var(--purple-700); margin-inline: auto; }
.map__placeholder p { color: var(--ink-soft); max-width: 22rem; margin: 0 auto; }
.map__placeholder .btn { margin-inline: auto; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }

/* --------------------------------------------------------------------------
   CTA juosta (vidiniuose puslapiuose)
   -------------------------------------------------------------------------- */
.cta-band { background: var(--purple-700); color: #fff; }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 2rem; padding-block: clamp(2rem, 1.5rem + 2vw, 3rem); }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem); margin-bottom: .25em; }
.cta-band p { color: #e6d9f5; margin: 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
@media (max-width: 600px) { .cta-band__actions, .cta-band__actions .btn { width: 100%; } }

/* --------------------------------------------------------------------------
   Vidiniai puslapiai
   -------------------------------------------------------------------------- */
.page-hero { background: var(--purple-50); border-bottom: 1px solid var(--line); padding-block: clamp(2.5rem, 2rem + 2vw, 4rem); }
.page-hero__inner { display: grid; gap: 2rem; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); align-items: center; }
.page-hero__inner--single { grid-template-columns: minmax(0, 1fr); }
.page-hero h1 { margin-bottom: .35em; }
.page-hero__lead { font-size: var(--fs-lead); color: var(--ink-soft); max-width: 36rem; margin: 0; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.page-hero__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--purple-100); box-shadow: var(--shadow); }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; max-width: 100%; }
.breadcrumbs { font-size: .95rem; color: var(--ink-soft); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--purple-700); font-weight: 700; }
.breadcrumbs .sep { margin: 0 .5rem; opacity: .6; }
@media (max-width: 960px) {
  .page-hero__inner { grid-template-columns: minmax(0, 1fr); }
  .page-hero__media { max-height: 18rem; aspect-ratio: 16 / 9; }
}

.layout { display: grid; gap: clamp(2.5rem, 2rem + 3vw, 5rem); grid-template-columns: minmax(0, 1fr) 21rem; align-items: start; }
.layout--single { grid-template-columns: minmax(0, 1fr); }
.layout__main { max-width: 46rem; }
.layout__aside { position: sticky; top: calc(var(--header-h) + 1.5rem); display: grid; gap: 1.5rem; }
@media (max-width: 960px) {
  .layout { grid-template-columns: minmax(0, 1fr); }
  .layout__aside { position: static; }
}

.help-card { background: var(--purple-900); color: #f3ecfa; border-radius: var(--radius-lg); padding: 1.75rem; }
.help-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: .5em; }
.help-card p { color: #d9c9ea; font-size: 1rem; }
.help-card__phone { display: block; margin: 1rem 0; font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: #fff; text-decoration: none; }
.help-card__phone:hover { color: #a7e3b3; }
.help-card__hours { color: #d9c9ea; font-size: .95rem; white-space: pre-line; }
.help-card .btn { width: 100%; margin-top: 1rem; }
.aside-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; }
.aside-card h3 { font-size: 1.15rem; margin-bottom: .75em; }
.aside-card ul { list-style: none; margin: 0; padding: 0; }
.aside-card li { margin: 0; border-top: 1px solid var(--line); }
.aside-card li a { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .75rem 0; text-decoration: none; font-weight: 700; color: var(--purple-900); }
.aside-card li a:hover { color: var(--purple-700); }
.aside-card li.is-current a { color: var(--green-700); }
.aside-card li a .icon { width: 1.1rem; height: 1.1rem; opacity: .6; }

/* Turinio (redaktoriaus) tipografika */
.entry-content { font-size: var(--fs-base); }
.entry-content > * { max-width: var(--measure); }
.entry-content > h2 { margin-top: 2.2em; }
.entry-content > h3 { margin-top: 1.8em; }
.entry-content > h2:first-child, .entry-content > h3:first-child { margin-top: 0; }
.entry-content p.lead, .entry-content .lead { font-size: var(--fs-lead); color: var(--ink-soft); }
.entry-content img { border-radius: var(--radius); }
.entry-content .alignwide, .entry-content .alignfull { max-width: none; }
.entry-content .aligncenter { margin-inline: auto; }
.entry-content .alignleft { float: left; margin: .3rem 1.5rem 1rem 0; max-width: 45%; }
.entry-content .alignright { float: right; margin: .3rem 0 1rem 1.5rem; max-width: 45%; }
.entry-content ul.checks, .entry-content ol.numbered { list-style: none; padding: 0; }
.entry-content ul.checks li { position: relative; padding-left: 2.4rem; margin-bottom: .75em; }
.entry-content ul.checks li::before { content: ""; position: absolute; left: 0; top: .1em; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--green-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23237a3b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 60% no-repeat; }
.entry-content ol.numbered { counter-reset: n; }
.entry-content ol.numbered li { position: relative; padding-left: 3rem; margin-bottom: 1em; counter-increment: n; }
.entry-content ol.numbered li::before { content: counter(n); position: absolute; left: 0; top: 0; width: 2.1rem; height: 2.1rem; border-radius: 50%; background: var(--purple-700); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1rem; }
.entry-content .btn { text-decoration: none; }
.entry-content .btn + .btn { margin-left: .75rem; }
.entry-content .box { background: var(--purple-50); border: 1px solid var(--purple-200); border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.entry-content .box--green { background: var(--green-50); border-color: #bfe4c6; }
.entry-content .box > :last-child { margin-bottom: 0; }
.entry-content .note { font-size: 1rem; color: var(--ink-soft); }

/* Aparatų tipai (paveikslėlis + tekstas) */
.media-row { display: grid; grid-template-columns: 11rem 1fr; gap: 1.5rem; align-items: start; margin: 2rem 0; max-width: none !important; }
.media-row__img { border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); padding: .5rem; }
.media-row__img img { border-radius: calc(var(--radius) - .5rem); width: 100%; aspect-ratio: 1; object-fit: contain; }
.media-row h3 { margin-top: 0 !important; }
@media (max-width: 600px) { .media-row { grid-template-columns: minmax(0, 1fr); } .media-row__img { max-width: 12rem; } }

/* Trumpi kodai puslapiuose */
.sc-team { margin: 2.5rem 0; max-width: none !important; }
.sc-team .team { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
.sc-team .person { grid-template-columns: minmax(8rem, 11rem) 1fr; }
.sc-team .person__body .btn { width: auto; }
.sc-form { margin: 2.5rem 0; max-width: none !important; }
.sc-form .form-card { border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.sc-map { margin: 2.5rem 0; max-width: none !important; }
.sc-faq { margin: 2.5rem 0; max-width: none !important; }
.sc-faq .faq { margin: 0; }

/* Įrašų sąrašas, paieška, 404 */
.post-list { display: grid; gap: 2rem; }
.post-list article { border-bottom: 1px solid var(--line); padding-bottom: 2rem; }
.post-list h2 { font-size: 1.6rem; }
.post-list h2 a { text-decoration: none; }
.post-meta { color: var(--ink-soft); font-size: .95rem; margin-bottom: .75rem; }
.pagination { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.pagination .page-numbers { display: inline-grid; place-items: center; min-width: 3rem; height: 3rem; padding: 0 1rem; border-radius: var(--radius-pill); border: 2px solid var(--purple-200); text-decoration: none; font-weight: 700; }
.pagination .page-numbers.current { background: var(--purple-700); color: #fff; border-color: var(--purple-700); }
.search-form { display: flex; gap: .75rem; max-width: 34rem; }
.search-form input { flex: 1; min-height: 3.5rem; padding: .5rem 1rem; font: inherit; font-size: 1.1rem; border: 2px solid var(--line-strong); border-radius: .9rem; }
.error-page { text-align: center; padding-block: var(--section); }
.error-page h1 { font-size: clamp(2rem, 1.5rem + 2vw, 3rem); }

/* --------------------------------------------------------------------------
   Poraštė
   -------------------------------------------------------------------------- */
.site-footer { background: var(--purple-950); color: #d9c9ea; padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 1.5rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: #a7e3b3; }
.footer__grid { display: grid; gap: 2.5rem 2rem; grid-template-columns: 1.4fr 1fr 1fr 1fr; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.footer__brand .brand { margin: 0 0 1.25rem; }
.footer__brand img { height: 3rem; width: auto; max-width: none; }
.footer__brand p { max-width: 24rem; font-size: 1rem; }
.footer__social { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; font-weight: 700; }
.footer__social .icon { width: 1.4rem; height: 1.4rem; }
.footer__col h3 { color: #fff; font-size: 1.05rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer__col li { margin: 0; }
.footer__col li a { display: inline-flex; align-items: flex-start; gap: .6rem; font-size: 1.05rem; }
.footer__col .icon { width: 1.15rem; height: 1.15rem; margin-top: .3em; opacity: .8; }
.footer__col .hours { white-space: pre-line; font-size: 1.05rem; line-height: 1.7; }
.footer__col .big { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 2rem; padding-top: 1.5rem; font-size: .95rem; }
.footer__bottom p { margin: 0; }
.footer__bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; padding: 0; }
.footer__bottom li { margin: 0; }
@media (max-width: 960px) { .footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: minmax(0, 1fr); } }

/* Poraštės atstumas dėl skambučio lipduko */
body.has-floating-phone .site-footer { padding-bottom: 5.5rem; }

/* --------------------------------------------------------------------------
   Contact Form 7 (jei naudojama)
   -------------------------------------------------------------------------- */
.wpcf7 label { display: block; font-family: var(--font-display); font-weight: 800; color: var(--purple-900); margin-bottom: .4rem; }
.wpcf7 input:not([type="submit"]):not([type="checkbox"]), .wpcf7 textarea { width: 100%; min-height: 3.5rem; padding: .75rem 1rem; font: inherit; font-size: 1.1rem; border: 2px solid var(--line-strong); border-radius: .9rem; background: #fff; }
.wpcf7 textarea { min-height: 7rem; }
.wpcf7 input[type="submit"] { display: inline-flex; min-height: 3.5rem; padding: .7rem 1.75rem; background: var(--green-700); color: #fff; border: 0; border-radius: var(--radius-pill); font-family: var(--font-display); font-weight: 800; font-size: 1.0625rem; cursor: pointer; }
.wpcf7 input[type="submit"]:hover { background: var(--green-800); }
.wpcf7 .wpcf7-not-valid-tip { color: var(--danger); font-weight: 700; }
.wpcf7 .wpcf7-response-output { border-radius: .9rem; padding: 1rem 1.25rem; font-weight: 700; margin: 1rem 0 0; }
.wpcf7 form.sent .wpcf7-response-output { background: var(--green-100); border-color: var(--green-600); color: var(--green-800); }

/* Animacijos: švelnus atsiradimas */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* Spausdinimas */
@media print {
  .site-header, .call-sticker, .site-footer, .cta-band, .register, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
}
