/* ==========================================================================
   SocialAds.lt — dizaino sistema
   Kryptis: redakcinė tikslumo estetika. Šviesu, daug oro, aštrūs linijų
   skirtukai, taškų gardelė iš logotipo kaip tekstūra, dot-matrix skaitmenys
   skaičiams. Violetinė — tik akcentas, niekada gradientas.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Bitcount+Grid+Single:wght@300;400&display=swap');

:root {
  --purple:      #6243F6;
  --purple-deep: #4A2FD0;
  --purple-tint: #EFEBFE;

  --ink:      #15181A;
  --ink-2:    #3A3D40;
  --muted:    #6B6E73;
  --paper:    #FFFFFF;
  --paper-2:  #F5F5F6;
  --line:     rgba(21, 24, 26, 0.12);
  --line-soft:rgba(21, 24, 26, 0.07);

  --on-dark:       #FFFFFF;
  --on-dark-muted: rgba(255, 255, 255, 0.62);
  --line-dark:     rgba(255, 255, 255, 0.16);

  --sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'Bitcount Grid Single', 'Instrument Sans', monospace;

  --shell: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 11vw, 152px);

  --dot: rgba(21, 24, 26, 0.13);
  --dot-on-dark: rgba(255, 255, 255, 0.16);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  font-feature-settings: "ss01", "cv01";
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

/* ---------- Tipografijos skalė ---------- */

h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.025em; line-height: 1.06; }

h1 { font-size: clamp(2.55rem, 6.2vw, 5.1rem); letter-spacing: -0.038em; }
h2 { font-size: clamp(2rem, 4.1vw, 3.4rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.16rem, 1.7vw, 1.42rem); letter-spacing: -0.017em; line-height: 1.28; }

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

.lede  { font-size: clamp(1.1rem, 1.85vw, 1.4rem); line-height: 1.5; color: var(--ink-2); }
.small { font-size: .935rem; }
.muted { color: var(--muted); }

/* Sekcijos etiketė — taškinis Bitcount. LT diakritikai jame atrodo neįprastai,
   bet tai sąmoningas pasirinkimas: taškinė gardelė yra logotipo motyvo tąsa. */
.tag {
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(24px, 3.4vw, 44px);
}
.tag i { font-style: normal; }
.tag::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.on-dark .tag { color: #A995FF; }
.on-dark .tag::after { background: var(--line-dark); }

/* ---------- Karkasas ---------- */

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gut); }
section { padding-block: var(--section-y); position: relative; }
.rule { border-top: 1px solid var(--line); }

.on-dark { background: var(--ink); color: var(--on-dark); }
.on-dark .lede, .on-dark p { color: var(--on-dark-muted); }
.on-dark h2, .on-dark h3, .on-dark strong { color: var(--on-dark); }

.tint { background: var(--paper-2); }

/* Taškų gardelė — logotipo motyvas kaip fonas */
.dotfield { position: relative; isolation: isolate; }
.dotfield::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--dot) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 74% 62% at 50% 44%, #000 26%, transparent 74%);
          mask-image: radial-gradient(ellipse 74% 62% at 50% 44%, #000 26%, transparent 74%);
  z-index: -1;
  pointer-events: none;
}
.on-dark.dotfield::before { background-image: radial-gradient(var(--dot-on-dark) 1.4px, transparent 1.4px); }

/* ---------- Mygtukai ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 1.02rem; font-weight: 600; letter-spacing: -0.012em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }

.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-deep); }

.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }

.on-dark .btn-ghost { border-color: var(--line-dark); color: #fff; }
.on-dark .btn-ghost:hover { border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Antraštė ---------- */

.masthead {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.87);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.masthead .shell { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 600; letter-spacing: -0.03em; font-size: 1.22rem; }
.brand img { width: 31px; height: 31px; border-radius: 8px; }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 32px); }
.nav a { text-decoration: none; font-size: .96rem; color: var(--ink-2); transition: color .15s ease; }
.nav a:hover { color: var(--ink); }
.nav .tel { font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.nav .links { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); }
@media (max-width: 860px) { .nav .links { display: none; } }
@media (max-width: 560px) { .nav .tel { display: none; } }

