/* ==========================================================================
   Šriftai
   ========================================================================== */
@font-face {
  font-family: "Poppins";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/web/poppins-regular.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/web/poppins-medium.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/web/poppins-bold.woff") format("woff");
}

/* ==========================================================================
   Dizaino žetonai (design tokens)
   ========================================================================== */
:root {
  /* Prekės ženklo spalvos - tos pačios kaip ir anksčiau (žalia/auksinė), tik
     papildytos gilesniais/tamsesniais atspalviais kino/premium jausmui */
  --green: #1f6b45;
  --green-dark: #123825;
  --green-mid: #2b6e44;
  --green-light: #e7f0e0;
  --gold: #c1872f;
  --gold-bright: #e3ab55;
  --gold-light: #f4e6cc;
  --cream: #faf7ef;
  --paper: #fbf9f2;
  --dark: #1a1d16;
  --grey: #666a5d;
  --border: #e2e4d3;
  --white: #ffffff;
  --danger: #b3413a;

  /* Kino/tamsūs sluoksniai - naudojami hero, juostoms ir poroms su kontrastu */
  --ink: #0e1710;
  --ink-soft: #16221a;
  --ink-line: rgba(250, 247, 239, 0.14);
  --on-ink: #f4f1e6;
  --on-ink-muted: rgba(244, 241, 230, 0.68);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow: 0 16px 40px rgba(18, 56, 37, 0.10), 0 2px 8px rgba(18, 56, 37, 0.06);
  --shadow-sm: 0 4px 14px rgba(18, 56, 37, 0.08);
  --shadow-lg: 0 40px 90px rgba(6, 14, 8, 0.35), 0 10px 30px rgba(6, 14, 8, 0.22);

  --ease: cubic-bezier(.22, .68, 0, 1);
  --dur: .7s;

  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Ikonos (vietoj emoji) - dydis/spalva valdomi čia, pati SVG figūra ateina iš includes/icons.php */
.icon {
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.2em;
  flex: none;
  display: inline-block;
}
.icon--lg { width: 1.6em; height: 1.6em; }
.icon--sm { width: 0.95em; height: 0.95em; }
.icon--xl { width: 2.2em; height: 2.2em; }

body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3, h4, .btn, .site-header__logo, .stepper__label {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
h1, h2, h3, h4 { margin: 0; }

a { color: var(--green); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* ==========================================================================
   Motion / scroll-reveal pagalbinės klasės
   Naudojamos su nedidele JS pagalba (žr. app.js) - be JS ar su
   prefers-reduced-motion, turinys tiesiog visada matomas.
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

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

/* ==========================================================================
   Antraštė (site-header)
   Ant pradinio puslapio ji "plūduriuoja" permatoma virš hero, o ant kitų
   (taisyklės, privatumo politika) - visada solidi. JS prideda .is-scrolled,
   kai lankytojas nuslenka žemiau hero, kad tekstas liktų įskaitomas.
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(18, 56, 37, 0.08);
}

.site-header--on-hero {
  position: absolute;
  top: 0; left: 0; right: 0;
  max-width: none;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header--on-hero .site-header__logo { color: var(--on-ink); }
.site-header--on-hero .site-header__logo .icon { color: var(--gold-bright); }
.site-header--on-hero .site-header__phone {
  background: rgba(244, 241, 230, 0.12);
  color: var(--on-ink);
  box-shadow: none;
  border: 1px solid rgba(244, 241, 230, 0.25);
}
.site-header--on-hero .site-header__phone .icon { color: var(--gold-bright); }
.site-header--on-hero.is-scrolled {
  background: rgba(14, 23, 16, 0.86);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--ink-line);
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-dark);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.site-header__logo .icon { color: var(--gold); flex: none; transition: color .2s ease; }
.site-header__logo-img {
  height: 42px;
  width: auto;
  flex: none;
  object-fit: contain;
  display: block;
}
.site-header__logo-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  white-space: nowrap;
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .15s ease, transform .1s ease, background .2s ease, color .2s ease;
}
.site-header__phone .icon { color: var(--green); }
.site-header__phone:hover { box-shadow: var(--shadow); transform: translateY(-1px); text-decoration: none; }

/* ==========================================================================
   HERO - kino stiliaus pirmasis ekranas
   Kadangi realių nuotraukų/vaizdo dar nėra, vaizdinę dalį kuria originalus,
   sluoksniuotas gradientas + minimalistinis SVG linijinis piešinys (kalvos,
   keturratis, dulkių pėdsakas). Struktūra paruošta taip, kad <img>/<video>
   fono sluoksnį būtų galima įdėti ateityje (žr. .hero__media komentarą).
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--on-ink);
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 700px at 82% -10%, rgba(227, 171, 85, 0.20), transparent 60%),
    radial-gradient(900px 620px at 10% 110%, rgba(31, 107, 69, 0.45), transparent 60%),
    linear-gradient(165deg, #16221a 0%, #0e1710 55%, #0a0f0a 100%);
}

/* Vieta tikram fono video/nuotraukai ateityje: pridėkite čia <img>/<video>
   su class="hero__media" - žemiau esantis .hero__scrim užtikrins, kad tekstas
   liks skaitomas ant bet kokio vaizdo. */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Nuotraukos akcentas (vairuotojas + keturratis) yra dešiniau ir šiek tiek
     virš vidurio - ši pozicija palieka jį matomą tiek plačiuose, tiek
     siauresniuose (planšetės) languose. Mobiliesiems žr. atskirą taisyklę žemiau. */
  object-position: 58% 38%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 15, 10, 0.35) 0%, rgba(10, 15, 10, 0.55) 55%, rgba(10, 15, 10, 0.92) 100%);
}

