/* ============================================================
   IT2.lt — dizaino sistema (B: amber + gilus tyrkyzas)
   Tyrkyzas = struktūra / nuorodos / pasitikėjimas.
   Amber   = veiksmas / energija / akcentai.
   Šriftai: Source Sans 3 (antraštės + tekstas), self-host.
   ============================================================ */

/* ---------- Šriftai (latin + latin-ext dėl ąčęėįšųūž) ---------- */
@font-face{font-family:"Source Sans 3";src:url("fonts/source-sans-3-400-latin-ext.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap;unicode-range:U+0100-024F,U+1E00-1EFF,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:"Source Sans 3";src:url("fonts/source-sans-3-400-latin.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Source Sans 3";src:url("fonts/source-sans-3-600-latin-ext.woff2") format("woff2");font-weight:600;font-style:normal;font-display:swap;unicode-range:U+0100-024F,U+1E00-1EFF,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:"Source Sans 3";src:url("fonts/source-sans-3-600-latin.woff2") format("woff2");font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:"Source Sans 3";src:url("fonts/source-sans-3-700-latin-ext.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap;unicode-range:U+0100-024F,U+1E00-1EFF,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:"Source Sans 3";src:url("fonts/source-sans-3-700-latin.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap}

/* ---------- Kintamieji ---------- */
:root {
  --paper: #FBFAF8;
  --paper-2: #F1EEE8;         /* šilta cream — alternatyvios juostos, kortelės */
  --ink: #1C1E21;
  --ink-2: #4A4F55;
  --ink-3: #6E747B;

  --amber: #EB9B01;           /* veiksmas: CTA, numeriai, akcentai */
  --amber-dark: #D18A01;
  --amber-ink: #966400;       /* amber tekstui ant šviesaus (AA) */

  --teal: #0E5A56;            /* struktūra, nuorodos, pasitikėjimas */
  --teal-deep: #0B403D;       /* tamsios juostos, footer */
  --teal-tint: #E7EFED;       /* labai švelnus tyrkyzo fonas */

  --light: #F4F2EE;           /* tekstas ant tamsaus tyrkyzo */
  --light-muted: #B7C7C4;     /* antrinis tekstas ant tyrkyzo */

  --hairline: #E4E0D8;

  --sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;

  --w-page: 1160px;
  --w-prose: 68ch;
  --pad-x: clamp(20px, 4vw, 40px);
  --sec-y: clamp(64px, 9vw, 116px);
  --radius: 14px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Bazė ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@media (min-width: 900px) { body { font-size: 18px; } }

h1, h2, h3 {
  font-family: var(--sans); font-weight: 700; line-height: 1.15;
  letter-spacing: -0.015em; margin: 0 0 .5em; text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 5.6vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); line-height: 1.28; }
h4 { font-family: var(--sans); font-weight: 700; font-size: 1.02rem; margin: 0 0 .4em; }
.accent-i { font-style: italic; color: var(--teal); }   /* kursyvinis akcento žodis hero */

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: rgba(14,90,86,.35); }
a:hover { text-decoration-color: var(--teal); }

ul, ol { padding-left: 1.3em; margin: 0 0 1.1em; }
li { margin-bottom: .35em; }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 700; }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--amber); color: var(--ink); }

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

/* ---------- Pagalbinės ---------- */
.container { max-width: var(--w-page); margin-inline: auto; padding-inline: var(--pad-x); }
.prose { max-width: var(--w-prose); }
.mt-lg { margin-top: 48px; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--paper); padding: 10px 18px; z-index: 100; text-decoration: none; }
.skip-link:focus { left: 12px; top: 12px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber); display: inline-block; }

.section { padding-block: var(--sec-y); }
.section + .section { border-top: 1px solid var(--hairline); }
.section--tinted { background: var(--paper-2); }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head .lead { color: var(--ink-2); font-size: 1.08rem; }

