/* Botukas.lt — eksportas pagal 2026-03-20 ekrano kopiją (PDF) */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a.sr-only:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 18px;
  clip: auto;
  overflow: visible;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

code {
  font-family: var(--mono);
  font-size: 0.88em;
  color: #cbd5e1;
}

:root {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --bg-card: #111111;
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #a1a1aa;
  --muted-2: #71717a;
  --brand: #00a3ff;
  --brand-dim: rgba(0, 163, 255, 0.12);
  --brand-hover: #33b5ff;
  --bad: #f87171;
  --bad-glow: rgba(248, 113, 113, 0.25);
  --good: #4ade80;
  --good-glow: rgba(0, 163, 255, 0.2);
  --radius: 12px;
  --radius-lg: 16px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --max: 1280px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.wrap--wide {
  width: min(calc(var(--max) + 40px), calc(100% - 32px));
}

@media (max-width: 480px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .wrap--wide {
    width: min(calc(var(--max) + 40px), calc(100% - 24px));
  }
}

/* —— Header (logo | centrinė nav | CTA) —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  width: min(1440px, calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  justify-self: start;
}

/* Nudge the "Botukas" text down relative to the logo.
   Change the padding-top value to taste — e.g. 2px, 4px, 6px */
.brand__text {
  padding-top: 4px;
  color: var(--brand);
}

.brand:hover {
  text-decoration: none;
  color: #fff;
}

.brand img {
  width: 38px;
  height: 38px;
}

.nav-main {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-evenly;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  gap: 8px clamp(12px, 2.5vw, 36px);
  padding: 0 clamp(8px, 2vw, 32px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav-main::-webkit-scrollbar {
  display: none;
}

.nav-main a {
  color: var(--muted);
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  flex: 0 1 auto;
}

.nav-main a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

/* —— Hamburger button —— */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* —— Nav overlay —— */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  z-index: 40;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-overlay.is-visible {
  opacity: 1;
}

/* —— Sliding drawer —— */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: #0d0d0d;
  border-left: 1px solid var(--border);
  z-index: 60;
  flex-direction: column;
  gap: 4px;
  padding: 72px 24px 32px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer a {
  display: block;
  padding: 14px 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.nav-drawer a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.nav-drawer__cta {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: var(--brand) !important;
  border: none !important;
}

.nav-drawer__cta:hover {
  background: var(--brand-hover) !important;
  color: #fff !important;
}

/* —— Mobile breakpoint: show hamburger, hide nav links + desktop CTA —— */
@media (max-width: 900px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-overlay {
    display: block;
  }

  .nav-drawer {
    display: flex;
  }

  .nav-main {
    display: none;
  }

  .nav-cta--desktop {
    display: none !important;
  }

  :root {
    --header-h: 68px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    padding: 14px 0;
    align-items: center;
  }

  .nav-actions {
    gap: 8px;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.btn__ico {
  font-size: 1.05em;
  line-height: 1;
  margin-top: 1px;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 163, 255, 0.35);
}

.btn--primary:hover {
  background: var(--brand-hover);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

/* —— Hero —— */
.hero {
  padding: clamp(40px, 7vw, 88px) 0 20px;
  text-align: center;
  background: radial-gradient(ellipse 75% 55% at 50% -15%, rgba(0, 163, 255, 0.14), transparent 55%);
}

.hero h1 {
  margin: 0 auto 20px;
  font-size: clamp(1.875rem, 4.5vw, 2.875rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  max-width: 22ch;
}

.hero__lead {
  margin: 0 auto 28px;
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.0625rem;
}

.hero__cta {
  margin-bottom: 36px;
}

/* —— Terminal —— */
.terminal-wrap {
  padding: 0 0 32px;
}

.botukas-terminal {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 12px;
  background: radial-gradient(circle at top left, #1b2735 0, #05070a 55%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  font-family: var(--mono);
  color: #d9e2ff;
  overflow: hidden;
}

.bt-header {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: linear-gradient(to right, #05070a, #151924);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 10px;
  color: rgba(217, 226, 255, 0.6);
}

.bt-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.bt-dot:nth-child(1) {
  background: #ff5f57;
}
.bt-dot:nth-child(2) {
  background: #febc2e;
}
.bt-dot:nth-child(3) {
  background: #28c840;
}

.bt-title {
  margin-left: 8px;
  opacity: 0.78;
}

.bt-body {
  padding: 18px 24px 22px;
  font-size: 13px;
  line-height: 1.65;
  min-height: 280px;
  max-height: 420px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.bt-line-prefix {
  color: rgba(129, 140, 248, 0.95);
}

.bt-line-ok {
  color: #4ade80;
}

.bt-cursor {
  display: inline-block;
  width: 7px;
  height: 1em;
  background: #4ade80;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: bt-blink 1s steps(1) infinite;
}

@keyframes bt-blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bt-cursor {
    animation: none;
    opacity: 1;
  }
}

.section {
  padding: clamp(40px, 6vw, 72px) 0;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 32px);
}

.section__head {
  text-align: center;
  width: 100%;
  max-width: none;
  margin: 0 auto 40px;
  padding: 0;
}

.section__head h2 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section__head p {
  margin: 0 auto;
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .section__head {
    margin-bottom: 28px;
  }

  .section__head p {
    font-size: 0.97rem;
  }
}

/* —— Kaip veikia —— */
.section--how {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
  align-items: stretch;
}

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.32);
}

.step__num {
  padding: 18px 20px 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.step__visual {
  margin: 12px 16px 0;
  border-radius: 10px;
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  font-size: 0.7rem;
  color: #71717a;
  min-height: 160px;
  user-select: none;
  -webkit-user-select: none;
}

.step__text {
  padding: 18px 20px 22px;
}

.step__text h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--text);
  letter-spacing: -0.01em;
}

.step__text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

/* — Step 1: Form — */
.step__visual--form {
  padding: 18px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  max-height: 175px;
  user-select: none;
}

.sf-field { display: flex; flex-direction: column; gap: 4px; }

.sf-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #52525b;
}

.sf-input {
  padding: 9px 12px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #161616;
  color: #d4d4d8;
  font-size: 0.78rem;
  line-height: 1.3;
}

.sf-textarea {
  padding: 9px 12px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #161616;
  color: #d4d4d8;
  font-size: 0.78rem;
  line-height: 1.4;
  min-height: 44px;
}

.sf-input--empty {
  min-height: 30px;
  background: #111;
  border-color: rgba(255, 255, 255, 0.06);
}

.sf-fade {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  margin-top: -20px;
  background: linear-gradient(to bottom, transparent 0%, rgba(12, 12, 12, 0.7) 40%, #0c0c0c 100%);
  pointer-events: none;
  flex-shrink: 0;
}

/* — Step 2: Message card — */
.step__visual--msg {
  padding: 18px 18px 0;
  background: #0a0a0a;
  user-select: none;
  -webkit-user-select: none;
  position: relative;
  overflow: hidden;
}

.step__visual--msg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.75) 50%, #0a0a0a 100%);
  pointer-events: none;
}

.msg-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg-sender {
  display: flex;
  align-items: center;
  gap: 10px;
}

.msg-sender__avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 163, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.msg-sender__avatar img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  pointer-events: none;
}

.msg-sender__info { line-height: 1.3; }

.msg-sender__name {
  font-size: 0.74rem;
  font-weight: 650;
  color: #e4e4e7;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.msg-sender__time {
  font-size: 0.6rem;
  font-weight: 400;
  color: #52525b;
}

.msg-sender__to {
  font-size: 0.62rem;
  color: #52525b;
  margin-top: 1px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.msg-sender__chevron {
  width: 10px;
  height: 10px;
  color: #52525b;
  flex-shrink: 0;
}

.msg-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.msg-body__greeting {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e4e4e7;
  line-height: 1.3;
}

.msg-body__text {
  margin: 0 0 8px;
  font-size: 0.73rem;
  line-height: 1.4;
  color: #a1a1aa;
}

.msg-file {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.msg-file__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.msg-file__name {
  font-size: 0.66rem;
  color: #71717a;
  font-weight: 500;
}

/* — Step 3: Flow diagram — */
.step__visual--flow {
  padding: 0;
  background: linear-gradient(155deg, #071018 0%, #0a0a0a 48%, #060e18 100%);
  border-color: rgba(0, 163, 255, 0.18);
  position: relative;
}

.step__visual--flow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: linear-gradient(to bottom, transparent, #0a0a0a);
  pointer-events: none;
  border-radius: 0 0 10px 10px;
}

.flow-diagram {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px 16px;
  gap: 10px;
}

.flow-diagram__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(0, 163, 255, 0.13) 0%, transparent 58%);
  pointer-events: none;
}

.flow-diagram__track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.4vw, 12px);
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.flow-node__icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #71717a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-node__icon svg {
  width: 16px;
  height: 16px;
}

.flow-node span {
  font-size: 0.6rem;
  color: #71717a;
  font-weight: 600;
  white-space: nowrap;
}

.flow-connector {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 16px;
}

.flow-connector span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 163, 255, 0.5);
}

