/* ============================================
   Verslo asistentas - landing
   Dizaino atitikmuo PDF "PASIŪLYMAS 2026"
   ============================================ */

/* ===== INLINE BRAND ICONS ===== */
.ico {
  width: 18px;
  height: 18px;
  vertical-align: -4px;
  flex-shrink: 0;
  display: inline-block;
}
.ico-lg {
  width: 22px;
  height: 22px;
  vertical-align: -5px;
  margin-right: 8px;
}
.brand-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  white-space: nowrap;
  background: var(--cream-mid);
  padding: 2px 10px 2px 8px;
  border-radius: 6px;
  border: 1px solid var(--rule);
}
.brand-inline .ico {
  vertical-align: 0;
  width: 16px;
  height: 16px;
}
.brand-inline.brand-inline-icons {
  gap: 4px;
  padding: 3px 8px;
}
.brand-inline.brand-inline-icons .ico {
  width: 18px;
  height: 18px;
}

/* ===== TOKENS ===== */
:root {
  /* spalvos iš PDF */
  --cream: #EDE8DD;
  --cream-light: #F4F1EA;
  --cream-mid: #E0DACC;
  --cream-dark: #D5CEBE;

  --ink: #0E0E0E;
  --ink-soft: #1F1F1F;
  --muted: #6B6657;
  --muted-light: #A19B8C;

  --green: #2A4A38;
  --green-soft: #3D5A47;

  --bubble-bot: #DDD7C8;
  --bubble-bot-text: #0E0E0E;
  --bubble-you: #0E0E0E;
  --bubble-you-text: #F4F1EA;

  --tag-bg: #DDD7C8;
  --rule: #B8B0A0;

  /* tipografija */
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "SF Pro", "Inter", system-ui, sans-serif;
  --serif: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "SF Pro", "Inter", system-ui, sans-serif;
  --mono: "SF Mono", ui-monospace, "JetBrains Mono", "Courier New", monospace;
  --radius-cta: 8px;

  /* layout */
  --container: 880px;
  --container-wide: 880px;
  --gutter: clamp(20px, 4vw, 40px);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: var(--ink); text-decoration: none; transition: opacity 0.18s ease; }
