/* =========================================================
   GREITASKREDITAS.COM — STILIAI ("Sky Trust" dizainas)
   ========================================================= */
:root {
  --sky: #0284c7;
  --sky-dark: #0369a1;
  --deep: #075985;
  --navy: #0c2d48;
  --ice: #f0f9ff;
  --ice-2: #e0f2fe;
  --coral: #f97316;
  --coral-dark: #ea580c;
  --white: #ffffff;
  --ink: #0f2e45;
  --muted: #5b7a92;
  --line: #d7ecf9;
  --r: 16px;
  --shadow-sm: 0 2px 8px rgba(7,89,133,.08);
  --shadow-md: 0 8px 24px rgba(7,89,133,.10), 0 2px 6px rgba(7,89,133,.06);
  --shadow-lg: 0 24px 60px rgba(7,89,133,.16), 0 8px 20px rgba(7,89,133,.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }

/* ===== ICONS (SVG sprite, line style) ===== */
.ico {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  vertical-align: -0.18em;
  fill: none;
  flex: none;
}
.ico--star { fill: currentColor; }
/* Dideli iconai dekoratyviuose skrituliuose */
.step-card__icon .ico { width: 32px; height: 32px; color: var(--sky); vertical-align: middle; }
.why-card__icon .ico { width: 30px; height: 30px; color: var(--sky); vertical-align: middle; }
.article-card__img .ico { width: 46px; height: 46px; color: var(--sky); vertical-align: middle; }
.loading-step .ls-icon .ico { width: 15px; height: 15px; }
.offer-card__flag .ico, .offer-card__promo .ico { vertical-align: -0.15em; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  padding: 14px 30px;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(249,115,22,.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(249,115,22,.45); }
.btn--primary:active { transform: translateY(0); }
.btn--blue { background: var(--sky); color: #fff; box-shadow: 0 6px 18px rgba(2,132,199,.30); }
.btn--blue:hover { background: var(--sky-dark); transform: translateY(-2px); }
.btn--outline { background: var(--white); color: var(--sky); border: 2px solid var(--ice-2); }
.btn--outline:hover { border-color: var(--sky); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--deep); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.btn--sm { padding: 10px 22px; font-size: 14px; }
.btn--full { width: 100%; }
.btn--lg { padding: 17px 38px; font-size: 17px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
/* Header platesnis nei standartinis container – meniu turi kur kvėpuoti */
.header .container.header__inner { max-width: 1340px; }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -.3px;
  color: var(--ink);
}
.logo__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(2,132,199,.35);
  line-height: 0;
}
.logo__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.logo__text { white-space: nowrap; }
.logo__text strong { font-weight: 900; color: var(--sky); }
.logo--light { color: #fff; }
.logo--light .logo__text strong { color: #7dd3fc; }

.nav { display: flex; gap: 6px; align-items: center; }
.nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  padding: 9px 15px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all .18s ease;
}
.nav a:hover { color: var(--sky); background: var(--ice); }
/* Vidutiniai ekranai – palaipsniui kompaktiškiau, bet ne susigrūdę */
@media (min-width: 721px) and (max-width: 1200px) {
  .nav a { font-size: 14px; padding: 9px 11px; }
  .nav { gap: 3px; }
  .header__inner { gap: 20px; }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .nav a { font-size: 13.5px; padding: 8px 9px; }
  .header__inner { gap: 14px; }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .2s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--ice) 0%, #fafdff 70%, #ffffff 100%);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 72px 24px 88px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--deep);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero__badge span { color: var(--coral); }
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--sky);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: var(--ice-2);
  z-index: -1;
  border-radius: 6px;
}
.hero__sub { font-size: 18px; color: var(--muted); max-width: 520px; margin-bottom: 28px; }
.hero__features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 30px;
  max-width: 520px;
}
.hero__features li { display: flex; align-items: center; gap: 11px; font-size: 15.5px; color: var(--ink); }
.hero__features strong { font-weight: 800; }
.check {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ice-2);
  color: var(--sky-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* Floating CSS shapes */
.hero__art { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; }
.shape--ring {
  width: 340px; height: 340px; top: -90px; right: -70px;
  border: 44px solid var(--ice-2); opacity: .7;
}
.shape--dot-lg {
  width: 120px; height: 120px; bottom: 40px; right: 44%;
  background: radial-gradient(circle at 32% 30%, #bae6fd, #7dd3fc); opacity: .55;
  animation: floaty 7s ease-in-out infinite;
}
.shape--dot-sm {
  width: 44px; height: 44px; top: 110px; right: 46%;
  background: var(--coral); opacity: .18;
  animation: floaty 5.5s ease-in-out 1s infinite;
}
.coin {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
  color: #b45309;
  background: radial-gradient(circle at 35% 30%, #fde68a, #f59e0b);
  box-shadow: inset 0 -4px 8px rgba(180,83,9,.35), 0 10px 24px rgba(245,158,11,.35);
  border: 3px solid #fbbf24;
}
.coin--1 { width: 66px; height: 66px; font-size: 26px; top: 64px; right: 8%; animation: floaty 6s ease-in-out infinite; }
.coin--2 { width: 44px; height: 44px; font-size: 18px; bottom: 120px; right: 4%; animation: floaty 8s ease-in-out .8s infinite; }
.mini-card {
  position: absolute;
  width: 150px;
  height: 94px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--deep) 0%, var(--sky) 100%);
  box-shadow: 0 16px 36px rgba(7,89,133,.30);
  top: 170px;
  right: 2.5%;
  --rot: 8deg;
  transform: rotate(8deg);
  animation: floaty 7.5s ease-in-out .4s infinite;
}
.mini-card::before {
  content: "";
  position: absolute;
  top: 16px; left: 14px;
  width: 30px; height: 22px;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  border-radius: 5px;
}
.mini-card::after {
  content: "• • • •  • • • •";
  position: absolute;
  bottom: 14px; left: 14px;
  color: rgba(255,255,255,.85);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-14px) rotate(var(--rot, 0deg)); }
}

