/* =========================================================
   BizBot — style.css  (DARK)
   1 Variables · 2 Reset · 3 Base · 4 Typography · 5 A11y
   6 Layout · 7 Header · 8 Buttons · 9 Hero · 10 Problem
   11 Solution · 12 How it works · 13 Why BizBot · 14 Demo
   15 Before/After · 16 Integrations · 17 Graphics
   18 Pricing · 19 FAQ · 20 Final CTA · 21 Footer
   22 Animations · 23 Responsive · 24 Reduced motion · 25 Print
   ========================================================= */

/* =========================================================
   1. VARIABLES
   ========================================================= */
:root {
  color-scheme: dark;

  /* Brand — nga logoja ekzistuese BizBot */
  --color-primary: #2F6BFF;
  --color-primary-dark: #1D4ED8;
  --color-primary-light: #5B8CFF;
  --color-primary-soft: rgba(47, 107, 255, .13);
  --color-cyan: #38BDF8;
  --color-cyan-light: #7DD3FC;
  --color-cyan-soft: rgba(56, 189, 248, .12);
  --grad-brand: linear-gradient(135deg, #38BDF8 0%, #2F6BFF 100%);

  --color-accent: #34D399;
  --color-accent-soft: rgba(52, 211, 153, .12);
  --color-danger: #F87171;
  --color-danger-soft: rgba(248, 113, 113, .10);
  --color-warn: #FBBF24;

  /* Sipërfaqe */
  --color-background: #070B14;
  --color-surface: #0B1120;
  --color-card: #101A2E;
  --color-card-2: #16233C;
  --color-elevated: #1B2A46;

  /* Tekst */
  --color-text: #EAF1FB;
  --color-text-muted: #9DB0CE;
  --color-text-dim: #7286A6;
  --color-text-onBrand: #04122B;

  /* Vija */
  --color-border: rgba(255, 255, 255, .085);
  --color-border-strong: rgba(255, 255, 255, .16);

  /* Spacing */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.25rem; --sp-6: 1.5rem;  --sp-8: 2rem;    --sp-10: 2.5rem;
  --sp-12: 3rem;   --sp-16: 4rem;   --sp-20: 5rem;   --sp-24: 6rem;

  /* Radius */
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 20px; --r-2xl: 28px;
  --r-pill: 999px;

  /* Hije */
  --sh-sm: 0 2px 8px rgba(0, 0, 0, .35);
  --sh-md: 0 10px 28px rgba(0, 0, 0, .42);
  --sh-lg: 0 26px 64px rgba(0, 0, 0, .55);
  --sh-brand: 0 10px 30px rgba(47, 107, 255, .34);

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --gutter: 1.25rem;
  --header-h: 86px;

  --ease: cubic-bezier(.22, .8, .3, 1);
  --dur: .22s;

  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* =========================================================
   2. RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; }
img, svg, video, picture { display: block; max-width: 100%; }
img, video { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }

/* =========================================================
   3. BASE
   ========================================================= */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--color-primary); color: #fff; }

/* Ikona inline — stil uniform Lucide-style */
svg { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* =========================================================
   4. TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4 { line-height: 1.16; letter-spacing: -.022em; font-weight: 700; text-wrap: balance; }
h1 { font-size: clamp(2.1rem, 1.5rem + 2.7vw, 3.6rem); letter-spacing: -.033em; font-weight: 800; }
h2 { font-size: clamp(1.6rem, 1.22rem + 1.75vw, 2.5rem); letter-spacing: -.029em; }
h3 { font-size: clamp(1.04rem, 1rem + .25vw, 1.18rem); }
p  { text-wrap: pretty; }

.prose p { color: var(--color-text-muted); font-size: clamp(1rem, .97rem + .18vw, 1.08rem); }
.prose p + p { margin-top: .55rem; }

.section__label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .765rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  color: var(--color-cyan);
}
.section__label::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; box-shadow: 0 0 0 3px rgba(56, 189, 248, .16); flex: 0 0 auto;
}
.section__label--danger { color: #FCA5A5; }
.section__label--danger::before { box-shadow: 0 0 0 3px rgba(248, 113, 113, .14); }
.section__label--accent { color: #6EE7B7; }
.section__label--accent::before { box-shadow: 0 0 0 3px rgba(52, 211, 153, .14); }

.section__title { margin-top: .75rem; }
.section__body  { margin-top: 1.1rem; }
.section__note {
  margin-top: var(--sp-8); text-align: center;
  color: var(--color-text-dim); font-size: .95rem;
}

/* =========================================================
   5. ACCESSIBILITY
   ========================================================= */
.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 200;
  background: var(--color-primary); color: #fff;
  padding: .7rem 1.1rem; border-radius: var(--r-md); font-weight: 600;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus-visible { top: 12px; }

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

:focus-visible { outline: 3px solid var(--color-cyan-light); outline-offset: 3px; border-radius: 6px; }

/* =========================================================
   6. LAYOUT
   ========================================================= */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.5rem, 2.2rem + 5.5vw, 6.5rem); position: relative; }
.section--surface { background: var(--color-surface); }

.section__head { max-width: 74ch; }

.cards { display: grid; gap: var(--sp-5); margin-top: var(--sp-12); }
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.cards--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
.cards--compact { gap: var(--sp-4); }