a:active { opacity: 0.55; }
em, i { font-style: italic; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== HEADER (PDF page header) ===== */
.site-header {
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 50;
}
.site-header .container {
  max-width: var(--container-wide);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .site-header { padding: 14px 0 12px; }
  .site-header .container { padding: 0 16px; }
  .site-header .brand-akseler { font-size: 14px; letter-spacing: 0.16em; }
  .header-cta,
  .header-cta.is-button { font-size: 10px; letter-spacing: 0.14em; }
  .header-cta.is-button { padding: 8px 12px; }
}
.logo {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.logo-link {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  padding-bottom: 2px;
}
.logo-link:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.header-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.header-cta { transition: opacity 0.18s ease; }
.header-cta:active { opacity: 0.55; }

/* Header CTA as button (siltkis style) */
.header-cta.is-button {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: var(--radius-cta);
  border: 1px solid var(--ink);
  transition: opacity 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.header-cta.is-button:focus { outline: none; }
.header-cta.is-button:focus:not(:focus-visible) { outline: none; box-shadow: none; }
.header-cta.is-button:active { opacity: 0.55; }

/* Logo image */
.brand-logo-img {
  display: block;
  height: 36px;
  width: auto;
}

/* Smooth page-enter for niche pages (chooser already has --cream bg, only the
   content above the fold should fade so there's no white flash between pages) */
@keyframes page-enter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
body > .site-header,
body > main,
body > section,
body > footer {
  animation: page-enter 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
body > .site-header { animation-delay: 0s; }
body > section,
body > main { animation-delay: 0.05s; }
body > footer { animation-delay: 0.12s; }
@media (prefers-reduced-motion: reduce) {
  body > .site-header,
  body > main,
  body > section,
  body > footer { animation: none; }
}
.site-footer .brand-logo-img { height: 42px; margin-bottom: 12px; }

/* ===== HERO ===== */
.hero {
  padding: clamp(32px, 6vh, 64px) 0 clamp(48px, 8vh, 80px);
}
.meta-line {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: clamp(20px, 4vh, 40px);
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(38px, 5.5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(110deg, var(--green) 0%, #3D6B4E 35%, #5E8A6F 55%, #3D6B4E 75%, var(--green) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 8s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title em { animation: none; }
}
.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-facts {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0 0 28px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 140px;
}
.fact-num {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.fact-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.fact-divider {
  width: 1px;
  background: var(--rule);
  margin: 0 24px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
/* Hero - control reassurance pill */
.hero-control-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  margin: -16px 0 40px;
  padding: 14px 20px;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--green);
  border-radius: 4px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
  max-width: 580px;
}
.hero-control-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--green);
  color: var(--cream);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-platforms {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.hero-platforms > span:first-child {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.hero-platforms .brand-inline {
  font-size: 14px;
  padding: 6px 14px 6px 12px;
}
.hero-platforms .brand-inline .ico {
  width: 18px;
  height: 18px;
}
.hero-foot {
  font-size: 14px;
  color: var(--muted);
  max-width: 480px;
  font-style: italic;
}

/* ===== BUTTONS ===== */
/* Unified click/tap feedback for every interactive element */
button,
a.btn-cta-square,
a.header-cta,
a.btn,
.price-card-cta,
.chat-btn {
  -webkit-tap-highlight-color: transparent;
}
button:focus, button:focus-visible,
a.btn-cta-square:focus, a.btn-cta-square:focus-visible,
a.btn:focus, a.btn:focus-visible {
  outline: none;
  box-shadow: none;
}
.btn-cta-square:active,
.header-cta.is-button:active,
.btn:active,
.price-card-cta:active,
.chat-btn:active { opacity: 0.55; }

.btn {
  display: inline-block;
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: opacity 0.18s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:active { opacity: 0.55; }
.btn-secondary {
  background: transparent;
  color: var(--ink);
}
.btn-secondary:active { opacity: 0.55; }
.btn-large {
  padding: 18px 32px;
  font-size: 12px;
}

/* ===== META LABELS (PDF small caps section labels) ===== */
.meta-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ===== SECTION TITLES (PDF "Kaip viskas atrodys praktikoje.") ===== */
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  max-width: 680px;
}
.section-sub {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 52px;
  font-style: italic;
}

/* ===== SECTION SPACING ===== */
section {
  padding: clamp(64px, 11vh, 108px) 0;
  border-top: 1px solid var(--rule);
}
/* DUK + the section right after it sit flush — no surrounding dividers */
section.faq,
section.faq + section {
  border-top: none;
}

/* ===== PROBLEMA - paprastas palyginimas ===== */
.problem .container { max-width: var(--container-wide); }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--rule);
  background: var(--cream-light);
  border-radius: 12px;
  overflow: hidden;
}

.compare-col {
  padding: 32px 36px 28px;
  display: flex;
  flex-direction: column;
}
.compare-col + .compare-col {
  border-left: 1px solid var(--rule);
}

.compare-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 28px;
}
.compare-tag-good {
  background: var(--green);
  color: var(--cream);
}
.compare-now .compare-tag {
  background: #B8443A;
  color: #fff;
}

.compare-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  flex: 1;
}
.compare-steps li {
  counter-increment: step;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  padding: 18px 0 18px 44px;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.compare-new .compare-steps li { padding: 20px 0 20px 44px; }
.compare-steps li:last-child { border-bottom: none; }
.compare-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: var(--cream);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.compare-new .compare-steps li::before {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream);
}
.compare-steps em {
  font-style: italic;
  color: var(--ink-soft);
}
/* User commands in compare-new = chat-bubble pill on its own line */
.compare-new .compare-steps em {
  display: block;
  background: rgba(42, 74, 56, 0.08);
  color: var(--green);
  border: 1px solid rgba(42, 74, 56, 0.18);
  padding: 6px 14px;
  border-radius: 14px;
  font-style: italic;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.4;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 8px;
}
/* Tool pills inside compare list: uniform fixed height across text + icons-only variants */
.compare-steps .brand-inline,
.compare-steps .brand-inline.brand-inline-icons {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  gap: 6px;
  font-size: 0.92em;
  font-weight: 600;
  border-radius: 5px;
  vertical-align: -4px;
  box-sizing: border-box;
}
.compare-steps .brand-inline .ico { width: 14px; height: 14px; }
.compare-steps .brand-inline.brand-inline-icons { gap: 6px; }
.compare-steps .brand-inline.brand-inline-icons .ico { width: 15px; height: 15px; }
.compare-steps strong {
  font-weight: 600;
  background: var(--cream-mid);
  padding: 2px 8px;
  border-radius: 3px;
}

.compare-bottom {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.compare-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.compare-stat-num {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.compare-now .compare-stat-num { color: #B8443A; }
.compare-new .compare-stat-num { color: var(--green); }
.compare-stat-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}

.compare-note {
  margin-top: 32px;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 720px;
  line-height: 1.6;
  padding: 20px 24px;
  background: var(--cream-light);
  border-left: 3px solid var(--green);
  border-radius: 4px;
}
.compare-note strong { color: var(--green); font-weight: 600; }
.compare-now .compare-stat-num { color: #B8443A; }
.compare-new .compare-stat-num { color: var(--green); font-weight: 700; }

@media (max-width: 760px) {
  .compare {
    grid-template-columns: 1fr;
  }
  .compare-col + .compare-col {
    border-left: none;
    border-top: 1px solid var(--rule);
  }
  .compare-col { padding: 24px 20px; }
  .compare-steps li { line-height: 1.7; padding: 16px 0 16px 44px; }
  .compare-new .compare-steps li { padding: 18px 0 18px 44px; }
  .compare-steps .brand-inline,
  .compare-steps .brand-inline.brand-inline-icons {
    margin: 2px 1px;
  }
  .compare-bottom { flex-direction: row; gap: 20px; }
  .compare-stat { flex: 1; min-width: 0; }
  .compare-stat-num { font-size: 18px; }
  .compare-stat-lbl { font-size: 9px; letter-spacing: 0.12em; }
}

/* ===== CHAT BUBBLES (PDF style) ===== */
.chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 32px;
}
.bubble {
  max-width: 78%;
  padding: 13px 17px;
  border-radius: 16px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  word-wrap: break-word;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.bubble.chat-hidden,
.typing-dots.chat-hidden {
  opacity: 0;
  transform: translateY(8px);
}

/* Typing dots - kai botas „rašo" prieš atsakymą */
.typing-dots {
  display: inline-flex;
  align-self: flex-start;
  gap: 5px;
  padding: 14px 18px;
  background: var(--bubble-bot);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
  align-items: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.typing-dots span {
  width: 7px;
  height: 7px;
  background: var(--muted);
  border-radius: 50%;
  display: block;
  animation: typing-bounce 1.2s infinite ease-in-out;
}
.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-bounce {
  0%, 70%, 100% { transform: scale(0.6); opacity: 0.4; }
  30% { transform: scale(1); opacity: 1; }
}
.bubble-you {
  align-self: flex-end;
  background: var(--bubble-you);
  color: var(--bubble-you-text);
  border-bottom-right-radius: 4px;
  font-size: 14px;
}
.bubble-bot {
  align-self: flex-start;
  background: var(--bubble-bot);
  color: var(--bubble-bot-text);
  border-bottom-left-radius: 4px;
}
.bubble-short {
  padding: 8px 14px;
  font-size: 14px;
}
.bubble-voice {
  font-style: italic;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A3D33 100%);
}
.bubble-voice em {
  font-style: italic;
  color: #C5BFA8;
}
.bubble em {
  font-style: italic;
}
.attachment {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(244, 241, 234, 0.15);
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

/* monospace inline tag (PDF: pasiūlymas išsiųstas) */
.tag {
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(53, 88, 69, 0.12);
  color: var(--green);
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.bubble-you .tag {
  background: rgba(244, 241, 234, 0.18);
  color: var(--cream);
}

/* chat action buttons (PDF: [Siųsti] [Pataisyti]) */
.chat-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.chat-btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 6px 12px;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.18s ease;
}
.chat-btn:active { opacity: 0.55; }

/* hint above conversation */
.convo-hint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin: -32px 0 64px;
  padding: 10px 16px;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: 999px;
}
.convo-hint-circle {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  position: relative;
  flex-shrink: 0;
}
.convo-hint-circle::before, .convo-hint-circle::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
}
.convo-hint-circle::before {
  left: 50%; top: 50%;
  width: 8px; height: 1.4px;
  transform: translate(-50%, -50%);
}
.convo-hint-circle::after {
  left: 50%; top: 50%;
  width: 1.4px; height: 8px;
  transform: translate(-50%, -50%);
}

/* ===== POKALBIS - main scenes (PDF chapters 01-10) ===== */
.scene {
  padding: 64px 0;
  border-top: 1px solid var(--rule);
}
.scene:first-of-type { border-top: none; padding-top: 24px; }
.scene-header {
  margin-bottom: 32px;
}
.scene-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-right: 12px;
  vertical-align: middle;
}
.scene-title {
  display: inline;
  font-size: clamp(24px, 3.5vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.scene-sub {
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
}
.ex {
  border-bottom: 1px solid var(--rule);
}
.ex:first-of-type { border-top: 1px solid var(--rule); }

.ex-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 500;
  padding: 22px 0;
  margin: 0;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.15s, padding-left 0.2s;
  position: relative;
}
.ex-label { transition: opacity 0.18s ease; }
.ex-label:active { opacity: 0.55; }

/* Toggle icon - circle that morphs between + and − */
.ex-label::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
  flex-shrink: 0;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
/* Horizontal bar of the plus (always visible) */
.ex-label::before {
  content: "";
  position: absolute;
  right: 9px;
  top: 50%;
  width: 14px;
  height: 1.6px;
  background: var(--ink);
  transform: translateY(-50%);
  transition: background 0.25s ease;
  pointer-events: none;
  z-index: 2;
  border-radius: 2px;
}
/* Vertical bar (added via JS) */
.ex-label .plus-v {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 1.6px;
  height: 14px;
  background: var(--ink);
  transform: translate(0, -50%) rotate(0);
  transform-origin: center center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease,
              background 0.25s ease;
  pointer-events: none;
  z-index: 2;
  border-radius: 2px;
}

.ex-label:hover::after {
  background: var(--ink);
  border-color: var(--ink);
  transform: scale(1.08);
}
.ex-label:hover::before, .ex-label:hover .plus-v {
  background: var(--cream);
}

.ex.is-open .ex-label { color: var(--ink); }
.ex.is-open .ex-label::after {
  background: var(--green);
  border-color: var(--green);
}
.ex.is-open .ex-label::before { background: var(--cream); }
.ex.is-open .ex-label .plus-v {
  background: var(--cream);
  transform: translate(0, -50%) rotate(90deg);
  opacity: 0;
}

/* Hint pulse on closed toggles - tells user "click me" */
@keyframes hint-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14, 14, 14, 0.0); }
  50% { box-shadow: 0 0 0 8px rgba(14, 14, 14, 0.06); }
}
@keyframes hint-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.ex:not(.is-open) .ex-label::after {
  animation: hint-pulse 2.4s ease-in-out infinite;
}
.ex:not(.is-open):hover .ex-label::after {
  animation: hint-bounce 0.4s ease-out;
}

/* Smooth chat reveal */
.ex .chat {
  display: flex;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              padding 0.3s ease;
}
.ex.is-open .chat {
  max-height: 2000px;
  opacity: 1;
  padding: 8px 0 32px;
}

/* ===== CONVERSATION SECTION — dark grainy bg ===== */
.conversation {
  position: relative;
  background: #0E0E10;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
  border-top: none !important;
}
.conversation::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(42, 74, 56, 0.45), transparent 60%),
    radial-gradient(80% 60% at 100% 110%, rgba(255, 255, 255, 0.05), transparent 60%);
  pointer-events: none;
  z-index: -2;
}
.conversation::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.32;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.conversation .container { position: relative; z-index: 1; }
.conversation .meta-label { color: rgba(237, 232, 221, 0.55); }
.conversation .section-title { color: var(--cream); }
.conversation .section-title em { color: #8FB39E; }
.conversation .section-sub { color: rgba(237, 232, 221, 0.7); }

/* ===== SPOTLIGHT (4 stipriausi pavyzdžiai) ===== */
.spotlight {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.spotlight:first-of-type { border-top: none; padding-top: 24px; }
.conversation .spot-num { color: rgba(237, 232, 221, 0.55); }
.conversation .spot-cat { background: rgba(255, 255, 255, 0.08); color: var(--cream); border: 1px solid rgba(255, 255, 255, 0.18); }
.conversation .spot-title { color: var(--cream); }
.conversation .spot-desc { color: rgba(237, 232, 221, 0.78); }
.conversation .spot-plus { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.22); }
.conversation .spot-plus::before, .conversation .spot-plus::after { background: var(--cream); }
.conversation .spot-toggle:hover .spot-plus { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.4); }

