/* ============================================================
   NIMBUS — Design System
   A boutique digital agency in Tbilisi.
   Cinematic dark premium · editorial discipline.
============================================================ */

/* --------------------------------------------------
   01 — Tokens
-------------------------------------------------- */
:root {
  --bg:            #08090F;
  --bg-elev:       #0E1018;
  --bg-card:       #11141C;
  --bg-card-hover: #161A26;

  --border:        #1A1F2E;
  --border-bright: #242A3D;
  --border-cyan:   rgba(6, 182, 212, 0.35);

  --text:          #ECEEF3;
  --text-dim:      #8B92A5;
  --text-muted:    #5F6677;

  --accent:        #06B6D4;
  --accent-light:  #67E8F9;
  --accent-deep:   #0E7490;
  --accent-glow:   rgba(6, 182, 212, 0.18);

  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;

  --gutter:        clamp(1.25rem, 4vw, 2.5rem);
  --max-width:     1240px;
  --section-py:    clamp(4rem, 8vw, 7rem);
  --radius-sm:     6px;
  --radius:        10px;
  --radius-lg:     16px;

  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------
   02 — Reset
-------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: auto;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-weight: 400;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--accent-glow); color: var(--text); }

/* --------------------------------------------------
   03 — Film grain overlay
-------------------------------------------------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

main, header, footer { position: relative; z-index: 2; }

/* --------------------------------------------------
   04 — Layout primitives
-------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
}

.section-elev { background: var(--bg-elev); }

.section-divider {
  border-top: 1px solid var(--border);
}

/* --------------------------------------------------
   05 — Typography
-------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}

.eyebrow-dim {
  color: var(--text-muted);
}
.eyebrow-dim::before { background: var(--text-muted); }

.italic-accent {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-dim);
}

.hero-title,
.section-title,
.cta-title {
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--text);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero-title .italic-accent {
  color: var(--text-dim);
  /* Inline flow — same size, same line as surrounding text */
  font-size: inherit;
  line-height: inherit;
  display: inline;
}

.section-title {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.05;
}

.cta-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
}

.lead {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--text-dim);
  line-height: 1.55;
  font-weight: 400;
  max-width: 580px;
}

.body-dim { color: var(--text-dim); }
.body-muted { color: var(--text-muted); font-size: 0.9375rem; }

.mono {
  font-family: var(--font-mono);
  font-weight: 500;
}

/* --------------------------------------------------
   06 — Buttons
-------------------------------------------------- */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease),
              border-color 0.25s var(--ease),
              color 0.25s var(--ease),
              transform 0.25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--bg);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-bright);
}
.btn-ghost:hover {
  border-color: var(--text-dim);
  background: rgba(255,255,255,0.02);
}