/* =========================================================
   7. HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 11, 20, .72);
  backdrop-filter: saturate(170%) blur(14px);
  -webkit-backdrop-filter: saturate(170%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--color-border);
  background: rgba(7, 11, 20, .9);
}
.site-header__inner { display: flex; align-items: center; gap: var(--sp-4); min-height: var(--header-h); }

.brand { flex: 0 0 auto; display: flex; align-items: center; }
.brand img { height: 47px; width: auto; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(.5rem, -.2rem + 1.4vw, 1.5rem); }
.nav__link {
  position: relative; display: block; padding: .45rem .1rem;
  font-size: .93rem; font-weight: 500; white-space: nowrap;
  color: var(--color-text-muted);
  transition: color var(--dur) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--grad-brand); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover { color: var(--color-text); }
.nav__link:hover::after,
.nav__link[aria-current="true"]::after { transform: scaleX(1); }
.nav__link[aria-current="true"] { color: #fff; font-weight: 600; }

/* CTA brenda menusë — vetëm në mobile (specificitet më i lartë se .btn) */
.nav .nav__cta { display: none; }

.site-header__cta { flex: 0 0 auto; white-space: nowrap; }

.nav-toggle {
  display: none; width: 44px; height: 44px; flex: 0 0 auto;
  border: 1px solid var(--color-border-strong); border-radius: var(--r-md);
  background: rgba(255, 255, 255, .05);
  align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav-toggle:hover { background: rgba(255, 255, 255, .1); }
.nav-toggle__bars { display: block; width: 19px; height: 13px; position: relative; }
.nav-toggle__bars span {
  position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px;
  background: var(--color-text);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5.5px; }
.nav-toggle__bars span:nth-child(3) { top: 11px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* =========================================================
   8. BUTTONS
   ========================================================= */
.btn {
  --btn-py: .95rem; --btn-px: 1.6rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: var(--btn-py) var(--btn-px);
  font-size: 1.02rem; font-weight: 700; line-height: 1.25;
  letter-spacing: -.008em;
  border-radius: var(--r-pill); border: 1px solid transparent;
  text-align: center; cursor: pointer;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.btn__icon { width: 19px; height: 19px; flex: 0 0 auto; }
.btn--sm { --btn-py: .68rem; --btn-px: 1.2rem; font-size: .92rem; }
.btn--lg { --btn-py: 1.12rem; --btn-px: 2.1rem; font-size: 1.12rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--grad-brand); color: var(--color-text-onBrand);
  box-shadow: var(--sh-brand); font-weight: 700;
}
.btn--primary:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 14px 36px rgba(47, 107, 255, .46); }
.btn--primary:active { transform: translateY(0); box-shadow: var(--sh-sm); }

.btn--ghost {
  background: rgba(255, 255, 255, .05); color: var(--color-text);
  border-color: var(--color-border-strong);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .26); transform: translateY(-1px); }
.btn--ghost:active { transform: translateY(0); }

/* =========================================================
   9. HERO
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(2.5rem, 1.4rem + 4.5vw, 5rem) clamp(3rem, 2rem + 5vw, 6rem);
}
.hero__glow {
  position: absolute; inset-inline: -10%; top: -340px; height: 720px; z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(42% 50% at 20% 60%, rgba(47, 107, 255, .30), transparent 68%),
    radial-gradient(38% 46% at 80% 46%, rgba(56, 189, 248, .22), transparent 70%);
  filter: blur(6px);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; gap: clamp(2.25rem, 1rem + 4vw, 3.75rem);
  grid-template-columns: 1fr; align-items: center;
}
.hero__copy { min-width: 0; }

.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .42rem .9rem .42rem .68rem;
  font-size: .815rem; font-weight: 600; line-height: 1.35;
  color: var(--color-cyan-light);
  background: var(--color-cyan-soft);
  border: 1px solid rgba(56, 189, 248, .24);
  border-radius: var(--r-pill);
}
.badge__icon { width: 15px; height: 15px; flex: 0 0 auto; color: var(--color-cyan); }

.hero__title { margin-top: 1.1rem; }
.hero__lead {
  margin-top: 1.1rem; max-width: 56ch;
  font-size: clamp(1.02rem, .97rem + .3vw, 1.15rem);
  color: var(--color-text-muted);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.9rem; }

.trustbar {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: 1.9rem;
  font-size: .9rem; color: var(--color-text-dim);
}
.trustbar li { display: flex; align-items: center; gap: .42rem; }
.trustbar__icon { width: 16px; height: 16px; color: var(--color-accent); stroke-width: 2.6; flex: 0 0 auto; }

/* --- Blloku i definicionit (AEO) --- */
.definition { padding-bottom: clamp(2rem, 1.2rem + 3vw, 3.5rem); }
.definition__box {
  display: grid; gap: .35rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-cyan);
  border-radius: var(--r-lg);
  background: linear-gradient(90deg, rgba(56, 189, 248, .07), rgba(56, 189, 248, 0) 62%);
}
.definition__title { font-size: 1.02rem; font-weight: 700; }
.definition__text { max-width: 92ch; font-size: .97rem; color: var(--color-text-muted); }

/* --- Panel biseda --- */
.hero__visual { margin: 0; min-width: 0; }
.hero__visual-title {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: .8rem; font-size: .865rem; font-weight: 600;
  color: var(--color-text-dim);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto;
  background: var(--color-accent); box-shadow: 0 0 0 3px rgba(52, 211, 153, .18);
}
.pulse-dot--sm { width: 6px; height: 6px; box-shadow: 0 0 0 2.5px rgba(52, 211, 153, .2); }

.chat {
  background: var(--color-card);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.chat__bar {
  display: flex; align-items: center; gap: .65rem;
  padding: .85rem 1.05rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, .14), rgba(47, 107, 255, .10));
  border-bottom: 1px solid var(--color-border);
}
.chat__avatar {
  width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%;
  background: var(--color-background);
  border: 1px solid rgba(56, 189, 248, .3);
  display: grid; place-items: center;
}
.chat__avatar svg { width: 17px; height: 17px; stroke: var(--color-cyan); stroke-width: 2; }
.chat__id { display: flex; flex-direction: column; line-height: 1.25; }
.chat__id strong { font-size: .93rem; font-weight: 700; }
.chat__id small { display: flex; align-items: center; gap: .35rem; font-size: .75rem; color: var(--color-text-dim); }