/* Chat bubbles on dark — readability tuning */
.conversation .bubble-you {
  background: var(--cream);
  color: var(--ink);
}
.conversation .bubble-bot {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.conversation .bubble-bot strong { color: #fff; }
.conversation .bubble-bot em { color: rgba(245, 240, 226, 0.88); }
.conversation .bubble-bot .tag {
  background: rgba(0, 132, 70, 0.25);
  color: #B5E5C5;
  border: 1px solid rgba(181, 229, 197, 0.3);
}
.conversation .bubble-voice {
  background: linear-gradient(135deg, #14271E 0%, #2A4A38 100%);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.conversation .bubble-voice em { color: #B8D9C2; }

/* Pull quote inside conversation gets dark treatment too */
.conversation .pull-quote.pull-quote-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--cream);
}
.conversation .pull-quote em { color: #8FB39E; }
.conversation .pull-quote-cite { color: rgba(237, 232, 221, 0.7); }
.conversation .pull-quote-avatar { background: var(--cream); color: var(--ink); }
.spot-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.spot-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.spot-cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cream);
  background: var(--ink);
  padding: 4px 10px;
  border-radius: 3px;
  font-weight: 500;
}
.spot-title {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.spot-desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 28px;
}
.spotlight .chat {
  margin: 0;
  padding: 0;
}
.spotlight .bubble {
  font-size: 16px;
  max-width: 88%;
}

/* "More examples" note after the 4 scenes */
.more-note {
  margin: 56px 0 0;
  padding: 24px 28px;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.more-note strong {
  color: var(--ink);
  font-weight: 600;
}

/* ===== PULL QUOTE (PDF: „Vietoj kelionės…") ===== */
.pull-quote {
  margin: 96px auto 24px;
  padding: 0;
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-align: left;
  max-width: 640px;
  border: none;
  position: relative;
}
.pull-quote::before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--rule);
  margin-bottom: 32px;
}
.pull-quote em {
  color: var(--green);
  font-style: italic;
  font-weight: 500;
}
.pull-quote-cite {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  font-style: normal;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.08em;
}

/* Highlighted pull-quote: card with left vertical accent line, no cite */
.pull-quote.pull-quote-card {
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--green);
  border-radius: 12px;
  padding: 32px 36px 30px 32px;
  margin: 72px auto 24px;
  max-width: 620px;
  position: relative;
  text-align: left;
  font-size: clamp(19px, 2.5vw, 23px);
  line-height: 1.45;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
}
.pull-quote.pull-quote-card::before { display: none; }
.pull-quote.pull-quote-card .pull-quote-cite { display: none; }

@media (max-width: 600px) {
  .pull-quote.pull-quote-card {
    padding: 24px 22px 22px 20px;
    margin-top: 56px;
    font-size: 17px;
    line-height: 1.5;
    border-radius: 10px;
  }
}

/* ===== INTEGRACIJOS ===== */
.int-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--rule);
}
.int-item {
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--rule);
}
.int-item:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--rule);
}
.int-item:nth-child(even) {
  padding-left: 32px;
}
.int-name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
.int-desc {
  font-size: 15px;
  color: var(--ink-soft);
  font-style: italic;
}
.int-foot {
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  max-width: 560px;
}

/* ===== KAS LIEKA JUMS ===== */
.bound-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
  counter-reset: bound;
}
/* Stagger reveal - 3 kortelės atsiranda po vieną */
.bound-item.reveal { transition-delay: var(--reveal-delay, 0s); }
.bound-grid .bound-item:nth-child(1) { --reveal-delay: 0s; }
.bound-grid .bound-item:nth-child(2) { --reveal-delay: 0.12s; }
.bound-grid .bound-item:nth-child(3) { --reveal-delay: 0.24s; }
/* Numeruoti badge'ai prieš antraštę */
.bound-item {
  position: relative;
  padding-top: 8px;
}
.bound-item::before {
  counter-increment: bound;
  content: counter(bound, decimal-leading-zero);
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 12px;
  font-weight: 500;
}
.bound-item h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.bound-item p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.bound-foot {
  margin-top: 56px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  max-width: 600px;
}

/* Post-pricing CTA */
.price-cta {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.price-cta-note {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

/* ===== HUB - viskas viename ===== */
.hub {
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
}
.hub .container { max-width: var(--container-wide); }
.hub-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 18px;
  max-width: 680px;
}
.hub-title em {
  color: var(--green);
  font-style: italic;
  font-weight: 500;
}
.hub-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 56px;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
}
.hub-cat {
  padding: 28px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hub-cat:nth-child(2n) { border-right: none; }
.hub-cat:nth-last-child(-n+2) { border-bottom: none; }
.hub-cat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.hub-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hub-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  background: var(--cream-mid);
  color: var(--ink);
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  white-space: nowrap;
  line-height: 1.2;
}
.hub-pill .ico {
  width: 16px;
  height: 16px;
  vertical-align: 0;
}

.hub-conclusion {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 56px;
  padding: 36px 40px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 8px;
}
.hub-conclusion-num {
  font-size: 84px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 0.9;
  flex-shrink: 0;
}
.hub-conclusion-text h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--cream);
}
.hub-conclusion-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--cream-light);
}

@media (max-width: 760px) {
  .hub-grid { grid-template-columns: 1fr; }
  .hub-cat {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 24px 20px;
  }
  .hub-cat:last-child { border-bottom: none; }
  .hub-conclusion {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }
  .hub-conclusion-num { font-size: 56px; }
}

/* ===== TESTIMONIALS — viber chat carousel ===== */
.testimonials {
  /* base section{} already gives the top divider; no extra borders or bg overrides */
}
.testimonials .container { max-width: var(--container-wide); }
.testimonials .section-title { text-align: center; margin: 0 auto 40px; max-width: 720px; }
.testimonials .section-title em { color: var(--green); font-style: italic; font-weight: 500; }
.testimonials .meta-label { text-align: center; }

.t-carousel {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--ink);
  background: #000;
  touch-action: pan-y;
  user-select: none;
}
.t-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}
.t-slide {
  flex: 0 0 100%;
  margin: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  background: #000;
}
.t-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.t-bars {
  display: flex;
  gap: 10px;
  margin: 20px auto 0;
  max-width: 600px;
  padding: 0;
}
.t-bar {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.14);
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s ease;
}
.t-bar:hover { background: rgba(14, 14, 14, 0.24); }
.t-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--ink);
  border-radius: 999px;
  transition: width 0s linear;
}
.t-bar.is-done .t-bar-fill { width: 100%; }
.t-bar.is-active .t-bar-fill { width: 100%; transition: width 10s linear; }

@media (max-width: 720px) {
  .t-carousel { border-radius: 12px; max-width: 100%; }
  .t-slide { aspect-ratio: 5 / 6; padding: 10px; }
  .t-bars { margin-top: 14px; }
  .testimonials .section-title { margin-bottom: 24px; }
}

/* ===== VOICE - balso žinutės ===== */
.voice .container { max-width: var(--container-wide); }
.voice .section-title em {
  color: var(--green);
  font-style: italic;
  font-weight: 500;
}