.lang { display: flex; gap: 3px; font-size: .84rem; font-weight: 600; letter-spacing: .04em; }
.lang a { padding: 5px 8px; border-radius: 7px; color: var(--muted); }
.lang a[aria-current="true"] { background: var(--ink); color: #fff; }

/* ---------- Hero ---------- */

.hero { padding-top: clamp(56px, 8vw, 104px); padding-bottom: clamp(56px, 8vw, 108px); }
.hero h1 { max-width: 17ch; }
.hero .lede { max-width: 54ch; margin-top: clamp(22px, 3vw, 34px); }
.hero .btn-row { margin-top: clamp(30px, 4vw, 44px); }

.proofline {
  margin-top: clamp(34px, 4.6vw, 54px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 30px;
  font-size: .95rem; color: var(--muted);
}
.proofline b { color: var(--ink); font-weight: 600; }
.proofline .num {
  font-family: var(--mono); font-weight: 400; color: var(--purple); font-size: 1.06em;
  /* Bitcount tarpai natūraliai per platūs — suspaudžiam, kad „340 000" liktų viena grupė */
  word-spacing: -0.34em;
}

/* ---------- Klientų juosta ---------- */

.logos { padding-block: clamp(30px, 4vw, 44px); }
/* Etiketė atskiroje eilutėje virš juostos — dvigubo dydžio logotipams reikia viso
   pločio, kitaip aštuoni ženklai lūžta į dvi eilutes. */
.logos .label { display: block; font-size: .84rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: clamp(18px, 2.4vw, 28px); }
.logo-slots { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: clamp(18px, 2.4vw, 34px); }
/* Logotipai suvienodinti pagal plotą, ne pagal aukštį — kitaip kvadratinis ženklas
   atrodo dvigubai stambesnis už tokio pat aukščio žodinį. Pilkas atspalvis nuramina
   aštuonias skirtingas paletes; spalva grįžta užvedus pelę. */
.logo-slots img {
  height: 64px; width: auto; max-width: 236px; object-fit: contain; display: block;
  filter: grayscale(1); opacity: .55;
  transition: filter .2s ease, opacity .2s ease;
}
.logo-slots img:hover { filter: none; opacity: 1; }
@media (max-width: 620px) { .logo-slots img { height: 46px; max-width: 160px; } }

/* ---------- Žmonės: „tu dirbi savo darbą" ---------- */

.people { display: grid; gap: clamp(12px, 1.6vw, 18px); }
@media (min-width: 620px) { .people { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .people { grid-template-columns: repeat(4, 1fr); } }

.pcard {
  position: relative; overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  background-color: var(--paper-2);
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  display: flex; align-items: flex-end;
  isolation: isolate;
  border: 1px solid var(--line);
}
.pcard::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10, 12, 14, .78) 0%, rgba(10, 12, 14, .34) 38%, rgba(10, 12, 14, 0) 66%);
}
.pcard .cap { position: relative; z-index: 2; padding: clamp(18px, 2.2vw, 24px); color: #fff; }
.pcard .cap b { display: block; font-size: clamp(1.14rem, 1.7vw, 1.34rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.18; }
.pcard .cap span { display: block; margin-top: 7px; font-size: .93rem; line-height: 1.45; color: rgba(255, 255, 255, .76); }
/* Parašai prisegti prie kortelės apačios, todėl skirtingas eilučių skaičius
   išmuša antraštes į skirtingus aukščius. Fiksuojam viso parašo bloko aukštį —
   tada visų kortelių antraštės prasideda vienoje linijoje, o paantraštė lieka
   priklijuota prie savo antraštės, o ne tempiama į bendrą liniją. */
@media (min-width: 620px) { .pcard .cap { min-height: 150px; } }

/* Kol nėra tikros nuotraukos — matoma, kad tai laukianti vieta, o ne klaida */
.pcard .hint {
  position: absolute; inset: 0; z-index: 0;
  display: grid; place-items: center; text-align: center;
  padding: 20px; font-size: .8rem; color: #A9ACB0;
  border-radius: 15px;
  background: repeating-linear-gradient(135deg, var(--paper-2) 0 12px, #EDEDEF 12px 24px);
}

/* ---------- Bendra tinklelio pagalba ---------- */

.split { display: grid; gap: clamp(34px, 5vw, 76px); grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); align-items: start; } }
.split.sticky-left > :first-child { position: sticky; top: 104px; }
@media (max-width: 899px) { .split.sticky-left > :first-child { position: static; } }

.cards { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
@media (min-width: 700px) { .cards.two { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .cards.four { grid-template-columns: repeat(2, 1fr); } }
.card { background: var(--paper); padding: clamp(26px, 3.1vw, 38px); }
.card h3 { margin-bottom: 11px; }
.card p { color: var(--ink-2); font-size: 1rem; }
.card .idx { font-family: var(--mono); font-size: .78rem; color: var(--purple); display: block; margin-bottom: 16px; letter-spacing: .1em; }

/* Problemų sąrašas */
.pains { display: grid; gap: 0; border-top: 1px solid var(--line); }
.pain { padding: clamp(24px, 3vw, 32px) 0; border-bottom: 1px solid var(--line); display: grid; gap: 8px 32px; }
@media (min-width: 760px) { .pain { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); align-items: baseline; } }
.pain h3 { letter-spacing: -0.02em; }
.pain p { margin: 0; color: var(--muted); }

/* ---------- Ritmas (darbas iš vidaus) ---------- */

.rhythm { display: grid; gap: 1px; background: var(--line-dark); border-block: 1px solid var(--line-dark); }
@media (min-width: 800px) { .rhythm { grid-template-columns: repeat(3, 1fr); } }
.beat { background: var(--ink); padding: clamp(26px, 3vw, 36px) clamp(0px, 2.4vw, 32px); }
@media (max-width: 799px) { .beat { padding-inline: 0; } }
.beat .when { font-family: var(--mono); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #A995FF; display: block; margin-bottom: 13px; }
.beat h3 { margin-bottom: 9px; }

.rules { list-style: none; margin: clamp(38px, 5vw, 58px) 0 0; padding: 0; display: grid; gap: 16px; }
.rules li { padding-left: 34px; position: relative; color: var(--on-dark-muted); max-width: 74ch; }
.rules li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 9px; height: 9px; border-radius: 50%; background: var(--purple);
}
.rules b { color: #fff; font-weight: 600; }

/* ---------- Atvejai / prieš-po ---------- */

/* Trys savarankiški stulpeliai, ne grid: grid'e eilutės kortelės lygiuotųsi pagal
   aukščiausią ir po trumpesnėmis liktų tuščia. Čia visų stulpelių viršus vienoje
   linijoje, o apačia — kur baigiasi turinys. */
.case-grid { display: grid; gap: clamp(20px, 2.6vw, 30px); }
.case-col { display: grid; gap: clamp(20px, 2.6vw, 30px); align-content: start; }
@media (min-width: 780px) {
  .case-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
}
.case { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--paper); }
.case .thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.case .thumbs.solo { grid-template-columns: 1fr; }
.case .thumbs.trio { grid-template-columns: repeat(3, 1fr); }
.case .thumbs img { aspect-ratio: 1; object-fit: cover; background: var(--paper-2); }
.case .body { padding: 22px clamp(20px, 2.2vw, 26px) 26px; }
.case .cat { font-family: var(--mono); font-size: .78rem; letter-spacing: .1em; color: var(--purple); display: block; margin-bottom: 10px; }
.case p { font-size: .97rem; color: var(--ink-2); margin: 0; }

/* ---------- Atsiliepimai ---------- */

.quotes { display: grid; gap: clamp(18px, 2.4vw, 26px); }
@media (min-width: 820px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote { border: 1px dashed var(--line); border-radius: 16px; padding: clamp(26px, 3vw, 34px); display: flex; flex-direction: column; gap: 22px; background: var(--paper); }
.quote .mark { font-family: var(--sans); color: var(--purple); font-size: 3.2rem; font-weight: 600; line-height: .48; height: 1.1rem; }
.quote p { color: #9DA0A4; font-style: italic; margin: 0; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 13px; }
.quote .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--paper-2); border: 1px dashed var(--line); flex: none; }
.quote .who span { font-size: .88rem; color: #A9ACB0; }

/* ---------- Tinka / netinka ---------- */

.fit { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
@media (min-width: 820px) { .fit { grid-template-columns: 1fr 1fr; } }
.fit > div { background: var(--paper); padding: clamp(28px, 3.2vw, 40px); }
.fit h3 { margin-bottom: 20px; }
.fit ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.fit li { padding-left: 30px; position: relative; color: var(--ink-2); font-size: 1rem; }
.fit li::before { position: absolute; left: 0; top: 0; font-weight: 600; }
.fit .yes li::before { content: "+"; color: var(--purple); font-size: 1.2rem; line-height: 1.35; }
.fit .no li::before { content: "–"; color: #B9BCC0; font-size: 1.2rem; line-height: 1.35; }

.budget-note {
  margin-top: clamp(26px, 3vw, 36px);
  padding: clamp(24px, 3vw, 32px);
  border-radius: 16px;
  background: var(--purple-tint);
  color: #2C1D72;
  max-width: 78ch;
}
.budget-note strong { color: #1B1147; }

/* ---------- Kainos ---------- */

.plans { display: grid; gap: clamp(16px, 2vw, 22px); align-items: start; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); } }
.plan { border: 1px solid var(--line); border-radius: 18px; padding: clamp(26px, 3vw, 34px); background: var(--paper); display: flex; flex-direction: column; }
.plan.featured { border-color: var(--ink); box-shadow: 0 22px 60px -34px rgba(21, 24, 26, .5); }
.plan .pname { font-size: 1.04rem; font-weight: 600; letter-spacing: -0.01em; }
.plan .badge { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); }
.plan .top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.plan .price { font-family: var(--mono); font-size: clamp(2.1rem, 3.4vw, 2.7rem); font-weight: 400; line-height: 1; letter-spacing: -0.01em; }
/* „nuo" prie kainos — mažesnis ir pilkas, kad neatimtų dėmesio iš skaičiaus */
.plan .price .from { font-family: var(--sans); font-size: .32em; font-weight: 600; color: var(--muted);
  letter-spacing: .04em; text-transform: lowercase; margin-right: 7px; vertical-align: .34em; }
.plan .price sup { font-family: var(--sans); font-size: .38em; font-weight: 600; top: -1.4em; margin-left: 4px; letter-spacing: 0; }
.plan .per { font-size: .9rem; color: var(--muted); margin-top: 10px; }
.plan .who-for { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .95rem; color: var(--ink-2); }
.plan ul { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 11px; font-size: .95rem; flex: 1; }
.plan li { padding-left: 26px; position: relative; color: var(--ink-2); }
.plan li::before { content: "·"; position: absolute; left: 8px; color: var(--purple); font-weight: 700; }
.plan li.off { color: #B0B3B7; }
.plan li.off::before { content: "–"; color: #CDD0D3; }

.addon {
  margin-top: clamp(18px, 2.2vw, 24px);
  border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(26px, 3vw, 34px);
  display: grid; gap: 24px;
}
@media (min-width: 840px) { .addon { grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); align-items: center; } }
.addon .price { font-family: var(--mono); font-size: clamp(1.8rem, 2.8vw, 2.3rem); line-height: 1; }
.addon .price sup { font-family: var(--sans); font-size: .4em; font-weight: 600; top: -1.3em; margin-left: 4px; }

.fineprint { margin-top: clamp(24px, 3vw, 32px); display: grid; gap: 12px; font-size: .95rem; color: var(--muted); max-width: 82ch; }

/* ---------- Žingsniai ---------- */

.steps { counter-reset: s; display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--paper); padding: clamp(26px, 3vw, 36px) clamp(0px, 2.4vw, 30px); }
@media (max-width: 819px) { .step { padding-inline: 0; } }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  font-family: var(--mono); font-size: .95rem; color: var(--purple);
  display: block; margin-bottom: 16px; letter-spacing: .08em;
}
.step h3 { margin-bottom: 9px; }
.step p { color: var(--muted); font-size: 1rem; }

/* ---------- Povilas ---------- */

.person { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (min-width: 880px) { .person { grid-template-columns: minmax(0, 380px) minmax(0, 1fr); } }
.portrait {
  position: relative; margin: 0;
  aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden;
  background: var(--paper-2);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait figcaption { display: none; }

/* Kol nuotraukos nėra — matoma, kad tai laukianti vieta */
.portrait.empty { border: 1px dashed var(--line); }
.portrait.empty figcaption {
  display: grid; place-items: center; text-align: center;
  position: absolute; inset: 0; padding: 20px;
  color: #A9ACB0; font-size: .86rem; line-height: 1.5;
}
.portrait.empty figcaption code { font-family: var(--mono); font-size: .92em; }

/* ---------- DUK ---------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: clamp(20px, 2.4vw, 26px) 44px clamp(20px, 2.4vw, 26px) 0;
  font-size: clamp(1.04rem, 1.5vw, 1.2rem); font-weight: 600; letter-spacing: -0.015em;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%;
  width: 13px; height: 13px; margin-top: -6px;
  border-right: 2px solid var(--purple); border-bottom: 2px solid var(--purple);
  transform: rotate(45deg); transform-origin: center;
  transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .answer { padding: 0 0 clamp(22px, 2.6vw, 28px); color: var(--ink-2); max-width: 82ch; }
.faq summary:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }

/* ---------- Finalinis CTA ---------- */

.finale { text-align: center; }

/* Finalinis CTA su nuotrauka — tamsi uždanga, kad tekstas liktų įskaitomas */
.finale.withphoto { position: relative; isolation: isolate; overflow: hidden; }
.finale.withphoto::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: var(--img);
  background-size: cover; background-position: center 42%;
}
.finale.withphoto::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(21,24,26,.80) 0%, rgba(21,24,26,.58) 42%, rgba(21,24,26,.88) 100%);
}
.finale h2 { max-width: 20ch; margin-inline: auto; }
.finale .lede { max-width: 56ch; margin: 22px auto 0; }
.contact-lines { margin-top: clamp(34px, 4.4vw, 52px); display: grid; gap: 14px; justify-items: center; }
.contact-lines a {
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  font-weight: 600; letter-spacing: -0.03em;
  text-decoration: none; color: #fff;
  border-bottom: 2px solid transparent;
  transition: border-color .18s ease;
  word-break: break-word;
}
.contact-lines a:hover { border-bottom-color: var(--purple); }

/* ---------- Poraštė ---------- */

.foot { padding-block: clamp(44px, 5vw, 68px); font-size: .92rem; color: var(--muted); }
.foot .shell { display: grid; gap: 26px; }
@media (min-width: 780px) { .foot .shell { grid-template-columns: 1fr auto; align-items: end; } }
.foot a { color: var(--ink-2); text-decoration: none; }
.foot a:hover { color: var(--ink); }
.foot .legal { display: grid; gap: 4px; }
.foot .links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Privatumo politika ---------- */

.policy { padding-top: clamp(48px, 7vw, 88px); }
.policy h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); letter-spacing: -0.032em; max-width: 18ch; }
.policy .lede { max-width: 58ch; margin-top: clamp(18px, 2.4vw, 26px); }
.policy .updated { font-size: .9rem; color: var(--muted); margin-top: 14px; }