.chat__thread {
  display: flex; flex-direction: column; gap: .55rem;
  padding: 1.05rem; background: rgba(0, 0, 0, .18);
}
.chat__msg {
  max-width: 86%; width: fit-content;
  padding: .62rem .85rem;
  font-size: .9rem; line-height: 1.5;
  border-radius: var(--r-lg);
}
.chat__who {
  display: block; font-size: .66rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; opacity: .6; margin-bottom: .1rem;
}
.chat__msg--user {
  margin-left: auto; align-self: flex-end;
  background: var(--grad-brand); color: var(--color-text-onBrand); font-weight: 500;
  border-bottom-right-radius: 5px;
}
.chat__msg--bot {
  background: var(--color-card-2); color: var(--color-text);
  border: 1px solid var(--color-border);
  border-bottom-left-radius: 5px;
}

.chat__typing {
  display: flex; align-items: center; gap: 4px; width: fit-content;
  padding: .72rem .85rem; margin-top: .55rem;
  background: var(--color-card-2); border: 1px solid var(--color-border);
  border-radius: var(--r-lg); border-bottom-left-radius: 5px;
}
.chat__typing span {
  width: 6px; height: 6px; border-radius: 50%; background: #6E82A4;
  animation: typing 1.25s infinite ease-in-out;
}
.chat__typing span:nth-child(2) { animation-delay: .16s; }
.chat__typing span:nth-child(3) { animation-delay: .32s; }

.chat__status {
  display: flex; align-items: center; gap: .5rem;
  margin: .9rem 1.05rem 1.05rem;
  padding: .62rem .85rem;
  font-size: .865rem; font-weight: 600;
  color: #6EE7B7; background: var(--color-accent-soft);
  border: 1px solid rgba(52, 211, 153, .28); border-radius: var(--r-md);
}
.chat__status-icon { width: 16px; height: 16px; stroke-width: 2.7; flex: 0 0 auto; }

.chat__composer {
  display: flex; align-items: center; gap: .6rem;
  padding: .75rem 1.05rem; border-top: 1px solid var(--color-border);
}
.chat__field {
  flex: 1; padding: .55rem .85rem; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .05); color: #6E82A4; font-size: .84rem;
}
.chat__send {
  width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%;
  background: var(--grad-brand); display: grid; place-items: center;
}
.chat__send svg { width: 15px; height: 15px; stroke: var(--color-text-onBrand); stroke-width: 2.2; }

/* =========================================================
   10. PROBLEM SECTION
   ========================================================= */
.journey {
  display: grid; gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 168px), 1fr));
  margin-top: var(--sp-12);
}
.journey__step {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start; gap: .7rem;
  padding: 1.1rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.journey__step:hover { border-color: var(--color-border-strong); background: var(--color-card-2); }
.journey__icon {
  width: 38px; height: 38px; border-radius: var(--r-md);
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .05); color: var(--color-text-dim);
}
.journey__icon svg { width: 19px; height: 19px; }
.journey__label { font-size: .91rem; font-weight: 600; line-height: 1.35; }
.journey__step--warn .journey__icon { background: rgba(251, 191, 36, .12); color: var(--color-warn); }
.journey__step--danger { border-color: rgba(248, 113, 113, .3); background: var(--color-danger-soft); }
.journey__step--danger .journey__icon { background: rgba(248, 113, 113, .16); color: var(--color-danger); }

@media (min-width: 900px) {
  .journey__step + .journey__step::before {
    content: ""; position: absolute; left: -14px; top: 50%;
    width: 8px; height: 8px; margin-top: -4px;
    border-top: 2px solid rgba(255, 255, 255, .18);
    border-right: 2px solid rgba(255, 255, 255, .18);
    transform: rotate(45deg);
  }
}

.verdict {
  margin-top: var(--sp-8); text-align: center;
  font-size: clamp(1.15rem, 1rem + .7vw, 1.5rem);
  font-weight: 700; letter-spacing: -.02em; color: var(--color-danger);
}

/* =========================================================
   11. SOLUTION SECTION
   ========================================================= */