.flow-connector span:nth-child(2) { opacity: 0.7; }
.flow-connector span:nth-child(3) { opacity: 0.4; }

.flow-hub {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(0, 163, 255, 0.1);
  border: 1px solid rgba(0, 163, 255, 0.4);
  box-shadow: 0 0 24px rgba(0, 163, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.flow-hub svg,
.flow-hub img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  pointer-events: none;
}

.flow-diagram__caption {
  position: relative;
  z-index: 1;
  font-size: 0.63rem;
  color: #52525b;
  text-align: center;
  line-height: 1.4;
}

/* —— Atsiliepimai —— */
.trust-band {
  text-align: center;
  margin-bottom: 28px;
  width: 100%;
  max-width: none;
  padding: 0;
}

.trust-band h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  max-width: none;
}

.trust-band p {
  margin: 0 auto;
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.testimonial-shell {
  max-width: 44rem;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(0, 163, 255, 0.04) 0%, var(--bg-card) 38%, var(--bg-card) 100%);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.38);
}

.testimonial__body {
  padding: clamp(22px, 4vw, 34px) clamp(20px, 4vw, 36px) clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-left: 3px solid rgba(0, 163, 255, 0.55);
}

.testimonial__photo-row {
  display: flex;
  gap: clamp(14px, 3vw, 22px);
  align-items: flex-start;
  margin-bottom: 20px;
}