/* Subtilus "grūdėtumas" (grain) - premium kino jausmui, be jokio išorinio failo */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
}

/* Originalus, abstraktus linijinis piešinys - kalvagūbriai + keturratis + dulkių
   pėdsakas. Vien kontūrai, be jokių prekės ženklo/logotipo elementų. */
.hero__art {
  position: absolute;
  right: -4%;
  bottom: -2%;
  width: min(64vw, 900px);
  z-index: -1;
  opacity: 0.9;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
}
.hero__art .art-hills { fill: none; stroke: rgba(244, 241, 230, 0.14); stroke-width: 1.4; }
.hero__art .art-atv { fill: none; stroke: var(--gold-bright); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hero__art .art-dust { fill: none; stroke: rgba(227, 171, 85, 0.55); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 2 10; }

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 150px 24px 120px;
}

.hero__eyebrow {
  color: var(--gold-bright);
}

.hero__title {
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 22px 0 26px;
  max-width: 16ch;
}
.hero__title em {
  font-style: normal;
  color: var(--gold-bright);
  background: linear-gradient(180deg, transparent 62%, rgba(227, 171, 85, 0.28) 62%);
}

.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--on-ink-muted);
  max-width: 48ch;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--on-ink-muted);
  font-size: 0.92rem;
}
.hero__note .icon { color: var(--gold-bright); }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--on-ink-muted);
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 1;
}
.hero__scroll .icon { animation: hero-bounce 2.2s ease-in-out infinite; }
@keyframes hero-bounce {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50% { transform: translateY(7px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll .icon { animation: none; }
}

/* ==========================================================================
   Redakcinio stiliaus pasakojimo sekcijos (storytelling)
   Asimetriškas turinys + tekstas vietoj vienodų "card" tinklelių.
   ========================================================================== */
.story {
  background: var(--paper);
  padding: 108px 0;
}
.story__intro {
  max-width: 680px;
  margin: 0 auto 88px;
  text-align: center;
}
.story__intro h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.18;
  margin: 18px 0 0;
  letter-spacing: -0.01em;
}

.story__row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.story__row:last-child { margin-bottom: 0; }
.story__row--reverse .story__panel { order: 2; }
.story__row--reverse .story__text { order: 1; }

.story__panel {
  position: relative;
  aspect-ratio: 4 / 3.1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story__panel--a { background: linear-gradient(150deg, var(--green) 0%, var(--green-dark) 78%); }
.story__panel--b { background: linear-gradient(150deg, #2c3a26 0%, var(--ink) 80%); }
.story__panel--c { background: linear-gradient(150deg, var(--gold) 0%, #8a5e1f 85%); }

/* Realios verslo nuotraukos (iš kupono šablono) - naudojamos vietoj vien spalvinių blokų */
.story__panel--photo {
  background-size: cover;
  background-position: center;
}
.story__panel--photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(14, 23, 16, 0.15) 10%, rgba(14, 23, 16, 0.78) 100%);
}

.story__panel-index {
  position: absolute;
  top: -0.28em;
  left: 20px;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.14);
  line-height: 1;
  user-select: none;
}
.story__panel-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story__panel-icon .icon { width: 30%; height: 30%; color: rgba(255,255,255,0.9); }
.story__panel::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 100% 100%, rgba(255,255,255,0.10), transparent 55%);
}

.story__text .eyebrow { margin-bottom: 14px; }
.story__text h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.story__text p {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 46ch;
}

/* ==========================================================================
   Pasitikėjimo juosta (faktinė informacija - jokių sugalvotų skaičių)
   ========================================================================== */
.trust-strip {
  background: var(--ink-soft);
  color: var(--on-ink);
}
.trust-strip__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-line);
}
.trust-item {
  background: var(--ink-soft);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-item .icon { color: var(--gold-bright); flex: none; margin-top: 0.15em; }
.trust-item__label { font-weight: 600; font-size: 0.95rem; line-height: 1.3; }
.trust-item__sub { color: var(--on-ink-muted); font-size: 0.82rem; margin-top: 2px; }

/* ==========================================================================
   "Kaip tai veikia" - dideli redakciniai žingsniai
   ========================================================================== */
.how {
  background: var(--paper);
  padding: 108px 0 96px;
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
  position: relative;
}
.how__step { position: relative; padding-top: 8px; }
.how__step-num {
  font-size: 3.4rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.how__step h3 { font-size: 1.2rem; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.how__step p { color: var(--grey); margin: 0; }
.how__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(100% + 20px);
  width: calc(40px - 20px);
  height: 1px;
  background: var(--border);
  display: none;
}
@media (min-width: 901px) {
  .how__step:not(:last-child)::after { display: block; }
}

.how__cta { margin-top: 56px; text-align: center; }

/* ==========================================================================
   Pirkimo sekcija (spotlight fonas, kad boutique kortelė iškiltų)
   ========================================================================== */
.purchase {
  position: relative;
  background: var(--ink);
  padding: 108px 0 130px;
  overflow: hidden;
}
.purchase::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(227, 171, 85, 0.14), transparent 60%),
    radial-gradient(700px 500px at 100% 100%, rgba(31, 107, 69, 0.35), transparent 60%);
}
.purchase__intro {
  position: relative;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
  color: var(--on-ink);
}
.purchase__intro h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 700;
  margin: 18px 0 14px;
  letter-spacing: -0.01em;
}
.purchase__intro p { color: var(--on-ink-muted); font-size: 1.05rem; }