.card {
  display: flex; flex-direction: column;
  padding: 1.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.card:hover {
  border-color: rgba(56, 189, 248, .3); background: var(--color-card-2);
  box-shadow: var(--sh-md); transform: translateY(-2px);
}
.card--tight { padding: 1.25rem; }
.card__icon {
  width: 42px; height: 42px; margin-bottom: 1rem; border-radius: var(--r-md);
  display: grid; place-items: center;
  background: var(--color-cyan-soft); color: var(--color-cyan);
  border: 1px solid rgba(56, 189, 248, .22);
}
.card__icon svg { width: 21px; height: 21px; }
.card__title { font-weight: 700; }
.card__text { margin-top: .45rem; font-size: .935rem; color: var(--color-text-muted); }

/* =========================================================
   12. HOW IT WORKS
   ========================================================= */
.steps {
  position: relative;
  display: grid; gap: var(--sp-5);
  grid-template-columns: 1fr;
  margin-top: var(--sp-16);
  padding-left: 34px;                     /* hapësirë për shinën vertikale në mobile */
}
/* Shina — vertikale në mobile, horizontale në desktop */
.steps::before {
  content: ""; position: absolute;
  left: 9px; top: 14px; bottom: 14px; width: 2px;
  background: linear-gradient(180deg, rgba(56,189,248,.05), var(--color-cyan) 14%, var(--color-primary) 86%, rgba(47,107,255,.05));
  border-radius: 2px;
}

.step {
  position: relative;
  padding: 1.9rem 1.7rem 1.7rem;
  border-radius: var(--r-xl);
  background:
    linear-gradient(180deg, rgba(56, 189, 248, .05), transparent 45%),
    var(--color-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
/* Shiriti me gradient në buzën e majtë */
.step::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad-brand);
  transform: scaleY(.28); transform-origin: top;
  transition: transform .35s var(--ease);
}
.step:hover { border-color: rgba(56, 189, 248, .32); transform: translateY(-3px); box-shadow: var(--sh-md); }
.step:hover::after { transform: scaleY(1); }

/* Numri fantazmë */
.step__ghost {
  position: absolute; top: -.35rem; right: .6rem;
  font-size: 5.6rem; font-weight: 800; line-height: 1; letter-spacing: -.06em;
  background: linear-gradient(180deg, rgba(125, 211, 252, .16), rgba(47, 107, 255, 0) 78%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  pointer-events: none; user-select: none;
}

/* Nyja mbi shinë */
.step__node {
  position: absolute; left: -34px; top: 2.15rem;
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--color-background);
  border: 2px solid rgba(56, 189, 248, .45);
}
.step__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-brand); }
.step__dot--live { background: var(--color-accent); box-shadow: 0 0 0 4px rgba(52, 211, 153, .2); }

.step__icon {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  width: 48px; height: 48px; margin-bottom: 1.15rem; border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(56, 189, 248, .2), rgba(47, 107, 255, .12));
  border: 1px solid rgba(56, 189, 248, .28);
  color: var(--color-cyan-light);
}
.step__icon svg { width: 23px; height: 23px; }

.step__kicker {
  position: relative; z-index: 1;
  font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--color-cyan);
}
.step__title { position: relative; z-index: 1; margin-top: .3rem; font-size: 1.22rem; font-weight: 700; }
.step__text { position: relative; z-index: 1; margin-top: .55rem; font-size: .945rem; color: var(--color-text-muted); }

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 0; padding-top: 42px;
  }
  .steps::before {
    left: 16%; right: 16%; top: 9px; bottom: auto; width: auto; height: 2px;
    background: linear-gradient(90deg, rgba(56,189,248,.05), var(--color-cyan) 16%, var(--color-primary) 84%, rgba(47,107,255,.05));
  }
  .step__node { left: 50%; top: -42px; transform: translateX(-50%); }
}

.closing {
  margin-top: var(--sp-10); padding: 1.85rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(56, 189, 248, .07), rgba(47, 107, 255, .05));
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
}
.closing__title { font-size: clamp(1.2rem, 1rem + .8vw, 1.6rem); font-weight: 800; letter-spacing: -.025em; }
.closing__text { margin-top: .35rem; color: var(--color-text-muted); }

/* =========================================================
   13. WHY BIZBOT / 15. BEFORE-AFTER  (komponenti .versus)
   ========================================================= */
.versus {
  display: grid; gap: var(--sp-5); margin-top: var(--sp-12);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  align-items: start;
}
.versus__col {
  padding: 1.6rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
}
.versus__col--neg { background: linear-gradient(180deg, rgba(248, 113, 113, .05), transparent 55%), var(--color-card); border-color: rgba(248, 113, 113, .18); }
.versus__col--pos { background: linear-gradient(180deg, rgba(52, 211, 153, .06), transparent 55%), var(--color-card); border-color: rgba(52, 211, 153, .22); box-shadow: var(--sh-md); }
.versus__title { padding-bottom: .9rem; margin-bottom: 1rem; border-bottom: 1px solid var(--color-border); font-weight: 700; }
.versus__col--neg .versus__title { color: #FCA5A5; }
.versus__col--pos .versus__title { color: #6EE7B7; }
.versus__list { display: flex; flex-direction: column; gap: .7rem; }
.versus__list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .945rem; color: var(--color-text-muted); }
.versus__mark { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; stroke-width: 2.6; }
.versus__col--neg .versus__mark { color: var(--color-danger); }
.versus__col--pos .versus__mark { color: var(--color-accent); }

.statement {
  max-width: 62ch; margin: var(--sp-10) auto 0; text-align: center;
  font-size: clamp(1.05rem, .95rem + .55vw, 1.3rem);
  font-weight: 600; line-height: 1.45; letter-spacing: -.018em;
}
.statement--soft { font-weight: 500; color: var(--color-text-muted); }

/* =========================================================
   14. DEMO
   ========================================================= */
.demo { display: grid; gap: var(--sp-6); margin-top: var(--sp-12); grid-template-columns: 1fr; align-items: start; }
.demo__video { margin: 0; min-width: 0; }
.demo__chat { min-width: 0; }
.video {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--color-border-strong); background: #05080F;
  box-shadow: var(--sh-lg); aspect-ratio: 16 / 9;
}
.video__poster, .video video { width: 100%; height: 100%; object-fit: cover; }
.video__play {
  position: absolute; inset: 0; margin: auto;
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--grad-brand); color: var(--color-text-onBrand);
  display: grid; place-items: center;
  box-shadow: 0 14px 34px rgba(47, 107, 255, .5);
  transition: transform var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.video__play svg { width: 26px; height: 26px; fill: currentColor; stroke: none; margin-left: 3px; }
.video__play:hover { transform: scale(1.07); filter: brightness(1.08); }
.video__badge {
  position: absolute; left: 12px; bottom: 12px;
  padding: .35rem .7rem; border-radius: var(--r-pill);
  font-size: .77rem; font-weight: 600;
  color: #DCE9FF; background: rgba(7, 11, 20, .78);
  border: 1px solid var(--color-border); backdrop-filter: blur(6px);
}
.video.is-playing .video__play,
.video.is-playing .video__badge,
.video.is-playing .video__poster { display: none; }
.demo__caption { margin-top: .8rem; font-size: .89rem; color: var(--color-text-dim); }