/* Single recorder box: mic + curved waveform + example prompts */
.voice-recorder {
  margin: 36px 0 0;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 28px 32px 24px;
  width: 100%;
}
.voice-recorder-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.voice-recorder-mic {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: inline-grid;
  place-items: center;
}
.voice-recorder-mic svg { width: 20px; height: 20px; position: relative; z-index: 1; }
.voice-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--green);
  opacity: 0.35;
  animation: voicePulse 2.2s ease-out infinite;
}
@keyframes voicePulse {
  0%   { transform: scale(0.85); opacity: 0.55; }
  100% { transform: scale(1.35); opacity: 0; }
}
.voice-wave {
  flex: 1;
  height: 56px;
  color: var(--green);
  display: block;
}
.voice-wave path {
  stroke-dasharray: 8 0;
  animation: voiceWave 4s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes voiceWave {
  0%   { transform: scaleY(0.85); }
  100% { transform: scaleY(1.15); }
}
.voice-time {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.voice-examples {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.voice-examples li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}
.voice-examples em { font-style: italic; color: var(--ink-soft); }
.voice-ex-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--green);
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 4px 8px;
  border-radius: 999px;
  flex-shrink: 0;
  font-weight: 600;
}
@media (max-width: 600px) {
  .voice-recorder { padding: 18px 18px 16px; border-radius: 12px; }
  .voice-recorder-row { gap: 12px; }
  .voice-recorder-mic { width: 40px; height: 40px; }
  .voice-wave { height: 44px; }
  .voice-time { font-size: 12px; }
  .voice-examples li { font-size: 13.5px; gap: 10px; align-items: flex-start; flex-wrap: wrap; }
  .voice-ex-tag { font-size: 9px; padding: 3px 7px; letter-spacing: 0.12em; }
}

/* ===== BITĖ - telefono skambučiai ===== */
.bite .container { max-width: var(--container-wide); }
.bite .section-title em {
  color: var(--green);
  font-style: italic;
  font-weight: 500;
}

/* === Context card: memory + history + actions === */
.ctx-card {
  margin-top: 36px;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
}
.ctx-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
}
.ctx-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.ctx-meta { min-width: 0; }
.ctx-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ctx-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #B8443A;
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 500;
}
.ctx-meta-row {
  margin-top: 3px;
  font-size: 13px;
  color: var(--muted);
}

.ctx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.ctx-col {
  padding: 22px 26px;
  border-right: 1px solid var(--rule);
}
.ctx-col:last-child { border-right: none; }
.ctx-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.ctx-col-head svg { width: 16px; height: 16px; }

.ctx-list,
.ctx-timeline,
.ctx-actions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
}
.ctx-list li {
  padding-left: 14px;
  position: relative;
}
.ctx-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.ctx-timeline li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  position: relative;
  padding-left: 20px;
}
.ctx-timeline li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px var(--cream-light);
}
.ctx-timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  bottom: -10px;
  width: 1px;
  background: var(--rule);
}
.ctx-timeline .ctx-time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  min-width: 38px;
  padding-top: 1px;
}
.ctx-timeline .ctx-tch { font-size: 13.5px; }
.ctx-timeline .ctx-ch {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 2px 7px;
  border-radius: 999px;
  margin-right: 4px;
  font-weight: 500;
}

.ctx-actions li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ctx-act-dot {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  margin-top: 3px;
  position: relative;
}
.ctx-act-dot.is-done {
  background: var(--green);
  border-color: var(--green);
}
.ctx-act-dot.is-done::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.ctx-actions s { color: var(--muted); }

@media (max-width: 860px) {
  .ctx-grid { grid-template-columns: 1fr; }
  .ctx-col { border-right: none; border-bottom: 1px solid var(--rule); }
  .ctx-col:last-child { border-bottom: none; }
  .ctx-header { padding: 18px 20px; }
  .ctx-col { padding: 18px 22px; }
}

@media (max-width: 600px) {
  .ctx-timeline {
    gap: 14px;
  }
  .ctx-timeline li {
    flex-wrap: nowrap;
    align-items: center;
    min-width: 0;
  }
  .ctx-timeline .ctx-tch {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12.5px;
    line-height: 1.9;
    padding: 2px 0;
  }
  .ctx-timeline .ctx-ch {
    font-size: 9px;
    padding: 1px 6px;
    letter-spacing: 0.1em;
    margin-right: 4px;
    vertical-align: middle;
  }
  .ctx-timeline .ctx-time {
    min-width: 32px;
    font-size: 10px;
  }
}

/* ===== ROLES - vaidmenys ir prieigos ===== */
.roles .container { max-width: var(--container-wide); }
.roles .section-title em {
  color: var(--green);
  font-style: italic;
  font-weight: 500;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
}
.role-card {
  padding: 28px 28px 24px;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.role-card:hover { border-color: var(--ink-soft); }
.role-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream-mid);
  padding: 5px 10px;
  border-radius: 3px;
  align-self: flex-start;
}
.role-tag-owner {
  background: var(--green);
  color: var(--cream);
}
.role-card h4 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.role-can {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.role-can li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.role-can li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.role-cant {
  margin: 8px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
}

.roles-note {
  margin-top: 32px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 720px;
}

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

/* ===== TRUST - duomenų apsauga (security/GDPR look) ===== */
.trust .container { max-width: var(--container); }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 40px;
  max-width: 720px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--cream-light);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.trust-badge svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

.trust-lede {
  text-align: center;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 32px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.trust-card {
  position: relative;
  padding: 24px 24px 26px;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.trust-card:hover { border-color: var(--ink-soft); }
.trust-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green);
  color: var(--cream);
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
}
.trust-card-icon svg { width: 20px; height: 20px; }
.trust-card h4 {
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.3;
}
.trust-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 760px) {
  .trust-badges { gap: 8px; margin: 24px auto 28px; }
  .trust-badge { padding: 8px 12px; font-size: 10.5px; letter-spacing: 0.12em; }
  .trust-grid { grid-template-columns: 1fr; gap: 10px; }
  .trust-card { padding: 20px 20px 22px; }
}

/* ===== KAINA — unified card ===== */
.pricing { text-align: left; }
@media (min-width: 760px) {
  .pricing .meta-label,
  .pricing .section-title { text-align: center; margin-left: auto; margin-right: auto; max-width: 720px; }
  .pricing .price-card { margin-left: auto; margin-right: auto; }
  .pricing .price-out-line { margin-left: auto; margin-right: auto; text-align: center; }
}

.price-card {
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 30px 34px 26px;
  max-width: 520px;
  margin: 24px 0 14px;
}
.price-card .meta-label {
  margin-bottom: 10px;
}
.price-card .price-headline {
  font-size: clamp(20px, 2.7vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 14px;
  white-space: nowrap;
}
.price-card .price-headline .price-old {
  font-size: 1em;
  color: var(--muted);
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(107, 102, 87, 0.5);
}
.price-card .section-title {
  margin-bottom: 18px;
}
.price-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-includes li {
  font-size: 13.5px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  color: var(--ink-soft);
}
.price-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}
.price-card-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.price-out-line {
  margin: 16px 0 0;
  max-width: 520px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  font-style: italic;
}
.price-out-line strong {
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 600px) {
  .price-card { padding: 24px 22px 22px; border-radius: 12px; }
  .price-card .price-headline { font-size: clamp(23px, 6.8vw, 30px); padding-bottom: 14px; margin-bottom: 16px; gap: 13px; }
  .price-includes { gap: 9px; margin-bottom: 18px; }
  .price-includes li { font-size: 14px; padding-left: 22px; }
}

/* legacy / unchanged rules below kept for other sections still using them */

.price-headline-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 16px 0 16px;
}
.price-trial-badge {
  background: var(--green);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.price-trial-badge strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-left: 4px;
}
.price-headline {
  font-size: clamp(52px, 9vw, 88px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}

/* ROI anchor */
.price-anchor {
  margin: 32px 0 48px;
  padding: 28px 32px;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: 6px;
}
.price-anchor-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  gap: 16px;
}
.price-anchor-row:last-of-type { border-bottom: none; }
.price-anchor-row-bold {
  border-top: 2px solid var(--ink);
  margin-top: 6px;
  padding-top: 14px;
}
.price-anchor-label {
  font-size: 15px;
  color: var(--ink-soft);
}
.price-anchor-row-bold .price-anchor-label {
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
}
.price-anchor-val {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.price-anchor-row-bold .price-anchor-val {
  color: var(--green);
  font-size: 20px;
}
.price-anchor-note {
  margin: 18px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}
.price-anchor-note strong {
  color: var(--green);
  font-weight: 700;
  font-style: normal;
}

/* Guarantee box */
.price-guarantee-box {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 6px;
}
.price-guarantee-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C5BFA8;
  margin-bottom: 10px;
}
.price-guarantee-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--cream-light);
}
.price-guarantee-box strong {
  color: white;
  font-weight: 600;
}
.price-headline span {
  font-size: 0.4em;
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
}
.price-sub {
  font-size: 17px;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 560px;
  margin-bottom: 24px;
}
/* Demo blokas - DEMO tag'as + tekstas */
.price-demo {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 56px;
  max-width: 640px;
}
.price-demo-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--cream);
  background: var(--green);
  padding: 7px 12px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-demo-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.price-demo-text strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 600px) {
  .price-demo { flex-direction: column; gap: 10px; }
  .price-demo-tag { align-self: flex-start; }
}
.price-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  margin: 24px 0 32px;
  align-items: start;
}
.price-grid.is-single { grid-template-columns: 1fr; }