.purchase__wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

/* Senoji dviejų stulpelių "page-wrap" struktūra paliekama antriniams
   puslapiams (taisyklės, privatumo politika) su vienu stulpeliu per style="". */
.page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px 80px;
}

.intro-links { display: flex; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; justify-content: center; }
.intro-links a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green-dark); text-decoration: none; font-weight: 500; font-size: 0.95rem;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.intro-links a .icon { color: var(--gold); }
.intro-links a:hover { border-color: var(--gold); color: var(--green); text-decoration: none; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid rgba(18, 56, 37, 0.05);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 100%);
}

.card h2 {
  text-align: center;
  margin: 0 0 4px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
}
.card .subtitle {
  text-align: center;
  color: var(--grey);
  margin: 0 0 28px;
}

/* Stepper */
.stepper {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 32px;
}
.stepper__step { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; width: 120px; }
.stepper__circle {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--border); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; z-index: 1;
  transition: background .2s ease, box-shadow .2s ease;
}
.stepper__step.is-active .stepper__circle {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(31, 107, 69, 0.14);
}
.stepper__step.is-done .stepper__circle { background: var(--gold); }
.stepper__label { font-size: 0.85rem; color: var(--grey); font-weight: 500; }
.stepper__step.is-active .stepper__label { color: var(--green-dark); font-weight: 700; }
.stepper__line {
  position: absolute; top: 17px; left: -60%; width: 120%; height: 2px;
  background: var(--border); z-index: 0;
}
.stepper__step:first-child .stepper__line { display: none; }
.stepper__step.is-done .stepper__line { background: var(--gold); }
.stepper__step.is-active .stepper__line { background: var(--green); }

