/* ============================================================
   Datix — IT ārpakalpojumi
   Light corporate design system
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:          #ffffff;
  --bg-soft:     #f5f7fb;
  --bg-deep:     #0b1322;
  --bg-deep-2:   #111d34;

  --ink:         #0d1726;
  --ink-2:       #2b3850;
  --body:        #4f5d75;
  --muted:       #7b8aa1;

  --line:        #e7ebf2;
  --line-2:      #d8deea;

  --brand:       #1f54e0;
  --brand-2:     #1842b8;
  --brand-soft:  #eef3ff;
  --brand-tint:  #f4f7ff;
  --brand-ink:   #16306e;

  --ok:          #0f9d6b;

  --radius-sm:   10px;
  --radius:      14px;
  --radius-lg:   22px;

  --shadow-sm:   0 1px 2px rgba(13,23,38,.05), 0 1px 3px rgba(13,23,38,.05);
  --shadow:      0 6px 22px rgba(13,23,38,.07), 0 2px 6px rgba(13,23,38,.04);
  --shadow-lg:   0 24px 60px rgba(13,23,38,.14);

  --container:   1140px;
  --ease:        cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset & base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--brand); color: #fff; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 700; letter-spacing: -.02em; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section { padding: 6.5rem 0; }
.section--tight { padding: 4.5rem 0; }
.section--soft { background: var(--bg-soft); }

/* ── Eyebrow + section heading ──────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 18px; height: 1.5px;
  background: var(--brand);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

.sec-head {
  max-width: 640px;
  margin-bottom: 3.25rem;
}
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-title {
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.sec-title em { color: var(--brand); font-style: normal; }
.sec-sub {
  margin-top: 1rem;
  font-size: 1.08rem;
  color: var(--body);
  line-height: 1.7;
}

.on-dark .sec-title,
.on-dark h2, .on-dark h3 { color: #fff; }
.on-dark .sec-sub,
.on-dark p { color: #aeb9cd; }
.on-dark .eyebrow { color: #6f97ff; }
.on-dark .eyebrow::before { background: #6f97ff; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  border-radius: 10px;
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 16px rgba(31,84,224,.25);
}
.btn--primary:hover { background: var(--brand-2); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(31,84,224,.32); }
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-tint); }
.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.25); }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--lg { padding: .95rem 1.9rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow, a:hover > .arrow { transform: translateX(3px); }

/* ── Icon tile ──────────────────────────────────────────── */
.itile {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid #dde7ff;
}
.itile svg { width: 24px; height: 24px; }
.itile--lg { width: 56px; height: 56px; border-radius: 14px; }
.itile--lg svg { width: 28px; height: 28px; }