.price-col {
  padding: 0;
}
.price-col-in {
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px 32px 30px;
}
.price-col-out {
  padding: 24px 28px;
  background: transparent;
  border: 1px dashed var(--rule);
  border-radius: 8px;
  opacity: 0.85;
}
.price-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 400;
}
.price-col-in h4 { color: var(--green); }
.price-col-out h4 { color: var(--muted-light); }
.price-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-col li {
  font-size: 15.5px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
}
.price-col-in li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}
.price-col-out li {
  font-size: 14px;
  color: var(--muted);
}
.price-col-out li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--muted-light);
}

/* Inline CTA inside the price section */
.price-cta-row {
  margin: 36px 0 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}
.price-cta-note {
  font-size: 13.5px;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 760px) {
  .price-grid { grid-template-columns: 1fr; gap: 18px; }
  .price-col-in { padding: 22px 22px 24px; }
  .price-col-out { padding: 18px 22px; }
}
.price-guarantee {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  max-width: 600px;
  margin-bottom: 32px;
}

/* ===== FOUNDER stagger ===== */
.founder-text-simple p.reveal { transition-delay: var(--reveal-delay, 0s); }
.founder-text-simple p:nth-child(1) { --reveal-delay: 0s; }
.founder-text-simple p:nth-child(2) { --reveal-delay: 0.2s; }

/* ===== FOUNDER (paprasta versija) ===== */
.founder-text-simple {
  max-width: 720px;
  margin-top: 24px;
}
.founder-text-simple p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 20px;
}
.founder-text-simple p:last-child { margin-bottom: 0; }

.founder-photo {
  margin: 36px auto 0;
  max-width: 640px;
  padding: 0;
}
.founder-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  text-align: center;
}
.founder-caption-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.founder-caption-names {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.founder-caption-peace { margin-left: 4px; }
@media (max-width: 600px) {
  .founder-caption { margin-top: 12px; gap: 3px; }
  .founder-caption-label { font-size: 9.5px; letter-spacing: 0.14em; }
  .founder-caption-names { font-size: 13px; }
}
.founder-photo img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--ink);
  border-radius: 14px;
}
@media (max-width: 600px) {
  .founder-photo { margin-top: 28px; max-width: 100%; }
  .founder-photo img { border-radius: 12px; }
}

/* ===== FOUNDER / SOCIAL PROOF (kai yra rožinis layout - likusi versija) ===== */
.founder-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  margin-top: 24px;
  align-items: start;
}
.founder-text p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
}
.founder-text strong {
  color: var(--green);
  font-weight: 700;
}
.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.founder-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 12px;
}
.founder-stat:not(:last-child) {
  border-right: 1px solid var(--rule);
  padding-right: 16px;
  margin-right: 16px;
}
.founder-stat-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green);
}
.founder-stat-lbl {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

.founder-card {
  background: var(--ink);
  color: var(--cream);
  padding: 36px 32px;
  border-radius: 8px;
  position: relative;
}
.founder-quote-mark {
  font-size: 80px;
  line-height: 0.8;
  color: var(--green-soft);
  font-weight: 700;
  margin-bottom: 8px;
}
.founder-quote {
  font-size: 19px;
  line-height: 1.45;
  color: var(--cream-light);
  font-style: italic;
  margin: 0 0 24px;
}
.founder-attr-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C5BFA8;
  margin-bottom: 4px;
}
.founder-attr-role {
  font-size: 14px;
  color: var(--muted-light);
  font-style: italic;
}

@media (max-width: 760px) {
  .founder-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-stats { grid-template-columns: 1fr; gap: 16px; }
  .founder-stat:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 12px;
  }
}

/* ===== ONBOARDING ===== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--rule);
  position: relative;
}
/* progress line - pildosi žaliai kai sekcija ekrane */
.timeline::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  height: 2px;
  background: var(--green);
  width: 0;
  transition: width 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline.is-visible::after { width: 100%; }