/* Form */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start;
}
.form-grid--single { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; min-width: 0; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; line-height: 1.3; color: var(--dark); }
.field .hint { display: block; margin-top: 2px; font-weight: 400; color: var(--grey); font-size: 0.85rem; }
/* Kai laukas yra dviejų stulpelių eilutėje - visos to paties rinkinio etiketės rezervuoja
   vienodą aukštį (net jei viena turi papildomą "hint" eilutę, o kita - ne), kad abu
   laukeliai apačioje visada prasidėtų lygiai toje pačioje vietoje, o ne "vienas aukščiau,
   kitas žemiau". */
.form-grid .field label { min-height: 2.6em; }
.field input[type=text],
.field input[type=email],
.field input[type=tel],
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 0.98rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--dark);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); background: var(--white);
  box-shadow: 0 0 0 4px rgba(31, 107, 69, 0.14);
}
.field textarea { resize: vertical; min-height: 100px; }
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--danger);
}
.field-error { color: var(--danger); font-size: 0.83rem; }
.char-count { text-align: right; font-size: 0.8rem; color: var(--grey); }

.greeting-tools {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-top: 4px;
}
.greeting-tools select {
  border: 1px solid var(--border); border-radius: 6px; padding: 5px 8px;
  font-size: 0.78rem; background: var(--cream); color: var(--dark); flex: 1 1 160px;
}
.btn--small { padding: 5px 10px; font-size: 0.78rem; flex: 0 0 auto; white-space: nowrap; }
.btn--small .icon--sm { width: 13px; height: 13px; }
.btn--small[disabled] { opacity: 0.7; }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.checkbox-row input { margin-top: 3px; accent-color: var(--green); }
.checkbox-row label { font-size: 0.92rem; }

.company-fields {
  border-left: 3px solid var(--gold-light);
  padding-left: 16px;
  margin: -4px 0 18px;
}

.btn-row { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; }
.btn-row.end { justify-content: flex-end; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 999px; padding: 15px 30px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  text-decoration: none; letter-spacing: 0.01em;
  transition: transform .16s var(--ease), opacity .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }
.btn--primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(18, 56, 37, 0.25);
}
.btn--primary:hover { box-shadow: 0 16px 34px rgba(18, 56, 37, 0.34); transform: translateY(-2px); }
.btn--ghost { background: var(--white); color: var(--green-dark); border: 1px solid var(--border); }
.btn--ghost:hover { background: var(--green-light); border-color: var(--green); }
.btn--block { width: 100%; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(227, 171, 85, 0.3);
}
.btn--gold:hover { box-shadow: 0 18px 42px rgba(227, 171, 85, 0.42); transform: translateY(-2px); }

.btn--on-ink { background: rgba(244, 241, 230, 0.1); color: var(--on-ink); border: 1px solid rgba(244, 241, 230, 0.35); }
.btn--on-ink:hover { background: rgba(244, 241, 230, 0.18); }

.btn--large { padding: 18px 38px; font-size: 1.05rem; border-radius: 999px; }

.step { display: none; }
.step.is-active { display: block; }

/* Order summary (step 3) */
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 1rem; }
.summary-row.total { font-weight: 700; font-size: 1.25rem; color: var(--green-dark); border-top: 1px solid var(--border); margin-top: 6px; padding-top: 16px; }