/* =========================================================
   16. INTEGRATIONS
   ========================================================= */
.integrations {
  display: grid; gap: var(--sp-5); margin-top: var(--sp-12);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  max-width: 780px; margin-inline: auto;
}
.integration {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.6rem 1.7rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, .06), transparent 60%), var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.integration:hover { border-color: rgba(56, 189, 248, .34); transform: translateY(-3px); box-shadow: var(--sh-md); }
.integration__icon {
  width: 52px; height: 52px; flex: 0 0 auto; border-radius: var(--r-md);
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(56, 189, 248, .2), rgba(47, 107, 255, .12));
  border: 1px solid rgba(56, 189, 248, .26);
  color: var(--color-cyan-light);
}
.integration__icon svg { width: 26px; height: 26px; }
.integration__name { font-size: 1.08rem; font-weight: 700; line-height: 1.3; letter-spacing: -.015em; }

/* =========================================================
   17. GRAPHICS — mbulimi 24/7 dhe paneli i rezultateve
   ========================================================= */
.coverage {
  margin: var(--sp-12) 0 0;
  padding: clamp(1.25rem, .9rem + 1.4vw, 1.9rem);
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
}
.coverage__svg { width: 100%; height: auto; }
.coverage__svg text { stroke: none; }

.panel { margin: var(--sp-12) 0 0; }
.panel__frame {
  border: 1px solid var(--color-border-strong);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, var(--color-card-2), var(--color-card));
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.panel__chrome {
  display: flex; align-items: center; gap: .45rem;
  padding: .8rem 1.1rem;
  background: rgba(0, 0, 0, .22);
  border-bottom: 1px solid var(--color-border);
}
.panel__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--d); flex: 0 0 auto; }
.panel__tab { margin-left: .8rem; font-size: .86rem; font-weight: 700; color: var(--color-text); }
.panel__svg {
  width: 100%; height: auto;
  padding: clamp(1.1rem, .8rem + 1.2vw, 1.75rem);
}
.panel__svg text { stroke: none; }

/* =========================================================
   18. PRICING
   ========================================================= */
.plans {
  display: grid; gap: var(--sp-5); margin-top: var(--sp-12);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  align-items: stretch;
}
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 1.9rem 1.6rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--r-2xl);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.plan:hover { border-color: var(--color-border-strong); box-shadow: var(--sh-md); }
.plan--featured {
  border-color: rgba(56, 189, 248, .45);
  background: linear-gradient(180deg, rgba(56, 189, 248, .07), transparent 42%), var(--color-card);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, .07), var(--sh-lg);
}
.plan__badge {
  position: absolute; top: -12px; left: 1.6rem;
  padding: .3rem .8rem; border-radius: var(--r-pill);
  font-size: .73rem; font-weight: 700;
  color: var(--color-text-onBrand); background: var(--grad-brand);
}
.plan__name { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; }
.plan__desc { margin-top: .5rem; font-size: .91rem; color: var(--color-text-muted); min-height: 3.4em; }
.plan__price { margin-top: 1.2rem; font-size: 2.5rem; font-weight: 800; letter-spacing: -.035em; line-height: 1.1; }
.plan__price small { font-size: .95rem; font-weight: 600; color: var(--color-text-dim); letter-spacing: 0; }
.plan__setup {
  display: block; margin-top: .5rem; padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--color-border);
  font-size: .84rem; color: var(--color-text-dim);
}
.plan--featured .plan__setup { color: var(--color-cyan-light); }
.plan__features { display: flex; flex-direction: column; gap: .65rem; margin: 1.3rem 0 1.7rem; }
.plan__features li { display: flex; align-items: flex-start; gap: .55rem; font-size: .92rem; color: var(--color-text-muted); }
.plan__features svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; color: var(--color-cyan); stroke-width: 2.6; }
.plan__cta { margin-top: auto; width: 100%; }

/* =========================================================
   19. FAQ
   ========================================================= */
.faq { margin-top: var(--sp-10); display: flex; flex-direction: column; gap: .6rem; }
.faq__item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.faq__item:hover { border-color: var(--color-border-strong); }
.faq__item.is-open { border-color: rgba(56, 189, 248, .38); background: var(--color-card-2); }
.faq__heading { font-size: inherit; }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; padding: 1.05rem 1.25rem;
  font-size: 1rem; font-weight: 600; text-align: left; line-height: 1.45;
  color: var(--color-text);
}
.faq__chev {
  width: 19px; height: 19px; flex: 0 0 auto; color: var(--color-text-dim);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.faq__q[aria-expanded="true"] .faq__chev { transform: rotate(180deg); color: var(--color-cyan); }
/* Pa JS: përgjigjet janë të hapura dhe të indeksueshme */
.faq__a-inner { padding: 0 1.4rem 1.3rem; }
.faq__a-inner p { color: var(--color-text-muted); font-size: .95rem; }

/* Me JS: akordeon i animuar.
   DY kushte të domosdoshme, ndryshe paneli i mbyllur rrjedh jashtë:
   1) min-height:0 — grid items nuk mblidhen nën lartësinë e përmbajtjes pa të;
   2) padding-i NUK mund të rrijë te elementi me overflow:hidden — overflow pret
      te kutia e padding-ut, jo te ajo e përmbajtjes, ndaj padding-i mbetet i dukshëm.
      Prandaj padding-i zhvendoset te fëmija. */
.js .faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}
.js .faq__a > .faq__a-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0;
}
.js .faq__a-inner > * { padding-inline: 1.4rem; }
.js .faq__a-inner > *:last-child { padding-bottom: 1.3rem; }
.js .faq__a.is-open { grid-template-rows: 1fr; }