.testimonial__photo-row blockquote {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

.testimonial__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(0, 163, 255, 0.35);
}

.testimonial-shell blockquote {
  margin: 0;
  font-size: clamp(0.98rem, 2.4vw, 1.08rem);
  line-height: 1.58;
  font-weight: 500;
  color: #f4f4f5;
  font-style: italic;
  letter-spacing: 0.01em;
}

.testimonial__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
}

.testimonial__meta strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.testimonial__meta span {
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial__counter {
  font-size: 0.88rem;
  color: var(--muted-2);
  flex-shrink: 0;
}

.testimonial__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.testimonial__nav button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  padding: 9px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.testimonial__nav button:hover {
  border-color: rgba(0, 163, 255, 0.45);
  background: rgba(0, 163, 255, 0.08);
  color: #fff;
}

@media (max-width: 520px) {
  .testimonial__photo-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial__photo-row blockquote {
    padding-top: 0;
  }

  .testimonial__foot {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial__nav {
    justify-content: center;
  }
}

/* —— 4 stulpeliai su linijomis (kaip PDF) —— */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}

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

@media (max-width: 520px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-cell {
  padding: 28px 22px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-cell:nth-child(4n) {
  border-right: none;
}

@media (max-width: 900px) {
  .feature-cell:nth-child(4n) {
    border-right: 1px solid var(--border);
  }

  .feature-cell:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 520px) {
  .feature-cell {
    border-right: none;
  }
}

.feature-cell__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--brand);
}

.feature-cell__icon svg {
  width: 100%;
  height: 100%;
}

.feature-cell h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 600;
}

.feature-cell p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* —— Palyginimas —— */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 720px) {
  .compare {
    grid-template-columns: 1fr;
  }
}