/* Inline icon helpers (data-icon placeholders filled by JS) */
.ic { display: inline-flex; width: 18px; height: 18px; flex-shrink: 0; color: var(--brand); }
.ic--ok { color: var(--ok); }
.ic svg, .arrow svg, .nav__chev svg, .faq__icon svg, .page-hero__back svg { width: 100%; height: 100%; }
.arrow { display: inline-flex; width: 18px; height: 18px; }
.scard__link svg, .trust__item svg { width: 18px; height: 18px; }
.scard__list .ic, .plan__list .ic { margin-top: 2px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 16px rgba(13,23,38,.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 70px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
}
.nav__logo-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), #4f7bff);
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(31,84,224,.3);
}
.nav__logo-mark svg { width: 17px; height: 17px; color: #fff; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .85rem;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover { color: var(--brand); background: var(--brand-tint); }
.nav__link[aria-current="page"] { color: var(--brand); }
.nav__chev { width: 14px; height: 14px; transition: transform .2s var(--ease); }

.nav__item--has-menu { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  list-style: none;
}
.nav__item--has-menu:hover .nav__dropdown,
.nav__item--has-menu:focus-within .nav__dropdown,
.nav__dropdown.open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__item--has-menu:hover .nav__chev { transform: rotate(180deg); }
.nav__drop-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem .75rem;
  border-radius: 10px;
  color: var(--ink-2);
  font-size: .92rem;
  font-weight: 600;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav__drop-link:hover { background: var(--brand-tint); color: var(--brand); }
.nav__drop-link .itile { width: 36px; height: 36px; border-radius: 9px; }
.nav__drop-link .itile svg { width: 18px; height: 18px; }
.nav__drop-link small { display: block; font-weight: 400; font-size: .78rem; color: var(--muted); }

.nav__actions { display: flex; align-items: center; gap: .75rem; }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav__burger span {
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav__burger { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: .15rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__link { padding: .85rem 1rem; font-size: 1.02rem; }
  .nav__dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--line);
    border-radius: 0;
    margin: .15rem 0 .35rem 1.1rem;
    padding: 0 0 0 .25rem;
  }
  .nav__actions .btn { display: none; }
  .nav__cta-mobile { display: inline-flex !important; justify-content: center; margin-top: .75rem; }
}
.nav__cta-mobile { display: none; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  padding: 5.5rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 85% -5%, rgba(31,84,224,.08), transparent 60%),
    radial-gradient(ellipse 50% 50% at 5% 10%, rgba(79,123,255,.06), transparent 55%),
    var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 0%, transparent 75%);
  opacity: .5;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 4rem;
  align-items: center;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem .4rem .4rem .9rem;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.6rem;
}
.hero__pill b {
  background: var(--ok);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .2rem .55rem;
  border-radius: 50px;
}
.hero__title {
  font-size: clamp(2.4rem, 5.2vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
}
.hero__title em { color: var(--brand); font-style: normal; }
.hero__desc {
  margin: 1.5rem 0 2.25rem;
  font-size: 1.15rem;
  color: var(--body);
  line-height: 1.7;
  max-width: 540px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta b {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
}
.hero__meta span { font-size: .85rem; color: var(--muted); }

/* Hero visual — dashboard card */
.hero__visual { position: relative; }
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.panel__bar {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.panel__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.panel__title { margin-left: .5rem; font-size: .82rem; font-weight: 600; color: var(--muted); }
.panel__body { padding: 1.3rem; display: flex; flex-direction: column; gap: 1rem; }
.statrow { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.stat {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .95rem 1rem;
  background: #fff;
}
.stat__top { display: flex; align-items: center; justify-content: space-between; }
.stat__top .itile { width: 34px; height: 34px; border-radius: 9px; }
.stat__top .itile svg { width: 17px; height: 17px; }
.stat__val { font-size: 1.5rem; font-weight: 800; color: var(--ink); margin-top: .55rem; letter-spacing: -.02em; }
.stat__lbl { font-size: .78rem; color: var(--muted); }
.stat__chip { font-size: .72rem; font-weight: 700; color: var(--ok); background: #e7f7f0; padding: .15rem .5rem; border-radius: 50px; }

.monrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem .9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.monrow__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(15,157,107,.14); flex-shrink: 0; }
.monrow__name { font-size: .86rem; font-weight: 600; color: var(--ink-2); flex: 1; }
.monrow__val { font-size: .8rem; color: var(--muted); font-variant-numeric: tabular-nums; }

.hero__float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: .8rem 1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.hero__float--tr { top: -22px; right: -18px; }
.hero__float--bl { bottom: -22px; left: -20px; }
.hero__float .itile { width: 36px; height: 36px; }
.hero__float b { display: block; font-size: .9rem; color: var(--ink); }
.hero__float span { font-size: .76rem; color: var(--muted); }

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero__visual { max-width: 480px; }
}
@media (max-width: 560px) {
  .hero__float--tr { right: 0; }
  .hero__float--bl { left: 0; }
}

/* ── Trust / logos strip ────────────────────────────────── */
.trust {
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.4rem;
}
.trust__label { font-size: .82rem; color: var(--muted); font-weight: 500; }
.trust__item { display: inline-flex; align-items: center; gap: .5rem; font-size: .95rem; font-weight: 600; color: var(--ink-2); }
.trust__item svg { width: 18px; height: 18px; color: var(--brand); }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* Service hub card */
.scard {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.85rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.scard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.scard h3 { font-size: 1.28rem; }
.scard p { font-size: .96rem; color: var(--body); }
.scard__list { list-style: none; display: flex; flex-direction: column; gap: .55rem; margin-top: .25rem; }
.scard__list li { display: flex; align-items: flex-start; gap: .55rem; font-size: .92rem; color: var(--ink-2); }
.scard__list svg { width: 17px; height: 17px; color: var(--brand); flex-shrink: 0; margin-top: 3px; }
.scard__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: .75rem; }
.scard__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--brand);
}
.scard__price { font-size: .85rem; font-weight: 600; color: var(--muted); }
.scard__price b { color: var(--ink); font-size: 1.05rem; }

/* Feature card (icon + text) */
.feature {
  display: flex;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.feature h4 { font-size: 1.05rem; margin-bottom: .3rem; }
.feature p { font-size: .92rem; color: var(--body); line-height: 1.6; }

/* Value card (centered) */
.value {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem 1.6rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.value:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.value .itile { margin-bottom: 1.1rem; }
.value h4 { font-size: 1.1rem; margin-bottom: .4rem; }
.value p { font-size: .93rem; color: var(--body); line-height: 1.6; }

/* About split */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.about__text p { margin-bottom: 1.1rem; font-size: 1.04rem; }
.about__text .btn { margin-top: .75rem; }
.about__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about__cards .value { padding: 1.5rem 1.3rem; }
.about__cards .value h4 { font-size: 1rem; }
@media (max-width: 880px) { .about { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── Steps ──────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem 1.5rem;
}
.step__num {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--brand);
  margin-bottom: .9rem;
}
.step h4 { font-size: 1.08rem; margin-bottom: .45rem; }
.step p { font-size: .92rem; color: var(--body); line-height: 1.6; }

/* ── Pricing ────────────────────────────────────────────── */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan--featured {
  border-color: var(--brand);
  box-shadow: 0 18px 50px rgba(31,84,224,.14);
}
.plan--featured:hover { box-shadow: 0 22px 56px rgba(31,84,224,.2); }
.plan__flag {
  position: absolute;
  top: -12px; left: 1.85rem;
  background: var(--brand);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
}
.plan__name { font-size: 1.25rem; font-weight: 800; }
.plan__price { display: flex; align-items: baseline; gap: .35rem; }
.plan__price b { font-size: 2.4rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.plan__price span { font-size: .95rem; color: var(--muted); }
.plan__desc { font-size: .92rem; color: var(--body); line-height: 1.6; min-height: 2.6em; }
.plan__list { list-style: none; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.plan__list li { display: flex; align-items: flex-start; gap: .55rem; font-size: .92rem; color: var(--ink-2); line-height: 1.5; }
.plan__list svg { width: 17px; height: 17px; color: var(--brand); flex-shrink: 0; margin-top: 3px; }
.plan__list li.head { font-weight: 700; color: var(--ink); }
.pricing__note { text-align: center; margin-top: 1.75rem; font-size: .92rem; color: var(--muted); }
.pricing__note a { color: var(--brand); font-weight: 600; }

/* ============================================================
   SUB-PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  padding: 4.5rem 0 3.75rem;
  background:
    radial-gradient(ellipse 60% 70% at 85% 0%, rgba(31,84,224,.07), transparent 60%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero__back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  transition: color .2s var(--ease);
}
.page-hero__back:hover { color: var(--brand); }
.page-hero__back svg { width: 16px; height: 16px; }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.page-hero h1 em { color: var(--brand); font-style: normal; }
.page-hero__desc {
  margin-top: 1.1rem;
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--body);
  line-height: 1.7;
}
.page-hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

/* Stat strip (service sub-pages) */
.statstrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.statstrip > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.statstrip b { display: block; font-size: 1.85rem; font-weight: 800; color: var(--brand); letter-spacing: -.03em; }
.statstrip span { font-size: .82rem; color: var(--muted); }
@media (max-width: 620px) { .statstrip { grid-template-columns: 1fr 1fr; } }

/* ── Process (3 steps inline) ───────────────────────────── */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 920px; margin-inline: auto; }
.process .step { text-align: center; }
.process .step .step__num { font-size: 2.4rem; letter-spacing: -.04em; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: .75rem; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq__item.open { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.faq__icon { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; transition: transform .25s var(--ease); }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a p { padding: 0 1.4rem 1.25rem; font-size: .95rem; color: var(--body); line-height: 1.7; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start; }
.contact-method { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-method h4 { font-size: 1rem; margin-bottom: .25rem; }
.contact-method a { color: var(--brand); font-weight: 600; }
.contact-method a:hover { text-decoration: underline; }
.contact-method p { font-size: .9rem; color: var(--body); }
.contact-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.75rem; }
.tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 500; color: var(--ink-2);
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: .45rem .9rem; border-radius: 50px;
}
.tag svg { width: 15px; height: 15px; color: var(--brand); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.1rem;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.2rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: .75rem .9rem;
  color: var(--ink);
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #aab4c4; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(31,84,224,.13);
}
.form-note { font-size: .8rem; color: var(--muted); margin-top: .8rem; text-align: center; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  text-align: center;
  background: #e9f8f1;
  border: 1px solid #bce7d4;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 30px; height: 30px; color: var(--ok); }
.form-success strong { color: #0c7a52; font-size: 1.05rem; }
.form-success p { font-size: .9rem; color: var(--body); }

@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ============================================================
   DARK CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: var(--bg-deep); }
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 80% 0%, rgba(31,84,224,.35), transparent 60%),
    radial-gradient(ellipse 45% 70% at 10% 100%, rgba(79,123,255,.18), transparent 60%);
  pointer-events: none;
}
.cta-band__inner { position: relative; text-align: center; max-width: 640px; margin-inline: auto; }
.cta-band .eyebrow { color: #7ea2ff; }
.cta-band .eyebrow::before { background: #7ea2ff; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 800; letter-spacing: -.03em; color: #fff; }
.cta-band h2 em { color: #7ea2ff; font-style: normal; }
.cta-band p { margin: 1.1rem 0 2rem; font-size: 1.1rem; color: #aeb9cd; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-deep); color: #aeb9cd; padding: 4rem 0 2rem; }
.site-footer a { color: #aeb9cd; transition: color .2s var(--ease); }
.site-footer a:hover { color: #fff; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand .nav__logo { color: #fff; margin-bottom: 1rem; }
.footer__brand p { font-size: .92rem; color: #8997af; max-width: 280px; }
.footer__contact { margin-top: 1rem; display: flex; flex-direction: column; gap: .4rem; }
.footer__contact a { font-size: .92rem; font-weight: 600; color: #cdd6e6; }
.footer__col h5 { color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer__col a { font-size: .92rem; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: .85rem;
  color: #76839b;
}
@media (max-width: 800px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 460px) { .footer__top { grid-template-columns: 1fr; } }

/* ============================================================
   ATSEVIŠĶIE DARBI (one-off works)
   ============================================================ */
.adarbi-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
  position: sticky;
  top: 70px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: .85rem 0;
  z-index: 40;
}
.adarbi-filter__btn {
  border: 1px solid var(--line-2);
  background: #fff;
  color: var(--ink-2);
  font-size: .85rem;
  font-weight: 600;
  padding: .45rem .95rem;
  border-radius: 50px;
  transition: all .2s var(--ease);
}
.adarbi-filter__btn:hover { border-color: var(--brand); color: var(--brand); }
.adarbi-filter__btn.active { background: var(--brand); border-color: var(--brand); color: #fff; }

.adarbi-section { margin-bottom: 3rem; }
.adarbi-section__head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
}
.adarbi-section__head .itile { width: 38px; height: 38px; border-radius: 10px; }
.adarbi-section__head .itile svg { width: 19px; height: 19px; }
.adarbi-section__title { font-size: 1.15rem; font-weight: 700; color: var(--ink); flex: 1; }
.adarbi-section__count { font-size: .8rem; color: var(--muted); background: var(--bg-soft); border: 1px solid var(--line); padding: .2rem .7rem; border-radius: 50px; }

.adarbi-list { display: flex; flex-direction: column; gap: .6rem; }
.adarbi-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.adarbi-row:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.adarbi-row__name { font-size: .98rem; font-weight: 600; color: var(--ink); margin-bottom: .2rem; }
.adarbi-row__desc { font-size: .86rem; color: var(--body); line-height: 1.5; }
.adarbi-row__price { text-align: right; flex-shrink: 0; }
.adarbi-row__price strong { display: block; font-size: 1.2rem; font-weight: 800; color: var(--brand); letter-spacing: -.02em; }
.adarbi-row__price span { font-size: .76rem; color: var(--muted); }

.bundle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.bundle-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.bundle-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.bundle-card__top { display: flex; align-items: center; justify-content: space-between; }
.bundle-card__top .itile { width: 40px; height: 40px; }
.bundle-card__badge { font-size: .72rem; font-weight: 700; color: var(--brand); background: var(--brand-soft); border: 1px solid #dde7ff; padding: .2rem .65rem; border-radius: 50px; }
.bundle-card__name { font-size: 1.12rem; font-weight: 700; color: var(--ink); }
.bundle-card__desc { font-size: .88rem; color: var(--body); line-height: 1.55; }
.bundle-card__includes { list-style: none; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.bundle-card__includes li { display: flex; align-items: flex-start; gap: .5rem; font-size: .86rem; color: var(--ink-2); }
.bundle-card__includes li::before { content: '✓'; color: var(--brand); font-weight: 700; flex-shrink: 0; }
.bundle-card__price-row { display: flex; align-items: baseline; gap: .6rem; margin-top: .25rem; padding-top: .9rem; border-top: 1px solid var(--line); }
.bundle-card__price { font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.bundle-card__was { font-size: .9rem; color: var(--muted); text-decoration: line-through; }
.bundle-card__save { font-size: .75rem; font-weight: 700; color: var(--ok); background: #e7f7f0; padding: .15rem .5rem; border-radius: 50px; }

.adarbi-note {
  background: var(--brand-tint);
  border: 1px solid #dde7ff;
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  font-size: .9rem;
  color: var(--ink-2);
  line-height: 1.65;
  margin-top: 1.5rem;
}
.adarbi-note strong { color: var(--ink); }
.adarbi-note a { color: var(--brand); font-weight: 600; }

@media (max-width: 680px) {
  .bundle-grid { grid-template-columns: 1fr; }
  .adarbi-row { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .adarbi-row__price { text-align: left; }
  .adarbi-filter { position: static; }
}

/* ============================================================
   PLĀNI (document page)
   ============================================================ */
.plans-doc { max-width: 820px; margin-inline: auto; padding: 3.5rem 1.5rem 5rem; }
.plans-doc__intro { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.plans-doc__intro h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.plans-doc__intro h1 em { color: var(--brand); font-style: normal; }
.plans-doc__intro p { color: var(--body); font-size: 1.05rem; line-height: 1.7; max-width: 660px; }
.plans-doc__updated { font-size: .82rem; color: var(--muted); margin-top: .75rem; }

.plans-toc {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 3.5rem;
}
.plans-toc h2 { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .9rem; }
.plans-toc ol { padding-left: 1.25rem; display: flex; flex-direction: column; gap: .45rem; }
.plans-toc a { color: var(--brand); font-size: .95rem; font-weight: 500; }
.plans-toc a:hover { text-decoration: underline; }

.plan-doc-sec { margin-bottom: 3.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line); scroll-margin-top: 90px; }
.plan-doc-sec:last-of-type { border-bottom: none; }
.plan-doc-sec__tag {
  display: inline-block;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .85rem; border-radius: 50px; margin-bottom: .9rem;
  background: var(--brand-soft); color: var(--brand-ink); border: 1px solid #dde7ff;
}
.plan-doc-sec h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: .5rem; }
.plan-doc-sec .price-line { font-size: 2rem; font-weight: 800; color: var(--ink); margin-bottom: 1.1rem; letter-spacing: -.03em; }
.plan-doc-sec .price-line span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.plan-doc-sec p { font-size: 1rem; color: var(--body); line-height: 1.75; margin-bottom: .85rem; }
.plan-doc-sec h3 { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 1.75rem 0 .7rem; }
.plan-doc-sec ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.plan-doc-sec ul li { display: flex; align-items: flex-start; gap: .55rem; font-size: .98rem; color: var(--ink-2); line-height: 1.6; }
.plan-doc-sec ul li::before { content: '✓'; color: var(--ok); font-weight: 700; flex-shrink: 0; }
.plan-doc-sec ul li.excl { color: var(--muted); }
.plan-doc-sec ul li.excl::before { content: '–'; color: var(--muted); }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: .85rem; margin: 1rem 0 1.5rem; }
.info-block { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: .9rem 1.05rem; }
.info-block__label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.info-block__val { font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.plans-note {
  background: #fff8ec; border: 1px solid #f6e2bd; border-radius: 10px;
  padding: .9rem 1.1rem; font-size: .9rem; color: #8a6516; line-height: 1.6; margin-top: 1rem;
}
.plans-note strong { color: #6f4e0a; }

/* ============================================================
   DEMO PAGE + interactive widget
   ============================================================ */
.demo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow);
}
.demo-card h3 { font-size: 1.6rem; margin-bottom: .5rem; }
.demo-card__content > p { font-size: .98rem; color: var(--body); line-height: 1.7; }
.demo-card__content .itile { margin-bottom: 1.1rem; }
.demo-card__features { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .9rem; margin: 1.4rem 0; }
.demo-card__features span { display: flex; align-items: flex-start; gap: .45rem; font-size: .88rem; color: var(--ink-2); }
.demo-card__features span::before { content: '✓'; color: var(--brand); font-weight: 700; }

.mockup-browser {
  background: #0e1726;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
}
.mockup-browser__bar { background: #18233a; padding: .6rem .9rem; display: flex; align-items: center; gap: .4rem; }
.mockup-browser__dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-browser__dot--r { background: #ff5f57; }
.mockup-browser__dot--y { background: #ffbd2e; }
.mockup-browser__dot--g { background: #28c840; }
.mockup-browser__url { flex: 1; margin-left: .6rem; background: rgba(255,255,255,.07); border-radius: 5px; height: 20px; max-width: 220px; font-size: .7rem; color: #8997af; display: flex; align-items: center; padding: 0 .6rem; }
.mockup-browser__screen { height: calc(100% - 33px); position: relative; overflow: hidden; }
.mock-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 700; opacity: 0; animation: mockSlide 9s infinite;
}
.mock-slide__icon { font-size: 2.5rem; }
.mock-slide__title { font-size: 1.1rem; letter-spacing: .04em; }
.mock-slide__sub { font-size: .8rem; font-weight: 400; }
.mock-slide--1 { background: linear-gradient(135deg,#0d1a3a,#0a1228); color: #93c5fd; animation-delay: 0s; }
.mock-slide--2 { background: linear-gradient(135deg,#0a2218,#061510); color: #86efac; animation-delay: 3s; }
.mock-slide--3 { background: linear-gradient(135deg,#250d1e,#180a12); color: #f9a8d4; animation-delay: 6s; }
@keyframes mockSlide {
  0%,4% { opacity: 0; transform: scale(1.04); }
  8%,28% { opacity: 1; transform: scale(1); }
  33%,100% { opacity: 0; transform: scale(.97); }
}

.demo-coming {
  background: var(--bg-soft);
  border: 1px dashed var(--line-2);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .85rem;
}
.demo-coming .itile { margin-bottom: .25rem; }
.demo-coming h3 { font-size: 1.3rem; }
.demo-coming p { color: var(--body); font-size: .95rem; }

.demo-features__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }

/* Interactive widget (sdemo) */
.sdemo-tabs { display: flex; gap: .5rem; justify-content: center; margin-bottom: 2rem; }
.sdemo-tab {
  background: #fff; border: 1px solid var(--line-2); color: var(--ink-2);
  font-size: .9rem; font-weight: 600; padding: .6rem 1.3rem; border-radius: 10px;
  transition: all .2s var(--ease);
}
.sdemo-tab--active { background: var(--brand); border-color: var(--brand); color: #fff; }
.sdemo-panel { display: none; }
.sdemo-panel--active { display: block; }
.sdemo-screen {
  position: relative;
  max-width: 760px; margin-inline: auto;
  background: #0e1726; border: 1px solid var(--line-2); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.sdemo-player { position: relative; aspect-ratio: 16/9; }
.sdemo-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
  opacity: 0; transition: opacity .5s var(--ease); font-weight: 700;
}
.sdemo-slide--active { opacity: 1; }
.sdemo-slide__icon { font-size: 3.2rem; }
.sdemo-slide__title { font-size: 1.5rem; letter-spacing: .03em; }
.sdemo-slide__sub { font-size: 1rem; font-weight: 400; }
.sdemo-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; padding: .85rem; background: #18233a; }
.sdemo-ctrl { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); color: #fff; font-size: 1rem; }
.sdemo-ctrl:hover { background: rgba(255,255,255,.12); }
.sdemo-dots { display: flex; gap: .4rem; }
.sdemo-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.25); }
.sdemo-dot--active { background: #fff; }
.sdemo-watermark { position: absolute; bottom: 4rem; right: 1rem; font-size: .72rem; color: rgba(255,255,255,.45); font-weight: 600; }

.sdemo-admin { display: grid; grid-template-columns: 280px 1fr; gap: 1.25rem; max-width: 820px; margin-inline: auto; }
.sdemo-admin__sidebar, .sdemo-admin__main { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.3rem; }
.sdemo-admin__title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .25rem; }
.sdemo-admin__sub { font-size: .8rem; color: var(--muted); margin-bottom: .85rem; }
.sdemo-admin__list { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.sdemo-admin__item { display: flex; align-items: center; gap: .6rem; padding: .6rem .75rem; border-radius: 9px; border: 1px solid var(--line); font-size: .9rem; color: var(--ink-2); cursor: pointer; transition: all .15s var(--ease); }
.sdemo-admin__item:hover { border-color: var(--line-2); }
.sdemo-admin__item--active { background: var(--brand-tint); border-color: var(--brand); color: var(--brand); }
.sdemo-form { display: flex; flex-direction: column; gap: .5rem; }
.sdemo-label { font-size: .82rem; font-weight: 600; color: var(--ink-2); margin-top: .4rem; }
.sdemo-input { background: #fff; border: 1px solid var(--line-2); border-radius: 9px; padding: .6rem .8rem; color: var(--ink); font-size: .9rem; font-family: inherit; outline: none; }
.sdemo-input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(31,84,224,.13); }
.sdemo-colors { display: flex; gap: .5rem; flex-wrap: wrap; }
.sdemo-color { width: 30px; height: 30px; border-radius: 8px; border: 2px solid transparent; }
.sdemo-color--active { border-color: var(--ink); }
.sdemo-hint { font-size: .78rem; color: var(--muted); margin-top: .5rem; }

@media (max-width: 800px) {
  .demo-card { grid-template-columns: 1fr; padding: 1.75rem; gap: 2rem; }
  .sdemo-admin { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE GRID COLLAPSES
   ============================================================ */
@media (max-width: 920px) {
  .grid-3, .pricing { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .grid-4, .steps { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 620px) and (max-width: 920px) {
  .grid-3 { grid-template-columns: 1fr 1fr; max-width: none; }
}
@media (max-width: 620px) {
  .grid-2, .grid-4, .steps, .demo-card__features, .form-row { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 0; }
}

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ── Cookie consent banner ──────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 9999;
  background: #16181d;
  color: #e4e4e7;
  border: 1px solid #2a2d36;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 680px;
  width: calc(100% - 2rem);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  font-size: .875rem;
  line-height: 1.5;
}
#cookie-banner.ck-show { transform: translateX(-50%) translateY(0); }
.ck-text strong { display: block; margin-bottom: .2rem; color: #fff; }
.ck-btns { display: flex; gap: .5rem; flex-shrink: 0; }
.ck-btn {
  padding: .45rem 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: .8125rem;
  font-weight: 600;
  white-space: nowrap;
}
.ck-btn--accept { background: #6366f1; color: #fff; }
.ck-btn--accept:hover { background: #4f46e5; }
.ck-btn--decline { background: #2a2d36; color: #a1a1aa; }
.ck-btn--decline:hover { background: #3f4250; color: #fff; }
@media (max-width: 560px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; gap: .75rem; }
}
