/* =========================================================
   Regista — styles.css
   Spalvos pagal brief. Šriftas: Manrope.
   ========================================================= */

:root {
  --bg:           #F8FAFC;
  --card:         #FFFFFF;
  --text:         #0F172A;
  --text-2:       #475569;
  --muted:        #64748B;
  --border:       #E2E8F0;
  --primary:      #0F172A;
  --teal:         #14B8A6;
  --blue:         #2563EB;
  --soft-teal:    #F0FDFA;
  --soft-blue:    #EFF6FF;

  --radius:       16px;
  --radius-sm:    12px;
  --radius-pill:  100px;
  --shadow-sm:    0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.06);
  --shadow-md:    0 4px 16px rgba(15,23,42,0.06), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg:    0 18px 50px rgba(15,23,42,0.10), 0 6px 18px rgba(15,23,42,0.06);
  --maxw:         1180px;
  --maxw-narrow:  760px;
  --header-h:     72px;
  --ease:         cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; color: var(--text); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.01em; }
p  { color: var(--text-2); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: var(--maxw-narrow); }
.center { text-align: center; }
.center.hero-cta { justify-content: center; }

.section { padding: 88px 0; }
.section-alt { background: linear-gradient(180deg, #FFFFFF 0%, #FBFCFE 100%); border-block: 1px solid var(--border); }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-lead { font-size: 1.08rem; color: var(--text-2); margin-top: 14px; }
.small-note { text-align: center; color: var(--muted); font-size: 0.92rem; margin-top: 28px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 0.98rem; line-height: 1;
  padding: 14px 22px; border-radius: var(--radius-pill);
  border: 1px solid transparent; transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-block { width: 100%; padding: 16px; font-size: 1.02rem; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: #1e293b; }
.btn-ghost { background: #fff; color: var(--text); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: #cbd5e1; box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,250,252,0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--border); background: rgba(248,250,252,0.92); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--primary); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.15rem;
  position: relative; flex: none;
}
.logo-mark::after {
  content: ""; position: absolute; right: -3px; bottom: -3px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--teal); border: 2.5px solid var(--bg);
  z-index: 1;
}
/* Gyvas pulsavimas — rodo, kad sistema aktyvi 24/7 */
.logo-mark::before {
  content: ""; position: absolute; right: -3px; bottom: -3px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--teal); opacity: .55;
  animation: logoPulse 2.4s ease-out infinite;
}
@keyframes logoPulse {
  0%   { transform: scale(1); opacity: .55; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-weight: 800; font-size: 1.12rem; letter-spacing: -0.02em; }
.logo-sub { font-size: 0.72rem; color: var(--muted); font-weight: 600; letter-spacing: 0.01em; }

.main-nav { display: flex; gap: 28px; }
.main-nav a { font-size: 0.94rem; font-weight: 600; color: var(--text-2); transition: color .18s var(--ease); }
.main-nav a:hover { color: var(--text); }

.header-right { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; }
.lang-btn {
  background: none; border: none; padding: 4px 6px;
  font-size: 0.86rem; font-weight: 700; color: var(--muted); border-radius: 6px;
  transition: color .15s var(--ease);
}
.lang-btn:hover { color: var(--text); }
.lang-btn.is-active { color: var(--text); }
.lang-divider { color: var(--border); font-weight: 400; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Eyebrow / check ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--teal);
  background: var(--soft-teal); border: 1px solid #CCFBF1;
  padding: 7px 14px; border-radius: var(--radius-pill);
}
.check {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--soft-teal); position: relative; display: inline-block;
}
.check::after {
  content: ""; position: absolute; left: 6.5px; top: 4px;
  width: 5px; height: 9px; border: solid var(--teal);
  border-width: 0 2px 2px 0; transform: rotate(45deg);
}

/* ---------- Hero ---------- */
.hero { padding: 64px 0 84px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
}
.hero-title { font-size: clamp(2rem, 4.4vw, 3.15rem); margin: 20px 0 18px; }
.hero-sub { font-size: 1.12rem; color: var(--text-2); max-width: 540px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; }

.trust-points { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 12px; }
.trust-points li { display: flex; align-items: center; gap: 10px; font-size: 0.96rem; color: var(--text-2); font-weight: 500; }

/* ---------- Call card ---------- */
.hero-card-wrap { display: flex; justify-content: center; }
.call-card {
  width: 100%; max-width: 410px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 22px; box-shadow: var(--shadow-lg);
  padding: 22px; position: relative;
}
.call-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 22px; pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.call-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 16px;
}
.call-status { display: inline-flex; align-items: center; gap: 9px; font-size: 0.8rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.03em; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); position: relative; }
.pulse::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; background: var(--teal); opacity: .3; animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .5; } 100% { transform: scale(1.9); opacity: 0; } }
.call-number { font-size: 0.86rem; color: var(--muted); font-weight: 600; font-variant-numeric: tabular-nums; }