.compare-col {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.compare-col--bad {
  border: 1px solid rgba(248, 113, 113, 0.45);
  box-shadow: 0 0 40px var(--bad-glow);
}

.compare-col--good {
  border: 1px solid rgba(0, 163, 255, 0.45);
  box-shadow: 0 0 40px var(--good-glow);
}

.compare-col__pill {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
}

.compare-col h3 {
  margin: 0 0 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.compare-col--bad h3 {
  color: var(--bad);
}

.compare-col--good h3 {
  color: var(--brand);
  padding-right: 120px;
}

@media (max-width: 480px) {
  .compare-col--good h3 {
    padding-right: 0;
    margin-top: 28px;
  }

  .compare-col__pill {
    top: 12px;
    right: 12px;
  }
}

.compare-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-col li {
  padding: 11px 0;
  padding-left: 28px;
  position: relative;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.compare-col li:last-child {
  border-bottom: none;
}

.compare-col--bad li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--bad);
  font-weight: 700;
}

.compare-col--good li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--good);
  font-weight: 700;
}

/* —— DUK: 2 stulpeliai, visada atidaryta —— */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.15s ease;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%2371717a' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M6 2.5v7M2.5 6h7'/%3E%3C/svg%3E")
    center / 12px no-repeat;
  transition: transform 0.2s ease, background 0.15s ease;
}

.faq-item[open] .faq__q {
  color: var(--brand);
}

.faq-item[open] .faq__q::after {
  transform: rotate(45deg);
  border-color: rgba(0, 163, 255, 0.35);
  background-color: rgba(0, 163, 255, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%2300a3ff' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M6 2.5v7M2.5 6h7'/%3E%3C/svg%3E");
}

.faq__q:hover {
  color: #e4e4e7;
}

.faq__a {
  margin: 0;
  padding: 0 4px 20px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
  max-width: 56ch;
}

@media (max-width: 560px) {
  .faq-list {
    max-width: 100%;
  }

  .faq__q {
    padding: 16px 4px;
    font-size: 0.95rem;
    gap: 12px;
  }

  .faq__a {
    font-size: 0.9rem;
    max-width: 100%;
    padding-bottom: 16px;
  }
}

.faq__a a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: rgba(0, 163, 255, 0.4);
  text-underline-offset: 3px;
}

/* —— Pabaigos CTA —— */
.cta-final {
  text-align: center;
  padding: clamp(64px, 11vw, 112px) 0;
  background: radial-gradient(ellipse 65% 50% at 50% 100%, rgba(0, 163, 255, 0.1), transparent 60%);
}

.cta-final h2 {
  margin: 0 auto 16px;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 700;
  max-width: 24ch;
  letter-spacing: -0.02em;
}

.cta-final p {
  margin: 0 auto 26px;
  color: var(--muted);
  max-width: 38rem;
  font-size: 1.02rem;
}

@media (max-width: 480px) {
  .cta-final .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
}

/* —— Footer (PDF 3 psl.) —— */
.site-footer {
  padding: clamp(36px, 7vw, 56px) 0 clamp(24px, 5vw, 40px);
  border-top: 1px solid var(--border);
  background: #000;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 1fr 1fr;
  gap: 32px 36px;
  align-items: start;
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .brand {
  margin-bottom: 10px;
}

.footer-brand .brand span.logo-text {
  color: var(--brand);
  padding-top: 4px;
}

.footer-tagline {
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 16rem;
}

.footer-legal {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted-2);
}

.footer-legal a {
  color: var(--muted);
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #e4e4e7;
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

/* —— Form page —— */
.form-page {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 7rem);
}

.form-card {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 52px) clamp(24px, 5vw, 48px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.form-card h1 {
  margin: 0 0 8px;
  font-size: clamp(1.3rem, 4vw, 1.65rem);
}

@media (max-width: 480px) {
  .form-card {
    border-radius: var(--radius);
  }

  .field input,
  .field textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
  }
}

.form-card .sub {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.98rem;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #cbd5e1;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(0, 163, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.12);
}

.form-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-coming-soon {
  padding: 32px 0 8px;
  text-align: center;
}

.form-coming-soon p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-coming-soon__sub {
  font-size: 0.92rem !important;
  font-weight: 400 !important;
  color: var(--muted) !important;
}

