/* ── Variables ── */
:root {
  --navy:    #080d1a;
  --navy2:   #0d1530;
  --navy3:   #111c3a;
  --blue:    #3b82f6;
  --blue2:   #2563eb;
  --cyan:    #06b6d4;
  --white:   #ffffff;
  --gray:    #94a3b8;
  --gray2:   #64748b;
  --border:  rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.04);
  --radius:  16px;
  --font:    'Plus Jakarta Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--navy); color: var(--white); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Utils ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Reveal animations ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 12px; font-family: var(--font);
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: none; transition: all 0.2s; white-space: nowrap;
}
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,130,246,0.35); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--ghost { background: transparent; color: var(--gray); }
.btn--ghost:hover { color: var(--white); }
.btn--lg { padding: 16px 32px; font-size: 16px; border-radius: 14px; }
.btn--sm { padding: 8px 18px; font-size: 13px; }
.btn--full { width: 100%; }

/* ── Section ── */
.section { padding: 100px 0; }
.section__header { text-align: center; margin-bottom: 64px; }
.section__tag {
  display: inline-block; padding: 6px 16px; border-radius: 20px;
  background: rgba(59,130,246,0.12); color: var(--blue);
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 16px; text-transform: uppercase;
}
.section__header h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 12px; }
.section__header p { color: var(--gray); font-size: 17px; }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.header.scrolled {
  background: rgba(8,13,26,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; gap: 32px; }
.logo { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }
.logo:hover { opacity: 0.8; }
.logo__lab { color: #2563eb; font-weight: 600; }
.logo__tld { color: #6b7280; font-size: 0.72em; font-weight: 500; letter-spacing: 0; vertical-align: middle; }
.nav { display: flex; gap: 24px; }
.nav a { color: var(--gray); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: var(--white); }
.header__cta { margin-left: auto; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ── Messenger tabs (form) ── */
.messenger-tabs { display: flex; gap: 8px; }
.messenger-tab { cursor: pointer; }
.messenger-tab input[type="radio"] { display: none; }
.messenger-tab span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 14px; font-weight: 500; color: var(--gray);
  transition: all 0.2s; cursor: pointer;
}
.messenger-tab input[type="radio"]:checked + span {
  border-color: var(--blue); color: var(--white);
  background: rgba(59,130,246,0.15);
}
.messenger-tab span:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(8,13,26,0.97); border-top: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 14px 24px; flex-wrap: wrap;
}
.cookie-banner__text { color: var(--gray); font-size: 13px; }
.cookie-banner__text a { color: var(--blue); }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__glow {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.15;
}
.hero__glow--1 { width: 600px; height: 600px; background: var(--blue); top: -200px; right: -100px; }
.hero__glow--2 { width: 400px; height: 400px; background: var(--cyan); bottom: -100px; left: -100px; }

.hero__inner {
  position: relative;
  display: flex; align-items: center; gap: 60px;
  width: 100%;
}
.hero__content { flex: 1; min-width: 0; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 20px;
  background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25);
  font-size: 13px; font-weight: 600; color: var(--blue);
  margin-bottom: 24px;
}
.hero__title { font-size: clamp(32px, 4.5vw, 64px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.hero__sub { font-size: clamp(15px, 1.6vw, 18px); color: var(--gray); line-height: 1.6; margin-bottom: 36px; max-width: 520px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-size: 24px; font-weight: 800; }
.stat__label { font-size: 12px; color: var(--gray); }
.stat__sep { width: 1px; height: 36px; background: var(--border); }

/* ── Hero Visual / Divine Animation ── */
.hero__visual {
  flex-shrink: 0;
  width: 460px; height: 460px;
  position: relative;
}

/* Pulsing rings */
@keyframes hv-pulse {
  0%   { transform: translate(-50%,-50%) scale(0.7); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(1.6); opacity: 0; }
}
.hv-pulse {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; border: 1px solid rgba(59,130,246,0.4);
  animation: hv-pulse 3.6s ease-out infinite;
}
.hv-pulse--1 { width: 280px; height: 280px; animation-delay: 0s; }
.hv-pulse--2 { width: 280px; height: 280px; animation-delay: 1.2s; }
.hv-pulse--3 { width: 280px; height: 280px; animation-delay: 2.4s; }

/* Central screen */
.hv-core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 240px; height: 190px;
}
.hv-core__glow {
  position: absolute; inset: -30px;
  background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, transparent 70%);
  border-radius: 50%; animation: hv-glow-pulse 3s ease-in-out infinite;
}
@keyframes hv-glow-pulse { 0%,100% { opacity: 0.7; } 50% { opacity: 1; } }

/* Divine rays */
.hv-rays { position: absolute; inset: -60px; pointer-events: none; }
.hv-ray {
  position: absolute; top: 50%; left: 50%;
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, rgba(59,130,246,0.5), transparent);
  transform-origin: top center;
  transform: rotate(var(--r)) translateX(-50%);
  animation: hv-ray-pulse 4s ease-in-out infinite;
}
@keyframes hv-ray-pulse {
  0%,100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}