.chat { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.bubble { border-radius: 14px; padding: 12px 14px; max-width: 90%; }
.bubble-label { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.bubble p { font-size: 0.95rem; line-height: 1.5; color: var(--text); }
.bubble-client { background: #F1F5F9; align-self: flex-start; border-bottom-left-radius: 5px; }
.bubble-client .bubble-label { color: var(--muted); }
.bubble-ai { background: var(--soft-blue); align-self: flex-end; border-bottom-right-radius: 5px; border: 1px solid #DBEAFE; }
.bubble-ai .bubble-label { color: var(--blue); }

.call-steps { display: flex; flex-direction: column; gap: 9px; border-top: 1px solid var(--border); padding-top: 16px; }
.call-step { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--muted); }
.call-step .dot { flex: none; width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--border); position: relative; }
.call-step.is-done { color: var(--text-2); }
.call-step.is-done .dot { background: var(--teal); border-color: var(--teal); }
.call-step.is-done .dot::after { content: ""; position: absolute; left: 4px; top: 1.5px; width: 4px; height: 7px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.call-step.is-active { color: var(--text); }
.call-step.is-active .dot { border-color: var(--blue); }
.call-step.is-active .dot::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--blue); }

/* ---------- Cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d8e0ea; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.96rem; }
.card.feature { position: relative; padding-top: 28px; }
.card.feature::before {
  content: ""; position: absolute; top: 24px; left: 24px;
  width: 34px; height: 3px; border-radius: 3px; background: var(--teal); opacity: .9;
}
.card.feature h3 { margin-top: 16px; }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.step-num {
  flex: none; font-size: 0.95rem; font-weight: 800; color: var(--blue);
  background: var(--soft-blue); border: 1px solid #DBEAFE;
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-variant-numeric: tabular-nums;
}
.step h3 { margin-bottom: 5px; }
.step p { font-size: 0.96rem; }

/* ---------- Checklist ---------- */
.checklist {
  list-style: none; padding: 0; margin: 0 auto; max-width: 760px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px;
}
.checklist li {
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 18px; font-size: 0.98rem; font-weight: 500; color: var(--text);
  box-shadow: var(--shadow-sm);
}

/* ---------- DUK / Accordion ---------- */
.faq-sub { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; text-align: left;
  padding: 20px 22px; font-size: 1.02rem; font-weight: 700; color: var(--text);
}
.acc-icon { flex: none; width: 22px; height: 22px; position: relative; transition: transform .25s var(--ease); }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--teal); border-radius: 2px;
}
.acc-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.acc-icon::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); transition: transform .25s var(--ease); }
.acc-head[aria-expanded="true"] .acc-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.acc-body p { padding: 0 22px 20px; font-size: 0.98rem; color: var(--text-2); }