.timeline li {
  padding: 40px 24px 32px 0;
  border-right: 1px solid var(--rule);
  position: relative;
}
/* žali apskritimai prie viršutinio krašto, fill'inasi nuosekliai */
.timeline li::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--rule);
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
  z-index: 2;
}
.timeline.is-visible li:nth-child(1)::before {
  background: var(--green); border-color: var(--green); transform: scale(1.15);
  transition-delay: 0.15s;
}
.timeline.is-visible li:nth-child(2)::before {
  background: var(--green); border-color: var(--green); transform: scale(1.15);
  transition-delay: 0.55s;
}
.timeline.is-visible li:nth-child(3)::before {
  background: var(--green); border-color: var(--green); transform: scale(1.15);
  transition-delay: 0.95s;
}
.timeline.is-visible li:nth-child(4)::before {
  background: var(--green); border-color: var(--green); transform: scale(1.15);
  transition-delay: 1.35s;
}
.timeline li:last-child { border-right: none; }
.timeline li:not(:first-child) { padding-left: 24px; }
.time-day {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.timeline h4 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.timeline p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ===== DUK ===== */
.faq-list {
  margin-top: 24px;
}
.faq-list details {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.faq-list details:last-of-type { border-bottom: none; }
.faq-list summary {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 22px;
  color: var(--muted);
  transition: transform 0.2s;
  font-weight: 300;
}
.faq-list details[open] summary::after {
  content: "−";
  color: var(--green);
}
.faq-list details p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 640px;
}

/* ===== FINAL CTA — dark grainy block ===== */
.final-cta {
  position: relative;
  text-align: center;
  padding: clamp(80px, 12vh, 140px) 0;
  background: #0E0E10;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(42, 74, 56, 0.55), transparent 60%),
    radial-gradient(80% 60% at 100% 110%, rgba(255, 255, 255, 0.06), transparent 60%);
  pointer-events: none;
  z-index: -2;
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.final-cta .container { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(30px, 4.4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.cta-sub {
  font-size: 17px;
  color: rgba(237, 232, 221, 0.7);
  font-style: italic;
  max-width: 540px;
  margin: 0 auto 44px;
}
.final-cta .btn-cta-square {
  background: var(--cream);
  color: #0E0E10;
  border-color: var(--cream);
  padding: 22px 44px;
  font-size: 14px;
  font-weight: 600;
}
.final-cta .btn-cta-square:active { opacity: 0.55; }
.final-cta + .site-footer { border-top: none; }
@media (max-width: 600px) {
  .final-cta { padding: 72px 0 80px; }
  .final-cta .btn-cta-square { padding: 18px 32px; font-size: 12.5px; }
}
.cta-foot {
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
}
.cta-foot a {
  border-bottom: 1px solid var(--muted);
}

/* ===== FOOTER (PDF page footer) ===== */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 32px 0;
  background: var(--cream);
}
.site-footer .container { max-width: var(--container-wide); }
.foot-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.foot-cols p { margin: 0; }
.foot-cols a { color: var(--ink); }

/* ===== FADE-IN ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 760px) {
  body { font-size: 16px; }

  .hero-facts {
    flex-direction: column;
    gap: 16px;
  }
  .fact-divider { display: none; }
  .fact { border-bottom: 1px solid var(--rule); padding-bottom: 16px; }
  .fact:last-child { border-bottom: none; padding-bottom: 0; }

  .problem .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .split-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .int-grid { grid-template-columns: 1fr; }
  .int-item:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
  .int-item:nth-child(even) { padding-left: 0; }

  .bound-grid { grid-template-columns: 1fr; gap: 24px; }
  /* .price-grid handled by its own .price-grid @media (max-width: 760px) rule */

  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline li {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 24px 0 !important;
  }
  .timeline li:last-child { border-bottom: none; }

  .foot-cols {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .bubble { max-width: 88%; }

  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(34px, 9vw, 48px); line-height: 1.15; }
  .hero-sub { font-size: 16px; }
  .price-headline { font-size: clamp(42px, 12vw, 64px); }
  .scene-title { display: block; margin-top: 4px; }
  .meta-line { margin-bottom: 36px; }

  /* Sekcijų vertikalus tarpas mažiau */
  section { padding: clamp(60px, 10vh, 100px) 0; }

  /* Spotlight'ai mobile - kompaktiškiau */
  .spotlight { padding: 32px 0; }
  .spot-title { font-size: clamp(22px, 6vw, 28px); }
  .spot-desc { font-size: 15px; }
  .bubble { font-size: 14.5px; padding: 12px 15px; }

  /* Hero buttons stack ant mobile */
  .hero-buttons .btn { width: 100%; }

  /* Compare scenarijus - kompaktiškiau */
  .compare-col { padding: 20px 18px; }
  .compare-steps li { font-size: 15px; padding: 12px 0 12px 38px; }
  .compare-stat-num { font-size: 18px; }

  /* Hub kategorijų pavadinimai mažiau */
  .hub-cat-label { font-size: 10px; letter-spacing: 0.14em; }
  .hub-pill { font-size: 13px; padding: 5px 10px; }

  /* Voice grid - vienas stulpelis, mažesnė kortelė */
  .voice-card { padding: 18px 16px; }
  .voice-quote { font-size: 14px; }

  /* Bitė pavyzdys */
  .bite-example { padding: 18px; }

  /* Roles kortelės */
  .role-card { padding: 22px 20px; }

  /* Founder text mobile */
  .founder-text-simple p { font-size: 16px; }

  /* Onboarding - circles šiek tiek mažesni */
  .timeline li::before { width: 14px; height: 14px; top: -8px; }

  /* CTA mygtukas - full width */
  .btn-large { width: 100%; text-align: center; padding: 16px 24px; }

  /* FAQ */
  .faq-list summary { font-size: 16px; }
  .faq-list details p { font-size: 15px; }
}

/* Tablet */
@media (max-width: 760px) and (min-width: 481px) {
  .hero-title { font-size: clamp(38px, 7vw, 56px); }
}

/* ===== AKSELER WORDMARK ===== */
.brand-akseler {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.brand-akseler:hover { color: var(--ink); }
.brand-akseler .back-arrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-right: 10px;
  border-right: 1px solid var(--rule);
}
.brand-akseler .back-arrow:hover { color: var(--ink); }
.site-footer .brand-akseler { font-size: 22px; }

/* ===== HERO PHONE PREVIEW (replaces .hero-facts) ===== */
.hero-phone {
  margin: 8px 0 36px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero-phone-stats {
  display: grid;
  gap: 18px;
}
.hero-phone-stat {
  display: grid;
  gap: 4px;
}
.hero-phone-stat-num {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-phone-stat-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.hero-phone-frame {
  width: 240px;
  height: 460px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: linear-gradient(180deg, #0E0E0E 0%, #1a1a1a 100%);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  box-shadow: 0 18px 40px -16px rgba(14,14,14,0.35);
}
.hero-phone-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #000;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
}
.hero-phone-time {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  margin-top: 14px;
  margin-bottom: 4px;
}
.hero-notif {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 10px 12px;
  color: #F4F1EA;
  display: grid;
  gap: 4px;
  animation: notif-in 0.6s ease both;
}
.hero-notif:nth-child(2) { animation-delay: 0.1s; }
.hero-notif:nth-child(3) { animation-delay: 0.3s; }
.hero-notif:nth-child(4) { animation-delay: 0.5s; }
.hero-notif-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.hero-notif-head .ico {
  width: 14px;
  height: 14px;
  vertical-align: 0;
}
.hero-notif-head .dot { margin-left: auto; font-size: 9px; opacity: 0.55; }
.hero-notif-text {
  font-size: 12.5px;
  line-height: 1.35;
  color: #F4F1EA;
  font-weight: 450;
}
.hero-notif-text em {
  color: #B8E0C8;
  font-style: italic;
  font-weight: 400;
}
@keyframes notif-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 760px) {
  .hero-phone {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    padding: 20px 0;
  }
  .hero-phone-stats {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 12px;
  }
  .hero-phone-frame {
    width: 220px;
    height: 420px;
  }
}

/* ===== COLLAPSIBLE SPOTLIGHTS ===== */
.spot-toggle {
  appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0 0 18px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  text-align: left;
  color: inherit;
  font: inherit;
}
.spot-toggle .spot-head { flex: 1; min-width: 0; }
.spot-toggle .spot-meta { margin-bottom: 14px; }
.spot-toggle .spot-title { margin-bottom: 0; }
.spot-plus {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-light);
  position: relative;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  margin-top: 6px;
}
.spot-plus::before, .spot-plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.spot-plus::before { width: 12px; height: 1.5px; }
.spot-plus::after { width: 1.5px; height: 12px; }
.spot-toggle:hover .spot-plus {
  background: var(--cream-mid);
  border-color: var(--ink);
}
.spotlight.is-open .spot-plus::after { transform: scaleY(0); opacity: 0; }
.spot-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease, margin 0.3s ease;
  opacity: 0;
}
.spot-body > .spot-body-inner {
  overflow: hidden;
  min-height: 0;
}
.spotlight.is-open .spot-body {
  grid-template-rows: 1fr;
  opacity: 1;
}

/* ===== HUB PILL ICON BG (proper brand surfaces for letter-icons) ===== */
.hub-pill .ico { border-radius: 4px; }

/* ===== HERO V2 - convo phone bleeding into black CTA section ===== */
.hero-v2 {
  padding: clamp(36px, 6vh, 64px) 0 0;
}
.hero-v2 .container { max-width: var(--container-wide); }
.hero-v2-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: end;
  padding-bottom: 0;
}
.hero-v2-copy { padding-bottom: clamp(20px, 4vh, 60px); }
.hero-v2-copy .hero-title {
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 540px;
}
.hero-v2-copy .hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 0 16px;
}
.hero-v2-copy .hero-sub:last-child { margin-bottom: 0; }
.hero-v2-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.hero-v2-phone {
  width: 340px;
  border: 3px solid #000;
  border-bottom: none;
  border-radius: 36px 36px 0 0;
  background: #0E0E10;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 0;
  z-index: 2;
  overflow: hidden;
  font-family: var(--sans);
}
.hero-v2-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #000;
  border-radius: 16px;
  z-index: 5;
}
/* iOS status bar */
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 26px 4px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.phone-status-right {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.phone-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.phone-battery {
  display: inline-block;
  width: 22px;
  height: 11px;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 3px;
  position: relative;
  padding: 1px;
}
.phone-battery::after {
  content: "";
  position: absolute;
  right: -3px; top: 3px;
  width: 2px; height: 5px;
  background: rgba(255,255,255,0.85);
  border-radius: 0 1px 1px 0;
}
.phone-battery-fill {
  display: block;
  width: 80%;
  height: 100%;
  background: #fff;
  border-radius: 1px;
}
/* WhatsApp header */
.phone-wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 10px;
  background: #1F2C33;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.phone-wa-back {
  color: #007AFF;
  font-size: 22px;
  line-height: 1;
  width: 16px;
  display: inline-flex;
  align-items: center;
  margin-right: -2px;
}
@media (max-width: 600px) {
  .phone-wa-back { display: none; }
}
.phone-wa-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00A884 0%, #128C7E 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.phone-wa-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.phone-wa-name {
  color: #E9EDEF;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.phone-wa-status {
  color: #8696A0;
  font-size: 11.5px;
  margin-top: 2px;
}
.phone-wa-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #AEBAC1;
  flex-shrink: 0;
}
.phone-wa-actions svg { width: 18px; height: 18px; }
/* Chat area - matches black bleed below */
.phone-wa-chat {
  flex: 1;
  background: #0E0E10;
  padding: 14px 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 320px;
}
.convo-msg {
  display: flex;
  flex-direction: column;
  animation: notif-in 0.5s ease both;
  max-width: 78%;
}
.convo-msg:nth-child(2) { animation-delay: 0.15s; }
.convo-msg:nth-child(3) { animation-delay: 0.35s; }
.convo-msg:nth-child(4) { animation-delay: 0.55s; }
.convo-msg:nth-child(5) { animation-delay: 0.75s; }
.convo-msg:nth-child(6) { animation-delay: 0.95s; }
.convo-msg:nth-child(7) { animation-delay: 1.15s; }
.convo-bubble {
  padding: 6px 9px 5px;
  font-size: 13.5px;
  line-height: 1.32;
  border-radius: 8px;
  position: relative;
  word-wrap: break-word;
}
.convo-time {
  display: inline-block;
  font-size: 10px;
  margin-left: 8px;
  opacity: 0.55;
  vertical-align: baseline;
  white-space: nowrap;
}
.convo-from {
  display: none;
}
/* Incoming bubble (assistant - left side) */
.convo-msg.is-bot {
  align-self: flex-start;
  margin-left: 8px;
}
.convo-msg.is-bot .convo-bubble {
  background: #1F2C33;
  color: #E9EDEF;
  border-top-left-radius: 0;
}
.convo-msg.is-bot .convo-bubble::before {
  content: "";
  position: absolute;
  top: 0;
  left: -7px;
  width: 8px;
  height: 13px;
  background: #1F2C33;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
/* Outgoing bubble (you/Akseler - right side, green) */
.convo-msg.is-them {
  align-self: flex-end;
  margin-right: 8px;
}
.convo-msg.is-them .convo-bubble {
  background: #005C4B;
  color: #E9EDEF;
  border-top-right-radius: 0;
}
.convo-msg.is-them .convo-bubble::before {
  content: "";
  position: absolute;
  top: 0;
  right: -7px;
  width: 8px;
  height: 13px;
  background: #005C4B;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.convo-tick {
  display: inline-block;
  margin-left: 3px;
  font-size: 11px;
  color: #53BDEB;
  letter-spacing: -2px;
}

/* dark CTA section - phone ends exactly where this starts */
.hero-cta-bleed {
  background: #0E0E10;
  color: var(--cream);
  padding: 56px 0 60px;
  margin-top: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  z-index: 1;
}
.hero-cta-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(42, 74, 56, 0.45), transparent 60%),
    radial-gradient(80% 60% at 100% 110%, rgba(255, 255, 255, 0.06), transparent 60%);
  pointer-events: none;
  z-index: -2;
}
.hero-cta-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.32;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* Mobile dark sections: neutral gradient + heavier grain (no green tint) — all niches */
@media (max-width: 600px) {
  .conversation::before,
  .final-cta::before,
  .hero-cta-bleed::before {
    background:
      radial-gradient(140% 80% at 50% -10%, rgba(48, 48, 54, 0.32), transparent 65%),
      radial-gradient(90% 70% at 0% 110%, rgba(22, 22, 26, 0.55), transparent 60%),
      radial-gradient(70% 60% at 100% 50%, rgba(42, 42, 48, 0.22), transparent 65%);
  }
  .conversation::after,
  .final-cta::after,
  .hero-cta-bleed::after {
    opacity: 0.55;
    background-size: 180px 180px;
  }
}
.hero-cta-bleed > .container { position: relative; z-index: 2; }
.hero-cta-bleed .container { max-width: var(--container-wide); text-align: center; }
.hero-cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto 36px;
  max-width: 600px;
}
.btn-on-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: var(--radius-cta);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity 0.18s ease;
  flex: 1 1 240px;
  max-width: 280px;
  min-height: 52px;
}
.btn-on-dark.btn-light {
  background: var(--cream);
  color: #14271E;
  border: 1px solid var(--cream);
  font-weight: 600;
}
.btn-on-dark.btn-light:active { opacity: 0.55; }
.btn-on-dark.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 226, 0.4);
  font-weight: 600;
}
.btn-on-dark.btn-ghost:active { opacity: 0.55; }