/* ===== FORM CARD (calculator + application) ===== */
.form-card {
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(215,236,249,.8);
  padding: 34px 32px 28px;
}
.form-card__head { margin-bottom: 26px; }
.form-card__head h2 { font-size: 24px; font-weight: 900; letter-spacing: -.5px; color: var(--navy); }
.form-card__head p { font-size: 14.5px; color: var(--muted); }
.form-step { display: none; }
.form-step--active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.back-link {
  background: none;
  border: none;
  color: var(--sky);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-bottom: 10px;
}

/* Sliders */
.slider-group { margin-bottom: 24px; }
.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.slider-label span { font-size: 14.5px; font-weight: 600; color: var(--muted); }
.slider-label output {
  font-size: 21px;
  font-weight: 900;
  color: var(--sky-dark);
  background: var(--ice);
  padding: 4px 15px;
  border-radius: 10px;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 99px;
  outline: none;
  background: linear-gradient(to right, var(--sky) 0%, var(--sky) var(--fill, 8%), var(--ice-2) var(--fill, 8%), var(--ice-2) 100%);
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 7px solid var(--sky);
  box-shadow: 0 3px 10px rgba(2,132,199,.4);
  transition: transform .15s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 7px solid var(--sky);
  box-shadow: 0 3px 10px rgba(2,132,199,.4);
}
.slider-minmax {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #8fb1c7;
  margin-top: 8px;
  font-weight: 600;
}

.calc-result {
  background: linear-gradient(135deg, var(--ice) 0%, var(--ice-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 22px;
  margin: 26px 0 22px;
}
.calc-result__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.calc-result__row span {
  font-size: 14px; font-weight: 600; color: var(--deep);
  line-height: 1.3; max-width: 55%;
}
.calc-result__row strong {
  font-size: clamp(24px, 6.5vw, 32px);
  font-weight: 900; letter-spacing: -.5px; color: var(--navy);
  white-space: nowrap; flex-shrink: 0;
}
.calc-result__note { font-size: 12px; color: var(--muted); margin-top: 10px; line-height: 1.5; }

.form-card__secure {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
  font-weight: 600;
}

/* Form fields */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--navy);
}
.field label small { font-weight: 500; color: var(--muted); font-size: 12px; }
/* Privalomo lauko žymė */
.req { color: #dc2626; font-weight: 800; }
.field input,
.field select {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
  color: var(--ink);
}
.field input:focus,
.field select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(2,132,199,.14);
}
.field.field--invalid input,
.field.field--invalid select { border-color: #dc2626; }
.field__error {
  display: none;
  font-size: 12.5px;
  color: #dc2626;
  margin-top: 5px;
}
.field--invalid .field__error { display: block; }
.field__error--consent { margin: 8px 0 0; }
.field__error--consent.show { display: block; }

.phone-wrap { display: flex; align-items: stretch; }
.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--ice);
  border: 1.5px solid var(--line);
  border-right: none;
  border-radius: 12px 0 0 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--deep);
}
.phone-wrap input { border-radius: 0 12px 12px 0; }

/* Sutikimų blokas – vizualiai atskirtas */
.form-consents {
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 4px 0 18px;
}
.checkbox {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--deep);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox + .checkbox,
.checkbox--optional { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line); }
.checkbox input {
  margin-top: 1px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--sky);
  cursor: pointer;
}
.checkbox--optional { color: var(--muted); }
.checkbox--optional small { color: var(--muted); font-size: 11.5px; }
.checkbox a { color: var(--sky); font-weight: 600; }
/* „Privalomi laukai" pastaba */
.form-required-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0 0;
}

/* ===== STATS ===== */
.stats { background: var(--deep); position: relative; overflow: hidden; }
.stats::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -260px;
  right: -90px;
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 44px 24px;
  gap: 24px;
  text-align: center;
  position: relative;
}
.stat { animation: rise .8s ease both; }
.stat:nth-child(2) { animation-delay: .12s; }
.stat:nth-child(3) { animation-delay: .24s; }
.stat:nth-child(4) { animation-delay: .36s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.stat strong { display: block; font-size: 36px; font-weight: 1000; letter-spacing: -1px; color: #fff; }
.stat span { font-size: 14px; color: #a5d8f3; font-weight: 600; }

/* ===== SECTIONS ===== */
.section { padding: 88px 0; }
.section--gray { background: var(--ice); }
.section__title {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 900;
  letter-spacing: -1px;
  text-align: center;
  color: var(--navy);
  margin-bottom: 16px;
}
.section__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--sky), var(--coral));
  margin: 14px auto 0;
}
.section__sub {
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 52px;
}
.section__cta { text-align: center; margin-top: 48px; }
.section__cta-note { font-size: 13.5px; color: var(--muted); margin-top: 14px; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}
.step-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 40px 30px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-card__num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--deep));
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(2,132,199,.35);
}
.step-card__icon {
  width: 68px;
  height: 68px;
  margin: 6px auto 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ice) 0%, var(--ice-2) 100%);
  border: 1px solid var(--ice-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: inset 0 1px 0 #fff, 0 4px 12px rgba(2,132,199,.1);
}
.step-card__icon .ico { color: var(--sky-dark); }
.step-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; color: var(--navy); }
.step-card p { font-size: 14.5px; color: var(--muted); }