/* ---------- Form ---------- */
.form-note { font-size: 0.92rem; color: var(--muted); margin-top: 10px; }
.lead-form {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label, .field .label { font-size: 0.88rem; font-weight: 700; color: var(--text); }
input, select, textarea {
  font-family: inherit; font-size: 0.98rem; color: var(--text);
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 14px; width: 100%; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
textarea { resize: vertical; min-height: 100px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.checks { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.check-opt { display: flex; align-items: flex-start; gap: 10px; font-size: 0.96rem; color: var(--text-2); font-weight: 500; cursor: pointer; }
.check-opt input { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: var(--teal); cursor: pointer; }
.consent { margin-top: 4px; }

.form-success {
  display: flex; align-items: center; gap: 12px;
  background: var(--soft-teal); border: 1px solid #99F6E4; border-radius: 12px;
  padding: 16px 18px; font-size: 0.96rem; font-weight: 600; color: #0f766e;
  animation: fadeUp .35s var(--ease);
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Final CTA ---------- */
.final-cta h2 { max-width: 720px; margin-inline: auto; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--border); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer-brand p { font-size: 0.95rem; margin-top: 16px; max-width: 300px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.footer-col a { font-size: 0.95rem; color: var(--text-2); transition: color .15s var(--ease); }
.footer-col a:hover { color: var(--text); }
.footer-mini { font-size: 0.8rem; color: var(--muted); margin-top: 6px; }
.footer-bottom { border-top: 1px solid var(--border); padding-block: 24px; font-size: 0.88rem; color: var(--muted); }

/* ---------- Mobile nav panel ---------- */
.main-nav.is-open { display: flex; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-sub { max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cards-3 { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .main-nav {
    display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; gap: 4px;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
  }
  .main-nav a { padding: 10px 0; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .main-nav a:last-child { border-bottom: none; }
  .menu-toggle { display: flex; }
  .header-right .btn { display: none; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .container { padding-inline: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .lead-form { padding: 22px; }
  .hero-cta .btn, .btn-block { width: 100%; }
  .hero-cta { flex-direction: column; }
  .step { flex-direction: column; gap: 12px; }
  .header-right .lang-switch { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* =========================================================
   KUO IŠSISKIRIAME — why grid
   ========================================================= */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 920px; margin-inline: auto;
}
.why-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d8e0ea; }
.why-icon {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--soft-teal); color: var(--teal);
  margin-bottom: 18px;
}
.why-icon svg { width: 24px; height: 24px; }
.why-card:nth-child(2) .why-icon, .why-card:nth-child(4) .why-icon { background: var(--soft-blue); color: var(--blue); }
.why-card h3 { margin-bottom: 9px; font-size: 1.18rem; }
.why-card p { font-size: 0.98rem; }

/* =========================================================
   SCROLL REVEAL — subtilios animacijos
   ========================================================= */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }

/* Hero — švelnus įėjimas iškart (be scroll) */
.hero .reveal { transition-delay: .05s; }
.hero .reveal-delay { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Footer CTA mygtukas */
.footer-col .btn { margin-top: 6px; align-self: flex-start; }

/* Why grid responsive */
@media (max-width: 760px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   HERO papildymai — glow, akcentų juosta, kortelės animacija
   ========================================================= */

/* Subtilus švytėjimas už kortelės, kad nebūtų tuščia */
.hero-card-wrap { position: relative; }
.hero-glow {
  position: absolute; inset: -10% -8% -10% -8%;
  background:
    radial-gradient(60% 55% at 70% 30%, rgba(20,184,166,0.22), transparent 70%),
    radial-gradient(55% 50% at 25% 80%, rgba(37,99,235,0.18), transparent 70%);
  filter: blur(10px); z-index: 0; pointer-events: none;
  border-radius: 40px;
}
.hero-card-wrap .call-card { position: relative; z-index: 1; }

/* Dekoratyvūs taškeliai kampe (lengva tekstūra) */
.hero-card-wrap::after {
  content: ""; position: absolute; right: -14px; top: -14px; z-index: 0;
  width: 90px; height: 90px; pointer-events: none; opacity: .5;
  background-image: radial-gradient(var(--border) 1.4px, transparent 1.4px);
  background-size: 14px 14px;
}

/* Kortelės elementų įėjimas po vieną (kai matoma) */
.call-card .bubble, .call-card .call-step {
  opacity: 0; transform: translateY(8px);
}
.is-visible .call-card .bubble,
.is-visible .call-card .call-step {
  animation: cardIn .5s var(--ease) forwards;
}
.is-visible .call-card .bubble-client { animation-delay: .25s; }
.is-visible .call-card .bubble-ai     { animation-delay: .55s; }
.is-visible .call-card .call-step:nth-child(1) { animation-delay: .85s; }
.is-visible .call-card .call-step:nth-child(2) { animation-delay: 1.0s; }
.is-visible .call-card .call-step:nth-child(3) { animation-delay: 1.15s; }
.is-visible .call-card .call-step:nth-child(4) { animation-delay: 1.3s; }
@keyframes cardIn { to { opacity: 1; transform: none; } }

/* Akcentų juosta po hero */
.hero-strip {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 56px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 26px 32px;
}
.strip-item { display: flex; flex-direction: column; gap: 4px; flex: 1; text-align: center; }
.strip-big {
  font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text);
  font-variant-numeric: tabular-nums;
}
.strip-label { font-size: 0.86rem; color: var(--muted); font-weight: 500; line-height: 1.4; }
.strip-divider { width: 1px; align-self: stretch; background: var(--border); flex: none; }

@media (prefers-reduced-motion: reduce) {
  .call-card .bubble, .call-card .call-step { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 760px) {
  .hero-strip { flex-wrap: wrap; gap: 20px 12px; padding: 22px; margin-top: 40px; }
  .strip-item { flex: 1 1 40%; }
  .strip-divider { display: none; }
  .strip-big { font-size: 1.5rem; }
  .hero-card-wrap::after { display: none; }
}

/* =========================================================
   AMBIENT GLOW sekcijose — gylis visam puslapiui
   ========================================================= */

/* Alt sekcijos gauna subtilų švytėjimą fone */
.section-alt { position: relative; overflow: hidden; }
.section-alt::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: -120px; right: -100px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(20,184,166,0.12), transparent 68%);
  filter: blur(12px);
}
.section-alt::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  bottom: -140px; left: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(37,99,235,0.10), transparent 68%);
  filter: blur(12px);
}
.section-alt .container { position: relative; z-index: 1; }

/* Final CTA — stipresnis švytėjimas, kad pabaiga įsimintų */
.final-cta { position: relative; overflow: hidden; }
.final-cta::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 720px; height: 420px;
  background:
    radial-gradient(50% 60% at 35% 40%, rgba(20,184,166,0.16), transparent 70%),
    radial-gradient(50% 60% at 70% 60%, rgba(37,99,235,0.14), transparent 70%);
  filter: blur(14px);
}
.final-cta .container { position: relative; z-index: 1; }

/* Akcentų juosta — lengvas vidinis akcentas */
.hero-strip { position: relative; overflow: hidden; }
.hero-strip::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: -60px; right: 8%; width: 240px; height: 200px;
  background: radial-gradient(circle, rgba(20,184,166,0.10), transparent 70%);
  filter: blur(10px);
}
.hero-strip > * { position: relative; z-index: 1; }

@media (max-width: 760px) {
  .section-alt::before, .section-alt::after { width: 280px; height: 280px; }
  .final-cta::before { width: 360px; height: 320px; }
}

/* Logo pulsas — gerbiam reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .logo-mark::before { animation: none; opacity: 0; }
}