.hero-int-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
  max-width: 880px;
  margin: 0 auto;
  opacity: 0.92;
}
.hero-int-row .int-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(244,241,234,0.85);
  font-weight: 500;
  white-space: nowrap;
}
.hero-int-row .ico { width: 18px; height: 18px; vertical-align: 0; }
.hero-int-label {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: rgba(244,241,234,0.5);
  text-transform: uppercase;
  margin-bottom: 14px;
}

@media (max-width: 760px) {
  .hero-v2-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-v2-phone { width: 320px; }
  .hero-v2-copy .hero-title { font-size: clamp(32px, 8.5vw, 42px); }
  .hero-int-row { gap: 10px 16px; }
  /* Bigger chat bubbles + meta inside the mockup */
  .phone-wa-chat { padding: 16px 12px 18px; gap: 10px; }
  .convo-bubble { font-size: 14.5px; line-height: 1.4; padding: 9px 14px 7px; }
  .phone-wa-name { font-size: 15.5px; }
  .phone-wa-status { font-size: 12px; }
  .phone-wa-avatar { width: 36px; height: 36px; font-size: 15px; }
  .convo-msg.is-bot:last-child .convo-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .convo-msg.is-bot:last-child .convo-time { display: none; }
}

/* ===== VOICE 3-UP ===== */
.voice .voice-grid.is-3up {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 760px) {
  .voice .voice-grid.is-3up { grid-template-columns: 1fr; }
}

/* ===== PRICING CHECK BULLETS ===== */
.price-col-in.is-checks ul li {
  list-style: none;
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
}
.price-col-in.is-checks ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F4F1EA' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 8'/></svg>");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.price-grid.is-single { grid-template-columns: 1fr; max-width: 720px; margin-left: auto; margin-right: auto; }
.price-amount {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 18px 0 6px;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 20px;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: var(--radius-cta);
}
.price-amount span {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

/* ===== HUB-CAT DIVIDER ===== */
.hub-cat.with-rule {
  padding-top: 32px;
  margin-top: 16px;
  border-top: 1px solid var(--rule);
}

/* ===== FINAL CTA SQUARE BUTTON ===== */
.btn-cta-square {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cream);
  padding: 18px 36px;
  border-radius: var(--radius-cta);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink);
  transition: opacity 0.18s ease;
}
.btn-cta-square:active { opacity: 0.55; }

/* ===== FOOTER CENTERED ===== */
.site-footer .foot-cols { display: none; }
.foot-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 12px 0 8px;
}
.foot-center .brand-logo-img { margin: 0 0 6px; }
.foot-line {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.foot-contacts {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
}
.foot-contacts a { color: var(--ink); }
.foot-contacts a:active { opacity: 0.55; }
.foot-dot { color: var(--muted); }
.foot-copy {
  margin: 6px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ===== PRINT ===== */
@media print {
  .site-header, .header-cta, .hero-buttons, .btn, .final-cta { display: none; }
  body { background: white; color: black; }
}

/* ============================================================
   BOOKING PAGE — green card flow, asistentas palette
   ============================================================ */

@keyframes bookingFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bookingSpin { to { transform: rotate(360deg); } }

.booking-body { background: var(--cream); }
.booking-body .site-header .container { justify-content: center; }
.booking-body .site-header .brand-akseler { display: inline-flex; align-items: center; }
.booking-body .site-header .brand-logo-img { height: 28px; }

.booking-main {
  padding: clamp(36px, 6vh, 72px) 0 clamp(64px, 10vh, 120px);
  animation: bookingFadeIn 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.booking-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Premium dark booking card — same recipe as final-cta dark grainy */
.booking-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0E0E10;
  border-radius: 20px;
  padding: 32px 32px 36px;
  color: var(--cream);
  box-shadow:
    0 24px 48px -20px rgba(0, 0, 0, 0.6),
    0 10px 20px -10px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.booking-card::before { display: none; }
.booking-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.28;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.booking-card > * { position: relative; z-index: 1; }

/* ----- Step indicator (bubbles + progress line) ----- */
.booking-steps {
  position: relative;
  list-style: none;
  margin: 0 0 24px;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  z-index: 1;
}
.booking-steps-track,
.booking-steps-fill {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 22px;
  height: 3px;
  border-radius: 999px;
  pointer-events: none;
}
.booking-steps-track {
  background: rgba(255, 255, 255, 0.18);
}
.booking-steps-fill {
  background: var(--cream);
  right: auto;
  width: 0%;
  transition: width 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.booking-step-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.booking-step-bubble svg { width: 20px; height: 20px; }
.booking-step-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 226, 0.7);
  text-align: center;
  line-height: 1;
}
.booking-step.is-current .booking-step-bubble {
  background: var(--cream);
  color: var(--green);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.4);
}
.booking-step.is-done .booking-step-bubble {
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  border-color: rgba(255, 255, 255, 0.92);
}
.booking-step.is-current .booking-step-label,
.booking-step.is-done .booking-step-label { color: var(--cream); }

/* ----- Panels ----- */
.booking-panel {
  /* override the global section{ padding: clamp(80px,14vh,140px) 0 } */
  padding: 0;
  border-top: none;
  animation: bookingFadeIn 0.35s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.booking-panel-title {
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-align: center;
  margin: 0 0 6px;
}
.booking-panel-sub {
  font-size: 14px;
  color: rgba(245, 240, 226, 0.75);
  text-align: center;
  margin: 0 0 20px;
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ----- Loader / error ----- */
.booking-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(245, 240, 226, 0.85);
  padding: 28px 0;
}
.booking-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: bookingSpin 0.7s linear infinite;
  display: inline-block;
}
.booking-spinner--on-dark { border-color: rgba(42, 74, 56, 0.25); border-top-color: var(--green); }
.booking-error {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 200, 195, 0.45);
  padding: 12px 16px;
  font-size: 14px;
  color: #FFD9D5;
  margin-bottom: 18px;
  border-radius: 8px;
}