/* =========================================================
   20. FINAL CTA
   ========================================================= */
.cta { position: relative; overflow: hidden; background: var(--color-surface); }
.cta__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 55% at 12% 18%, rgba(47, 107, 255, .28), transparent 66%),
    radial-gradient(34% 50% at 90% 82%, rgba(56, 189, 248, .2), transparent 70%);
}
.cta__grid {
  position: relative; z-index: 1;
  display: grid; gap: clamp(2rem, 1rem + 3.5vw, 3.5rem);
  grid-template-columns: 1fr; align-items: start;
}
.cta__copy { min-width: 0; }
.cta__title { margin-top: .75rem; }
.cta__lead { margin-top: 1.1rem; max-width: 52ch; color: var(--color-text-muted); font-size: 1.02rem; }
.cta__primary-label {
  display: inline-block; margin-top: 1.7rem;
  padding: .82rem 1.45rem; border-radius: var(--r-pill);
  font-size: 1rem; font-weight: 700;
  color: var(--color-text-onBrand); background: var(--grad-brand);
  box-shadow: var(--sh-brand);
}
.cta__secondary-line { margin-top: .9rem; font-size: .92rem; color: var(--color-text-dim); }

.leadform {
  display: grid; gap: .95rem;
  grid-template-columns: 1fr;
  padding: clamp(1.4rem, 1rem + 1.6vw, 2rem);
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--r-2xl);
  backdrop-filter: blur(8px);
  box-shadow: var(--sh-lg);
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field__label { font-size: .83rem; font-weight: 600; color: #C4D4EC; }
.field__input {
  width: 100%; padding: .78rem .9rem;
  font-size: 16px; /* pa zoom në iOS */
  color: var(--color-text);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.field__input::placeholder { color: #66799A; }
.field__input:hover { border-color: rgba(255, 255, 255, .26); }
.field__input:focus {
  outline: none; background: rgba(255, 255, 255, .08);
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, .2);
}
.field__input--area { resize: vertical; min-height: 96px; line-height: 1.55; }
.field__input[aria-invalid="true"] { border-color: var(--color-danger); box-shadow: 0 0 0 3px rgba(248, 113, 113, .16); }
.field__error { font-size: .81rem; font-weight: 500; color: #FCA5A5; }

.leadform__micro { font-size: .81rem; color: var(--color-text-dim); line-height: 1.5; }
.leadform__micro a { color: var(--color-cyan-light); text-decoration: underline; text-decoration-color: rgba(125,211,252,.4); text-underline-offset: 2px; }
.leadform__micro a:hover { text-decoration-color: currentColor; }
.leadform__success {
  display: flex; align-items: flex-start; gap: .55rem;
  padding: .85rem 1rem;
  font-size: .91rem; font-weight: 600;
  color: #A7F3D0; background: var(--color-accent-soft);
  border: 1px solid rgba(52, 211, 153, .32); border-radius: var(--r-md);
}
.leadform__success svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; stroke-width: 2.6; }
.leadform__success[hidden] { display: none; }

/* =========================================================
   21. FOOTER
   ========================================================= */
.site-footer {
  background: #050810; color: var(--color-text-dim);
  border-top: 1px solid var(--color-border);
  padding-block: var(--sp-12) var(--sp-6);
}
.site-footer__grid {
  display: grid; gap: var(--sp-8) var(--sp-10);
  grid-template-columns: 1fr;
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--color-border);
}
.site-footer__brand img { height: 50px; width: auto; }
.site-footer__statement { margin-top: .9rem; max-width: 44ch; font-size: .91rem; line-height: 1.6; color: var(--color-text-muted); }
.site-footer__h {
  font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-text); margin-bottom: .85rem;
}
.site-footer__nav ul { display: flex; flex-direction: column; gap: .5rem; }
.site-footer__nav a { font-size: .91rem; transition: color var(--dur) var(--ease); }
.site-footer__nav a:hover { color: var(--color-cyan-light); }

.site-footer__bottom {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  align-items: center; justify-content: space-between;
  padding-top: var(--sp-5); font-size: .83rem; color: #55668A;
}
.site-footer__bottom > p { margin: 0; }
/* Shtyn elementin e fundit në skajin e djathtë edhe nëse rreshti thyhet */
.site-footer__bottom > :last-child { margin-left: auto; }
.site-footer__bottom a { color: var(--color-cyan); font-weight: 700; letter-spacing: .03em; }
.site-footer__bottom a:hover { color: var(--color-cyan-light); }

/* Nën 560px rreshti thyhet — të dyja majtas, pa hapësira të çuditshme */
@media (max-width: 560px) {
  .site-footer__bottom { display: block; }
  .site-footer__bottom > :last-child { margin-left: 0; margin-top: .35rem; }
}

/* Dy kolona navigimi te faqja kryesore */
.site-footer__nav a { color: var(--color-text-muted); }
.site-footer__nav a:hover { color: #fff; }

/* =========================================================
   22. ANIMATIONS
   ========================================================= */
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .45; }
  30%           { transform: translateY(-4px); opacity: 1; }
}
@keyframes pop-in {
  from { opacity: 0; transform: translateY(8px) scale(.985); }
  to   { opacity: 1; transform: none; }
}

.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.js .cards > .reveal.is-visible,
.js .steps > .reveal.is-visible,
.js .journey > .reveal.is-visible,
.js .plans > .reveal.is-visible,
.js .integrations > .reveal.is-visible { transition-delay: var(--stagger, 0ms); }