.pay-methods { margin: 20px 0; }
.pay-methods__title { font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.pay-option {
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 10px;
  background: var(--cream);
}
.pay-option__head { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--dark); }
.pay-option__head input { accent-color: var(--green); }
.pay-option__label { display: inline-flex; align-items: center; gap: 8px; }
.pay-option__logo { height: 18px; width: auto; object-fit: contain; }
.pay-option__desc { color: var(--grey); font-size: 0.88rem; margin: 4px 0 12px 26px; }
.bank-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-left: 26px; }
.bank-chip {
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 10px;
  min-height: 56px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 0.82rem; font-weight: 700; color: var(--green-dark);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.bank-chip img { max-width: 100%; max-height: 28px; width: auto; height: auto; object-fit: contain; }
.bank-chip__text { line-height: 1.2; }

/* ==========================================================================
   Kupono peržiūros modalas - kupono PNG lieka lygiai tas pats (generuoja
   backend'as), tik pristatymas aplink jį tampa "fizinės dovanos" jausmo.
   ========================================================================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(9, 14, 9, 0.72);
  backdrop-filter: blur(4px);
  display: none; align-items: flex-start; justify-content: center;
  padding: 40px 16px; overflow-y: auto; z-index: 200;
}
.modal-overlay.is-open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius); max-width: 640px; width: 100%;
  padding: 32px; position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  animation: modal-in .35s var(--ease);
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .modal { animation: none; }
}
.modal__close {
  position: absolute; top: 18px; right: 18px; border: none; background: var(--cream);
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 1.3rem; cursor: pointer; color: var(--grey); line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease;
}
.modal__close:hover { background: var(--green-light); color: var(--green-dark); }
.modal h3 { margin-top: 0; margin-bottom: 20px; color: var(--green-dark); font-weight: 700; }
.modal__loading { text-align: center; padding: 60px 0; color: var(--grey); }

.gift-frame {
  display: block;
  position: relative;
  padding: 14px;
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--gold-light) 0%, var(--white) 45%);
  box-shadow: var(--shadow);
}
.gift-frame img {
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px rgba(18, 56, 37, 0.22);
  transform: rotate(-0.6deg);
  transition: transform .35s var(--ease);
}
.gift-frame:hover img { transform: rotate(0deg) scale(1.01); }

/* ==========================================================================
   Status puslapiai (Paysera accept/cancel)
   ========================================================================== */
.status-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(1100px 520px at 12% -8%, rgba(31, 107, 69, 0.10), transparent 60%),
    radial-gradient(900px 480px at 100% 0%, rgba(193, 135, 47, 0.08), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--green-light) 100%);
  padding: 24px;
}
.status-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 44px 40px; max-width: 480px; text-align: center;
  border: 1px solid rgba(18, 56, 37, 0.05);
}
.status-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--white);
  box-shadow: 0 10px 24px rgba(18, 56, 37, 0.2);
}
.status-icon--ok { background: linear-gradient(150deg, var(--green) 0%, var(--green-dark) 100%); }
.status-icon--wait { background: linear-gradient(150deg, #d8a04a 0%, var(--gold) 100%); }
.status-icon--warn { background: linear-gradient(150deg, #cc554d 0%, var(--danger) 100%); }
.status-card h1 { font-size: 1.5rem; font-weight: 700; color: var(--green-dark); margin-bottom: 4px; }
.status-code { font-size: 1.1rem; margin: 16px 0; }
.status-muted { color: var(--grey); font-size: 0.9rem; }
.status-card .btn { margin-top: 16px; }

/* ==========================================================================
   Poraštė
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: var(--on-ink-muted);
  padding: 56px 0 32px;
}
.site-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--ink-line);
}
.site-footer__brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--on-ink); font-weight: 700; font-size: 1.05rem; text-decoration: none;
}
.site-footer__brand .icon { color: var(--gold-bright); }
.site-footer__brand-img { height: 38px; width: auto; flex: none; object-fit: contain; display: block; }
.site-footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.site-footer__links a { color: var(--on-ink-muted); text-decoration: none; font-size: 0.9rem; }
.site-footer__links a:hover { color: var(--on-ink); }
.site-footer__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--on-ink); text-decoration: none; font-weight: 600; }
.site-footer__phone .icon { color: var(--gold-bright); }

.site-footer__socials { display: flex; gap: 10px; justify-content: center; margin-bottom: 18px; }
.site-footer__social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(244, 241, 230, 0.08);
  border: 1px solid rgba(244, 241, 230, 0.2);
  color: var(--on-ink-muted);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.site-footer__social:hover {
  background: rgba(227, 171, 85, 0.18);
  color: var(--gold-bright);
  border-color: rgba(227, 171, 85, 0.45);
  transform: translateY(-2px);
}
.site-footer__social .icon { width: 17px; height: 17px; }

.site-footer__bottom { text-align: center; font-size: 0.82rem; }

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--green-dark); color: var(--white); padding: 12px 22px; border-radius: var(--radius-sm);
  font-size: 0.9rem; z-index: 300; opacity: 0; pointer-events: none; transition: opacity .2s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.toast.is-visible { opacity: 1; }

/* ==========================================================================
   D.U.K. (FAQ) - "details/summary" akordeonas, be jokio papildomo JS
   ========================================================================== */
.faq-group { margin-bottom: 34px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group__title {
  font-size: 1.05rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  background: var(--cream);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 46px 16px 18px;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 18px; top: 50%;
  width: 10px; height: 10px;
  transform: translateY(-65%) rotate(45deg);
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-35%) rotate(225deg); }
.faq-item summary:hover { color: var(--green-dark); }
.faq-item__body { padding: 0 18px 18px; color: var(--grey); line-height: 1.6; }

/* ==========================================================================
   Mobili "prilipusi" CTA juosta - rodoma tik mažuose ekranuose, kai
   pirkimo kortelė dar nematoma. Valdoma per JS (žr. app.js).
   ========================================================================== */
.mobile-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  display: none;
  transform: translateY(120%);
  transition: transform .3s var(--ease);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
}
@media (max-width: 640px) {
  .mobile-cta { display: block; }
}

/* ==========================================================================
   Mobilieji įrenginiai - kiekviena sekcija turi savo, apgalvotą (ne tik
   sumažintą) išdėstymą
   ========================================================================== */
@media (max-width: 900px) {
  .story__row { grid-template-columns: 1fr; gap: 28px; }
  .story__row--reverse .story__panel { order: 0; }
  .story__row--reverse .story__text { order: 0; }
  .story__panel { aspect-ratio: 16 / 10; }

  .trust-strip__row { grid-template-columns: repeat(2, 1fr); }
  .how__grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .site-header { padding: 14px 16px; gap: 8px; }
  .site-header__logo { font-size: 0.95rem; gap: 6px; }
  .site-header__logo-img { height: 32px; }
  .site-header__phone { padding: 8px 12px; font-size: 0.85rem; }
  .site-header--on-hero .site-header__phone span { display: none; }

  .hero__content { padding: 118px 18px 92px; }
  .hero__title { max-width: 100%; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__art { width: 130vw; opacity: 0.5; right: -20%; bottom: -6%; }
  .hero__scroll { display: none; }
  /* Siaurame/aukštame ekrane object-fit:cover nukerpa daug daugiau iš šonų,
     todėl akcentą (vairuotoją + keturratį) reikia stumti dar labiau į dešinę
     ir aukščiau, kad jis neišslystų iš kadro. */
  .hero__media { object-position: 70% 30%; }

  .story { padding: 72px 0; }
  .story__intro { margin-bottom: 48px; }
  .story__row { margin-bottom: 56px; }

  .trust-strip__row { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 18px 14px; gap: 10px; }
  .trust-item .icon--lg { width: 1.35em; height: 1.35em; }
  .trust-item__label { font-size: 0.84rem; line-height: 1.25; }
  .trust-item__sub { font-size: 0.76rem; line-height: 1.3; }

  .how { padding: 72px 0 56px; }
  .how__grid { margin-top: 40px; gap: 34px; }

  .purchase { padding: 72px 0 96px; }

  .page-wrap { padding: 16px 16px 56px; gap: 28px; }

  .card { padding: 22px 16px; border-radius: 14px; }
  .card h2 { font-size: 1.25rem; }

  /* Žingsniklis - mažesnis tarpas ir šriftas, kad 3 žingsniai sutilptų viena eilute */
  .stepper__step { width: auto; flex: 1 1 0; gap: 6px; }
  .stepper__circle { width: 28px; height: 28px; font-size: 0.8rem; }
  .stepper__label { font-size: 0.72rem; text-align: center; }
  .stepper__line { top: 14px; }

  /* Formos laukai - po vieną stulpelį, kad netilptų per mažai */
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .form-grid .field label { min-height: 0; }

  .btn { padding: 13px 22px; font-size: 0.95rem; }
  .btn-row { flex-wrap: wrap; }
  .btn-row .btn { flex: 1 1 140px; }

  .greeting-tools { flex-direction: column; align-items: stretch; }
  .greeting-tools select,
  .greeting-tools .btn--small { flex: 1 1 auto; width: 100%; }

  .bank-chips { grid-template-columns: repeat(2, 1fr); margin-left: 0; }
  .pay-option__desc { margin-left: 0; }
  .pay-methods__title,
  .pay-option { margin-left: 0; }

  .modal { padding: 20px; border-radius: 14px; }
  .modal-overlay { padding: 16px; }

  .status-card { padding: 28px 20px; }
  .status-card h1 { font-size: 1.4rem; }

  .site-footer__row { flex-direction: column; align-items: flex-start; }
}