.prose { max-width: 74ch; margin-top: clamp(36px, 5vw, 60px); border-top: 1px solid var(--line); padding-top: clamp(8px, 1.5vw, 16px); }
.prose h2 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); letter-spacing: -0.018em; line-height: 1.25; margin: clamp(34px, 4vw, 46px) 0 14px; }
.prose p, .prose li { color: var(--ink-2); }
.prose b { color: var(--ink); font-weight: 600; }
.prose a { color: var(--purple); text-underline-offset: 3px; }
.prose ul { margin: 0 0 1.1em; padding-left: 1.2em; }
.prose li { margin-bottom: 6px; }
.prose li::marker { color: var(--purple); }

.dtable { width: 100%; border-collapse: collapse; font-size: .93rem; margin: 6px 0 20px; }
.dtable th { text-align: left; font-weight: 600; color: var(--ink); padding: 10px 14px 10px 0; border-bottom: 1px solid var(--ink); vertical-align: bottom; }
.dtable td { padding: 14px 14px 14px 0; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-2); }
.dtable td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }
@media (max-width: 700px) {
  .dtable thead { display: none; }
  .dtable, .dtable tbody, .dtable tr, .dtable td { display: block; width: 100%; }
  .dtable tr { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .dtable td { border: 0; padding: 3px 0; }
  .dtable td:first-child { font-size: 1.02rem; padding-bottom: 6px; }
  .dtable td:not(:first-child)::before { content: attr(data-l); display: block; font-size: .78rem; color: var(--muted); letter-spacing: .04em; }
}

/* ---------- Lipni CTA juosta (mobile) ---------- */

.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: 10px;
  padding: 10px var(--gut) calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.dock .btn { flex: 1; justify-content: center; padding-block: 14px; }
@media (max-width: 760px) {
  .dock { display: flex; }
  body { padding-bottom: 82px; }
  /* Kai lipni juosta matoma, pradžios mygtukai kartotų tą patį per du colius —
     todėl juos slepiam ir įrodymo eilutę pakeliam į jų vietą. */
  .hero .btn-row { display: none; }
  .hero .proofline { margin-top: clamp(26px, 5vw, 34px); }
}

/* ---------- Įėjimo animacija ---------- */

@media (prefers-reduced-motion: no-preference) {
  .rise { opacity: 0; transform: translateY(14px); animation: rise .68s cubic-bezier(.22, .68, .3, 1) forwards; }
  .rise:nth-child(2) { animation-delay: .07s; }
  .rise:nth-child(3) { animation-delay: .14s; }
  .rise:nth-child(4) { animation-delay: .21s; }
}
@keyframes rise { to { opacity: 1; transform: none; } }
