/* ============================================================
   Nauja Sąskaita — dizaino sistema
   ============================================================ */

/* ---------- Kintamieji ---------- */
:root {
  --green: #26b158;
  --green-600: #1e9e4c;
  --green-700: #188a41;
  --green-50: #ecf8f0;
  --green-100: #d8f0e1;
  --ink: #122f49;
  --ink-2: #1b3d5c;
  --body: #47607a;
  --muted: #6d8299;
  --navy: #0d2334;
  --navy-2: #12324a;
  --line: #e2ebf2;
  --line-2: #d5e2ec;
  --bg: #ffffff;
  --bg-soft: #f4f9f6;
  --bg-blue: #f2f7fb;
  --amber: #f2a341;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(13, 35, 52, .06);
  --shadow-md: 0 6px 24px -6px rgba(13, 35, 52, .12);
  --shadow-lg: 0 24px 64px -16px rgba(13, 35, 52, .22);
  --shadow-green: 0 8px 24px -8px rgba(38, 177, 88, .5);
  --font-head: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 1168px;
}

/* ---------- Bazė ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-600); text-decoration: none; }
a:hover { color: var(--green-700); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.16;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 5.2vw, 3.55rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.22rem; font-weight: 700; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

section { padding-block: clamp(64px, 9vw, 104px); }
section.tight { padding-block: clamp(40px, 6vw, 64px); }

.lead { font-size: 1.13rem; color: var(--body); }
.center { text-align: center; }
.section-head { max-width: 680px; margin-inline: auto; text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 3px rgba(38,177,88,.18);
}

/* ---------- Mygtukai ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  padding: 14px 26px; border-radius: 13px;
  border: 1px solid transparent;
  cursor: pointer; transition: all .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(180deg, #2cbb61, var(--green-600));
  color: #fff; box-shadow: var(--shadow-green);
}
.btn-primary:hover { background: linear-gradient(180deg, #26af59, var(--green-700)); color: #fff; transform: translateY(-1px); }
.btn-outline {
  background: #fff; color: var(--ink);
  border-color: var(--line-2);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--green); color: var(--green-700); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--green-700); box-shadow: 0 8px 28px -8px rgba(0,0,0,.35); }
.btn-white:hover { color: var(--green-600); transform: translateY(-1px); }
.btn-lg { padding: 17px 32px; font-size: 1.06rem; }
.btn-sm { padding: 10px 18px; font-size: .92rem; border-radius: 10px; }

/* ---------- Antraštė ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: saturate(1.6) blur(12px);
  backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 20px -12px rgba(13,35,52,.14); }
.header-in {
  display: flex; align-items: center; gap: 28px;
  min-height: 74px;
}
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img { height: 30px; width: auto; }
.header-menu { display: flex; align-items: center; margin-left: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-head);
  font-size: .98rem; font-weight: 600; color: var(--ink-2);
  padding: 9px 14px; border-radius: 10px;
}
.nav a:hover { color: var(--green-700); background: var(--green-50); }
.nav a.active { color: var(--green-700); }
.header-cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.header-cta .login {
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  color: var(--ink); padding: 10px 16px; border-radius: 10px; border: 1px solid var(--line-2);
}
.header-cta .login:hover { border-color: var(--green); color: var(--green-700); }

.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line-2); border-radius: 10px; padding: 9px 11px; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; display: block; stroke: var(--ink); }

/* ---------- Herojus ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(52rem 30rem at 85% -12%, rgba(38,177,88,.12), transparent 60%),
    radial-gradient(46rem 26rem at 4% 6%, rgba(28,110,164,.08), transparent 55%),
    linear-gradient(180deg, #f6fbf8 0%, #fdfefd 70%, #fff 100%);
  padding-block: clamp(56px, 8vw, 92px) 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(18,47,73,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
  pointer-events: none;
}
.hero-in { position: relative; text-align: center; max-width: 860px; margin-inline: auto; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--green-600); position: relative; white-space: nowrap; }
.hero h1 .accent svg {
  position: absolute; left: 0; right: 0; bottom: -.18em; width: 100%; height: .3em;
  color: rgba(38,177,88,.5);
}
.hero .lead { max-width: 640px; margin: 0 auto 30px; font-size: 1.18rem; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.hero-bullets {
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  font-size: .95rem; font-weight: 500; color: var(--muted); padding: 0; margin: 0 0 8px; list-style: none;
}
.hero-bullets li { display: inline-flex; align-items: center; gap: 8px; }
.hero-bullets svg { width: 17px; height: 17px; color: var(--green-600); flex-shrink: 0; }

/* Naršyklės rėmelis */
.browser {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid var(--line);
  padding: 11px 16px;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser-dots i:nth-child(1) { background: #fca5a5; }
.browser-dots i:nth-child(2) { background: #fcd34d; }
.browser-dots i:nth-child(3) { background: #86efac; }
.browser-url {
  flex: 1; max-width: 380px; margin-inline: auto;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 8px; padding: 5px 12px;
  font-size: .8rem; color: var(--muted); font-weight: 500;
}
.browser-url svg { width: 12px; height: 12px; color: var(--green-600); }
.browser img { width: 100%; }

.hero-shot { position: relative; max-width: 1040px; margin: clamp(40px, 6vw, 64px) auto 0; padding-inline: 24px; }
.hero-shot .browser { border-radius: 18px 18px 0 0; border-bottom: 0; }
.hero-shot .browser img { border-radius: 0; }
.hero-fade { position: absolute; inset: auto 0 0 0; height: 120px; background: linear-gradient(180deg, transparent, #fff 92%); pointer-events: none; }

/* Plaukiojančios kortelės */
.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-head); font-size: .88rem; font-weight: 600; color: var(--ink);
  animation: floaty 6s ease-in-out infinite;
}
.float-card small { display: block; font-family: var(--font-body); font-weight: 500; color: var(--muted); font-size: .78rem; }
.float-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.float-icon svg { width: 19px; height: 19px; }
.float-icon.green { background: var(--green-50); color: var(--green-600); }
.float-icon.blue { background: #e8f2fb; color: #2478b8; }
.float-card.fc-1 { top: 18%; left: -8px; animation-delay: 0s; }
.float-card.fc-2 { top: 52%; right: -14px; animation-delay: 1.6s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Integracijų juosta ---------- */
.logos { border-block: 1px solid var(--line); background: #fff; padding-block: 34px; }
.logos-label { text-align: center; font-size: .84rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 4vw, 48px); flex-wrap: wrap; }
.logos-row img { height: 58px; width: auto; opacity: .6; filter: grayscale(1); transition: all .2s; }
.logos-row img:hover { opacity: 1; filter: none; }

/* ---------- Kortelės ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  border: 1px solid var(--green-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-700);
  margin-bottom: 20px;
}
.card-icon svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .98rem; color: var(--body); }

/* ---------- Funkcijų sekcijos (tekstas + ekranas) ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.feature-row + .feature-row { margin-top: clamp(72px, 10vw, 120px); }
.feature-row.flip .feature-copy { order: 2; }
.feature-row.flip .feature-media { order: 1; }
.feature-copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); }
.feature-copy .lead { font-size: 1.05rem; margin-bottom: 22px; }
.check-list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--ink-2); font-weight: 500; }
.check-list svg { width: 21px; height: 21px; color: var(--green-600); flex-shrink: 0; margin-top: 1px; }
.link-more { font-family: var(--font-head); font-weight: 700; display: inline-flex; align-items: center; gap: 7px; }
.link-more svg { width: 17px; height: 17px; transition: transform .18s; }
.link-more:hover svg { transform: translateX(4px); }
.feature-media { position: relative; }
.feature-media::before {
  content: ""; position: absolute; inset: 12% -6% -8% 10%;
  background: linear-gradient(135deg, var(--green-50), #e6f3fb);
  border-radius: 24px; z-index: 0;
}
.feature-row.flip .feature-media::before { inset: 12% 10% -8% -6%; }
.feature-media .browser { position: relative; z-index: 1; }

/* ---------- Skaičių juosta ---------- */
.stats { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(40rem 20rem at 80% 0%, rgba(38,177,88,.16), transparent 60%);
}
.stats .container { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.stat span { font-size: .95rem; color: #9db4c6; font-weight: 500; }

/* ---------- Atsiliepimai ---------- */
.quote-card { display: flex; flex-direction: column; gap: 18px; }
.stars { display: flex; gap: 3px; color: var(--amber); }
.stars svg { width: 18px; height: 18px; }
.quote-card blockquote { margin: 0; font-size: 1rem; color: var(--ink-2); line-height: 1.6; flex: 1; }
.quote-who { display: flex; align-items: center; gap: 13px; }
.quote-who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); background: #fff; }
.quote-who b { display: block; font-family: var(--font-head); color: var(--ink); font-size: .97rem; }
.quote-who span { font-size: .86rem; color: var(--muted); }

/* ---------- Kainos ---------- */
.pricing-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--line-2); border-radius: 999px; padding: 5px;
  margin: 0 auto 44px;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
}
.pricing-toggle button {
  border: 0; background: none; cursor: pointer;
  padding: 9px 22px; border-radius: 999px;
  font: inherit; color: var(--muted);
  transition: all .18s;
}
.pricing-toggle button.on { background: var(--ink); color: #fff; }
.pricing-toggle .save { color: var(--green-600); font-size: .8rem; margin-left: 2px; }

.plan {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan.featured {
  border: 2px solid var(--green);
  box-shadow: 0 20px 48px -18px rgba(38,177,88,.35);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--green), var(--green-600));
  color: #fff; font-family: var(--font-head); font-size: .76rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.plan h3 { font-size: 1.28rem; margin-bottom: 4px; }
.plan-for { font-size: .92rem; color: var(--muted); min-height: 44px; margin-bottom: 18px; }
.plan-price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 4px; }
.plan-price b { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.plan-price span { color: var(--muted); font-weight: 500; }
.plan-note { font-size: .84rem; color: var(--muted); margin-bottom: 22px; min-height: 20px; }
.plan-note .old { text-decoration: line-through; opacity: .7; }
.plan .btn { width: 100%; margin-bottom: 24px; }
.plan-feats { list-style: none; padding: 22px 0 0; margin: 0; border-top: 1px solid var(--line); display: grid; gap: 11px; }
.plan-feats li { display: flex; gap: 10px; font-size: .93rem; color: var(--ink-2); }
.plan-feats li.no { color: #9fb0c0; }
.plan-feats svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.plan-feats li:not(.no) svg { color: var(--green-600); }
.plan-feats li.no svg { color: #c3d0db; }
.pricing-foot { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 34px; }

/* ---------- DUK ---------- */
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: 12px; }
.faq {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.faq[open] { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 19px; height: 19px; color: var(--green-600); flex-shrink: 0; transition: transform .22s; }
.faq[open] summary svg { transform: rotate(45deg); }
.faq-body { padding: 0 22px 20px; font-size: .98rem; }

/* ---------- CTA juosta ---------- */
.cta-band { padding-block: clamp(56px, 8vw, 88px); }
.cta-box {
  position: relative; overflow: hidden;
  background:
    radial-gradient(38rem 20rem at 88% -20%, rgba(255,255,255,.16), transparent 55%),
    linear-gradient(120deg, #157a3e, var(--green-600) 55%, #2cbb61);
  border-radius: 26px;
  padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 72px);
  text-align: center; color: #fff;
  box-shadow: 0 28px 64px -20px rgba(24, 138, 65, .5);
}
.cta-box::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(115deg, #000, transparent 65%);
}
.cta-box h2 { color: #fff; position: relative; }
.cta-box p { position: relative; color: #e2f6e9; max-width: 560px; margin: 0 auto 30px; font-size: 1.08rem; }
.cta-box .btn { position: relative; }
.cta-box small { display: block; position: relative; margin-top: 16px; color: #cdeed9; font-size: .88rem; }

/* ---------- Poraštė ---------- */
.site-footer { background: var(--navy); color: #9db4c6; font-size: .95rem; }
.footer-in { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-block: 64px 48px; }
.footer-brand img { height: 30px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { font-size: .93rem; max-width: 280px; }
.site-footer h4 { color: #fff; font-size: .95rem; font-weight: 700; margin: 0 0 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { color: #9db4c6; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; margin-top: 3px; color: var(--green); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding-block: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .87rem; }
.footer-bottom a { color: #9db4c6; }
.footer-bottom a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center; color: #cfdde8;
}
.footer-social a:hover { background: rgba(255,255,255,.08); color: #fff; }
.footer-social svg { width: 17px; height: 17px; }

/* ---------- Vidinių puslapių viršus ---------- */
.page-hero {
  background:
    radial-gradient(48rem 24rem at 90% -30%, rgba(38,177,88,.1), transparent 60%),
    linear-gradient(180deg, #f6fbf8, #fff);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(48px, 7vw, 72px);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 12px; }
.page-hero .lead { max-width: 620px; margin-inline: auto; }
.breadcrumbs { font-size: .85rem; color: var(--muted); margin-bottom: 14px; font-weight: 500; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--green-700); }

/* ---------- Kontaktai ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); }
.contact-card + .contact-card { margin-top: 14px; }
.contact-card .card-icon { margin: 0; width: 46px; height: 46px; border-radius: 12px; }
.contact-card .card-icon svg { width: 22px; height: 22px; }
.contact-card b { font-family: var(--font-head); color: var(--ink); display: block; margin-bottom: 2px; }
.contact-card a, .contact-card span { font-size: .97rem; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; gap: 18px; }
.form-field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .93rem; color: var(--ink); margin-bottom: 7px; }
.form-field input, .form-field textarea {
  width: 100%; font: inherit; color: var(--ink);
  border: 1px solid var(--line-2); border-radius: 11px;
  padding: 13px 15px; background: #fbfdfe;
  transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(38,177,88,.14); background: #fff;
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* ---------- Turinio puslapiai (blogas, privatumo) ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 1.6rem; margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose img { border-radius: var(--radius); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }

/* ---------- Atsiradimo animacijos ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsyvumas ---------- */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .footer-in { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .header-menu { display: none; }
  .nav-toggle { display: block; }
  .site-header.menu-open .header-menu {
    display: block;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 14px 20px 20px; margin: 0;
    box-shadow: 0 24px 40px -20px rgba(13,35,52,.18);
  }
  .site-header.menu-open .nav {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
  }
  .site-header.menu-open .nav a { padding: 12px 14px; }
  .site-header.menu-open .header-cta {
    display: flex; flex-direction: column; align-items: stretch; gap: 10px;
    margin: 14px 0 0; padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .site-header.menu-open .header-cta .login {
    background: var(--ink); color: #fff; border-color: var(--ink);
    text-align: center; padding: 14px 16px; font-size: 1rem; border-radius: 13px;
  }
  .site-header.menu-open .header-cta .login:hover { background: var(--navy-2); color: #fff; }
  .site-header.menu-open .header-cta .btn { padding: 14px 16px; font-size: 1rem; border-radius: 13px; }
  .grid-3 { grid-template-columns: 1fr; }
  .feature-row, .feature-row.flip { grid-template-columns: 1fr; gap: 30px; }
  .feature-row.flip .feature-copy { order: 1; }
  .feature-row.flip .feature-media { order: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .float-card { display: none; }
}
@media (max-width: 620px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-in { grid-template-columns: 1fr; gap: 34px; }
  .hero-actions .btn { width: 100%; }
  section { padding-block: 56px; }
}

/* ---------- Kainų palyginimo lentelė ---------- */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.compare { width: 100%; border-collapse: collapse; min-width: 760px; }
.compare th, .compare td { padding: 15px 20px; text-align: center; font-size: .95rem; border-bottom: 1px solid var(--line); }
.compare thead th { padding-block: 22px; background: #fbfdfc; }
.compare th:first-child, .compare td:first-child { text-align: left; font-weight: 500; color: var(--ink-2); width: 42%; }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:hover td { background: #fafdfb; }
.compare .plan-name { font-family: var(--font-head); font-weight: 800; font-size: 1.06rem; color: var(--ink); display: block; }
.compare .plan-price-sm { font-size: .9rem; color: var(--muted); font-weight: 500; }
.compare .plan-price-sm b { color: var(--green-700); font-weight: 700; }
.compare td.yes svg { color: var(--green-600); }
.compare td.no svg { color: #c9d6e0; }
.compare td svg { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }
.compare td .val { font-weight: 600; color: var(--ink); }
.compare .col-featured { background: var(--green-50); box-shadow: inset 2px 0 0 var(--green-100), inset -2px 0 0 var(--green-100); }
.compare-note { font-size: .84rem; color: var(--muted); text-align: center; margin-top: 18px; }
.group-row td { background: #f6faf8 !important; font-family: var(--font-head); font-weight: 700; font-size: .8rem !important; letter-spacing: .06em; text-transform: uppercase; color: var(--muted) !important; padding-block: 10px; }

/* ---------- Apie mus ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.about-values { display: grid; gap: 14px; }
.value-row { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; box-shadow: var(--shadow-sm); }
.value-row .card-icon { margin: 0; width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; }
.value-row .card-icon svg { width: 22px; height: 22px; }
.value-row b { font-family: var(--font-head); color: var(--ink); display: block; margin-bottom: 3px; }
.value-row p { font-size: .95rem; margin: 0; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- Blogas ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card .post-thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-soft); }
.post-card .post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-meta { font-size: .84rem; color: var(--muted); font-weight: 500; }
.post-card h2, .post-card h3 { font-size: 1.12rem; line-height: 1.35; margin: 0; }
.post-card h2 a, .post-card h3 a { color: var(--ink); }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--green-700); }
.post-card p { font-size: .94rem; margin: 0; flex: 1; }
.post-card .link-more { font-size: .93rem; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding-inline: 12px; border: 1px solid var(--line-2); border-radius: 11px; background: #fff; font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--ink); }
.pagination .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination .page-numbers:hover:not(.current) { border-color: var(--green); color: var(--green-700); }

/* ---------- Įrašo puslapis ---------- */
.post-hero { padding-block: clamp(44px, 6vw, 64px) 0; text-align: center; }
.post-hero .post-meta { margin-bottom: 14px; }
.post-hero h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); max-width: 820px; margin-inline: auto; }
.post-feature-img { max-width: 920px; margin: clamp(28px, 5vw, 44px) auto 0; padding-inline: 24px; }
.post-feature-img img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.prose { font-size: 1.05rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { border-left: 3px solid var(--green); margin: 1.4em 0; padding: .3em 0 .3em 1.2em; color: var(--ink-2); font-style: italic; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; }
.prose th, .prose td { border: 1px solid var(--line-2); padding: 10px 14px; text-align: left; font-size: .95rem; }
.prose th { background: var(--bg-soft); font-family: var(--font-head); }
.post-nav { display: flex; justify-content: space-between; gap: 16px; max-width: 760px; margin: 48px auto 0; padding-top: 28px; border-top: 1px solid var(--line); }
.post-nav a { font-family: var(--font-head); font-weight: 700; font-size: .95rem; }

/* ---------- Pranešimai formose ---------- */
.form-alert { border-radius: 12px; padding: 14px 18px; font-size: .96rem; font-weight: 500; margin-bottom: 18px; }
.form-alert.ok { background: var(--green-50); border: 1px solid var(--green-100); color: var(--green-700); }
.form-alert.err { background: #fdf0ef; border: 1px solid #f6d5d2; color: #b3372c; }

/* ---------- 404 ---------- */
.error-hero { text-align: center; padding-block: clamp(80px, 12vw, 140px); }
.error-hero .code { font-family: var(--font-head); font-size: clamp(4rem, 10vw, 7rem); font-weight: 800; color: var(--green-600); line-height: 1; letter-spacing: -.04em; }

@media (max-width: 1020px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

/* ---------- Slapukų juosta (CookieYes / cookie-law-info) ---------- */
.cky-consent-bar {
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: 16px !important;
  box-shadow: var(--shadow-lg) !important;
  font-family: var(--font-body) !important;
  padding: 20px 22px !important;
}
.cky-notice-des, .cky-notice-des p, .cky-title {
  color: var(--body) !important;
  font-family: var(--font-body) !important;
  font-size: .93rem !important;
}
.cky-notice-des a, .cky-policy { color: var(--green-700) !important; }
.cky-btn.cky-btn-accept {
  background: linear-gradient(180deg, #2cbb61, var(--green-600)) !important;
  color: #fff !important;
  border-radius: 11px !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  padding: 11px 20px !important;
  border: 0 !important;
}
.cky-btn.cky-btn-customize, .cky-btn.cky-btn-reject {
  border-radius: 11px !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  border: 1px solid var(--line-2) !important;
  color: var(--ink) !important;
  background: #fff !important;
}

/* Elementor turinys įrašuose: nuimam pirmos/paskutinės sekcijos didelius atitraukimus */
.prose .elementor > .elementor-section:first-child { padding-top: 0 !important; margin-top: 0 !important; }
.prose .elementor > .elementor-section:last-child { padding-bottom: 0 !important; margin-bottom: 0 !important; }