.btn-sm {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.25s var(--ease);
}
.link-arrow .arrow { transition: transform 0.25s var(--ease); }
.link-arrow:hover { color: var(--accent-light); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* --------------------------------------------------
   07 — Header / Nav
-------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.125rem 0;
  transition: background 0.3s var(--ease),
              backdrop-filter 0.3s var(--ease),
              border-color 0.3s var(--ease),
              padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(8, 9, 15, 0.75);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
  padding: 0.75rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
.brand-mark svg { width: 22px; height: 22px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 6px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link.active {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.lang-switch button {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.lang-switch button.active {
  background: var(--text);
  color: var(--bg);
}
.lang-switch button:not(.active):hover { color: var(--text); }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--border-bright);
}
.menu-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0; width: 18px; height: 1.5px;
  background: var(--text);
  transition: transform 0.25s var(--ease), top 0.25s var(--ease);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 15, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  padding: 6rem var(--gutter) 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu .nav-link {
  font-size: 1.5rem;
  padding: 0.75rem 0;
  color: var(--text);
}
.mobile-menu .mobile-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-menu .mobile-cta .btn { justify-content: center; width: 100%; }
.mobile-menu .mobile-lang {
  margin-top: auto;
  align-self: flex-start;
}

/* --------------------------------------------------
   08 — Hero
-------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 9rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-eyebrow,
.hero-title,
.hero-subtitle,
.hero-ctas,
.hero-meta {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.9s var(--ease) forwards;
}
.hero-eyebrow   { animation-delay: 0.05s; }
.hero-title     { animation-delay: 0.15s; }
.hero-subtitle  { animation-delay: 0.30s; }
.hero-ctas      { animation-delay: 0.40s; }
.hero-meta      { animation-delay: 0.55s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hero-meta {
  margin-top: 3.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.hero-meta-item {
  background: var(--bg);
  padding: 0.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hero-meta-item:first-child { padding-left: 0; }
.hero-meta-item:last-child { padding-right: 0; }
.hero-meta-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-meta-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

/* Page hero (smaller) */
.page-hero {
  padding-top: 9rem;
  padding-bottom: 4rem;
  position: relative;
}
.page-hero .hero-inner { gap: 1.5rem; }
.page-hero-title {
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.page-hero-title .italic-accent { color: var(--text-dim); }

/* --------------------------------------------------
   09 — Section header
-------------------------------------------------- */
.section-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  margin-bottom: 4.5rem;
  align-items: start;
}
.section-header-meta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.section-header-meta .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.section-header-meta .label.cyan { color: var(--accent); }
.section-header-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 720px;
}

/* --------------------------------------------------
   10 — Service / feature cards (border-grid)
-------------------------------------------------- */
.grid-bordered {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.grid-bordered.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-bordered.cols-2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  background: var(--bg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 360px;
  transition: background 0.3s var(--ease);
  position: relative;
}
.service-card:hover { background: var(--bg-elev); }
.service-card .num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.service-icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  color: var(--accent);
}
.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.service-card p {
  color: var(--text-dim);
  font-size: 0.9625rem;
  line-height: 1.55;
  flex: 1;
}
.service-card .link-arrow {
  margin-top: auto;
}

/* --------------------------------------------------
   11 — Why Nimbus (asymmetric grid)
-------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-card {
  background: var(--bg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: background 0.3s var(--ease);
}
.why-card:hover { background: var(--bg-elev); }
.why-card.span-7 { grid-column: span 7; }
.why-card.span-5 { grid-column: span 5; }
.why-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.why-card p {
  color: var(--text-dim);
  font-size: 0.9625rem;
  line-height: 1.55;
}

/* --------------------------------------------------
   12 — Stats row
-------------------------------------------------- */
.stats-row {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat {
  background: var(--bg);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.45;
}

/* --------------------------------------------------
   13 — Process / Timeline
-------------------------------------------------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.timeline-step {
  background: var(--bg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.timeline-step .step-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.timeline-step .step-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.timeline-step h4 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.timeline-step p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* --------------------------------------------------
   14 — Final CTA section
-------------------------------------------------- */
.final-cta {
  position: relative;
  text-align: center;
  padding-top: clamp(7rem, 14vw, 12rem);
  padding-bottom: clamp(7rem, 14vw, 12rem);
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 90vw);
  height: 600px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}
.final-cta .lead { text-align: center; margin: 0 auto; }
.final-cta .btn-row { justify-content: center; }
.final-cta-email {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}
.final-cta-email a {
  color: var(--text-dim);
  border-bottom: 1px dotted var(--text-muted);
  padding-bottom: 1px;
  transition: color 0.25s var(--ease);
}
.final-cta-email a:hover { color: var(--accent-light); }

/* --------------------------------------------------
   15 — Feature blocks (product pages)
-------------------------------------------------- */
.features-list {
  display: flex;
  flex-direction: column;
}
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.feature-block:last-child { border-bottom: 1px solid var(--border); }
.feature-block-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-block-head h3 {
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.feature-block-head p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 540px;
}
.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding-top: 0.5rem;
}
.feature-bullets li {
  display: flex;
  gap: 0.875rem;
  font-size: 0.9625rem;
  color: var(--text-dim);
  line-height: 1.5;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--border);
}
.feature-bullets li:last-child { border-bottom: none; padding-bottom: 0; }
.feature-bullets li::before {
  content: counter(b, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-top: 4px;
}
.feature-bullets { counter-reset: b; }
.feature-bullets li { counter-increment: b; }

/* --------------------------------------------------
   16 — Pricing tier cards
-------------------------------------------------- */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.tiers-grid.cols-4 {
  grid-template-columns: repeat(2, 1fr);
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.tier-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.tier-card.featured {
  border-color: var(--border-cyan);
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.04) 0%, var(--bg-card) 60%);
}
.tier-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
}