.form-status {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.92rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status--ok {
  background: rgba(74, 222, 128, 0.12);
  color: #86efac;
  border: 1px solid rgba(74, 222, 128, 0.25);
}

/* —— Kainodara —— */
.pricing-hero {
  padding: clamp(40px, 7vw, 88px) 0 20px;
  text-align: center;
  background: radial-gradient(ellipse 75% 55% at 50% -15%, rgba(0, 163, 255, 0.14), transparent 55%);
}

.pricing-hero h1 {
  margin: 0 auto 20px;
  font-size: clamp(1.875rem, 4.5vw, 2.875rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  max-width: 28ch;
}

.pricing-hero__lead {
  margin: 0 auto 32px;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.0625rem;
}

.api-key-banner {
  padding: 20px 0 32px;
}

.api-key-banner__text {
  margin: 0 auto;
  max-width: 52rem;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: rgba(0, 163, 255, 0.08);
  border: 1px solid rgba(0, 163, 255, 0.25);
  color: #d4d4d8;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

.api-key-banner__text strong {
  color: #fff;
}

.setup-fee-box {
  max-width: 36rem;
  margin: 0 auto;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.2);
  text-align: center;
}

.setup-fee-box p {
  margin: 0;
  color: #d4d4d8;
  font-size: 1rem;
  line-height: 1.55;
}

.setup-fee-box strong {
  color: #4ade80;
}

.pricing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.pricing-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.pricing-toggle__btn:hover {
  color: var(--text);
}

.pricing-toggle__btn--active {
  background: rgba(0, 163, 255, 0.15);
  color: #fff;
  font-weight: 600;
}

.pricing-toggle__badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
}

.pricing-cards-section {
  padding: 40px 0 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.32);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.pricing-card--popular {
  border-color: rgba(0, 163, 255, 0.5);
  box-shadow: 0 0 50px rgba(0, 163, 255, 0.12), 0 8px 32px rgba(0, 0, 0, 0.32);
  background: linear-gradient(175deg, rgba(0, 163, 255, 0.06) 0%, var(--bg-card) 30%);
}

.pricing-card--popular:hover {
  border-color: rgba(0, 163, 255, 0.65);
  box-shadow: 0 0 60px rgba(0, 163, 255, 0.18), 0 8px 32px rgba(0, 0, 0, 0.32);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 163, 255, 0.35);
}

.pricing-card__head {
  margin-bottom: 20px;
}

.pricing-card__name {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.pricing-card__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.pricing-card__amount {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card__currency {
  font-size: 1.4rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
  color: var(--muted);
}

.pricing-card__period {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-card__cta {
  width: 100%;
  margin-bottom: 28px;
}

.pricing-card__features {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.pricing-card__features li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 0.9rem;
  color: #d4d4d8;
  line-height: 1.45;
}

.pricing-card__features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--good);
  font-weight: 700;
  font-size: 0.82rem;
}

.pricing-card__features li strong {
  color: #fff;
  font-weight: 600;
}

.pricing-feat-detail {
  color: var(--muted-2);
  font-size: 0.82rem;
}

/* —— Included grid —— */
.pricing-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .pricing-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .pricing-included-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-included-item {
  padding: 24px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.pricing-included-item__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  color: var(--brand);
}

.pricing-included-item__icon svg {
  width: 100%;
  height: 100%;
}

.pricing-included-item h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
}

.pricing-included-item p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}

/* —— Comparison table —— */
.pricing-comparison {
  padding-bottom: 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.comparison-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody td {
  color: #d4d4d8;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table__highlight {
  background: rgba(0, 163, 255, 0.05);
}

.comparison-table thead .comparison-table__highlight {
  color: var(--brand);
}

.cmp-yes {
  color: var(--good);
  font-weight: 600;
}

.cmp-no {
  color: var(--bad);
  font-weight: 600;
}

.cmp-partial {
  color: #fbbf24;
  font-weight: 500;
}

/* —— ROI section —— */
.pricing-roi {
  padding: clamp(40px, 6vw, 72px) 0;
}

.roi-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(0, 163, 255, 0.04) 0%, var(--bg-card) 35%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

@media (max-width: 800px) {
  .roi-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 24px;
  }
}

.roi-card__text h2 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.roi-card__text p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.roi-card__stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.roi-card__stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.roi-card__stats li strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.roi-card__stats li span {
  font-size: 0.8rem;
  color: var(--muted);
}

.roi-comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.roi-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.roi-bar__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.roi-bar__fill {
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  min-width: 120px;
  transition: width 0.6s ease;
}