/* ---------- Mygtukai ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: 1rem;
  padding: 13px 26px; border-radius: 12px; text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--amber); color: #241700; box-shadow: 0 8px 22px -8px rgba(235,155,1,.6), inset 0 1px 0 rgba(255,255,255,.35); }
.btn--primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(235,155,1,.75); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn--light { background: transparent; color: var(--light); border-color: rgba(244,242,238,.3); }
.btn--light:hover { border-color: rgba(244,242,238,.65); background: rgba(244,242,238,.06); }
.btn .arr { transition: transform .18s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

.link-more { font-weight: 700; text-decoration: none; color: var(--teal); display: inline-flex; align-items: center; gap: 7px; }
.link-more:hover { color: var(--amber-ink); gap: 10px; }

/* ---------- Antraštė / navigacija ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251,250,248,.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--hairline); }
.nav-bar { display: flex; align-items: center; gap: 28px; min-height: 74px; }
.brand { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.brand img { height: 40px; width: auto; }

.nav-toggle { display: none; background: none; border: 1px solid var(--hairline); border-radius: 8px; padding: 9px 11px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { display: block; }
.nav-wrap { display: flex; align-items: center; gap: 10px; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-list a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: .98rem; }
.nav-list > li > a, .nav-list .sub-toggle { display: inline-block; padding: 10px 13px; border-radius: 8px; }
.nav-list > li > a:hover { background: var(--paper-2); }

.has-sub { position: relative; }
.sub-toggle { font: inherit; font-weight: 600; color: var(--ink); background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.sub-toggle:hover { background: var(--paper-2); border-radius: 8px; }
.sub-toggle .chev { transition: transform .18s var(--ease); }
.sub-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 300px;
  background: var(--paper); border: 1px solid var(--hairline); border-radius: 14px;
  box-shadow: 0 18px 46px rgba(11,64,61,.14); padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
}
.has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu, .has-sub.is-open .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.has-sub:hover .chev, .has-sub:focus-within .chev, .has-sub.is-open .chev { transform: rotate(180deg); }
.sub-menu a { display: block; padding: 11px 14px; border-radius: 9px; font-weight: 600; }
.sub-menu a:hover { background: var(--paper-2); }
.sub-menu a small { display: block; font-weight: 400; color: var(--ink-3); font-size: .84rem; margin-top: 2px; }
.sub-menu a.is-flagship { background: var(--teal-tint); }
.sub-menu a.is-flagship strong { color: var(--teal); }
.sub-menu .tag { font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-ink); border: 1px solid rgba(150,100,0,.35); border-radius: 5px; padding: 1px 6px; margin-left: 8px; vertical-align: middle; }

.nav-cta { margin-left: 10px; }
.nav-cta .btn { padding: 10px 20px; font-size: .95rem; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-wrap { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-bottom: 1px solid var(--hairline); box-shadow: 0 20px 40px rgba(11,64,61,.1); padding: 10px var(--pad-x) 24px; flex-direction: column; align-items: stretch; }
  .nav-wrap.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--hairline); }
  .nav-list > li:last-child { border-bottom: none; }
  .nav-list > li > a, .sub-toggle { display: block; width: 100%; text-align: left; padding: 14px 4px; }
  .sub-toggle .chev { display: none; }
  .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; border: none; box-shadow: none; background: transparent; padding: 0 0 8px 14px; min-width: 0; }
  .nav-cta { margin: 14px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero (pagrindinis) ---------- */
.hero { padding-block: clamp(56px, 8vw, 104px) clamp(56px, 8vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero-visual { max-width: 340px; } }
.hero h1 { max-width: 15ch; margin-bottom: 24px; }
.hero .hero-lead { max-width: 46ch; font-size: clamp(1.08rem, 1.5vw, 1.22rem); color: var(--ink-2); margin-top: 4px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--hairline); display: flex; flex-wrap: wrap; gap: 14px 30px; color: var(--ink-3); font-size: .95rem; }
.hero-trust b { color: var(--teal); font-weight: 700; }