/* ----- Day / Time grids ----- */
.booking-grid {
  display: grid;
  gap: 12px;
  margin: 6px 0 28px;
}
.booking-grid--days { grid-template-columns: repeat(2, 1fr); }
.booking-grid--times { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 767px) {
  .booking-grid--days { grid-template-columns: repeat(2, 1fr); }
  .booking-grid--times { grid-template-columns: repeat(3, 1fr); }
}

.booking-day,
.booking-time {
  appearance: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 20px 14px;
  font: inherit;
  font-family: var(--sans);
  color: var(--cream);
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.booking-time {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 22px 8px;
}
.booking-day-date { font-size: 18px; }
.booking-day:hover:not(.is-disabled):not(.is-selected),
.booking-time:hover:not(.is-disabled):not(.is-selected) {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.28);
}
.booking-day.is-selected,
.booking-time.is-selected {
  background: var(--cream);
  color: #0E0E10;
  border-color: var(--cream);
  box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.5);
}
.booking-day-name {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 226, 0.65);
  font-weight: 500;
}
.booking-day.is-selected .booking-day-name { color: rgba(14, 14, 16, 0.55); }
.booking-day-date {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.booking-day-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(245, 240, 226, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.booking-day.is-disabled,
.booking-time.is-disabled {
  cursor: not-allowed;
  opacity: 0.4;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  text-decoration: line-through;
}

/* ----- Form ----- */
.booking-form { display: flex; flex-direction: column; gap: 18px; margin-bottom: 8px; }
.booking-field { display: flex; flex-direction: column; gap: 8px; }
.booking-field-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(245, 240, 226, 0.75);
  text-transform: uppercase;
}
.booking-field input {
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 14px 16px;
  font: 500 16px var(--sans);
  color: var(--cream);
  letter-spacing: -0.005em;
  transition: border-color 0.18s ease, background 0.18s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.booking-field input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.6);
}
.booking-field input::placeholder { color: rgba(245, 240, 226, 0.45); font-weight: 400; }
.booking-field.has-error input { border-color: #FFB1AC; background: rgba(255, 177, 172, 0.10); }
.booking-field-error {
  font-size: 12.5px;
  color: #FFD9D5;
  min-height: 1em;
}

/* ----- Summary ----- */
.booking-summary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 8px 0;
  margin: 0 0 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.booking-summary-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.booking-summary-row:last-child { border-bottom: none; }
.booking-summary-row dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: rgba(245, 240, 226, 0.7);
  text-transform: uppercase;
  margin: 0;
  align-self: center;
}
.booking-summary-row dd {
  margin: 0;
  font-size: 15.5px;
  color: var(--cream);
  font-weight: 500;
  word-break: break-word;
}
.booking-summary-row--accent dd {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ----- Buttons ----- */
.booking-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font: inherit;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.18s ease;
  border: 1px solid transparent;
}
.booking-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.booking-btn[disabled] { opacity: 0.45; cursor: not-allowed; }

.booking-btn--primary {
  background: var(--cream);
  color: #0E0E10;
  border-color: var(--cream);
}
.booking-btn--primary:not([disabled]):active { opacity: 0.55; }
.booking-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.28);
}
.booking-btn--ghost:active { opacity: 0.55; }

/* ----- Actions ----- */
.booking-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.booking-actions--split { justify-content: space-between; gap: 12px; }
.booking-actions--split .booking-btn { flex: 1; }

/* ----- Success state ----- */
.booking-panel--success { padding-top: 8px; }
.booking-success { text-align: center; padding: 8px 0 4px; }
.booking-success-mark {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 14px 28px -14px rgba(0, 0, 0, 0.35);
}
.booking-success-mark svg { width: 32px; height: 32px; }
.booking-success-title {
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  color: var(--cream);
}
.booking-success-sub {
  color: rgba(245, 240, 226, 0.85);
  font-size: 15px;
  margin: 0 0 24px;
}
.booking-success-sub strong { color: var(--cream); font-weight: 600; }
.booking-success-when {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  margin: 0 auto 24px;
}
.booking-success-when-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: rgba(245, 240, 226, 0.7);
  text-transform: uppercase;
}
.booking-success-datetime {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.booking-success-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.booking-success-steps li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(245, 240, 226, 0.85);
  line-height: 1.5;
  align-items: flex-start;
}
.booking-success-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ----- Mobile ----- */
@media (max-width: 600px) {
  .booking-main { padding: 18px 0 36px; }
  .booking-shell { padding: 0 14px; }
  .booking-card { padding: 18px 16px 20px; border-radius: 18px; }

  .booking-steps {
    gap: 4px;
    margin: 0 0 18px;
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }
  .booking-steps-track,
  .booking-steps-fill {
    top: 15px;
    height: 2px;
    left: 12%;
    right: 12%;
  }
  .booking-step-bubble { width: 30px; height: 30px; }
  .booking-step-bubble svg { width: 14px; height: 14px; }
  .booking-step-label { font-size: 8.5px; letter-spacing: 0.06em; margin-top: 4px; }

  /* Title rhythm */
  .booking-panel-title { font-size: 17px; margin: 0 0 12px; }
  .booking-panel-sub { font-size: 11px; margin: -4px 0 14px; letter-spacing: 0.10em; }

  /* React-style: 2-col days on mobile, 3-col times */
  .booking-grid { gap: 8px; margin: 0 0 14px; }
  .booking-grid--days { grid-template-columns: repeat(2, 1fr); }
  .booking-grid--times { grid-template-columns: repeat(3, 1fr); }
  .booking-day, .booking-time { padding: 10px 8px; border-radius: 10px; gap: 2px; }
  .booking-day-name { font-size: 8.5px; letter-spacing: 0.08em; }
  .booking-day-date { font-size: 13.5px; white-space: nowrap; }
  .booking-time { font-size: 13.5px; padding: 12px 4px; }

  .booking-form { gap: 12px; margin-bottom: 4px; }
  .booking-field { gap: 5px; }
  .booking-field-label { font-size: 9.5px; letter-spacing: 0.10em; }
  .booking-field input { padding: 12px 13px; font-size: 16px; border-radius: 10px; }
  .booking-field-error { font-size: 11px; }

  .booking-btn { padding: 13px 14px; font-size: 13px; min-height: 44px; border-radius: 10px; font-weight: 600; }
  /* Restore proper breathing room above the action button on mobile too */
  .booking-actions { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .booking-actions:not(.booking-actions--split) { justify-content: stretch; }
  .booking-actions:not(.booking-actions--split) .booking-btn { width: 100%; }
  .booking-actions--split { gap: 10px; flex-wrap: nowrap; }

  .booking-summary { margin: 0 0 12px; }
  .booking-summary-row { grid-template-columns: 1fr; gap: 2px; padding: 10px 14px; font-size: 13.5px; }
  .booking-summary-row dt { font-size: 9px; letter-spacing: 0.10em; }
  .booking-summary-row dd { font-size: 13.5px; }
}