.roi-bar--human .roi-bar__fill {
  background: linear-gradient(90deg, rgba(248, 113, 113, 0.25), rgba(248, 113, 113, 0.1));
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.roi-bar--bot .roi-bar__fill {
  background: linear-gradient(90deg, rgba(0, 163, 255, 0.3), rgba(0, 163, 255, 0.12));
  border: 1px solid rgba(0, 163, 255, 0.45);
}

.roi-bar__value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e4e4e7;
  white-space: nowrap;
}

/* —— Nav active state —— */
.nav-main__active {
  color: var(--brand) !important;
}

.nav-main__active:hover {
  color: var(--brand-hover) !important;
}

/* ══════════════════════════════════════════
   POKALBIU-BOTUKAS dedicated page styles
══════════════════════════════════════════ */

/* —— CB Hero —— */
.cb-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(32px, 5vw, 64px);
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(0, 163, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(0, 163, 255, 0.06), transparent 50%);
}

.cb-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 900px) {
  .cb-hero__inner {
    grid-template-columns: 1fr;
  }
}

.cb-hero__badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 163, 255, 0.12);
  border: 1px solid rgba(0, 163, 255, 0.3);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cb-hero__copy h1 {
  margin: 0 0 20px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.cb-hero__lead {
  margin: 0 0 32px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 38rem;
}

.cb-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .cb-hero__actions {
    flex-direction: column;
  }

  .cb-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cb-hero__lead {
    font-size: 0.97rem;
  }
}

.cb-hero__note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}

/* —— Chat mock widget —— */
.cb-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-mock__glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 163, 255, 0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.chat-mock {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0e0e0e;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 163, 255, 0.08);
  overflow: hidden;
  font-size: 0.85rem;
  /* Hero maketas kaip vizualas — teksto neįmanoma pažymėti */
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  cursor: default;
}

.chat-mock img {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.chat-mock__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #131313;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.chat-mock__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 163, 255, 0.12);
  border: 1px solid rgba(0, 163, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-mock__header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chat-mock__header-info strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

.chat-mock__status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--muted);
}

.chat-mock__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
}

.chat-mock__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}

.chat-mock__msg {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.chat-mock__msg--bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e4e4e7;
  border-bottom-left-radius: 4px;
}

.chat-mock__msg--bot strong {
  color: var(--brand);
}

.chat-mock__msg--user {
  align-self: flex-end;
  background: rgba(0, 163, 255, 0.18);
  border: 1px solid rgba(0, 163, 255, 0.25);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-mock__typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}

.chat-mock__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted-2);
  animation: typing-bounce 1.3s ease-in-out infinite;
}

.chat-mock__typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-mock__typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .chat-mock__typing span { animation: none; opacity: 0.4; }
}

@media (max-width: 400px) {
  .chat-mock {
    font-size: 0.8rem;
    border-radius: 12px;
  }

  .chat-mock__body {
    padding: 12px 10px;
    gap: 10px;
  }

  .chat-mock__bubble {
    padding: 9px 12px;
    font-size: 0.8rem;
  }
}

.chat-mock__input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #0a0a0a;
  cursor: default;
}

.chat-mock__input-text {
  flex: 1;
  font-size: 0.82rem;
  color: var(--muted-2);
}

.chat-mock__send {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand);
  border: none;
  cursor: default;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-mock__send svg {
  width: 14px;
  height: 14px;
  color: #fff;
}

/* —— Stats strip —— */
.cb-stats {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.cb-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.cb-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 12px 16px;
  border-right: 1px solid var(--border);
}

.cb-stat:last-child {
  border-right: none;
}

@media (max-width: 600px) {
  .cb-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cb-stat {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 12px;
  }

  .cb-stat:nth-child(2n) {
    border-right: none;
  }

  .cb-stat:nth-child(3),
  .cb-stat:nth-child(4) {
    border-bottom: none;
  }
}

.cb-stat strong {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.cb-stat span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* —— Features grid —— */
.cb-features {
  padding-block: clamp(48px, 7vw, 80px);
}

.cb-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 960px) {
  .cb-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cb-feat-grid {
    grid-template-columns: 1fr;
  }
}

.cb-feat-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.2s, box-shadow 0.2s;
  /* Kortelės kaip vizualas — teksto negalima pažymėti */
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  cursor: default;
}