/* Hero vizualas — tyrkyzo „saugumo konsolė" */
.hero-visual { position: relative; border-radius: 22px; overflow: hidden; background: linear-gradient(158deg, #12716B 0%, var(--teal) 44%, var(--teal-deep) 100%); box-shadow: 0 30px 60px -24px rgba(11,64,61,.55); aspect-ratio: 1 / 1; max-width: 520px; margin-inline: auto; width: 100%; }
.hero-visual > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hv-chip .ic svg { position: static; inset: auto; width: 20px; height: 20px; }
.hv-chip { position: absolute; left: 22px; right: 22px; bottom: 20px; display: flex; align-items: center; gap: 14px; background: rgba(7,46,43,.94); backdrop-filter: blur(6px); border: 1px solid rgba(244,242,238,.16); border-radius: 14px; padding: 14px 16px; color: var(--light); box-shadow: 0 10px 24px -12px rgba(0,0,0,.6); }
.hv-chip .ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 10px; background: var(--amber); display: grid; place-items: center; color: #241700; }
.hv-chip b { display: block; font-size: .98rem; }
.hv-chip span { display: block; font-size: .82rem; color: var(--light-muted); }
@keyframes hvpulse { 0%,100% { opacity:.5 } 50% { opacity:1 } }
.hv-node { animation: hvpulse 3.4s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .hv-node { animation: none; } }

/* Puslapio (sub) hero */
.page-hero { padding-block: clamp(44px, 6vw, 82px) clamp(32px, 5vw, 60px); }
.page-hero .hero-lead { max-width: 62ch; font-size: 1.12rem; color: var(--ink-2); margin-top: 16px; }
.breadcrumb { font-size: .88rem; color: var(--ink-3); margin-bottom: 26px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: var(--hairline); }
.breadcrumb a { color: var(--ink-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); text-decoration: underline; }

/* ---------- Tyrkyzo juosta (NIS2 flagmanas) ---------- */
.band--teal { position: relative; background: var(--teal-deep); color: var(--light); overflow: hidden; }
.band--teal::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(90% 70% at 88% 12%, rgba(235,155,1,.14), transparent 55%), radial-gradient(70% 60% at 6% 100%, rgba(18,113,107,.5), transparent 60%); }
.band--teal > .container { position: relative; }
.band--teal .eyebrow { color: #7FD8CF; }
.band--teal .eyebrow::before { background: var(--amber); }
.band--teal h2 { color: var(--light); }
.band--teal h2 em { font-style: italic; color: var(--amber); }
.band--teal .lead { color: var(--light-muted); }
.flag-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: end; margin-bottom: 48px; }
@media (max-width: 820px) { .flag-head { grid-template-columns: 1fr; gap: 18px; } }
.flag-head .lead { font-size: 1.14rem; }

.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .tgrid { grid-template-columns: 1fr; } }
.tcard { border: 1px solid rgba(244,242,238,.16); border-radius: 16px; padding: 30px 28px 32px; background: rgba(244,242,238,.03); transition: border-color .2s var(--ease), transform .2s var(--ease); }
.tcard:hover { border-color: rgba(244,242,238,.4); transform: translateY(-3px); }
.tcard-num { font-family: var(--sans); font-weight: 700; font-size: 2rem; color: var(--amber); line-height: 1; margin-bottom: 16px; }
.tcard h3 { color: var(--light); font-size: 1.14rem; margin-bottom: 8px; }
.tcard p { color: var(--light-muted); font-size: .96rem; }
.flag-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; margin-top: 40px; }
.flag-foot p { color: var(--light-muted); font-size: .98rem; max-width: 44ch; }
.flag-foot strong { color: var(--light); }