.js .chat[data-chat].is-scripted .chat__msg,
.js .chat[data-chat].is-scripted .chat__status { opacity: 0; }
.js .chat[data-chat].is-scripted .chat__msg.is-in,
.js .chat[data-chat].is-scripted .chat__status.is-in {
  opacity: 1; animation: pop-in .38s var(--ease) both;
}

/* =========================================================
   23. RESPONSIVE BREAKPOINTS
   ========================================================= */
@media (min-width: 560px) {
  :root { --gutter: 1.5rem; }
  .leadform { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) { :root { --gutter: 2rem; } }

@media (min-width: 880px) {
  .demo { grid-template-columns: 1.05fr .95fr; gap: var(--sp-8); }
}

@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.04fr .96fr; }
  .hero__visual { justify-self: end; width: min(100%, 430px); }
  .cta__grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .site-footer__grid { grid-template-columns: minmax(280px, 1.35fr) 1fr 1fr; }
}

/* Menuja mobile deri në 1179px — mbi këtë nav-i i plotë + CTA nuk përplasen */
@media (max-width: 1179px) {
  .site-header__cta { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    display: none;
    padding: var(--sp-5) var(--gutter) var(--sp-8);
    background: rgba(7, 11, 20, .98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--sh-lg);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li + li { border-top: 1px solid var(--color-border); }
  .nav__link { padding: .95rem .25rem; font-size: 1.02rem; color: var(--color-text); white-space: normal; }
  .nav__link::after { display: none; }
  .nav .nav__cta { display: inline-flex; width: 100%; margin-top: var(--sp-5); }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 640px) {
  .hero__actions .btn { width: 100%; }
  .cta__primary-label { display: block; width: 100%; text-align: center; }
  .journey { grid-template-columns: 1fr; }
  .journey__step { flex-direction: row; align-items: center; }
  .plan__desc { min-height: 0; }
  .faq__q { padding: .95rem 1rem; font-size: .95rem; }
  .faq__a-inner { padding: 0 1rem 1rem; }
  .chat__msg { max-width: 92%; }
  .coverage { padding: 1rem .9rem; }
  .panel__svg { padding: 1rem .85rem; }
  .site-footer { padding-block: var(--sp-12) var(--sp-6); }
}

@media (max-width: 480px) {
  :root { --header-h: 74px; }
  .brand img { height: 40px; }
  .btn { --btn-py: .9rem; --btn-px: 1.3rem; font-size: .98rem; }
  .btn--lg { --btn-py: 1.05rem; --btn-px: 1.5rem; font-size: 1.05rem; }
  .step { padding: 1.6rem 1.3rem 1.4rem; }
  .step__ghost { font-size: 4.4rem; }
  .integration { padding: 1.3rem 1.3rem; gap: .9rem; }
}

@media (max-width: 380px) {
  :root { --gutter: 1rem; }
  .badge { font-size: .755rem; }
  .brand img { height: 36px; }
  .plan__price { font-size: 2.1rem; }
  .steps { padding-left: 28px; }
  .step__node { left: -28px; }
}

/* =========================================================
   24. REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .js .chat[data-chat].is-scripted .chat__msg,
  .js .chat[data-chat].is-scripted .chat__status { opacity: 1; }
  .card:hover, .btn:hover, .step:hover { transform: none; }
}

/* =========================================================
   25. PRINT
   ========================================================= */
@media print {
  .site-header, .nav-toggle, .video__play, .skip-link, .hero__glow, .cta__glow { display: none !important; }
  body { color: #000; background: #fff; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .js .faq__a { grid-template-rows: 1fr !important; }
}

/* =========================================================
   26. LEGAL PAGES (privatesia.html · kushtet.html)
   ========================================================= */
.legal-hero {
  position: relative; overflow: hidden;
  padding-block: clamp(2.5rem, 1.6rem + 3.4vw, 4.25rem) clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  border-bottom: 1px solid var(--color-border);
}
.legal-hero__glow {
  position: absolute; inset-inline: -10%; top: -260px; height: 480px; z-index: 0; pointer-events: none;
  background: radial-gradient(40% 52% at 22% 62%, rgba(47, 107, 255, .22), transparent 68%),
              radial-gradient(34% 44% at 78% 50%, rgba(56, 189, 248, .16), transparent 70%);
}
.legal-hero > .container { position: relative; z-index: 1; }

.crumbs { display: flex; align-items: center; gap: .5rem; font-size: .84rem; color: var(--color-text-dim); flex-wrap: wrap; }
.crumbs a { transition: color var(--dur) var(--ease); }
.crumbs a:hover { color: var(--color-cyan-light); }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: .5rem; opacity: .45; }
.crumbs ol { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.crumbs [aria-current="page"] { color: var(--color-text-muted); }

.legal-hero__title { margin-top: 1rem; font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3rem); }
.legal-hero__lead { margin-top: 1rem; max-width: 62ch; font-size: 1.05rem; color: var(--color-text-muted); }
.legal-meta {
  display: flex; flex-wrap: wrap; gap: .5rem .9rem; margin-top: 1.4rem;
  font-size: .82rem; color: var(--color-text-dim);
}
.legal-meta span {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .75rem; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .05); border: 1px solid var(--color-border);
}

.legal-layout {
  display: grid; gap: clamp(2rem, 1.2rem + 2.6vw, 3.5rem);
  grid-template-columns: 1fr;
  padding-block: clamp(2.5rem, 1.8rem + 3vw, 4.5rem);
}