.cb-feat-card:hover {
  border-color: rgba(0, 163, 255, 0.3);
  box-shadow: 0 0 24px rgba(0, 163, 255, 0.06);
}

.cb-feat-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 163, 255, 0.1);
  border: 1px solid rgba(0, 163, 255, 0.2);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cb-feat-card__icon svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
  -webkit-user-drag: none;
}

.cb-feat-card__body h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.cb-feat-card__body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

/* —— How it works —— */
.cb-how {
  /* Viršuje — šviesesnis „glow“; apačioje — išblukimas į #000, kad nebūtų aštraus pjūvio su integracijų juosta */
  background:
    linear-gradient(180deg, transparent 0%, transparent 72%, rgba(0, 0, 0, 0.65) 92%, #000 100%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0, 163, 255, 0.05), transparent 60%);
}

.cb-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

@media (max-width: 860px) {
  .cb-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 360px;
    margin: 0 auto;
  }
}

.cb-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  max-width: 260px;
}

.cb-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 163, 255, 0.12);
  border: 1px solid rgba(0, 163, 255, 0.35);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-touch-callout: none;
  cursor: default;
}

.cb-step__visual {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 16px;
  /* Maketas kaip nuotrauka — negalima pažymėti / kopijuoti */
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-touch-callout: none;
  cursor: default;
}

.cb-step__visual * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.cb-step__visual svg {
  pointer-events: none;
  -webkit-user-drag: none;
}

.cb-step h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.cb-step p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
}

.cb-step__connector {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-top: 22px;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-touch-callout: none;
  cursor: default;
}

@media (max-width: 860px) {
  .cb-step__connector {
    padding: 12px 0;
    flex-direction: column;
    gap: 4px;
  }
}

.cb-step__connector span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 163, 255, 0.45);
}

.cb-step__connector span:nth-child(2) { opacity: 0.6; }
.cb-step__connector span:nth-child(3) { opacity: 0.3; }

/* Step visuals */
.cb-step-doc {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.cb-step-doc__line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.cb-step-doc__line--short { width: 55%; }
.cb-step-doc__line--mid  { width: 70%; }

.cb-step-doc__tag {
  margin-top: 8px;
  font-size: 0.65rem;
  color: var(--brand);
  font-family: var(--mono);
  text-align: left;
  opacity: 0.8;
}

.cb-step-code {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 0.65rem;
  width: 100%;
}

.cb-step-code__tag {
  color: rgba(129, 140, 248, 0.9);
}

.cb-step-code__val {
  color: #4ade80;
  padding-left: 8px;
}

.cb-step-live {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.cb-step-live__pulse {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.08);
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
  50% { transform: translateX(-50%) scale(1.35); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cb-step-live__pulse { animation: none; }
}

.cb-step-live svg {
  width: 28px;
  height: 28px;
  color: #4ade80;
  position: relative;
  z-index: 1;
}

.cb-step-live span {
  font-size: 0.72rem;
  color: #4ade80;
  font-weight: 600;
}

/* —— Use cases / qualify block —— */
.cb-qualify {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.cb-qualify__left {
  padding: 44px 48px;
  border-right: 1px solid var(--border);
}

.cb-qualify__left h2 {
  margin: 0 0 28px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.cb-qualify__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cb-qualify__list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cb-qualify__list li:last-child {
  border-bottom: none;
}

.cb-qualify__item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.cb-qualify__item-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

.cb-qualify__right {
  padding: 44px 48px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cb-qualify__lead {
  margin: 0 0 24px;
  font-size: 0.88rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.cb-qualify__outcomes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cb-qualify__outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.02rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

.cb-qualify__outcomes li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--brand);
}

@media (max-width: 760px) {
  .cb-qualify {
    grid-template-columns: 1fr;
  }

  .cb-qualify__left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 32px 24px;
  }

  .cb-qualify__right {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .cb-qualify__left,
  .cb-qualify__right {
    padding: 24px 18px;
  }

  .cb-qualify__left h2 {
    font-size: 1.25rem;
  }

  .cb-qualify__outcomes li {
    font-size: 0.95rem;
  }
}

/* —— Pricing total note —— */
.pricing-card__total-note {
  margin: -16px 0 20px;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.pricing-card__total-note strong {
  color: #4ade80;
}

/* —— Bonuses section —— */
.cb-bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width: 720px) {
  .cb-bonus-grid {
    grid-template-columns: 1fr;
  }
}

.cb-bonus-item {
  display: flex;
  gap: 14px;
  padding: 20px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  align-items: flex-start;
}

.cb-bonus-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--brand);
  margin-top: 2px;
}

.cb-bonus-item__icon svg {
  width: 100%;
  height: 100%;
}

.cb-bonus-item > div strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.cb-bonus-item > div p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--muted);
}