/* Lenders preview grid */
.lenders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.lender-tile {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 20px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  display: flex;
  flex-direction: column;
}
.lender-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--ice-2); }
.lender-tile--featured { border: 2px solid var(--coral); box-shadow: 0 14px 34px rgba(249,115,22,.14); }
.lender-tile__badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff; font-size: 11px; font-weight: 900; letter-spacing: .6px;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 5px 14px rgba(249,115,22,.4);
}
/* Specifikacijos kortelėje */
.lender-tile__specs { list-style: none; margin: 14px 0 16px; padding: 0; text-align: left; }
.lender-tile__specs li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 13px;
}
.lender-tile__specs li:last-child { border-bottom: none; }
.lender-tile__specs li span { color: var(--muted); font-weight: 600; }
.lender-tile__specs li b { color: var(--navy); font-weight: 800; }
.lender-tile__specs li b.sky { color: var(--sky-dark); }
.lender-tile .btn { margin-top: auto; }
.lender-tile__review {
  display: block; margin-top: 10px; font-size: 12.5px; font-weight: 700;
  color: var(--sky); text-decoration: none;
}
.lender-tile__review:hover { text-decoration: underline; }
.lender-tile__logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: .5px;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-sm);
}
/* Kreditoriaus logotipas peržiūroje – platus baltas stačiakampis (logo ~300x80) */
.lender-tile__logo--img {
  width: 100%;
  max-width: 150px;
  height: 52px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
}
.lender-tile__logo--img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lender-tile h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin: 12px 0 6px; }
.lender-tile__rating { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; }
.lender-tile__rating b { color: var(--navy); font-weight: 900; }
.lender-tile__rating span { color: var(--muted); font-weight: 600; font-size: 12px; }

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.why-card { text-align: center; padding: 10px; }
.why-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ice) 0%, var(--ice-2) 100%);
  border: 1px solid var(--ice-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  box-shadow: inset 0 1px 0 #fff, 0 4px 12px rgba(2,132,199,.1);
}
.why-card__icon .ico { color: var(--sky-dark); }
.why-card h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.why-card p { font-size: 14px; color: var(--muted); }