/* Përmbajtja (TOC) */
.toc { align-self: start; }
.toc__h {
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--color-cyan); margin-bottom: .9rem;
}
.toc ol { display: flex; flex-direction: column; gap: .15rem; counter-reset: toc; }
.toc a {
  display: block; padding: .45rem .7rem; border-radius: var(--r-sm);
  font-size: .89rem; color: var(--color-text-muted);
  border-left: 2px solid transparent;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.toc a::before { counter-increment: toc; content: counter(toc) ". "; color: var(--color-text-dim); }
.toc a:hover { color: var(--color-text); background: rgba(255, 255, 255, .05); }
.toc a[aria-current="true"] {
  color: var(--color-cyan-light); background: var(--color-cyan-soft);
  border-left-color: var(--color-cyan); font-weight: 600;
}

/* Trupi i dokumentit */
.doc { min-width: 0; max-width: 76ch; }
.doc > section + section { margin-top: clamp(2.25rem, 1.6rem + 2vw, 3.25rem); }
.doc h2 {
  font-size: clamp(1.3rem, 1.1rem + .9vw, 1.65rem);
  padding-bottom: .7rem; border-bottom: 1px solid var(--color-border);
}
.doc h3 { margin-top: 1.6rem; font-size: 1.06rem; color: var(--color-cyan-light); }
.doc p, .doc li { color: var(--color-text-muted); font-size: .975rem; line-height: 1.75; }
.doc h2 + p, .doc h3 + p { margin-top: .9rem; }
.doc p + p { margin-top: .9rem; }
.doc strong { color: var(--color-text); font-weight: 600; }
.doc a:not(.btn) {
  color: var(--color-cyan-light); text-decoration: underline;
  text-decoration-color: rgba(125, 211, 252, .4); text-underline-offset: 3px;
}
.doc a:not(.btn):hover { text-decoration-color: currentColor; }

.doc ul, .doc ol.doc-ol { margin-top: 1rem; display: flex; flex-direction: column; gap: .6rem; }
.doc ul > li { position: relative; padding-left: 1.4rem; }
.doc ul > li::before {
  content: ""; position: absolute; left: .3rem; top: .72em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--color-cyan); opacity: .75;
}
.doc ol.doc-ol { counter-reset: dol; }
.doc ol.doc-ol > li { position: relative; padding-left: 2rem; counter-increment: dol; }
.doc ol.doc-ol > li::before {
  content: counter(dol); position: absolute; left: 0; top: .1em;
  min-width: 1.35rem; height: 1.35rem; border-radius: 6px;
  display: grid; place-items: center;
  font-size: .74rem; font-weight: 700; color: var(--color-cyan-light);
  background: var(--color-cyan-soft); border: 1px solid rgba(56, 189, 248, .24);
}

/* Blok përgjigjeje e shkurtër — i lexueshëm nga motorët AI */
.answer {
  margin-top: 1.2rem; padding: 1.15rem 1.35rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-cyan);
  background: linear-gradient(90deg, rgba(56, 189, 248, .07), transparent 62%);
}
.answer p { color: var(--color-text); font-size: 1rem; }
.answer__label {
  display: block; margin-bottom: .35rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-cyan);
}

/* Kuti paralajmërimi / vendmbajtëse */
.callout {
  margin-top: 1.2rem; padding: 1.1rem 1.3rem;
  border-radius: var(--r-lg); border: 1px solid rgba(251, 191, 36, .3);
  background: rgba(251, 191, 36, .07);
}
.callout p { color: #FDE68A; }
.callout strong { color: #FEF3C7; }

/* Tabelë të dhënash */
.doc-table-wrap { margin-top: 1.2rem; overflow-x: auto; border: 1px solid var(--color-border); border-radius: var(--r-lg); }
.doc-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.doc-table caption { padding: .85rem 1rem; font-size: .82rem; color: var(--color-text-dim); text-align: left; }
.doc-table th, .doc-table td {
  padding: .8rem 1rem; text-align: left; font-size: .91rem;
  border-bottom: 1px solid var(--color-border); vertical-align: top;
}
.doc-table thead th {
  background: rgba(255, 255, 255, .045);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--color-text);
}
.doc-table td { color: var(--color-text-muted); }
.doc-table tbody tr:last-child th, .doc-table tbody tr:last-child td { border-bottom: 0; }

/* Definicione (rights, terms) */
.doc-dl { margin-top: 1.1rem; display: grid; gap: .9rem; }
.doc-dl > div {
  padding: 1rem 1.2rem; border-radius: var(--r-md);
  background: var(--color-card); border: 1px solid var(--color-border);
}
.doc-dl dt { font-weight: 700; color: var(--color-text); font-size: .96rem; }
.doc-dl dd { margin-top: .25rem; color: var(--color-text-muted); font-size: .93rem; line-height: 1.7; }

/* Kontakti fundor i dokumentit */
.doc-contact {
  margin-top: clamp(2.25rem, 1.6rem + 2vw, 3.25rem);
  padding: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(56, 189, 248, .08), rgba(47, 107, 255, .05));
  border: 1px solid var(--color-border-strong);
}
.doc-contact h2 { border: 0; padding: 0; }
.doc-contact .btn { margin-top: 1.2rem; }

@media (min-width: 980px) {
  .legal-layout { grid-template-columns: 260px minmax(0, 1fr); }
  .toc { position: sticky; top: calc(var(--header-h) + 1.5rem); max-height: calc(100dvh - var(--header-h) - 3rem); overflow-y: auto; }
}

/* Faqe ligjore pa panel përmbajtjeje — një kolonë e centruar */
.legal-layout--single { grid-template-columns: minmax(0, 1fr); }
.legal-layout--single .doc { margin-inline: auto; }
@media (min-width: 980px) { .legal-layout--single { grid-template-columns: minmax(0, 1fr); } }