/* —— Guarantee block —— */
.cb-bonuses__note {
  margin: 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

@media (max-width: 480px) {
  .cb-bonus-item {
    padding: 16px 14px;
  }

  .cb-bonus-item__icon {
    width: 28px;
    height: 28px;
  }
}

/* —— Why now section —— */
.cb-whynow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

@media (max-width: 720px) {
  .cb-whynow-grid {
    grid-template-columns: 1fr;
  }
}

.cb-whynow-item {
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.cb-whynow-item--bad {
  border: 1px solid rgba(248, 113, 113, 0.35);
  box-shadow: 0 0 32px rgba(248, 113, 113, 0.07);
}

.cb-whynow-item--good {
  border: 1px solid rgba(0, 163, 255, 0.35);
  box-shadow: 0 0 32px rgba(0, 163, 255, 0.07);
}

.cb-whynow-item__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.cb-whynow-item--bad .cb-whynow-item__label { color: var(--bad); }
.cb-whynow-item--good .cb-whynow-item__label { color: var(--brand); }

.cb-whynow-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cb-whynow-item li {
  position: relative;
  padding: 9px 0 9px 24px;
  font-size: 0.88rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.45;
}

.cb-whynow-item li:last-child { border-bottom: none; }

.cb-whynow-item--bad li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--bad);
  font-weight: 700;
  font-size: 0.8rem;
}

.cb-whynow-item--good li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--good);
  font-weight: 700;
  font-size: 0.8rem;
}

.cb-whynow-cost {
  text-align: center;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.cb-whynow-cost p {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--muted);
}

.cb-whynow-cost p:last-child { margin: 0; }

.cb-whynow-cost strong {
  color: #fff;
}

/* ─── INTEGRATIONS STRIP ─── */
.cb-integrations {
  /* -1px sutvarko subpikselinę „plaukų“ liniją tarp dviejų blokų */
  margin-top: -1px;
  padding: clamp(32px, 6vw, 49px) 0 clamp(32px, 6vw, 48px);
  /* Pradeda nuo to paties #000 kaip .cb-how apačia — be staigaus spalvos šuolio */
  background: #000;
  position: relative;
  overflow: hidden;
  border-top: none;
  box-shadow: none;
}

.cb-integrations::before {
  content: '';
  position: absolute;
  /* Ne nuo paties pikselio 0 — išvengiame dirbtinės „juostos“ ant krašto */
  top: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 75% 85% at 50% 58%, rgba(0, 163, 255, 0.055) 0%, transparent 62%);
  pointer-events: none;
}

.cb-integrations .wrap {
  position: relative;
  z-index: 1;
}

.cb-integrations__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  text-align: center;
}

.cb-integrations__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cb-integrations__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 18px;
  cursor: default;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.cb-integrations__item:hover {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 4px 16px rgba(0,0,0,0.2);
}

.cb-integrations__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.cb-integrations__item:hover .cb-integrations__icon {
  opacity: 1;
}

@media (max-width: 480px) {
  .cb-integrations__item {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .cb-integrations__label {
    margin-bottom: 20px;
  }
}

/* ─── TESTIMONIALS ─── */
.cb-testimonials {
  background: rgba(255,255,255,0.015);
}

.cb-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 860px) {
  .cb-testi-grid { grid-template-columns: 1fr; }
}

.cb-testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}

.cb-testi-card:hover {
  border-color: rgba(255,255,255,0.12);
}

.cb-testi-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
}

.cb-testi-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  flex: 1;
}

.cb-testi-text::before { content: '\201E'; }
.cb-testi-text::after  { content: '\201C'; }

.cb-testi-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.cb-testi-author strong {
  font-size: 0.875rem;
  color: #fff;
}

.cb-testi-author span {
  font-size: 0.8125rem;
  color: var(--muted);
}