.tier-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.tier-price {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tier-price .amount {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.tier-price .amount-suffix {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-weight: 400;
  margin-left: 0.4rem;
}
.tier-price .care {
  font-size: 0.875rem;
  color: var(--accent-light);
  font-family: var(--font-mono);
}

.tier-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tier-divider {
  height: 1px;
  background: var(--border);
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  flex: 1;
}
.tier-features li {
  display: flex;
  gap: 0.625rem;
  line-height: 1.5;
}
.tier-features li::before {
  content: "✓";
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1px;
}

.tier-card .btn { width: 100%; justify-content: center; margin-top: auto; }

.tier-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* --------------------------------------------------
   17 — Use cases (chatbots page small cards)
-------------------------------------------------- */
.usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.usecase {
  background: var(--bg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.3s var(--ease);
}
.usecase:hover { background: var(--bg-elev); }
.usecase-icon {
  width: 28px; height: 28px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.usecase-icon svg { width: 28px; height: 28px; }
.usecase h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.usecase p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* --------------------------------------------------
   18 — AI Employee role cards
-------------------------------------------------- */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.role-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.role-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.role-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.role-head .role-info { display: flex; flex-direction: column; gap: 0.5rem; }
.role-head h3 {
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.role-head .replaces {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.role-head .price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 140px;
}
.role-head .price-box .amount {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}
.role-head .price-box .label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.role-tasks {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.role-tasks li {
  display: flex;
  gap: 0.625rem;
  line-height: 1.5;
}
.role-tasks li::before {
  content: "→";
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 500;
}

/* --------------------------------------------------
   19 — Pricing tabs
-------------------------------------------------- */
.tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.tabs {
  display: inline-flex;
  align-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 4px;
  border-radius: 12px;
  position: relative;
  gap: 2px;
}
.tab {
  position: relative;
  z-index: 2;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 8px;
  transition: color 0.3s var(--ease);
  background: transparent;
  white-space: nowrap;
}
.tab.active { color: var(--bg); }
.tab:not(.active):hover { color: var(--text); }
.tab-indicator {
  position: absolute;
  top: 4px; left: 4px;
  background: var(--text);
  border-radius: 8px;
  z-index: 1;
  transition: transform 0.4s var(--ease), width 0.4s var(--ease);
  height: calc(100% - 8px);
}

.tab-panel {
  display: none;
  animation: panelIn 0.4s var(--ease);
}
.tab-panel.active { display: block; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-disclaimer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* --------------------------------------------------
   20 — FAQ
-------------------------------------------------- */
.faq {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  text-align: left;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.faq-trigger:hover { color: var(--accent-light); }

.faq-toggle {
  width: 32px; height: 32px;
  border: 1px solid var(--border-bright);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.25s var(--ease);
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-toggle::before { width: 12px; height: 1px; }
.faq-toggle::after { width: 1px; height: 12px; }
.faq-item.open .faq-toggle { border-color: var(--accent); }
.faq-item.open .faq-toggle::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer-inner {
  padding: 0 0 1.75rem 0;
  color: var(--text-dim);
  font-size: 0.9625rem;
  line-height: 1.65;
  max-width: 720px;
}

/* --------------------------------------------------
   21 — Contact form
-------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field input,
.field select,
.field textarea {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 0.9375rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  width: 100%;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-sans);
  line-height: 1.55;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B92A5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(6, 182, 212, 0.03);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-side-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-side-block .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-side-block .value {
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-side-block .value a {
  border-bottom: 1px dotted var(--text-muted);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.contact-side-block .value a:hover {
  color: var(--accent-light);
  border-color: var(--accent-light);
}

.contact-link {
  text-decoration: none;
  color: inherit;
}
.contact-link .value {
  border-bottom: 1px dotted var(--text-muted);
  align-self: flex-start;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-link:hover .value {
  color: var(--accent);
  border-color: var(--accent);
}
.contact-side-block .sub {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.next-steps {
  margin-top: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.next-steps h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.next-steps ol {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  counter-reset: step;
}
.next-steps li {
  display: flex;
  gap: 0.875rem;
  align-items: baseline;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.5;
  counter-increment: step;
}
.next-steps li::before {
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  min-width: 22px;
}

/* --------------------------------------------------
   22 — Footer
-------------------------------------------------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.footer-col a,
.footer-col p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.55;
  transition: color 0.25s var(--ease);
}
.footer-col a:hover { color: var(--text); }
.footer-tagline {
  max-width: 320px;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* --------------------------------------------------
   23 — Scroll-triggered fade-up
-------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* --------------------------------------------------
   24 — Responsive
-------------------------------------------------- */
@media (max-width: 1100px) {
  .section-header {
    grid-template-columns: 220px 1fr;
    gap: 3rem;
  }
}

@media (max-width: 960px) {
  .grid-bordered.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .why-card.span-7,
  .why-card.span-5 { grid-column: span 6; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .usecases { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .tiers-grid.cols-4 { grid-template-columns: 1fr; max-width: 520px; }
  .roles-grid { grid-template-columns: 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:nth-child(4) { grid-column: 1 / -1; border-top: 1px solid var(--border); padding-top: 2rem; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-actions .btn-primary,
  .nav-actions .lang-switch { display: none; }
  .menu-toggle { display: inline-flex; }
  .section-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .hero { padding-top: 8rem; padding-bottom: 4rem; min-height: auto; }
  .page-hero { padding-top: 9rem; padding-bottom: 3.5rem; }
  .grid-bordered.cols-3,
  .grid-bordered.cols-2,
  .why-grid,
  .usecases { grid-template-columns: 1fr; }
  .why-card.span-7,
  .why-card.span-5 { grid-column: 1 / -1; }
  .timeline { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; }
  .footer-col:nth-child(4) { border-top: none; padding-top: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .service-card { padding: 1.75rem 1.5rem; min-height: 0; }
  .why-card { padding: 1.75rem 1.5rem; }
  .tier-card { padding: 1.75rem; }
  .role-head { grid-template-columns: 1fr; }
  .role-head .price-box { align-items: flex-start; }
  .contact-form { padding: 1.75rem; }
  .tabs { width: 100%; flex-direction: column; gap: 4px; padding: 4px; }
  .tab { width: 100%; text-align: center; }
  .tab.active { background: var(--text); color: var(--bg); }
  .tab-indicator { display: none; }
}

@media (max-width: 480px) {
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta-item { padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
  .hero-meta-item:last-child { border-bottom: none; }
  .hero-meta { background: transparent; gap: 0; padding: 0; border: none; }
  .nav-actions .btn { padding: 0.625rem 0.875rem; font-size: 0.85rem; }
}

/* --------------------------------------------------
   26 — Logo strip / marquee
-------------------------------------------------- */
.logo-strip {
  background: var(--bg-elev);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logo-strip-eyebrow {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 0; /* gaps come from item padding */
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 3rem;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.marquee:hover .marquee-item { color: var(--text-dim); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.logo-strip-note {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  opacity: 0.7;
}

/* --------------------------------------------------
   27 — Pull quote
-------------------------------------------------- */
.pull-quote {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg);
}
.pull-quote-inner {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.pull-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.875rem, 4.2vw, 3.25rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text);
}
.pull-quote-text::before { content: "“"; color: var(--accent); margin-right: 0.1em; }
.pull-quote-text::after  { content: "”"; color: var(--accent); margin-left: 0.05em; }
.pull-quote-attr {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --------------------------------------------------
   28 — Why-card icon
-------------------------------------------------- */
.why-card-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.why-card-icon svg { width: 18px; height: 18px; }

/* --------------------------------------------------
   29 — Stats dashboard (large stat cards)
-------------------------------------------------- */
.stats-dash {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.dash-stat {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s var(--ease);
}
.dash-stat:hover { border-color: var(--border-bright); }
.dash-stat-cap {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.dash-stat-num {
  font-family: var(--font-mono);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.dash-stat-label {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .stats-dash { grid-template-columns: 1fr; }
}

/* --------------------------------------------------
   30 — Browser mock + proof block
-------------------------------------------------- */
.proof-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.browser-mock {
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  background: var(--bg-elev);
  height: 320px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.browser-bar {
  height: 32px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 0.875rem;
  flex-shrink: 0;
}
.browser-bar .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.45;
}
.browser-bar .dot:nth-child(1) { background: #FF5F57; opacity: 0.8; }
.browser-bar .dot:nth-child(2) { background: #FEBC2E; opacity: 0.8; }
.browser-bar .dot:nth-child(3) { background: #28C840; opacity: 0.8; }
.browser-canvas {
  flex: 1;
  position: relative;
  background: linear-gradient(180deg, #0E1626 0%, #0A0E18 100%);
  padding: 1.75rem;
  overflow: hidden;
}
.browser-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}
.canvas-eyebrow {
  position: relative;
  width: 60px; height: 6px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.canvas-headline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.canvas-headline span {
  height: 14px;
  background: rgba(236, 238, 243, 0.85);
  border-radius: 3px;
}
.canvas-headline span:nth-child(1) { width: 70%; }
.canvas-headline span:nth-child(2) { width: 50%; font-style: italic; background: rgba(139, 146, 165, 0.6); }
.canvas-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.canvas-body span {
  height: 7px;
  background: rgba(139, 146, 165, 0.35);
  border-radius: 2px;
}
.canvas-body span:nth-child(1) { width: 90%; }
.canvas-body span:nth-child(2) { width: 80%; }
.canvas-body span:nth-child(3) { width: 60%; }
.canvas-cta {
  position: relative;
  width: 110px; height: 32px;
  background: var(--accent);
  border-radius: 6px;
}
.proof-text {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 480px;
}
.proof-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.proof-chips .dot {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
@media (max-width: 880px) {
  .proof-block { grid-template-columns: 1fr; gap: 2rem; }
  .browser-mock { height: 260px; }
}

/* --------------------------------------------------
   31 — Numbered feature block indicator
-------------------------------------------------- */
.feature-block.has-num {
  grid-template-columns: 80px 1fr 1fr;
  gap: 2.5rem;
}
.feature-num {
  width: 80px; height: 80px;
  background: var(--bg-elev);
  border: 1px solid var(--border-cyan);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.feature-num .num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.feature-num .label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 960px) {
  .feature-block.has-num { grid-template-columns: 80px 1fr; }
  .feature-block.has-num .feature-bullets { grid-column: 2 / 3; }
}
@media (max-width: 720px) {
  .feature-block.has-num { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-block.has-num .feature-num { width: 64px; height: 64px; }
  .feature-block.has-num .feature-num .num { font-size: 1.25rem; }
}

/* --------------------------------------------------
   32 — Chat transcript comparison
-------------------------------------------------- */
.chat-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 920px;
  margin: 0 auto;
}
.chat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chat-card.bad { border-color: rgba(244, 63, 94, 0.25); }
.chat-card.good { border-color: var(--border-cyan); }
.chat-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  align-self: flex-start;
}
.chat-label .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.chat-card.good .chat-label .dot { background: #28C840; box-shadow: 0 0 8px rgba(40, 200, 64, 0.6); }
.chat-card.bad  .chat-label .dot { background: #F43F5E; box-shadow: 0 0 8px rgba(244, 63, 94, 0.5); }
.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.bubble {
  padding: 0.625rem 0.875rem;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.45;
  max-width: 88%;
  word-wrap: break-word;
  border: 1px solid var(--border);
}
.bubble.user {
  align-self: flex-end;
  background: var(--bg-elev);
  border-color: var(--border-bright);
  color: var(--text);
  border-bottom-right-radius: 4px;
}
.bubble.bot {
  align-self: flex-start;
  background: rgba(6, 182, 212, 0.06);
  border-color: var(--border-cyan);
  color: var(--text-dim);
  border-bottom-left-radius: 4px;
}
.chat-card.bad .bubble.bot {
  background: rgba(244, 63, 94, 0.04);
  border-color: rgba(244, 63, 94, 0.25);
}
.chat-caption {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 880px) {
  .chat-compare { grid-template-columns: 1fr; }
}

/* --------------------------------------------------
   33 — Use-case scenario card
-------------------------------------------------- */
.usecase.scenario {
  gap: 1.125rem;
  padding: 2rem 1.75rem;
}
.scenario-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.scenario-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1875rem;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.005em;
}
.scenario-resolve {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-top: auto;
}
.scenario-resolve::before {
  content: "→";
  color: var(--accent);
  font-weight: 500;
}

/* --------------------------------------------------
   34 — Salary comparison bars
-------------------------------------------------- */
.salary-bars {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.salary-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: center;
}
.salary-role {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.salary-role .name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.salary-role .meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.salary-bar-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.salary-bar-row {
  display: grid;
  grid-template-columns: 60px 1fr 90px;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.salary-bar-row .tag { color: var(--text-muted); }
.salary-bar {
  height: 14px;
  border-radius: 3px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.salary-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--w, 0%);
  border-radius: 3px;
  transition: width 1.2s var(--ease);
  transform-origin: left center;
}
.salary-bar.human::after { background: var(--text-muted); opacity: 0.5; }
.salary-bar.nimbus::after { background: var(--accent); }
.salary-row.fade-up:not(.in) .salary-bar::after { width: 0 !important; }
.salary-bar-row .amount {
  text-align: right;
  color: var(--text-dim);
  font-size: 0.75rem;
}
.salary-caption {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.55;
}
@media (max-width: 720px) {
  .salary-row { grid-template-columns: 1fr; gap: 0.875rem; }
  .salary-bar-row { grid-template-columns: 50px 1fr 80px; gap: 0.75rem; }
}

/* --------------------------------------------------
   35 — Role mini-stats
-------------------------------------------------- */
.role-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.25rem;
  margin-top: auto;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.role-stats span strong {
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------
   36 — Monthly / Annual toggle
-------------------------------------------------- */
.price-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.toggle-pill {
  display: inline-flex;
  align-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 4px;
  border-radius: 999px;
  position: relative;
  gap: 2px;
}
.toggle-pill button {
  position: relative;
  z-index: 2;
  padding: 0.5rem 1.125rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 999px;
  transition: color 0.3s var(--ease);
  white-space: nowrap;
  background: transparent;
}
.toggle-pill button.active { color: var(--bg); }
.toggle-pill button:not(.active):hover { color: var(--text); }
.toggle-pill .toggle-indicator {
  position: absolute;
  top: 4px; left: 4px;
  background: var(--text);
  border-radius: 999px;
  z-index: 1;
  transition: transform 0.35s var(--ease), width 0.35s var(--ease);
  height: calc(100% - 8px);
}
.toggle-save {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-left: 0.5rem;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border: 1px solid var(--border-cyan);
  border-radius: 999px;
  vertical-align: 1px;
}
.toggle-pill button.active .toggle-save {
  color: var(--bg);
  border-color: var(--bg);
}

/* --------------------------------------------------
   37 — Vertical animated timeline (contact)
-------------------------------------------------- */
.next-timeline {
  position: relative;
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.next-timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--border-bright);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.4s var(--ease) 0.15s;
}
.next-timeline.in::before { transform: scaleY(1); }
.next-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.next-step::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 22px; height: 22px;
  border: 1px solid var(--border-bright);
  background: var(--bg);
  border-radius: 50%;
  display: block;
  transition: border-color 0.4s var(--ease);
}
.next-step::after {
  content: "";
  position: absolute;
  left: calc(-2.5rem + 7px);
  top: 11px;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.next-timeline.in .next-step::before { border-color: var(--accent); }
.next-timeline.in .next-step::after { opacity: 1; transform: scale(1); }
.next-timeline.in .next-step:nth-child(2)::after { transition-delay: 0.45s; }
.next-timeline.in .next-step:nth-child(3)::after { transition-delay: 0.7s; }
.next-timeline.in .next-step:nth-child(4)::after { transition-delay: 0.95s; }
.next-timeline.in .next-step:nth-child(5)::after { transition-delay: 1.2s; }
.next-step .num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.next-step .body {
  color: var(--text-dim);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* --------------------------------------------------
   38 — Tbilisi map placeholder
-------------------------------------------------- */
.tbilisi-map {
  position: relative;
  width: 100%;
  height: 280px;
  background: var(--bg-elev);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2.5rem;
}
.tbilisi-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-pin {
  position: absolute;
  top: 48%;
  left: 52%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.map-pin .pulse {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.25);
}
.map-pin .pulse::before,
.map-pin .pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: pulseRing 2.4s ease-out infinite;
}
.map-pin .pulse::after { animation-delay: 1.2s; }
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(4.5); opacity: 0; }
}
.map-pin .label {
  position: absolute;
  left: 22px;
  top: 1px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(8, 9, 15, 0.85);
  padding: 4px 8px;
  border: 1px solid var(--border-bright);
  border-radius: 4px;
  white-space: nowrap;
}
.map-caption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* --------------------------------------------------
   39 — Section divider mark (small editorial line)
-------------------------------------------------- */
.section-mark {
  display: flex;
  justify-content: center;
  padding: 4rem 0;
}
.section-mark::before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--border-bright);
}

/* --------------------------------------------------
   40 — Split hero (text left / visual right)
-------------------------------------------------- */
.hero-split { padding-top: 8rem; padding-bottom: 4rem; min-height: auto; }
.hero-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-text .hero-title {
  max-width: 560px;
}
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: stretch;
  min-height: 0;
}
.hero-visual-caption {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.hero-meta-inline {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.7;
}
.hero-meta-inline strong {
  color: var(--text-dim);
  font-weight: 500;
}
@media (max-width: 960px) {
  .hero-split-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: 2; }
}
@media (max-width: 720px) {
  .hero-split { padding-top: 7rem; padding-bottom: 2.5rem; }
}

/* --------------------------------------------------
   41 — Product stack (home hero — 3 layered cards)
-------------------------------------------------- */
.product-stack {
  position: relative;
  width: 100%;
  height: 480px;
  perspective: 1200px;
}
.product-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.55), 0 8px 16px -8px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
}
.product-card .browser-bar {
  height: 28px;
  flex-shrink: 0;
  padding: 0 0.75rem;
}
.product-card .browser-bar .dot {
  width: 8px; height: 8px;
}
.product-card .browser-canvas {
  flex: 1;
  padding: 1rem;
  background: linear-gradient(160deg, #0E1626 0%, #0A0E18 100%);
  position: relative;
  overflow: hidden;
}

/* Card 1 — back: a "website" preview */
.pc-back {
  width: 78%;
  height: 320px;
  top: 0;
  right: 0;
  z-index: 1;
  transform: rotate(-2deg);
  animation: floatA 6s ease-in-out infinite;
}
.pc-back .browser-canvas {
  background: linear-gradient(180deg, #0E2236 0%, #08111B 100%);
}
.pc-back .pc-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.pc-back .pc-logo { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text); letter-spacing: 0.18em; }
.pc-back .pc-links { display: flex; gap: 8px; }
.pc-back .pc-links span {
  width: 32px; height: 5px; background: rgba(139,146,165,0.35); border-radius: 2px;
}
.pc-back .pc-eyebrow {
  width: 50px; height: 5px; background: var(--accent); border-radius: 2px; margin-bottom: 10px;
}
.pc-back .pc-h1 {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px;
}
.pc-back .pc-h1 span {
  height: 12px; background: rgba(236,238,243,0.85); border-radius: 3px;
}
.pc-back .pc-h1 span:nth-child(1) { width: 80%; }
.pc-back .pc-h1 span:nth-child(2) { width: 55%; background: rgba(139,146,165,0.5); }
.pc-back .pc-image {
  height: 90px; background:
    radial-gradient(circle at 70% 30%, rgba(6,182,212,0.18) 0%, transparent 60%),
    linear-gradient(135deg, #11243A 0%, #0A1626 100%);
  border-radius: 6px; margin-bottom: 12px;
  border: 1px solid rgba(36,42,61,0.6);
}
.pc-back .pc-ctas { display: flex; gap: 6px; }
.pc-back .pc-ctas span {
  height: 22px; border-radius: 4px;
}
.pc-back .pc-ctas .b1 { width: 80px; background: var(--accent); }
.pc-back .pc-ctas .b2 { width: 60px; background: transparent; border: 1px solid var(--border-bright); }

/* Card 2 — middle: a chat conversation */
.pc-mid {
  width: 65%;
  height: 240px;
  top: 130px;
  left: 0;
  z-index: 2;
  transform: rotate(1.5deg);
  animation: floatB 6.5s ease-in-out infinite;
  animation-delay: 0.3s;
}
.pc-mid .browser-canvas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-end;
  padding: 0.875rem;
}
.pc-mid .chat-bub {
  font-family: var(--font-sans);
  font-size: 9px;
  line-height: 1.35;
  padding: 6px 9px;
  border-radius: 10px;
  border: 1px solid var(--border);
  max-width: 78%;
  color: var(--text-dim);
}
.pc-mid .chat-bub.user {
  background: var(--bg-elev);
  border-color: var(--border-bright);
  color: var(--text);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.pc-mid .chat-bub.bot {
  background: rgba(6,182,212,0.06);
  border-color: var(--border-cyan);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

/* Card 3 — front: a CRM/dashboard mock */
.pc-front {
  width: 50%;
  height: 200px;
  bottom: 0;
  right: 6%;
  z-index: 3;
  transform: rotate(-1deg);
  animation: floatC 7s ease-in-out infinite;
  animation-delay: 0.6s;
}
.pc-front .pc-dash-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.pc-front .pc-dash-head span:first-child {
  font-family: var(--font-mono); font-size: 9px; color: var(--text); letter-spacing: 0.12em; text-transform: uppercase;
}
.pc-front .pc-dash-head span:last-child {
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(6,182,212,0.18);
}
.pc-front .pc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.pc-front .pc-grid span {
  aspect-ratio: 1;
  background: rgba(36,42,61,0.6);
  border-radius: 3px;
}
.pc-front .pc-grid span.active {
  background: rgba(6,182,212,0.55);
  box-shadow: 0 0 8px rgba(6,182,212,0.4);
}

@keyframes floatA {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-5px) rotate(-2deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0) rotate(1.5deg); }
  50%     { transform: translateY(-7px) rotate(1.5deg); }
}
@keyframes floatC {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-4px) rotate(-1deg); }
}
@media (max-width: 720px) {
  .product-stack { height: 380px; }
  .pc-back  { width: 88%; height: 240px; }
  .pc-mid   { width: 70%; height: 180px; top: 90px; }
  .pc-front { width: 56%; height: 150px; right: 4%; }
}

/* --------------------------------------------------
   42 — Browser frame hero (websites page)
-------------------------------------------------- */
.browser-frame-hero {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 70px -20px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
}
.browser-frame-hero .browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 0.875rem;
  height: 36px;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.browser-frame-hero .browser-bar .dot {
  width: 10px; height: 10px; border-radius: 50%; opacity: 0.7;
}
.browser-frame-hero .browser-bar .dot:nth-child(1) { background: #FF5F57; }
.browser-frame-hero .browser-bar .dot:nth-child(2) { background: #FEBC2E; }
.browser-frame-hero .browser-bar .dot:nth-child(3) { background: #28C840; }
.url-pill {
  margin-left: auto;
  margin-right: auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.browser-frame-hero .canvas {
  background: linear-gradient(180deg, #0E2236 0%, #08111B 100%);
  padding: 1.75rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.browser-frame-hero .canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 22%, rgba(6,182,212,0.16) 0%, transparent 55%);
  pointer-events: none;
}
.canvas-mock-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.canvas-mock-nav .mlogo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.14em;
}
.canvas-mock-nav .mlinks { display: flex; gap: 12px; }
.canvas-mock-nav .mlinks span {
  width: 38px; height: 6px;
  background: rgba(139,146,165,0.45);
  border-radius: 2px;
}
.canvas-mock-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
  align-items: center;
}
.canvas-mock-hero .meyebrow {
  width: 60px; height: 6px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 12px;
}
.canvas-mock-hero h3.mhead {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.625rem;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.canvas-mock-hero .mbody {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.canvas-mock-hero .mbody span {
  height: 6px;
  background: rgba(139,146,165,0.4);
  border-radius: 2px;
}
.canvas-mock-hero .mbody span:nth-child(1) { width: 92%; }
.canvas-mock-hero .mbody span:nth-child(2) { width: 78%; }
.canvas-mock-hero .mbody span:nth-child(3) { width: 60%; }
.canvas-mock-hero .mctas { display: flex; gap: 6px; }
.canvas-mock-hero .mctas .mbtn {
  height: 26px; border-radius: 5px;
}
.canvas-mock-hero .mctas .b1 { width: 96px; background: var(--accent); }
.canvas-mock-hero .mctas .b2 { width: 76px; border: 1px solid var(--border-bright); }
.canvas-mock-hero .mimage {
  height: 160px;
  background:
    radial-gradient(circle at 70% 30%, rgba(6,182,212,0.22) 0%, transparent 55%),
    linear-gradient(135deg, #11253B 0%, #0A1828 100%);
  border-radius: 8px;
  border: 1px solid rgba(36,42,61,0.7);
  position: relative;
  overflow: hidden;
}
.canvas-mock-hero .mimage::before {
  content: "";
  position: absolute;
  inset: 28% 18%;
  border: 1.5px solid rgba(6,182,212,0.4);
  border-radius: 4px;
}
@media (max-width: 720px) {
  .browser-frame-hero .canvas { padding: 1.25rem; min-height: 280px; }
  .canvas-mock-hero { grid-template-columns: 1fr; }
  .canvas-mock-hero .mimage { height: 100px; }
}

/* --------------------------------------------------
   43 — Chat hero (chatbots page hero — chat mock)
-------------------------------------------------- */
.chat-hero {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  box-shadow: 0 40px 70px -20px rgba(0,0,0,0.7);
  position: relative;
}
.chat-hero .chat-bub {
  font-size: 0.9375rem;
  line-height: 1.45;
  padding: 0.625rem 0.875rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  max-width: 86%;
}
.chat-hero .chat-bub.user {
  align-self: flex-end;
  background: var(--bg-elev);
  border-color: var(--border-bright);
  color: var(--text);
  border-bottom-right-radius: 4px;
}
.chat-hero .chat-bub.bot {
  align-self: flex-start;
  background: rgba(6,182,212,0.06);
  border-color: var(--border-cyan);
  color: var(--text-dim);
  border-bottom-left-radius: 4px;
}
.chat-hero .typing {
  display: inline-flex;
  gap: 4px;
  align-self: flex-start;
  padding: 0.5rem 0.75rem;
  background: rgba(6,182,212,0.06);
  border: 1px solid var(--border-cyan);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}
.chat-hero .typing span {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: typeBounce 1.2s ease-in-out infinite;
}
.chat-hero .typing span:nth-child(2) { animation-delay: 0.18s; }
.chat-hero .typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typeBounce {
  0%,80%,100% { transform: translateY(0); opacity: 0.5; }
  40%         { transform: translateY(-4px); opacity: 1; }
}

/* --------------------------------------------------
   44 — Salary compare cols (AI Employees hero)
-------------------------------------------------- */
.sal-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 70px -20px rgba(0,0,0,0.7);
}
.sal-col {
  background: var(--bg-card);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sal-col.human { background: linear-gradient(180deg, rgba(244,63,94,0.06) 0%, var(--bg-card) 70%); }
.sal-col.ai    { background: linear-gradient(180deg, rgba(6,182,212,0.06) 0%, var(--bg-card) 70%); }
.sal-col-head {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.sal-col.human .sal-col-head { color: #F87171; }
.sal-col.ai    .sal-col-head { color: var(--accent); }
.sal-col-head .dot { width: 8px; height: 8px; border-radius: 50%; }
.sal-col.human .sal-col-head .dot { background: #F87171; box-shadow: 0 0 8px rgba(248,113,113,0.5); }
.sal-col.ai    .sal-col-head .dot { background: var(--accent); box-shadow: 0 0 8px rgba(6,182,212,0.5); }
.sal-price {
  font-family: var(--font-mono);
  font-size: 1.625rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}
.sal-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.sal-bar > span {
  display: block;
  height: 100%;
  border-radius: 3px;
}
.sal-col.human .sal-bar > span { width: 100%; background: #F87171; opacity: 0.55; }
.sal-col.ai    .sal-bar > span { width: 38%;  background: var(--accent); }
.sal-attrs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-dim);
}
.sal-attrs li {
  display: flex; gap: 0.5rem; align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.sal-attrs li::before {
  content: "·";
  color: var(--text-muted);
}
.sal-col.ai .sal-attrs li::before { color: var(--accent); }
@media (max-width: 720px) {
  .sal-cols { grid-template-columns: 1fr; }
}

/* --------------------------------------------------
   45 — Horizontal timeline (home — How it works)
-------------------------------------------------- */
.timeline-h {
  padding: 2.5rem 0 1rem;
}
.th-labels, .th-contents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.th-labels span {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.th-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 1.25rem 0 1.5rem;
  align-items: center;
  height: 24px;
}
.th-line {
  position: absolute;
  top: 50%;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border-bright);
  transform: translateY(-50%);
  transform-origin: left center;
}
.th-track .th-node {
  justify-self: center;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 5px var(--bg);
}
.th-track .th-node::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(6,182,212,0.4);
}
.th-contents > div {
  text-align: center;
  padding: 0 1rem;
}
.th-contents h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.th-contents p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 220px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .th-labels, .th-contents, .th-track { grid-template-columns: 1fr; }
  .th-line { display: none; }
  .th-track { gap: 1rem; height: auto; }
  .th-track .th-node { margin: 0 auto; }
  .th-labels span, .th-contents > div { padding: 0; }
  .th-labels span { margin-top: 1rem; }
}

/* --------------------------------------------------
   46 — Service-card lite (post-cut version)
-------------------------------------------------- */
.service-card.lite {
  min-height: 280px;
  gap: 1rem;
}
.service-card.lite .tag {
  font-size: 1.0625rem;
  color: var(--text-dim);
  line-height: 1.45;
  flex: 1;
}

/* --------------------------------------------------
   47 — Why-card lite (one-line bodies)
-------------------------------------------------- */
.why-card .punch {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 480px;
}

/* --------------------------------------------------
   48 — Stats row label-tight
-------------------------------------------------- */
.stat-label.tight {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --------------------------------------------------
   25 — Reduced motion
-------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
  .hero-eyebrow,
  .hero-title,
  .hero-subtitle,
  .hero-ctas,
  .hero-meta { opacity: 1; transform: none; }
  .marquee-track { animation: none !important; }
  .map-pin .pulse::before,
  .map-pin .pulse::after { animation: none !important; opacity: 0; }
  .salary-row .salary-bar::after { transition: none !important; }
  .pc-back, .pc-mid, .pc-front { animation: none !important; }
  .chat-hero .typing span { animation: none !important; opacity: 0.7; }
}

/* ===================== GEORGIAN (KA) TYPOGRAPHY ===================== */
:lang(ka) body,
html[lang="ka"] body {
  font-family: 'FiraGO', 'Noto Sans Georgian', system-ui, sans-serif;
}

:lang(ka) .mono,
:lang(ka) [class*="eyebrow"],
html[lang="ka"] .mono,
html[lang="ka"] [class*="eyebrow"] {
  font-family: 'FiraGO', monospace;
  font-weight: 500;
}

:lang(ka) em,
:lang(ka) .italic,
:lang(ka) [class*="accent"],
html[lang="ka"] em,
html[lang="ka"] .italic,
html[lang="ka"] [class*="accent"] {
  font-family: inherit;
  font-style: normal;
  color: var(--text-dim);
}

:lang(ka) .hero-title,
html[lang="ka"] .hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
}

:lang(ka) .pull-quote,
:lang(ka) .pull-quote *,
html[lang="ka"] .pull-quote,
html[lang="ka"] .pull-quote * {
  font-family: 'FiraGO', 'Noto Sans Georgian', system-ui, sans-serif;
  font-style: normal;
  font-weight: 500;
}

:lang(ka) blockquote,
:lang(ka) blockquote *,
html[lang="ka"] blockquote,
html[lang="ka"] blockquote * {
  font-family: 'FiraGO', 'Noto Sans Georgian', system-ui, sans-serif;
  font-style: normal;
}