/* ===== ATSILIEPIMAI (reviews) ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-sm);
  margin: 0;
  display: flex;
  flex-direction: column;
}
.review-card__stars { display: flex; gap: 2px; margin-bottom: 14px; }
.review-card__stars .ico--star { width: 18px; height: 18px; color: #f5a623; }
.review-card blockquote {
  margin: 0 0 18px; font-size: 15px; line-height: 1.6; color: var(--ink);
  font-style: normal; flex: 1;
}
.review-card figcaption { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--deep));
  color: #fff; font-weight: 800; font-size: 17px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-card figcaption b { display: block; font-size: 14.5px; color: var(--navy); font-weight: 800; }
.review-card figcaption small { font-size: 12.5px; color: var(--muted); }

/* ===== SEO turinys ===== */
.seo-content h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 900; color: var(--navy); letter-spacing: -.5px; margin-bottom: 16px; }
.seo-content h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin: 28px 0 10px; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq__item:hover { box-shadow: var(--shadow-md); }
.faq__item[open] { border-color: var(--ice-2); box-shadow: var(--shadow-md); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  transition: color .2s;
}
.faq__item summary:hover { color: var(--sky-dark); }
.faq__item[open] summary { color: var(--sky-dark); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--ice);
  color: var(--sky-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, color .25s;
}
.faq__item[open] summary::after { transform: rotate(45deg); background: var(--sky); color: #fff; }
.faq__item p { padding: 0 24px 22px; font-size: 15.5px; line-height: 1.7; color: var(--muted); }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--sky) 0%, var(--deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,.07);
  top: -160px;
  right: -110px;
}
.cta-strip__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 64px 24px;
  flex-wrap: wrap;
}
.cta-strip h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 900; letter-spacing: -.7px; margin-bottom: 8px; }
.cta-strip p { color: #c8e8fa; font-size: 16px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: #9dbcd2; padding: 68px 0 32px; font-size: 14px; }
/* Prekės ženklas viršuje: logotipas+aprašymas kairėje, kontaktai dešinėje */
.footer__brand {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 36px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer__brand-info { max-width: 560px; }
.footer__brand .logo { margin: 0 0 14px; flex-shrink: 0; }
.footer__brand p { font-size: 14.5px; line-height: 1.65; margin: 0; color: #a9c7dc; }
.footer__brand-contacts { flex-shrink: 0; min-width: 220px; }
.footer__brand-contacts h4 { color: #fff; font-size: 15px; font-weight: 800; margin: 4px 0 14px; }
.footer__brand-contacts a { display: block; color: #9dbcd2; text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.footer__brand-contacts a:hover { color: #7dd3fc; }
.footer__brand-contacts .footer__note { color: #6f92ac; font-size: 12.5px; margin-top: 12px; line-height: 1.5; }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px 28px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__brand { flex-direction: column; gap: 28px; }
  .footer__brand-contacts { min-width: 0; }
}
@media (max-width: 620px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
.footer .logo { color: #fff; margin-bottom: 16px; }
.footer__col--brand p { font-size: 14px; line-height: 1.7; }
.footer__col h4 { color: #fff; font-size: 15px; font-weight: 800; margin-bottom: 16px; }
.footer__col a {
  display: block;
  color: #9dbcd2;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  transition: color .15s ease;
}
.footer__col a:hover { color: #7dd3fc; }
.footer__note { font-size: 13px; margin-top: 8px; color: #6d92ab; }
.footer__disclaimer { padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer__disclaimer p { font-size: 12.5px; line-height: 1.7; margin-bottom: 12px; color: #7fa3bc; }
.footer__disclaimer strong { color: #b9d5e8; }
.footer__bottom { padding-top: 26px; font-size: 13px; text-align: center; color: #6d92ab; }
.footer__bottom a { color: inherit; }

/* =========================================================
   MODALS (forma / įkėlimas / pasiūlymai) — pradiniame puslapyje
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(12, 45, 72, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
  overflow: hidden;            /* fonas fiksuotas – slenka tik modalo turinys */
}
.modal-overlay--open { opacity: 1; visibility: visible; }
/* Paslėpti slinkties juostą modaluose (bet leisti slinkti) */
.modal-overlay, .modal { scrollbar-width: none; -ms-overflow-style: none; }
.modal-overlay::-webkit-scrollbar, .modal::-webkit-scrollbar { width: 0; height: 0; display: none; }

.modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 34px 30px 28px;
  margin: auto;
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.modal-overlay--open .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal--offers { max-width: 780px; }

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: var(--ice);
  color: var(--deep);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.modal__close:hover { background: var(--ice-2); transform: rotate(90deg); }

.modal__head { margin-bottom: 22px; padding-right: 30px; }
.modal__head h2 { font-size: 23px; font-weight: 900; letter-spacing: -.5px; color: var(--navy); }
.modal__head p { font-size: 14.5px; color: var(--muted); }
.modal__summary {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  background: var(--ice);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--deep);
}
.modal__summary strong { color: var(--sky-dark); }

.modal__head--offers { text-align: center; margin-bottom: 40px; position: relative; z-index: 3; }
.modal__head--offers h2 { font-size: clamp(22px, 3vw, 28px); }
.modal__head--offers h2 span { color: var(--coral); }
.modal__head--offers .offers-summary {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
  background: var(--ice);
  border: 1px solid var(--line);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--deep);
}
.modal__head--offers .offers-summary strong { color: var(--sky-dark); }

/* Loading modal (nedidelis, be baltos kortelės — spineris ant fono) */
.modal-overlay--loading { background: rgba(12, 45, 72, .82); align-items: center; }
.modal-overlay--loading .loading-box { color: #fff; text-align: center; max-width: 420px; width: 100%; margin: auto; padding: 24px; }
.modal-overlay--loading .loading-box h2 { font-size: 23px; font-weight: 900; margin-bottom: 8px; }
.modal-overlay--loading .loading-box > p { color: #c8e8fa; font-size: 14.5px; margin-bottom: 26px; }
.modal-overlay--loading .loading-steps { max-width: 320px; margin-left: auto; margin-right: auto; }

/* Pasiūlymų sąrašas modaluose */
.offers-list--modal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
  align-items: stretch;
}
/* Vienoda kortelių aukštis; visos kortelės prasideda vienodai */
.offers-list--modal .offer-card { height: 100%; margin-top: 0; }
.offers-modal__disclaimer {
  margin-top: 22px;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 720px) {
  /* Modalai telefonuose: fiksuoti ekrano centre, slenka tik vidus */
  .modal-overlay { align-items: center; padding: 12px; }
  .modal {
    padding: 0;
    border-radius: 20px;
    height: calc(100dvh - 24px);
    max-height: calc(100dvh - 24px);
    margin: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;          /* vidinis blokas slenka, ne visas modalas */
  }
  .modal__close { top: 12px; right: 12px; width: 34px; height: 34px; font-size: 22px; z-index: 5; }

  /* Form modalas: antraštė fiksuota, laukai slenka */
  #formModal .modal__head { padding: 26px 20px 14px; margin: 0; }
  #formModal form { flex: 1; overflow-y: auto; padding: 0 20px 22px; }

  .modal__head { text-align: center; padding-right: 0; }
  .modal__head h2 { font-size: 22px; }
  .modal__summary { font-size: 12.5px; gap: 8px 14px; justify-content: center; }

  /* Pasiūlymų modalas – antraštė fiksuota viršuje, kortelės slenka */
  .modal--offers { max-width: 460px; }
  .modal__head--offers {
    flex-shrink: 0;
    padding: 26px 16px 16px;
    margin: 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }
  .modal__head--offers h2 { font-size: 21px; }
  .modal__head--offers .offers-summary { gap: 6px 14px; padding: 8px 16px; margin-top: 10px; }
  /* Telefone – paprastas flex stulpelis (2 klasės = didesnis specifiškumas) */
  .offers-list.offers-list--modal {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    overflow-y: auto;
    padding: 16px 14px 18px;   /* siaura paraštė → plati kortelė */
    margin: 0;
  }
  /* Kiekviena kortelė – aukštis pagal turinį */
  .offers-list.offers-list--modal .offer-card {
    height: auto !important;
    min-height: 0;
    flex: 0 0 auto;
    width: 100%;
    margin: 0;
  }
  .offers-modal__disclaimer { flex-shrink: 0; padding: 12px 16px 16px; margin: 0; border-top: 1px solid var(--line); }

  /* ===== Offer kortelė telefonuose – platesnė, tvarkinga, centruota ===== */
  .offer-card { padding: 22px 16px 20px; border-radius: 18px; overflow: hidden; }
  /* „GERIAUSIAS" ženklelis – juosta kortelės viršuje (flow, ne absolute) */
  .offer-card--featured { padding-top: 22px; }
  .offer-card--featured .offer-card__flag {
    position: static;
    display: block;
    margin: -22px -16px 18px;
    transform: none;
    border-radius: 0;
    padding: 11px 12px;
    box-shadow: none;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
  }
  /* Logotipas + pavadinimas centre */
  .offer-card__top {
    flex-direction: column; align-items: center; text-align: center;
    gap: 10px; margin-bottom: 16px;
  }
  .offer-logo--img { width: 150px; height: 52px; }
  .offer-logo--img img { object-position: center; }
  .offer-card__id { text-align: center; width: 100%; }
  .offer-card__name { font-size: 19px; }
  .offer-rating { justify-content: center; }
  /* 2 svarbiausi skaičiai – lygūs blokai */
  .offer-hl { gap: 12px; margin-bottom: 16px; }
  .offer-hl__item { padding: 12px 10px; }
  .offer-hl__item strong { font-size: 18px; }
  .offer-card__promo { align-self: center; }
  /* Specifikacijos – aiškus tarpas */
  .offer-specs li { padding: 10px 0; font-size: 14.5px; }
  .offer-card .btn--full { padding: 15px; font-size: 15.5px; }

  /* Header */
  .header__inner { gap: 12px; min-width: 0; }
  .header__inner .logo { min-width: 0; }
  .header__inner .logo__text { font-size: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .offers-hero .offers-summary { flex-wrap: wrap; max-width: 100%; }
}

/* =========================================================
   OFFERS PAGE (pasiulymai.html)
   ========================================================= */

/* Loading screen */
.loading-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--sky) 0%, var(--deep) 60%, var(--navy) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity .5s ease;
}
.loading-screen.hidden { opacity: 0; pointer-events: none; }
.loading-box { text-align: center; max-width: 460px; padding: 0 24px; }
.loading-spinner {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 0 auto 30px;
  border-radius: 50%;
  border: 5px solid rgba(255,255,255,.2);
  border-top-color: var(--coral);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
/* Atgalinis skaičiavimas spinerio viduryje (nesisuka su ratu) */
.loading-count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-rev 1s linear infinite;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
@keyframes spin-rev { to { transform: translate(-50%, -50%) rotate(-360deg); } }
.loading-box h1, .loading-box .loading-h1 { font-size: 26px; font-weight: 900; margin-bottom: 8px; letter-spacing: -.5px; color: #fff; }
.loading-box > p { color: #c8e8fa; font-size: 15px; margin-bottom: 30px; }
.loading-steps { text-align: left; display: flex; flex-direction: column; gap: 14px; }
.loading-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  transition: color .3s;
}
.loading-step .ls-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all .3s;
}
.loading-step.active { color: #fff; }
.loading-step.active .ls-icon { border-color: var(--coral); animation: pulse 1s infinite; }
.loading-step.done { color: rgba(255,255,255,.9); }
.loading-step.done .ls-icon { background: var(--coral); border-color: var(--coral); }
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(249,115,22,.25); } }
.loading-bar {
  margin-top: 30px;
  height: 6px;
  background: rgba(255,255,255,.15);
  border-radius: 100px;
  overflow: hidden;
}
.loading-bar__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), #fbbf24);
  border-radius: 100px;
  transition: width .4s ease;
}

/* Offers page */
.offers-page { background: var(--ice); min-height: 100vh; }
.offers-hero {
  background: linear-gradient(135deg, var(--sky), var(--deep));
  color: #fff;
  padding: 44px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offers-hero::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,.07);
  top: -160px;
  right: -110px;
}
.offers-hero h1 { position: relative; font-size: clamp(24px, 3.4vw, 32px); font-weight: 900; letter-spacing: -.6px; margin-bottom: 8px; }
.offers-hero h1 span { color: #fbbf24; }
.offers-hero p { position: relative; color: #c8e8fa; font-size: 15px; }
.offers-hero .offers-summary {
  position: relative;
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.offers-hero .offers-summary strong { color: #fbbf24; }

.offers-list {
  max-width: 900px;
  margin: -60px auto 0;
  padding: 26px 24px 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
/* Vienoda kortelių aukštis; visos kortelės prasideda vienodai */
.offers-list > .offer-card { height: 100%; margin-top: 0; }

/* Offer card */
.offer-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 24px 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  animation: cardIn .5s ease both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--ice-2); }
.offer-card--featured {
  border: 2px solid var(--coral);
  box-shadow: 0 16px 40px rgba(249,115,22,.16);
  padding-top: 32px;
}
.offer-card__flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .8px;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(249,115,22,.4);
}
.offer-card__rank {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 13px;
  font-weight: 900;
  color: #b4cfe2;
  letter-spacing: .5px;
}
.offer-card__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 14px;
  min-height: 118px;            /* vienoda antraštės aukštis visose kortelėse */
  justify-content: center;
}
.offer-card__id { min-width: 0; width: 100%; text-align: center; }
.offer-logo {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: .5px;
  box-shadow: var(--shadow-sm);
}
/* Logo kreditoriaus paveikslėlyje – platus baltas stačiakampis (logo ~300x80) */
.offer-logo--img {
  width: 120px;
  height: 46px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 10px;
}
.offer-logo--img img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.offer-card__name { font-size: 18.5px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.offer-rating { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 4px; flex-wrap: wrap; }
/* „promo" ženkleliui – visada rezervuota vieta, kad HL blokai sutaptų */
.offer-card__promo { align-self: center; }
.offer-card__promo-slot { min-height: 34px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.offer-card__promo-slot:empty { min-height: 0; margin-bottom: 0; }
.stars {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  color: #dbeafe;
  letter-spacing: 1px;
}
.stars::before { content: "★★★★★"; }
.stars i {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #f5a623;
  font-style: normal;
  letter-spacing: 1px;
}
.stars i::before { content: "★★★★★"; }
.offer-rating b { font-size: 13.5px; font-weight: 900; color: var(--navy); }
.offer-rating span { font-size: 12px; font-weight: 600; color: var(--muted); }
.offer-card__promo {
  display: inline-block;
  background: #fff7ed;
  color: var(--coral-dark);
  border: 1px solid #fed7aa;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  padding: 6px 12px;
}
/* Highlight – 2 svarbiausi skaičiai */
.offer-hl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.offer-hl__item {
  background: linear-gradient(135deg, var(--ice) 0%, #fafdff 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  text-align: center;
}
.offer-hl__item span { display: block; font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 2px; }
.offer-hl__item strong { font-size: 17px; font-weight: 900; color: var(--sky-dark); letter-spacing: -.3px; }
.offer-specs { list-style: none; margin: 0 0 16px; }
.offer-specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.offer-specs li:last-child { border-bottom: none; }
.offer-specs .k { color: var(--muted); font-weight: 600; }
.offer-specs .v { font-weight: 800; color: var(--navy); text-align: right; }
.offer-specs .v--sky { color: var(--sky-dark); }
.offer-card .btn { margin-top: auto; }
.offer-card__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
}
.offer-card__trust .ico { width: 14px; height: 14px; color: var(--sky); }

.offers-disclaimer {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 60px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
}
.offers-disclaimer p { margin-bottom: 8px; }

/* ===== LEGAL PAGE ===== */
.legal-page { max-width: 800px; margin: 0 auto; padding: 56px 24px 88px; }
.legal-page h1 { font-size: clamp(28px, 3.4vw, 36px); font-weight: 900; color: var(--navy); margin-bottom: 24px; letter-spacing: -1px; }
.legal-page h2 { font-size: 20px; font-weight: 800; color: var(--navy); margin: 30px 0 10px; }
.legal-page p, .legal-page li { font-size: 15px; color: var(--ink); margin-bottom: 10px; }
.legal-page ul { padding-left: 22px; margin-bottom: 14px; }
.legal-page a { color: var(--sky); }

/* =========================================================
   NAV DROPDOWN
   ========================================================= */
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-item > a .caret { font-size: 10px; transition: transform .2s; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s ease;
  z-index: 1001;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item:hover > a .caret { transform: rotate(180deg); }
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.nav-dropdown a:hover { background: var(--ice); color: var(--sky); }

/* =========================================================
   SUBPAGE HERO + BREADCRUMBS
   ========================================================= */
.page-hero {
  position: relative;
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(2,132,199,.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--ice) 0%, #fafdff 100%);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 54px;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 40px solid rgba(2,132,199,.06);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -1.3px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
  max-width: 820px;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--sky);
  position: relative;
}
@media (min-width: 721px) {
  .page-hero h1 em { white-space: nowrap; }
}
.page-hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 3px;
  height: 8px;
  background: var(--ice-2);
  z-index: -1;
  border-radius: 4px;
}
.page-hero__sub { font-size: 17.5px; line-height: 1.6; color: var(--muted); max-width: 700px; margin-bottom: 24px; }
.page-hero .btn { margin-top: 4px; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 20px;
  list-style: none;
}
.breadcrumbs a { color: var(--sky); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: 6px; color: #8fb1c7; }

/* =========================================================
   PROSE (SEO turinio blokai / straipsniai)
   ========================================================= */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: -.6px;
  color: var(--navy);
  margin: 52px 0 16px;
  padding-top: 6px;
  scroll-margin-top: 90px;
  position: relative;
}
.prose h2::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 44px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--sky), var(--coral));
}
.prose h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin: 34px 0 10px; scroll-margin-top: 90px; }
.prose > p:first-of-type { font-size: 17.5px; color: var(--deep); line-height: 1.7; }
.prose p { font-size: 16.5px; color: var(--ink); margin-bottom: 18px; line-height: 1.8; }
/* Prose sąrašai – neįtraukiami specialūs sąrašai (pros-cons, offer-specs, takeaways, index-list) */
.prose ul:not(.offer-specs):not(.index-list ul),
.prose ol { padding-left: 4px; margin-bottom: 20px; list-style: none; }
.prose ol { counter-reset: li; }
.prose ul:not(.offer-specs) > li,
.prose ol > li { font-size: 16.5px; color: var(--ink); margin-bottom: 12px; line-height: 1.7; padding-left: 32px; position: relative; }
/* Bullet – tik prose ul, NE pros-cons / offer-specs sąrašuose */
.prose ul:not(.offer-specs) > li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 4px var(--ice-2);
}
.prose ol > li { counter-increment: li; }
.prose ol > li::before {
  content: counter(li);
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* pros-cons sąrašai prose viduje išlaiko savo ✓/✕ stilių (ne prose bullet) */
.prose .pros-cons ul > li { padding-left: 22px; margin-bottom: 6px; font-size: 14px; }
.prose .pros-cons .pros li::before { content: "✓"; left: 0; top: auto; width: auto; height: auto; border-radius: 0; background: none; box-shadow: none; color: #16a34a; font-weight: 900; }
.prose .pros-cons .cons li::before { content: "✕"; left: 0; top: auto; width: auto; height: auto; border-radius: 0; background: none; box-shadow: none; color: #dc2626; font-weight: 900; }
.prose a:not(.btn) { color: var(--sky-dark); font-weight: 600; text-decoration: underline; text-decoration-color: var(--ice-2); text-underline-offset: 3px; transition: text-decoration-color .2s; }
.prose a:not(.btn):hover { text-decoration-color: var(--sky); }
/* Mygtukai prose viduje išlaiko savo stilių (be pabraukimo / nuorodos spalvos) */
.prose a.btn { text-decoration: none; }
.prose a.btn--white { color: var(--deep); }
.prose a.btn--primary, .prose a.btn--blue { color: #fff; }
.prose a.btn--outline { color: var(--sky); }
.prose strong { color: var(--navy); font-weight: 700; }
.prose blockquote {
  border-left: 4px solid var(--sky);
  background: linear-gradient(135deg, var(--ice) 0%, #fafdff 100%);
  border-radius: 0 14px 14px 0;
  padding: 18px 24px;
  margin: 26px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--deep);
  box-shadow: var(--shadow-sm);
}

/* Terminų indeksas (žodynas abėcėlinis) – tinklelis su „chip" nuorodomis */
.index-list { margin: 0 0 8px; }
.index-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}
.index-list li { margin: 0; padding: 0; }
.index-list li::before { display: none; }
.index-list a {
  display: block;
  padding: 9px 14px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  text-decoration: none;
  transition: background .15s, border-color .15s, transform .15s;
}
.index-list a:hover {
  background: var(--ice-2);
  border-color: var(--sky);
  transform: translateY(-1px);
}

/* Table — profesionalus dizainas */
.table-wrap {
  overflow-x: auto;
  margin: 30px 0;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  -webkit-overflow-scrolling: touch;
}
.table-wrap table { width: 100%; border-collapse: collapse; font-size: 14.5px; background: #fff; min-width: 560px; }
.table-wrap thead th {
  background: linear-gradient(180deg, var(--deep) 0%, var(--sky-dark) 100%);
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 15px 18px;
  white-space: nowrap;
  font-size: 13.5px;
  letter-spacing: .2px;
}
.table-wrap thead th:first-child { border-radius: 0; }
.table-wrap td { padding: 14px 18px; border-bottom: 1px solid var(--line); color: var(--ink); vertical-align: middle; }
.table-wrap tbody tr:nth-child(even) { background: #f7fbfe; }
.table-wrap tbody td:first-child { font-weight: 700; color: var(--navy); }
.table-wrap tr:last-child td { border-bottom: none; }
.table-wrap tbody tr { transition: background .15s; }
.table-wrap tbody tr:hover { background: var(--ice); }
.table-wrap .hl { color: var(--sky-dark); font-weight: 800; }
.table-wrap td a { color: var(--sky-dark); font-weight: 700; }
.table-wrap td a.btn { color: #fff; white-space: nowrap; }
.table-wrap td a.btn--outline { color: var(--sky); }
.table-wrap td a.btn--primary { color: #fff; }
.table-wrap td .btn--sm { padding: 8px 16px; font-size: 13px; }
/* Logotipas palyginimo lentelėje */
.table-wrap td.tbl-lender { padding: 10px 14px; }
.tbl-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 108px; height: 40px; padding: 4px 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
}
.tbl-logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.table-wrap td.tbl-lender a strong { color: var(--navy); }

/* Key takeaways (AEO/GEO santrauka) */
.takeaways {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 28px 26px;
  margin: 28px 0 34px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.takeaways::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--sky), var(--coral));
}
.takeaways h2, .takeaways h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sky-dark);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.takeaways h2::before, .takeaways h3::before {
  content: "★";
  color: var(--coral);
  font-size: 14px;
}
.takeaways ul { list-style: none; padding: 0; margin: 0; }
.takeaways li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.6;
}
.takeaways li:last-child { margin-bottom: 0; }
.takeaways li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--ice);
  color: var(--sky-dark);
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.takeaways strong { color: var(--navy); }

/* Inline CTA box */
.cta-box {
  position: relative;
  background: linear-gradient(135deg, var(--sky) 0%, var(--deep) 100%);
  color: #fff;
  border-radius: 18px;
  padding: 30px 34px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(2,132,199,.28);
}
.cta-box::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 46px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.cta-box > div { position: relative; z-index: 1; }
.cta-box h3 { font-size: 21px; font-weight: 900; letter-spacing: -.4px; margin-bottom: 5px; color: #fff; }
.cta-box p { font-size: 15px; color: #d4ecfa; margin: 0; }
.cta-box .btn { position: relative; z-index: 1; }

/* Article meta + author (E-E-A-T) */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.article-meta > * {
  background: var(--ice);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--deep);
}
.author-box {
  display: flex;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, var(--ice) 0%, #fafdff 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 26px;
  margin: 44px 0 0;
  box-shadow: var(--shadow-sm);
}
.author-box__avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sky), var(--deep));
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(2,132,199,.3);
}
.author-box strong { display: block; font-size: 15.5px; color: var(--navy); margin-bottom: 2px; }
.author-box span { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* Article cards (blog listing) */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.article-card__img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
}
.article-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.article-card__tag {
  align-self: flex-start;
  background: var(--ice);
  color: var(--sky-dark);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.article-card h3 { font-size: 17.5px; font-weight: 800; color: var(--navy); line-height: 1.35; margin-bottom: 8px; }
.article-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; flex: 1; }
.article-card .more { font-size: 14px; font-weight: 700; color: var(--sky); }

/* Lender review card (kreditoriai.html) */
.lender-review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 28px;
  margin-bottom: 24px;
  scroll-margin-top: 90px;
}
.lender-review__head { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.lender-review__best {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.lender-review__best .ico { width: .85em; height: .85em; }
.lender-review__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.lender-review__more { font-size: 14px; font-weight: 700; color: var(--sky-dark); text-decoration: none; white-space: nowrap; }
.lender-review__more:hover { text-decoration: underline; }

/* Loan-by-amount: kreditorių kortelių tinklelis */
.amount-offers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 0; padding: 0; }
@media (max-width: 640px) { .amount-offers { grid-template-columns: 1fr; } }
.lender-review__head .offer-logo { width: 60px; height: 60px; font-size: 19px; }
.lender-review__head .offer-logo--img { width: 150px; height: 56px; }
.lender-review h2, .lender-review h3 { font-size: 21px; font-weight: 900; color: var(--navy); margin: 0; }
.lender-review__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; margin: 14px 0; }
.lender-review .pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 16px 0; }
.pros-cons h4 { font-size: 14px; font-weight: 800; margin-bottom: 8px; }
.pros-cons .pros h4 { color: #15803d; }
.pros-cons .cons h4 { color: #b91c1c; }
.pros-cons ul { list-style: none; padding: 0; }
.pros-cons li { font-size: 14px; color: var(--ink); padding-left: 22px; position: relative; margin-bottom: 6px; }
.pros-cons .pros li::before { content: "✓"; position: absolute; left: 0; color: #16a34a; font-weight: 900; }
.pros-cons .cons li::before { content: "✕"; position: absolute; left: 0; color: #dc2626; font-weight: 900; }

/* Grid helper */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; padding: 56px 24px 64px; }
  .hero__art { display: none; }
  .steps { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; gap: 36px; }
  .lenders-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .offers-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; margin-left: auto; }
  /* Kompaktiškesnis header telefonuose */
  .header__inner { height: 60px; gap: 10px; }
  .logo__icon { width: 36px; height: 36px; min-width: 36px; }
  .logo { font-size: 20px; gap: 9px; min-width: 0; }
  .logo__text { font-size: 19px; white-space: nowrap; }
  .nav.nav--open {
    display: flex;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    background: #fff;
    padding: 6px 0 24px;
    gap: 0;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 44px rgba(12,45,72,.16);
    animation: navSlide .2s ease;
  }
  @keyframes navSlide { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
  body.nav-lock { overflow: hidden; }
  /* Kiekvienas top-lygio punktas / grupės antraštė – KAIRĖJE */
  .nav.nav--open > a,
  .nav.nav--open .nav-item > a {
    display: flex; align-items: center; justify-content: flex-start;
    width: 100%; padding: 16px 22px; margin: 0;
    font-size: 16px; font-weight: 700; text-align: left;
    color: var(--navy); background: none; border-radius: 0;
  }
  /* Chevron nustumtas į dešinę per auto margin */
  .nav.nav--open .caret {
    margin-left: auto;
    font-size: 11px; line-height: 1; color: var(--muted);
    transition: transform .22s ease;
  }
  .nav.nav--open > a:active,
  .nav.nav--open .nav-item > a:active { background: var(--ice); }
  /* Skiriamasis brūkšnys tarp punktų (su paraštėmis, ne per visą plotį – gražiau) */
  .nav.nav--open > a:not(:last-child),
  .nav.nav--open .nav-item:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }
  .nav.nav--open .nav-item > a { border: none; }
  .nav.nav--open .nav-item.open > a .caret { transform: rotate(180deg); color: var(--sky); }
  .nav.nav--open .nav-item.open > a { color: var(--sky); }
  /* Akordeonas: submeniu paslėptas kol grupė neatidaryta */
  .nav.nav--open .nav-dropdown {
    display: none; padding: 6px 0 12px;
    background: var(--ice); margin: 0; text-align: left;
  }
  .nav.nav--open .nav-item.open > .nav-dropdown { display: block; }
  .nav.nav--open .nav-dropdown a {
    display: block; width: 100%; padding: 13px 22px 13px 40px;
    font-size: 15px; font-weight: 500; color: var(--deep);
    text-align: left; border-radius: 0;
  }
  .nav.nav--open .nav-dropdown a:active { background: #e0f2fe; }
  /* Burger -> X animacija kai atidaryta */
  .burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .burger.is-open span:nth-child(2) { opacity: 0; }
  .burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .stat strong { font-size: 28px; }
  .hero__features { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -.5px; font-size: clamp(28px, 7.6vw, 38px); overflow-wrap: break-word; word-break: break-word; }
  .hero h1 em { display: inline; }
  .section { padding: 64px 0; }
  .lenders-grid { grid-template-columns: 1fr; gap: 16px; max-width: 440px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; max-width: 440px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .cta-strip__inner { justify-content: center; text-align: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .form-card { padding: 28px 22px 22px; }
  .offers-list { grid-template-columns: 1fr; max-width: 460px; }
  .articles-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .grid-2 { grid-template-columns: minmax(0, 1fr); }
  .lender-review__grid, .lender-review .pros-cons { grid-template-columns: 1fr; }
  .nav.nav--open .nav-item.open > .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    min-width: 0;
  }
  .cta-box { flex-direction: column; align-items: flex-start; }

  /* ===== Lentelės mobiliesiems ===== */
  .table-wrap {
    position: relative;
    border-radius: 12px;
    background:
      linear-gradient(to right, #fff 30%, rgba(255,255,255,0)) left / 40px 100% no-repeat,
      linear-gradient(to left, #fff 30%, rgba(255,255,255,0)) right / 40px 100% no-repeat,
      radial-gradient(farthest-side at 100% 50%, rgba(7,89,133,.12), rgba(0,0,0,0)) right / 14px 100% no-repeat;
    background-attachment: local, local, scroll;
  }
  /* Užuomina, kad lentelė slenka – dedama PRIEŠ .table-wrap per section */
  .table-wrap { margin-top: 30px; }
  .table-wrap::after {
    content: "← braukite →";
    position: absolute; top: -22px; right: 4px;
    font-size: 11px; font-weight: 700; color: var(--sky);
    pointer-events: none;
  }
  /* Rodome VISUS stulpelius; lentelė slenka horizontaliai */
  .table-wrap table { font-size: 13px; min-width: max-content; }
  .table-wrap thead th { padding: 12px 12px; font-size: 12px; white-space: nowrap; }
  .table-wrap td { padding: 11px 12px; white-space: nowrap; }
  .table-wrap td:first-child { white-space: normal; }
  .table-wrap tbody td:first-child,
  .table-wrap thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #fff;
    box-shadow: 2px 0 6px rgba(7,89,133,.06);
  }
  .table-wrap thead th:first-child { background: var(--sky-dark); }
  .table-wrap tbody tr:nth-child(even) td:first-child { background: #f7fbfe; }
  .table-wrap td .btn--sm { padding: 7px 12px; font-size: 12px; }
}

@media (max-width: 980px) and (min-width: 721px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}