/* ---------- Kortelių tinkleliai ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease); }
a.card { text-decoration: none; color: inherit; }
.card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(11,64,61,.08); }
.card-num { font-family: var(--sans); font-weight: 700; font-size: 1.1rem; color: var(--amber-ink); margin-bottom: 14px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-2); font-size: .98rem; }
.card .link-more { margin-top: auto; padding-top: 16px; font-size: .95rem; }
.card--flag { border-color: var(--teal); background: linear-gradient(180deg, var(--teal-tint), var(--paper) 65%); }
.card--flag .card-num { color: var(--teal); }
.card .flag-tag { display: inline-block; font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-ink); border: 1px solid rgba(150,100,0,.35); border-radius: 5px; padding: 2px 7px; margin-bottom: 12px; align-self: flex-start; }

.feature { border-top: 1px solid var(--hairline); padding: 20px 0 6px; }
.feature h4 { color: var(--ink); }
.feature p { color: var(--ink-2); font-size: .96rem; }

/* ---------- Palyginimas ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }
.compare-col { border: 1px solid var(--hairline); border-radius: var(--radius); padding: 28px 26px; }
.compare-col--good { background: var(--paper); border-color: var(--teal); }
.compare-col--bad { background: transparent; }
.compare-col h3 { font-size: 1.15rem; margin-bottom: 18px; }
.compare-col--bad h3 { color: var(--ink-3); }
.compare-list { list-style: none; padding: 0; margin: 0; }
.compare-list li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-top: 1px solid var(--hairline); font-size: .98rem; }
.compare-list li:first-child { border-top: none; }
.compare-col--bad .compare-list li { color: var(--ink-3); }
.mark { flex: 0 0 auto; margin-top: 5px; }
.mark--x { color: var(--ink-3); }
.mark--v { color: var(--teal); }

/* ---------- Žingsniai ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.steps--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .steps, .steps--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps, .steps--4 { grid-template-columns: 1fr; } }
.step { border-top: 2px solid var(--teal); padding-top: 18px; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--sans); font-weight: 700; font-size: 1.6rem; color: var(--amber-ink); display: block; margin-bottom: 10px; }
.step h3 { font-size: 1.1rem; }
.step p { color: var(--ink-2); font-size: .96rem; }

/* ---------- Segmentai ---------- */
.segment { border-left: 3px solid var(--amber); padding: 4px 0 4px 22px; }
.segment h3 { font-size: 1.14rem; margin-bottom: 8px; }
.segment p { color: var(--ink-2); font-size: .97rem; }

/* ---------- Partneriai ---------- */
.partners { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px, 5vw, 56px); }
.partners img { height: 26px; width: auto; filter: grayscale(1); opacity: .5; transition: filter .25s var(--ease), opacity .25s var(--ease); }
.partners img:hover { filter: grayscale(0); opacity: 1; }
.partners .p-lenovo { height: 20px; }
.partners .p-dell, .partners .p-hp { height: 34px; }
.partners .p-microsoft { height: 30px; }
.partners .p-eset { height: 28px; }
.partners-note { color: var(--ink-3); font-size: .92rem; margin-top: 22px; }

/* ---------- DUK ---------- */
.faq { max-width: 820px; }
.faq-item { border-top: 1px solid var(--hairline); }
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: var(--sans); font-size: 1.06rem; font-weight: 600; color: var(--ink); padding: 20px 44px 20px 2px; position: relative; }
.faq-q::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-size: 1.5rem; font-weight: 600; color: var(--amber-ink); transition: transform .2s var(--ease); }
.faq-item.is-open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; visibility: hidden; transition: max-height .3s var(--ease), visibility 0s linear .3s; }
.faq-item.is-open .faq-a { visibility: visible; transition: max-height .3s var(--ease), visibility 0s; }
.faq-a-inner { padding: 0 2px 22px; color: var(--ink-2); max-width: 66ch; }

/* ---------- CTA ---------- */
.cta-band .cta-inner { border: 1px solid var(--teal); border-radius: 18px; padding: clamp(36px, 6vw, 64px); display: flex; flex-wrap: wrap; align-items: center; gap: 28px; justify-content: space-between; background: linear-gradient(180deg, var(--teal-tint), var(--paper) 70%); }
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: var(--ink-2); max-width: 46ch; }
.cta-contacts { display: flex; flex-direction: column; gap: 12px; min-width: 260px; }
.cta-contacts a { font-weight: 600; }