.hv-ray:nth-child(2) { animation-delay: .5s; }
.hv-ray:nth-child(3) { animation-delay: 1s; }
.hv-ray:nth-child(4) { animation-delay: 1.5s; }
.hv-ray:nth-child(5) { animation-delay: 2s; }
.hv-ray:nth-child(6) { animation-delay: 2.5s; }
.hv-ray:nth-child(7) { animation-delay: 3s; }
.hv-ray:nth-child(8) { animation-delay: 3.5s; }

/* Browser screen mockup */
.hv-screen {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #0d1530, #111c3a);
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(59,130,246,0.2), 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
}
.hv-s-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hv-s-dot { width: 7px; height: 7px; border-radius: 50%; }
.hv-s-dot:nth-child(1) { background: #ff5f57; }
.hv-s-dot:nth-child(2) { background: #febc2e; }
.hv-s-dot:nth-child(3) { background: #28c840; }
.hv-s-url {
  flex: 1; height: 10px; border-radius: 4px; margin-left: 8px;
  background: rgba(255,255,255,0.07);
  animation: hv-url-type 4s steps(20) infinite;
}
@keyframes hv-url-type { 0% { width: 20%; } 50% { width: 80%; } 100% { width: 20%; } }

.hv-s-hero {
  margin: 10px; height: 38px; border-radius: 5px;
  background: linear-gradient(90deg, rgba(59,130,246,0.4), rgba(6,182,212,0.3));
  animation: hv-shimmer 2.5s ease-in-out infinite;
}
@keyframes hv-shimmer {
  0%,100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.hv-s-cards { display: flex; gap: 5px; margin: 0 10px; }
.hv-s-card {
  flex: 1; height: 30px; border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(59,130,246,0.15);
}
.hv-s-card:nth-child(2) { animation: hv-shimmer 2s ease-in-out .5s infinite; }
.hv-s-card:nth-child(3) { animation: hv-shimmer 2s ease-in-out 1s infinite; }

.hv-s-row { display: flex; gap: 5px; margin: 6px 10px; }
.hv-s-block { height: 10px; border-radius: 3px; background: rgba(255,255,255,0.05); flex: 1; }
.hv-s-block--wide { flex: 2; }

.hv-cursor {
  position: absolute; bottom: 14px; right: 16px;
  width: 2px; height: 14px;
  background: var(--blue);
  animation: hv-blink 1s step-end infinite;
}
@keyframes hv-blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* Orbiting feature badges */
.hv-orbit-ring {
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  animation: hv-orbit-slow 24s linear infinite;
}
@keyframes hv-orbit-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hv-badge {
  position: absolute; display: flex; align-items: center; gap: 5px;
  padding: 6px 12px; border-radius: 20px;
  background: rgba(8,13,26,0.9);
  border: 1px solid rgba(59,130,246,0.4);
  font-size: 12px; font-weight: 600; color: var(--white);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(59,130,246,0.2);
  animation: hv-badge-counter 24s linear infinite;
}
@keyframes hv-badge-counter { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.hv-badge--1 { transform: translate(-50%,-50%) rotate(0deg)   translateX(200px); }
.hv-badge--2 { transform: translate(-50%,-50%) rotate(90deg)  translateX(200px); }
.hv-badge--3 { transform: translate(-50%,-50%) rotate(180deg) translateX(200px); }
.hv-badge--4 { transform: translate(-50%,-50%) rotate(270deg) translateX(200px); }

/* Floating sparks */
@keyframes hv-spark-float {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.8; }
  50%      { transform: translateY(-12px) scale(1.3); opacity: 1; }
}
.hv-spark {
  position: absolute;
  left: var(--x); top: var(--y);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue), var(--cyan));
  box-shadow: 0 0 8px 2px rgba(59,130,246,0.6);
  animation: hv-spark-float 3s ease-in-out var(--d, 0s) infinite;
}

/* ── Problem ── */
.problem { background: var(--navy2); }
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.problem-card {
  padding: 28px; border-radius: var(--radius);
  background: var(--card-bg); border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.problem-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-4px); }
.problem-card__icon { font-size: 32px; margin-bottom: 16px; }
.problem-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.problem-card p { color: var(--gray); font-size: 14px; line-height: 1.6; }

/* ── Cases ── */
.cases__list { display: flex; flex-direction: column; gap: 40px; }

.case-item {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
}
.case-item__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 12px;
}
.case-item__meta { display: flex; align-items: center; gap: 12px; }
.case-item__niche {
  padding: 3px 12px; border-radius: 20px;
  background: rgba(59,130,246,0.12); color: var(--blue);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.case-item__name { font-size: 17px; font-weight: 700; }
.case-item__stats { display: flex; gap: 20px; }
.case-stat { display: flex; flex-direction: column; align-items: flex-end; }
.case-stat__val { font-size: 16px; font-weight: 800; color: #4ade80; }
.case-stat__key { font-size: 10px; color: var(--gray2); text-transform: uppercase; }

/* Preview grid */
.case-item__previews {
  display: grid; grid-template-columns: 1fr 48px 1fr;
  align-items: stretch;
}
.case-preview { position: relative; overflow: hidden; cursor: zoom-in; }
.case-preview__label {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  padding: 3px 10px; border-radius: 5px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px;
}
.case-preview__label--before { background: rgba(220,38,38,0.9); color: #fff; }
.case-preview__label--after  { background: rgba(22,163,74,0.9);  color: #fff; }
.case-preview__hint {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0); transition: background 0.2s; opacity: 0;
}
.case-preview:hover .case-preview__hint { background: rgba(0,0,0,0.45); opacity: 1; }
.case-preview__hint span {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 18px; border-radius: 20px; font-size: 13px; font-weight: 600; color: #fff;
}

/* Browser frame */
.browser { background: #141726; width: 100%; aspect-ratio: 16/9; overflow: hidden; display: flex; flex-direction: column; }
.browser__bar {
  height: 26px; background: #0f1220; display: flex; align-items: center;
  padding: 0 10px; gap: 6px; flex-shrink: 0;
}
.browser__dots { display: flex; gap: 4px; }
.browser__dot { width: 8px; height: 8px; border-radius: 50%; }
.browser__dot:nth-child(1) { background: #ff5f57; }
.browser__dot:nth-child(2) { background: #febc2e; }
.browser__dot:nth-child(3) { background: #28c840; }
.browser__url {
  flex: 1; height: 14px; background: rgba(255,255,255,0.06); border-radius: 3px;
  margin: 0 6px; font-size: 9px; color: var(--gray2); padding: 0 6px;
  display: flex; align-items: center;
}
.browser__body { flex: 1; overflow: hidden; }

/* OLD site mockup */
.mock-old { background: #c0c0c0; width: 100%; height: 100%; padding: 0; overflow: hidden; font-family: Arial, sans-serif; }
.mock-old__header { background: #003399; color: #ffff00; padding: 5px 8px; font-size: 10px; font-weight: bold; }
.mock-old__nav { display: flex; background: #6699cc; }
.mock-old__nav span { color: #fff; font-size: 8px; padding: 3px 8px; border-right: 1px solid #336699; cursor: pointer; }
.mock-old__body { display: grid; grid-template-columns: 90px 1fr; min-height: 80%; }
.mock-old__sidebar { background: #e0e0e0; border-right: 2px solid #999; padding: 4px; }
.mock-old__link { display: block; font-size: 7px; color: #0000cc; text-decoration: underline; margin-bottom: 4px; }
.mock-old__main { padding: 6px; background: #f5f5f5; }
.mock-old__h1 { font-size: 11px; font-weight: bold; color: #003399; border-bottom: 2px solid #003399; margin-bottom: 4px; padding-bottom: 2px; }
.mock-old__text { font-size: 7px; color: #333; line-height: 1.4; margin-bottom: 4px; }
.mock-old__table { border: 1px solid #999; width: 100%; }
.mock-old__td { border: 1px solid #ccc; padding: 2px 4px; font-size: 7px; background: #fff; }
.mock-old__btn { background: linear-gradient(#ff9900, #cc6600); color: #fff; font-size: 7px; font-weight: bold; padding: 2px 8px; border: 2px outset #ff9900; display: inline-block; margin-top: 4px; }
.mock-old__counter { font-size: 6px; color: #666; text-align: right; padding: 2px; }

/* NEW site mockup */
.mock-new { background: #0a0f1e; width: 100%; height: 100%; padding: 8px; overflow: hidden; }
.mock-new__nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; padding: 0 2px; }
.mock-new__logo { font-size: 9px; font-weight: 800; color: #fff; }
.mock-new__links { display: flex; gap: 8px; }
.mock-new__links span { font-size: 7px; color: #64748b; }
.mock-new__hero {
  background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(6,182,212,0.08));
  border: 1px solid rgba(59,130,246,0.25); border-radius: 6px;
  padding: 8px 10px; margin-bottom: 6px;
}
.mock-new__tag { font-size: 6px; color: #3b82f6; font-weight: 700; text-transform: uppercase; margin-bottom: 3px; }
.mock-new__h1 { font-size: 11px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 3px; }
.mock-new__sub { font-size: 6px; color: #94a3b8; margin-bottom: 5px; }
.mock-new__btn { background: #3b82f6; color: #fff; font-size: 6px; font-weight: 700; padding: 3px 8px; border-radius: 3px; display: inline-block; }
.mock-new__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.mock-new__card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; padding: 5px; }
.mock-new__icon { font-size: 9px; margin-bottom: 2px; }
.mock-new__ctitle { font-size: 7px; font-weight: 700; color: #e2e8f0; margin-bottom: 1px; }
.mock-new__ctext { font-size: 5.5px; color: #475569; line-height: 1.3; }

/* Arrow divider */
.case-item__arrow {
  display: flex; align-items: center; justify-content: center;
  background: rgba(59,130,246,0.06); flex-shrink: 0;
}
.case-item__arrow-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}

.case-item__footer {
  padding: 14px 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.case-item__url { font-size: 12px; color: var(--gray2); }
.case-item__url a { color: var(--blue); }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.95);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px; gap: 16px;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__close {
  position: absolute; top: 20px; right: 24px;
  font-size: 20px; color: #fff; cursor: pointer;
  background: rgba(255,255,255,0.1); border: none;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__content {
  width: 100%; max-width: 960px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.9);
  transform: scale(0.94); transition: transform 0.25s;
}
.lightbox.open .lightbox__content { transform: scale(1); }
.lightbox__label {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 22px; border-radius: 20px; font-size: 13px; color: #fff;
}

@media (max-width: 768px) {
  .case-item__previews { grid-template-columns: 1fr; }
  .case-item__arrow { height: 36px; }
  .case-item__arrow-icon { transform: rotate(90deg); }
  .case-stat { align-items: flex-start; }
}

/* ── Services ── */
.services { background: var(--navy2); }
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.service-card {
  padding: 32px; border-radius: var(--radius);
  background: var(--card-bg); border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.service-card:hover { border-color: rgba(59,130,246,0.4); transform: translateY(-4px); }
.service-card__num {
  font-size: 48px; font-weight: 900; color: rgba(59,130,246,0.1);
  position: absolute; top: 16px; right: 20px; line-height: 1;
}
.service-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.service-card__price {
  display: inline-block; padding: 4px 12px; border-radius: 8px;
  background: rgba(59,130,246,0.12); color: var(--blue);
  font-size: 13px; font-weight: 700;
}

/* ── Why ── */
.why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why__text h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.why__text p { color: var(--gray); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.why__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.why__list li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.check { color: var(--cyan); font-weight: 700; }
.why__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.metric { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.metric__circle {
  width: 96px; height: 96px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800;
  border: 4px solid;
}
.metric__circle--green { border-color: #22c55e; color: #22c55e; }
.metric__label { font-size: 12px; color: var(--gray); font-weight: 600; text-align: center; }
.metric__caption { grid-column: 1/-1; text-align: center; font-size: 12px; color: var(--gray2); padding-top: 8px; }

/* ── Process ── */
.process { background: var(--navy2); }
.process__steps { display: flex; align-items: flex-start; gap: 16px; }
.process__step {
  flex: 1; padding: 32px; border-radius: var(--radius);
  background: var(--card-bg); border: 1px solid var(--border);
}
.process__num {
  font-size: 36px; font-weight: 900;
  color: var(--blue); margin-bottom: 16px; line-height: 1;
}
.process__content h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.process__content p { color: var(--gray); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.process__badge {
  display: inline-block; padding: 4px 12px; border-radius: 8px;
  background: rgba(6,182,212,0.1); color: var(--cyan);
  font-size: 12px; font-weight: 600;
}
.process__arrow { font-size: 24px; color: var(--gray2); padding-top: 48px; flex-shrink: 0; }

/* ── Pricing ── */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing__card {
  padding: 36px; border-radius: var(--radius);
  background: var(--card-bg); border: 1px solid var(--border);
  position: relative;
  transition: transform 0.2s;
}
.pricing__card:hover { transform: translateY(-4px); }
.pricing__card--featured {
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(6,182,212,0.06));
  border-color: rgba(59,130,246,0.4);
  transform: scale(1.03);
}
.pricing__card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; border-radius: 20px;
  background: var(--blue); color: #fff;
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.pricing__name { font-size: 16px; font-weight: 600; color: var(--gray); margin-bottom: 12px; }
.pricing__price { font-size: 40px; font-weight: 800; margin-bottom: 4px; }
.pricing__price span { font-size: 22px; }
.pricing__desc { color: var(--gray); font-size: 13px; margin-bottom: 24px; }
.pricing__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing__list li { font-size: 14px; display: flex; align-items: center; gap: 8px; }
.pricing__list li.off { color: var(--gray2); }

.pricing__note {
  text-align: center; color: var(--gray); font-size: 14px;
  margin-bottom: 28px;
  padding: 10px 20px; border-radius: 20px;
  background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.15);
  display: inline-block; width: 100%;
}

.pricing__footnote {
  font-size: 13px; color: var(--gray2);
  margin: 20px 0 32px;
  padding-left: 4px;
  border-left: 2px solid rgba(255,255,255,0.1);
  padding-left: 12px;
  line-height: 1.6;
}

/* ── Pricing Custom (с нуля) ── */
.pricing__custom {
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 0;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(59,130,246,0.35);
  background: linear-gradient(135deg, rgba(8,13,26,0.95), rgba(13,21,48,0.95));
  position: relative;
}
.pricing__custom::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(6,182,212,0.04) 100%);
  pointer-events: none;
}
.pricing__custom-left {
  padding: 44px 40px;
  border-right: 1px solid rgba(59,130,246,0.2);
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
  position: relative;
}
.pricing__custom-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 20px;
  background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.3);
  font-size: 12px; font-weight: 700; color: var(--blue);
  width: fit-content; text-transform: uppercase; letter-spacing: .5px;
}
.pricing__custom-title {
  font-size: 26px; font-weight: 800; line-height: 1.2;
}
.pricing__custom-sub {
  color: var(--gray); font-size: 14px; line-height: 1.6;
}
.pricing__custom-price {
  font-size: 22px; font-weight: 800;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing__custom-right { padding: 36px 40px; }
.pricing__custom-features { display: flex; flex-direction: column; gap: 18px; }
.pcf-item {
  display: flex; gap: 14px; align-items: flex-start;
}
.pcf-icon {
  font-size: 22px; flex-shrink: 0; margin-top: 2px;
}
.pcf-item div { display: flex; flex-direction: column; gap: 2px; }
.pcf-item b { font-size: 14px; font-weight: 600; color: var(--white); }
.pcf-item span { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ── Telegram Bot Section ── */
.tgbot { background: var(--navy2); }
.tgbot__inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}

/* Phone mockup */
.tgbot__visual { position: relative; display: flex; justify-content: center; }
.tg-phone {
  width: 290px;
  background: #17212b;
  border-radius: 32px;
  border: 2px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.tg-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: #232e3c;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tg-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #2196f3, #0d47a1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.tg-hname { font-size: 14px; font-weight: 600; color: #e8f4ff; }
.tg-hstatus { font-size: 11px; color: #4fae4e; }

.tg-chat {
  padding: 12px 10px;
  display: flex; flex-direction: column; gap: 6px;
  min-height: 380px;
}

/* Messages */
.tg-msg {
  max-width: 80%; padding: 8px 12px;
  border-radius: 12px; font-size: 13px; line-height: 1.45;
  opacity: 0; transform: translateY(10px);
}
.tg-msg--in {
  background: #232e3c; color: #e8f4ff;
  border-bottom-left-radius: 4px; align-self: flex-start;
}
.tg-msg--out {
  background: #2b5278; color: #e8f4ff;
  border-bottom-right-radius: 4px; align-self: flex-end;
}

/* Typing dots */
.tg-typing {
  display: flex; gap: 4px; align-items: center;
  padding: 10px 14px; background: #232e3c;
  border-radius: 12px; border-bottom-left-radius: 4px;
  width: 56px; align-self: flex-start;
  opacity: 0;
}
.tg-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #8096a7;
  animation: tg-dot-bounce 1.2s ease-in-out infinite;
}
.tg-dot:nth-child(2) { animation-delay: 0.2s; }
.tg-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes tg-dot-bounce {
  0%,80%,100% { transform: scale(0.8); opacity: 0.5; }
  40% { transform: scale(1.2); opacity: 1; }
}

/* Inline keyboard */
.tg-keyboard {
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0; transform: translateY(10px);
}
.tg-btn {
  padding: 8px 12px; text-align: center;
  background: #232e3c; color: #8096a7;
  border-radius: 8px; font-size: 12px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}
.tg-btn--active { color: #2196f3; border-color: rgba(33,150,243,0.3); }
.tg-btn--primary {
  background: linear-gradient(135deg, #2196f3, #0d7cf7);
  color: #fff; border: none; font-weight: 600;
}

/* Sequential message animations */
@keyframes tg-appear {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tg-msg--a1 { animation: tg-appear 0.4s ease forwards 0.5s; }
.tg-msg--a2 { animation: tg-appear 0.3s ease forwards 1.2s; }
.tg-msg--a3 { animation: tg-appear 0.4s ease forwards 2.2s; }
.tg-msg--a4 { animation: tg-appear 0.4s ease forwards 2.8s; }
.tg-msg--a5 { animation: tg-appear 0.4s ease forwards 3.8s; }
.tg-msg--a6 { animation: tg-appear 0.4s ease forwards 4.6s; }
.tg-msg--a7 { animation: tg-appear 0.4s ease forwards 5.4s; }
.tg-msg--a8 { animation: tg-appear 0.4s ease forwards 6.2s; }

.tg-typing { animation: tg-appear 0.3s ease forwards 1.2s, tg-hide 0.2s ease forwards 2.0s; }
@keyframes tg-hide { to { opacity: 0; height: 0; padding: 0; margin: 0; } }

/* Floating badges */
.tg-badge {
  position: absolute;
  padding: 6px 14px; border-radius: 20px;
  background: rgba(8,13,26,0.92);
  border: 1px solid rgba(33,150,243,0.4);
  font-size: 12px; font-weight: 600; color: var(--white);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  animation: tg-float 4s ease-in-out infinite;
}
@keyframes tg-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.tg-badge--1 { top: -10px; right: -20px; animation-delay: 0s; }
.tg-badge--2 { bottom: 60px; right: -30px; animation-delay: 1.5s; }
.tg-badge--3 { bottom: 10px; left: -10px; animation-delay: 3s; }

/* Content */
.tgbot__content { display: flex; flex-direction: column; gap: 24px; }
.tgbot__sub { color: var(--gray); font-size: 17px; line-height: 1.7; }

.tgbot__list { display: flex; flex-direction: column; gap: 16px; }
.tgbot__item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; border-radius: 12px;
  background: var(--card-bg); border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.tgbot__item:hover { border-color: rgba(33,150,243,0.35); }
.tgbot__icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.tgbot__item b { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.tgbot__item span { font-size: 13px; color: var(--gray); line-height: 1.5; }

.tgbot__footer { display: flex; flex-direction: column; gap: 16px; }
.tgbot__complexity { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tc-label { font-size: 13px; color: var(--gray); }
.tc-tag {
  padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
  background: rgba(33,150,243,0.1); border: 1px solid rgba(33,150,243,0.25);
  color: #60a5fa;
}

/* Mobile */
@media (max-width: 900px) {
  .tgbot__inner { grid-template-columns: 1fr; gap: 48px; }
  .tg-phone { width: 260px; }
}
@media (max-width: 768px) {
  .tgbot__visual { display: none; }
}

/* ── Also Do ── */
.alsodo__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.alsodo__card {
  padding: 22px 20px;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  cursor: default;
}
.alsodo__card:hover {
  border-color: rgba(59,130,246,0.4);
  background: rgba(59,130,246,0.05);
  transform: translateY(-3px);
}
.alsodo__icon { font-size: 28px; margin-bottom: 10px; }
.alsodo__name { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.alsodo__desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

.alsodo__cta {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.alsodo__cta p { color: var(--gray); font-size: 16px; }

@media (max-width: 1024px) {
  .alsodo__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .alsodo__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .alsodo__grid { grid-template-columns: 1fr; }
}

/* ── Contact ── */
.contact { background: var(--navy2); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact__text h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.contact__text p { color: var(--gray); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.contact__promise { display: flex; flex-direction: column; gap: 12px; }
.promise-item { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.contact__form {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
}
.form__group { margin-bottom: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form__row .form__group { margin-bottom: 0; }
.form__input {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; color: var(--white); font-family: var(--font); font-size: 14px;
  outline: none; transition: border-color 0.2s;
}
.form__input:focus { border-color: var(--blue); }
.form__input::placeholder { color: var(--gray2); }
.form__textarea { resize: vertical; min-height: 80px; }
.form__privacy { font-size: 12px; color: var(--gray2); text-align: center; margin-top: 12px; }
.form__privacy a { color: var(--blue); }
.form__note { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; padding: 12px 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; }
.form__note span { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.form__note p { font-size: 13px; color: var(--gray); line-height: 1.5; margin: 0; }
.form__success { text-align: center; padding: 40px 20px; }
.success__icon { font-size: 56px; margin-bottom: 16px; }
.form__success h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.form__success p { color: var(--gray); }

/* ── Footer ── */
.footer { padding: 64px 0 0; background: var(--navy2); border-top: 1px solid var(--border); }
.footer__inner { display: grid; grid-template-columns: 280px 1fr; gap: 64px; padding-bottom: 48px; }
.footer__brand .logo { font-size: 22px; margin-bottom: 12px; display: block; }
.footer__brand p { color: var(--gray); font-size: 14px; line-height: 1.6; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; color: var(--gray); }
.footer__col a, .footer__req { display: block; color: var(--gray2); font-size: 14px; margin-bottom: 8px; transition: color 0.2s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
}
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer__bottom span { font-size: 13px; color: var(--gray2); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .why__inner { grid-template-columns: 1fr; gap: 48px; }
  .why__metrics { max-width: 360px; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing__card--featured { transform: none; }
  .pricing__custom { grid-template-columns: 1fr; }
  .pricing__custom-left { border-right: none; border-bottom: 1px solid rgba(59,130,246,0.2); padding: 32px 24px; }
  .pricing__custom-right { padding: 28px 24px; }
}

@media (max-width: 900px) {
  .hero__inner { flex-direction: column; gap: 40px; }
  .hero__visual { width: 320px; height: 320px; }
  .hv-badge--1 { transform: translate(-50%,-50%) rotate(0deg)   translateX(140px); }
  .hv-badge--2 { transform: translate(-50%,-50%) rotate(90deg)  translateX(140px); }
  .hv-badge--3 { transform: translate(-50%,-50%) rotate(180deg) translateX(140px); }
  .hv-badge--4 { transform: translate(-50%,-50%) rotate(270deg) translateX(140px); }
  .hv-core { width: 200px; height: 160px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; align-items: center; justify-content: center; gap: 32px; z-index: 90; }
  .nav.open { display: flex; }
  .nav a { font-size: 22px; }
  .burger { display: flex; z-index: 101; margin-left: auto; }
  .header__inner .btn--sm { display: none; }
  .header__cta { display: none; }
  .process__steps { flex-direction: column; }
  .process__arrow { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .case-card { min-width: 300px; }
  .hero__visual { display: none; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 36px; }
  .hero__actions { flex-direction: column; }
  .hero__stats { gap: 16px; }
  .why__metrics { grid-template-columns: 1fr 1fr; max-width: 100%; }
}