/* ---------- Šoninė juosta ---------- */
.detail-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 940px) { .detail-grid { grid-template-columns: 1fr; } }
.aside-stack { position: sticky; top: 96px; display: grid; gap: 18px; }
@media (max-width: 940px) { .aside-stack { position: static; } }
.aside-card { border: 1px solid var(--hairline); border-radius: var(--radius); padding: 24px 22px; background: var(--paper); }
.aside-card h3 { font-size: 1.05rem; font-family: var(--sans); font-weight: 700; margin-bottom: 12px; }
.aside-card ul { list-style: none; padding: 0; margin: 0; }
.aside-card li { padding: 8px 0; border-top: 1px solid var(--hairline); font-size: .95rem; color: var(--ink-2); }
.aside-card li:first-child { border-top: none; }
.aside-card--cta { background: var(--teal-tint); border-color: var(--teal); }
.aside-card--cta p { font-size: .95rem; color: var(--ink-2); }
.aside-card--cta .btn { width: 100%; justify-content: center; margin-top: 14px; }

/* ---------- Žinynas / straipsniai ---------- */
.article-list { display: grid; gap: 0; max-width: 820px; }
.article-row { display: block; text-decoration: none; color: inherit; padding: 26px 2px; border-top: 1px solid var(--hairline); }
.article-list .article-row:last-child { border-bottom: 1px solid var(--hairline); }
.article-row .cat { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); }
.article-row h3 { margin: 8px 0 6px; transition: color .15s var(--ease); }
.article-row:hover h3 { color: var(--teal); }
.article-row p { color: var(--ink-2); font-size: .97rem; max-width: 64ch; }
.article-body { max-width: var(--w-prose); }
.article-body h2 { margin-top: 1.8em; font-size: clamp(1.4rem, 2.6vw, 1.7rem); }
.article-body h3 { margin-top: 1.4em; }
.article-body li { margin-bottom: .5em; }
.article-meta { color: var(--ink-3); font-size: .92rem; margin-bottom: 8px; }
.article-note { border-left: 3px solid var(--amber); background: var(--paper-2); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin: 1.4em 0; font-size: .97rem; }
.article-sources { border-top: 1px solid var(--hairline); margin-top: 2.2em; padding-top: 1.2em; }
.article-sources h2 { font-size: 1.1rem; margin-top: 0; }
.article-sources ul { font-size: .93rem; color: var(--ink-2); }
.read-next { margin-top: 2.4em; }
.read-next h2 { font-size: 1.2rem; }
.checklist { list-style: none; padding: 0; }
.checklist li { padding: 10px 0 10px 34px; position: relative; border-top: 1px solid var(--hairline); }
.checklist li::before { content: ""; position: absolute; left: 2px; top: 15px; width: 16px; height: 16px; border: 2px solid var(--teal); border-radius: 4px; }

/* ---------- Poraštė (gilus tyrkyzas) ---------- */
.site-footer { background: var(--teal-deep); color: var(--light-muted); margin-top: var(--sec-y); padding-block: clamp(48px, 7vw, 80px) 32px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 940px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 { font-family: var(--sans); font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--light); margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--light-muted); text-decoration: none; }
.site-footer a:hover { color: var(--light); text-decoration: underline; }
.footer-brand img { height: 34px; margin-bottom: 16px; }
.footer-brand p { font-size: .93rem; }
.footer-quals { border-top: 1px solid rgba(244,242,238,.16); margin-top: 40px; padding-top: 22px; font-size: .9rem; color: var(--light-muted); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; margin-top: 18px; font-size: .87rem; color: rgba(183,199,196,.75); }

/* ---------- Atsivertimo animacija ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.reveal { animation: fadeUp .7s var(--ease) both; }
.reveal-1 { animation-delay: .05s; }
.reveal-2 { animation-delay: .14s; }
.reveal-3 { animation-delay: .24s; }
.reveal-4 { animation-delay: .34s; }
