/* ═══════════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden; background: #fff; color: #0f172a;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════════════════ */
:root {
  --blue:        #1089ff;
  --blue-light:  #4daefe;
  --blue-deep:   #0b2d6e;
  --green:       #10b981;
  --violet:      #a78bfa;
  --gold:        #f59e0b;
  --red:         #ef4444;
  --text:        #0f172a;
  --text-muted:  #64748b;
  --text-subtle: #94a3b8;
  --border:      #e2e8f0;
  --border-hover:#1089ff;
  --bg:          #ffffff;
  --bg-subtle:   #f8faff;
  --bg-dark:     #0a0f1e;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,.1);
  --shadow-blue: 0 8px 32px rgba(16,137,255,.18);
}

/* ═══════════════════════════════════════════════════════
   LAYOUT UTILITIES
════════════════════════════════════════════════════════ */
.container { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section-alt { background: var(--bg-subtle); }

.grad     { background: linear-gradient(135deg,#1089ff,#4daefe); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.grad-v   { background: linear-gradient(135deg,#a78bfa,#60a5fa); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.grad-g   { background: linear-gradient(135deg,#10b981,#34d399); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* ═══════════════════════════════════════════════════════
   BADGES
════════════════════════════════════════════════════════ */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
}
.badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.2} }
.badge-blue   { background:rgba(16,137,255,.1);  color:#1089ff; border:1px solid rgba(16,137,255,.2); }
.badge-green  { background:rgba(16,185,129,.1);  color:#10b981; border:1px solid rgba(16,185,129,.2);}
.badge-violet { background:rgba(167,139,250,.12); color:#a78bfa; border:1px solid rgba(167,139,250,.2);}
.badge-gold   { background:rgba(245,158,11,.1);  color:#f59e0b; border:1px solid rgba(245,158,11,.2);}

/* ═══════════════════════════════════════════════════════
   SECTION HEADERS
════════════════════════════════════════════════════════ */
.sh-wrap { margin-bottom: 56px; }
.sh-wrap.center { text-align: center; }
.sh-wrap.center .sh-sub { margin-left: auto; margin-right: auto; }
.sh-label {
  font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.sh-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; letter-spacing: -.035em;
  color: var(--text); margin-bottom: 18px;
}
.sh-sub {
  font-size: 1.05rem; line-height: 1.75; color: var(--text-muted); max-width: 580px;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 30px; border-radius: 12px;
  font-weight: 700; font-size: .95rem; text-decoration: none; border: none;
  transition: all .3s; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg,#1089ff,#4daefe); color: #fff;
  box-shadow: 0 4px 16px rgba(16,137,255,.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(16,137,255,.48); }
.btn-outline {
  background: transparent; color: var(--blue);
  border: 2px solid rgba(16,137,255,.3);
}
.btn-outline:hover { background: rgba(16,137,255,.06); border-color: var(--blue); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text-muted); font-weight: 600; }
.btn-ghost:hover { color: var(--blue); }

/* ═══════════════════════════════════════════════════════
   TAGS
════════════════════════════════════════════════════════ */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size:.77rem; font-weight:600; padding:5px 13px; border-radius:100px; border:1px solid; }
.tag-b { border-color:rgba(16,137,255,.2); background:rgba(16,137,255,.07); color:#1089ff; }
.tag-g { border-color:rgba(16,185,129,.2); background:rgba(16,185,129,.07); color:#10b981; }
.tag-v { border-color:rgba(167,139,250,.2); background:rgba(167,139,250,.07); color:#a78bfa; }
.tag-n { border-color:var(--border); background:#f8faff; color:var(--text-muted); }

/* ═══════════════════════════════════════════════════════
   SEARCH BAR
════════════════════════════════════════════════════════ */
.sbar {
  display: flex; align-items: center; gap: 6px;
  background: #fff; padding: 6px; border-radius: 14px;
  border: 2px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  max-width: 620px; width: 100%;
}
.sbar-proto {
  font-size: .75rem; font-weight: 700; color: #94a3b8;
  background: #f1f5f9; padding: 8px 12px; border-radius: 9px; white-space: nowrap;
}
.sbar input {
  flex: 1; border: none; outline: none; font-size: 1rem;
  color: var(--text); padding: 8px 10px; font-family: inherit; min-width: 0;
  background: transparent;
}
.sbar input::placeholder { color: #94a3b8; }
.sbar-btn {
  padding: 11px 24px; white-space: nowrap;
  background: linear-gradient(135deg,#1089ff,#4daefe); color: #fff;
  border: none; border-radius: 9px; font-weight: 700; font-size: .92rem;
  transition: all .3s; font-family: inherit;
}
.sbar-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,137,255,.4); }

/* ═══════════════════════════════════════════════════════
   TRUST ROW
════════════════════════════════════════════════════════ */
.trust { display: flex; align-items: center; gap: 28px; }
.trust-d { width:1px; height:28px; background:var(--border); flex-shrink:0; }
.tv { font-size:1.4rem; font-weight:900; line-height:1; color:var(--blue); margin-bottom:3px; }
.tl { font-size:.72rem; font-weight:600; color:var(--text-muted); text-transform:uppercase; letter-spacing:.06em; }

/* ═══════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px; display: flex; align-items: center;
  background: rgba(255,255,255,.94); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,.8);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  font-size: 1.1rem; font-weight: 900; letter-spacing: -.03em; color: var(--text);
}
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg,#1089ff,#4daefe);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; font-weight: 900; flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-btn-ghost {
  padding: 7px 16px; border-radius: 9px; font-size: .85rem; font-weight: 600;
  color: var(--text-muted); background: transparent; border: none;
  text-decoration: none; transition: color .2s;
}
.nav-btn-ghost:hover { color: var(--blue); }
.nav-btn-primary {
  padding: 8px 18px; border-radius: 9px; font-size: .85rem; font-weight: 700;
  background: linear-gradient(135deg,#1089ff,#4daefe); color: #fff;
  border: none; text-decoration: none; box-shadow: 0 3px 12px rgba(16,137,255,.3);
  transition: all .2s;
}
.nav-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(16,137,255,.42); }

/* ═══════════════════════════════════════════════════════
   HERO — Morphing Blob
════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 108px 24px 80px;
  background: #fff;
}
.blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob {
  position: absolute;
  background: linear-gradient(135deg,rgba(16,137,255,.1),rgba(77,174,254,.15));
  animation: morph 14s ease-in-out infinite;
}
.blob-1 {
  width: min(680px,90vw); height: min(680px,90vw);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.blob-2 {
  width: min(460px,68vw); height: min(460px,68vw);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation-direction: reverse; animation-delay: -5s;
  background: linear-gradient(135deg,rgba(77,174,254,.09),rgba(16,137,255,.07));
}
@keyframes morph {
  0%   { border-radius: 62% 38% 45% 55% / 55% 45% 55% 45%; }
  20%  { border-radius: 38% 62% 55% 45% / 45% 55% 45% 55%; }
  40%  { border-radius: 55% 45% 38% 62% / 62% 38% 55% 45%; }
  60%  { border-radius: 45% 55% 62% 38% / 38% 62% 45% 55%; }
  80%  { border-radius: 55% 45% 45% 55% / 55% 45% 62% 38%; }
  100% { border-radius: 62% 38% 45% 55% / 55% 45% 55% 45%; }
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(16,137,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(16,137,255,.03) 1px,transparent 1px);
  background-size: 56px 56px;
}
.hero-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 10; width: 100%; max-width: 760px;
}
.hero-h1 {
  font-size: clamp(2.6rem,6vw,4.4rem); font-weight: 900; line-height: 1.05;
  letter-spacing: -.04em; margin-bottom: 22px; color: var(--text);
}
.hero-sub {
  font-size: 1.12rem; line-height: 1.78; color: var(--text-muted);
  max-width: 580px; margin: 0 auto 36px;
}
.hero-sbar { margin: 0 auto 28px; }
.hero-tags { justify-content: center; margin-bottom: 36px; }
.hero-trust { justify-content: center; }

/* ═══════════════════════════════════════════════════════
   TECH RIBBON
════════════════════════════════════════════════════════ */
.ribbon {
  padding: 18px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ribbon-track {
  display: flex; align-items: center; gap: 56px;
  animation: ribbon 28s linear infinite;
  width: max-content;
}
@keyframes ribbon { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ribbon-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 700; color: var(--text-subtle);
  text-transform: uppercase; letter-spacing: .06em; white-space: nowrap;
}
.ribbon-item em { font-size: 1.1rem; font-style: normal; }

/* ═══════════════════════════════════════════════════════
   WHY AUDIT — Pain Points
════════════════════════════════════════════════════════ */
.pain-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.pain-card {
  padding: 28px 24px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border); background: #fff;
  transition: all .3s;
}
.pain-card:hover {
  border-color: var(--blue); transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.pain-n {
  font-size: 2.4rem; font-weight: 900; letter-spacing: -.05em;
  color: rgba(16,137,255,.14); line-height: 1; margin-bottom: 14px;
}
.pain-title { font-size:.97rem; font-weight:700; color:var(--text); margin-bottom:8px; }
.pain-text  { font-size:.865rem; line-height:1.72; color:var(--text-muted); }

/* ═══════════════════════════════════════════════════════
   EXPERT BLOCK
════════════════════════════════════════════════════════ */
.expert-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: center;
}
.expert-visual { position: relative; }
.expert-photo-bg {
  border-radius: var(--radius-xl); overflow: hidden;
  background: url('/analiz-saita/static/maksim.jpg') center/cover no-repeat;
  padding: 80px 32px 0; text-align: center; position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.expert-avatar-circle {
  display: none;
}
.expert-photo-name {
  font-size: 1.8rem; font-weight: 900; color: #fff; margin-bottom: 4px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  -webkit-text-stroke: 0.5px rgba(0,0,0,.3);
  text-align: left;
}
.expert-photo-title {
  font-size: 1rem; color: rgba(255,255,255,.9); font-weight: 600; margin-bottom: 28px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  text-align: left;
}
.expert-photo-bottom {
  background: linear-gradient(to top, rgba(16,137,255,.25) 0%, rgba(16,137,255,.08) 100%);
  border-top: 1px solid rgba(16,137,255,.2);
  margin: 0 -32px; padding: 20px 32px;
  display: flex; justify-content: space-around;
}
.expert-mini-stat-n { font-size:1.5rem; font-weight:900; color:#fff; text-shadow:0 2px 8px rgba(0,0,0,.3); }
.expert-mini-stat-l { font-size:.72rem; font-weight:700; color:rgba(255,255,255,.85); text-transform:uppercase; letter-spacing:.06em; text-shadow:0 1px 4px rgba(0,0,0,.3); }
.expert-float {
  position: absolute; top: -12px; right: -16px;
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 14px 18px; box-shadow: var(--shadow-md);
}
.expert-float-n { font-size:1.6rem; font-weight:900; color:var(--blue); line-height:1; }
.expert-float-l { font-size:.68rem; font-weight:600; color:var(--text-muted); text-transform:uppercase; letter-spacing:.06em; white-space:nowrap; }
.expert-quote {
  font-size: 1.1rem; line-height: 1.72; color: var(--text-muted);
  border-left: 3px solid var(--blue); padding-left: 20px;
  margin: 24px 0;
}
.expert-skills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.skill-pill {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 16px; border-radius: 100px;
  background: rgba(16,137,255,.06); border: 1px solid rgba(16,137,255,.15);
  font-size: .8rem; font-weight: 600; color: var(--blue);
}
.etl { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.etl-item {
  display: grid; grid-template-columns: 52px 1px 1fr; gap: 0 20px;
  padding-bottom: 24px;
}
.etl-item:last-child { padding-bottom: 0; }
.etl-year { font-size:.78rem; font-weight:800; color:var(--blue); padding-top:2px; text-align:right; }
.etl-line { background: rgba(16,137,255,.2); position: relative; }
.etl-line::before {
  content:''; position:absolute; top:4px; left:-4px;
  width:9px; height:9px; border-radius:50%;
  background:var(--blue); border:2px solid #fff;
  box-shadow: 0 0 0 2px rgba(16,137,255,.25);
}
.etl-title { font-size:.93rem; font-weight:700; color:var(--text); margin-bottom:3px; }
.etl-text  { font-size:.82rem; color:var(--text-muted); line-height:1.6; }

/* ═══════════════════════════════════════════════════════
   BEFORE / AFTER
════════════════════════════════════════════════════════ */
.ba-section { background: var(--bg-subtle); }
.ba-grid {
  display: grid; grid-template-columns: 1fr 72px 1fr; gap: 0; align-items: center;
}
.ba-card {
  border-radius: var(--radius-lg); padding: 40px 36px;
}
.ba-before {
  background: #fff; border: 1.5px solid #fecaca;
  border-right: none; border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.ba-after {
  background: linear-gradient(135deg,rgba(16,137,255,.05),rgba(77,174,254,.1));
  border: 1.5px solid rgba(16,137,255,.2);
  border-left: none; border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.ba-vs {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg,#1089ff,#4daefe);
  color: #fff; font-size: 1rem; font-weight: 900;
  box-shadow: 0 4px 20px rgba(16,137,255,.4);
  margin: 0 auto; position: relative; z-index: 10;
}
.ba-label { font-size:.68rem; font-weight:800; text-transform:uppercase; letter-spacing:.1em; margin-bottom: 16px; }
.ba-label.bad  { color:#ef4444; }
.ba-label.good { color:#1089ff; }
.ba-price { font-size: clamp(2.4rem,5vw,3.2rem); font-weight:900; letter-spacing:-.04em; line-height:1; margin-bottom:6px; }
.ba-price.bad  { color:#ef4444; }
.ba-price.good { color:#1089ff; }
.ba-time { font-size:.95rem; font-weight:600; color:var(--text-muted); margin-bottom:24px; }
.ba-list { display:flex; flex-direction:column; gap:10px; }
.ba-item { display:flex; gap:10px; font-size:.875rem; color:var(--text-muted); line-height:1.55; }
.ba-item-icon { flex-shrink:0; font-size:.95rem; margin-top:1px; }

/* ═══════════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════════════ */
.price-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  max-width: 940px; margin: 0 auto;
}
.price-card {
  border-radius: var(--radius-lg); padding: 40px 36px;
  border: 1.5px solid var(--border); background: #fff;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.price-card.pro {
  background: linear-gradient(160deg,#0b2d6e,#1089ff);
  border-color: transparent; color: #fff;
}
.price-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px;
  font-size:.68rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase;
  margin-bottom: 20px; width: fit-content;
}
.price-badge.free { background:rgba(16,185,129,.1); color:#10b981; border:1px solid rgba(16,185,129,.2); }
.price-badge.pro  { background:rgba(255,255,255,.15); color:#fff; border:1px solid rgba(255,255,255,.25); }
.price-name { font-size:1.6rem; font-weight:900; margin-bottom:4px; letter-spacing:-.03em; }
.price-card.pro .price-name { color:#fff; }
.price-val {
  font-size:clamp(2.4rem,5vw,3.4rem); font-weight:900; letter-spacing:-.05em; line-height:1;
  margin-bottom:4px;
}
.price-val.free-v { color:var(--blue); }
.price-val.pro-v  { color:#fff; }
.price-period { font-size:.85rem; color:var(--text-muted); margin-bottom:28px; }
.price-card.pro .price-period { color:rgba(255,255,255,.6); }
.price-divider { height:1px; background:var(--border); margin:0 0 28px; }
.price-card.pro .price-divider { background:rgba(255,255,255,.15); }
.price-feature-list { display:flex; flex-direction:column; gap:13px; flex:1; }
.pf {
  display: flex; align-items: flex-start; gap: 12px;
  font-size:.88rem; line-height:1.55;
}
.pf-icon {
  width:22px; height:22px; border-radius:50%; flex-shrink:0; margin-top:1px;
  display:flex; align-items:center; justify-content:center; font-size:.65rem; font-weight:800;
}
.pf-icon.check { background:rgba(16,185,129,.12); color:#10b981; }
.pf-icon.check-w { background:rgba(255,255,255,.2); color:#fff; }
.pf-text { color:var(--text-muted); }
.price-card.pro .pf-text { color:rgba(255,255,255,.8); }
.price-cta { margin-top: 32px; }
.price-btn-free {
  display: flex; align-items:center; justify-content:center; gap:8px;
  width:100%; padding:14px; border-radius:12px; font-size:.95rem; font-weight:700;
  background:var(--blue); color:#fff; border:none;
  box-shadow:0 4px 16px rgba(16,137,255,.3); transition:all .3s; text-decoration:none;
}
.price-btn-free:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(16,137,255,.45); }
.price-btn-pro {
  display: flex; align-items:center; justify-content:center; gap:8px;
  width:100%; padding:14px; border-radius:12px; font-size:.95rem; font-weight:700;
  background:#fff; color:#1089ff; border:none;
  box-shadow:0 4px 16px rgba(0,0,0,.12); transition:all .3s; text-decoration:none;
}
.price-btn-pro:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,0,0,.2); }
.price-card.pro::before {
  content:''; position:absolute; bottom:-80px; right:-60px;
  width:240px; height:240px; border-radius:50%;
  background:radial-gradient(rgba(255,255,255,.08),transparent 70%);
  pointer-events:none;
}
.ai-note {
  display:flex; align-items:center; gap:10px; margin-top:20px;
  padding:12px 16px; border-radius:10px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2);
}
.ai-note-icon { font-size:1.2rem; flex-shrink:0; }
.ai-note-text { font-size:.8rem; color:rgba(255,255,255,.8); line-height:1.5; }
.ai-note-text strong { color:#fff; }

/* ═══════════════════════════════════════════════════════
   CHECKS OVERVIEW
════════════════════════════════════════════════════════ */
.checks-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
}
.check-group {
  padding: 24px 20px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border); background: #fff;
  transition: all .3s;
}
.check-group:hover { border-color:var(--blue); box-shadow:var(--shadow-blue); transform:translateY(-3px); }
.check-group-icon {
  width:44px; height:44px; border-radius:12px; margin-bottom:14px;
  background:linear-gradient(135deg,rgba(16,137,255,.1),rgba(77,174,254,.12));
  display:flex; align-items:center; justify-content:center; font-size:1.3rem;
}
.check-group-title { font-size:.92rem; font-weight:700; color:var(--text); margin-bottom:12px; }
.check-list { display:flex; flex-direction:column; gap:7px; }
.check-item {
  display:flex; align-items:center; gap:8px;
  font-size:.78rem; color:var(--text-muted); line-height:1.4;
}
.check-item::before {
  content:''; width:5px; height:5px; border-radius:50%;
  background:rgba(16,137,255,.4); flex-shrink:0;
}
.check-item.pro::before { background:rgba(167,139,250,.6); }
.check-pro-badge {
  display:inline-flex; align-items:center; gap:5px;
  padding:2px 8px; border-radius:100px;
  background:rgba(167,139,250,.1); color:#a78bfa;
  font-size:.62rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em;
  border:1px solid rgba(167,139,250,.2); margin-left:4px; flex-shrink:0;
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 56px;
}
.step { position: relative; padding-left: 0; }
.step-num {
  font-size: 3rem; font-weight: 900; line-height:1;
  color: rgba(16,137,255,.12); margin-bottom: 14px; letter-spacing:-.05em;
}
.step-icon {
  width:52px; height:52px; border-radius:14px; margin-bottom:16px;
  background:linear-gradient(135deg,rgba(16,137,255,.1),rgba(77,174,254,.12));
  display:flex; align-items:center; justify-content:center; font-size:1.5rem;
}
.step-title { font-size:1rem; font-weight:700; color:var(--text); margin-bottom:8px; }
.step-text  { font-size:.875rem; color:var(--text-muted); line-height:1.65; }
.step:not(:last-child)::after {
  content:''; position:absolute; top:26px; right:-12px;
  width:24px; height:2px;
  background:linear-gradient(90deg,rgba(16,137,255,.3),rgba(16,137,255,.1));
  z-index:1;
}

/* ═══════════════════════════════════════════════════════
   TECHNOLOGY STACK
════════════════════════════════════════════════════════ */
.tech-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.tech-card {
  display:flex; align-items:flex-start; gap:18px;
  padding:24px; border-radius:var(--radius-md);
  border:1.5px solid var(--border); background:#fff; transition:all .3s;
}
.tech-card:hover { border-color:var(--blue); box-shadow:var(--shadow-blue); transform:translateY(-3px); }
.tech-card-icon {
  width:50px; height:50px; border-radius:14px; flex-shrink:0;
  background:linear-gradient(135deg,rgba(16,137,255,.1),rgba(77,174,254,.12));
  display:flex; align-items:center; justify-content:center; font-size:1.6rem;
}
.tech-card-title { font-size:.95rem; font-weight:700; color:var(--text); margin-bottom:5px; }
.tech-card-text  { font-size:.82rem; color:var(--text-muted); line-height:1.6; }
.tech-card.ai-card {
  border-color: rgba(167,139,250,.3);
  background: linear-gradient(135deg,rgba(167,139,250,.04),rgba(96,165,250,.04));
}
.tech-card.ai-card:hover { border-color:var(--violet); box-shadow:0 8px 32px rgba(167,139,250,.2); }
.tech-card.ai-card .tech-card-icon {
  background:linear-gradient(135deg,rgba(167,139,250,.12),rgba(96,165,250,.12));
}

/* ═══════════════════════════════════════════════════════
   FREE TOOLS
════════════════════════════════════════════════════════ */
.tools-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:14px;
}
.tool-chip {
  display:flex; align-items:center; gap:10px;
  padding:16px 18px; border-radius:var(--radius-md);
  border:1.5px solid var(--border); background:#fff;
  font-size:.85rem; font-weight:600; color:var(--text);
  text-decoration:none; transition:all .3s;
}
.tool-chip:hover { border-color:var(--blue); background:rgba(16,137,255,.04); transform:translateX(3px); }
.tool-chip em { font-size:1.2rem; font-style:normal; flex-shrink:0; }

/* ═══════════════════════════════════════════════════════
   AURORA HERO — Variant 1 (first-screen-demo)
════════════════════════════════════════════════════════ */
.S.v1 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: #0a0f1e;
  overflow: hidden;
}
.S.v1 .aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.S.v1 .ab {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.S.v1 .ab1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #1089ff, transparent);
  top: -10%;
  right: -10%;
  animation: aurora-drift 12s ease-in-out infinite;
}
.S.v1 .ab2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #4daefe, transparent);
  bottom: -15%;
  left: -5%;
  animation: aurora-drift 16s ease-in-out infinite reverse;
}
.S.v1 .ab3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #a78bfa, transparent);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: aurora-drift 10s ease-in-out infinite;
}
@keyframes aurora-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.S.v1 .hc {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
  text-align: center;
  color: #fff;
}
.S.v1 .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.S.v1 .badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: blink 1.6s ease-in-out infinite;
}
.S.v1 .badge-blue {
  background: rgba(16,137,255,.12);
  color: #4daefe;
  border: 1px solid rgba(16,137,255,.25);
}
.S.v1 .H.v1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 20px;
}
.S.v1 .H.v1 .grad {
  background: linear-gradient(135deg, #1089ff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.S.v1 .sub.sub-d {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  margin: 0 auto 36px;
}
.S.v1 .sbar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}
.S.v1 .sbar-proto {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.08);
  padding: 8px 12px;
  border-radius: 9px;
  white-space: nowrap;
}
.S.v1 .sbar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  color: #fff;
  padding: 8px 10px;
  font-family: inherit;
  min-width: 0;
  background: transparent;
}
.S.v1 .sbar input::placeholder { color: rgba(255,255,255,.35); }
.S.v1 .sbar-btn {
  padding: 11px 24px;
  white-space: nowrap;
  background: linear-gradient(135deg, #1089ff, #4daefe);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-weight: 700;
  font-size: .92rem;
  transition: all .3s;
  font-family: inherit;
  cursor: pointer;
}
.S.v1 .sbar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16,137,255,.4);
}
.S.v1 .trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
}
.S.v1 .trust-d {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
.S.v1 .tv.tv-b {
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin-bottom: 3px;
}
.S.v1 .tl.tl-d {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .06em;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.2} }

@media (max-width: 768px) {
  .S.v1 .sbar { flex-direction: column; padding: 12px; }
  .S.v1 .sbar input { width: 100%; padding: 10px 12px; }
  .S.v1 .sbar-btn { width: 100%; padding: 12px; text-align: center; }
  .S.v1 .sbar-proto { display: none; }
  .S.v1 .trust { flex-wrap: wrap; gap: 16px; }
  .S.v1 .trust-d { display: none; }
  .S.v1 .hc { padding: 0 12px; }
}

/* ═══════════════════════════════════════════════════════
   AURORA HERO — Variant 2 (нейросеть)
════════════════════════════════════════════════════════ */
.S.v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  background: #fff;
  overflow: hidden;
}
.S.v2 canvas#c2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.S.v2 .v2-card {
  position: relative;
  z-index: 1;
  max-width: 620px;
  width: 100%;
  text-align: center;
}
.S.v2 .v2-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: rgba(16,137,255,.1);
  color: #1089ff;
  border: 1px solid rgba(16,137,255,.2);
}
.S.v2 .v2-card .badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
  animation: blink 1.6s ease-in-out infinite;
}
.S.v2 .v2-card .H {
  font-size: clamp(2.6rem,6vw,4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 16px;
}
.S.v2 .v2-card .sub.sub-d {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 28px;
}
.S.v2 .v2-card .sbar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  padding: 6px;
  border-radius: 14px;
  border: 2px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  max-width: 480px;
  width: 100%;
  margin: 0 auto 24px;
}
.S.v2 .v2-card .sbar-proto {
  font-size: .75rem;
  font-weight: 700;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 8px 12px;
  border-radius: 9px;
  white-space: nowrap;
}
.S.v2 .v2-card .sbar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text);
  padding: 8px 10px;
  font-family: inherit;
  min-width: 0;
  background: transparent;
}
.S.v2 .v2-card .sbar input::placeholder { color: #94a3b8; }
.S.v2 .v2-card .sbar-btn {
  padding: 11px 24px;
  white-space: nowrap;
  background: linear-gradient(135deg,#1089ff,#4daefe);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-weight: 700;
  font-size: .92rem;
  transition: all .3s;
  font-family: inherit;
  cursor: pointer;
}
.S.v2 .v2-card .sbar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16,137,255,.4);
}
.S.v2 .v2-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.S.v2 .v2-card .tag {
  font-size: .77rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid rgba(16,137,255,.2);
  background: rgba(16,137,255,.07);
  color: #1089ff;
}
.S.v2 .v2-card .trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.S.v2 .v2-card .trust-d {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}
.S.v2 .v2-card .tv.tv-b {
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 3px;
}
.S.v2 .v2-card .tl.tl-d {
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
@media (max-width: 768px) {
  .S.v2 { padding: 80px 20px; }
  .S.v2 .v2-card .sbar { flex-direction: column; padding: 12px; }
  .S.v2 .v2-card .sbar input { width: 100%; padding: 10px 12px; }
  .S.v2 .v2-card .sbar-btn { width: 100%; padding: 12px; text-align: center; }
  .S.v2 .v2-card .sbar-proto { display: none; }
  .S.v2 .v2-card .trust { flex-wrap: wrap; gap: 16px; }
  .S.v2 .v2-card .trust-d { display: none; }
}

/* ═══════════════════════════════════════════════════════
   AURORA HERO — Variant 4 (карта с блобами)
════════════════════════════════════════════════════════ */
.S.v4 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  background: linear-gradient(140deg, #0b2d6e 0%, #1089ff 60%, #4daefe 100%);
  overflow: hidden;
}
.S.v4 .gorb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
}
.S.v4 .go1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #a78bfa, transparent);
  top: -10%; left: -10%;
  animation: aurora-drift 14s ease-in-out infinite;
}
.S.v4 .go2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #00e5ff, transparent);
  bottom: -10%; right: -10%;
  animation: aurora-drift 18s ease-in-out infinite reverse;
}
.S.v4 .go3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #ee82ee, transparent);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: aurora-drift 12s ease-in-out infinite;
}
.S.v4 .gcrd {
  position: relative;
  z-index: 2;
  max-width: 580px;
  width: 100%;
  text-align: center;
}
.S.v4 .gcrd .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.S.v4 .gcrd .badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  animation: blink 1.6s ease-in-out infinite;
}
.S.v4 .gcrd .sub {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 480px;
}
.S.v4 .gcrd .sbar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.2);
  max-width: 480px;
  width: 100%;
  margin: 0 auto 28px;
}
.S.v4 .gcrd .sbar-proto {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.1);
  padding: 8px 12px;
  border-radius: 9px;
  white-space: nowrap;
}
.S.v4 .gcrd .sbar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  color: #fff;
  padding: 8px 10px;
  font-family: inherit;
  min-width: 0;
  background: transparent;
}
.S.v4 .gcrd .sbar input::placeholder { color: rgba(255,255,255,.4); }
.S.v4 .gcrd .sbar-btn {
  padding: 11px 24px;
  white-space: nowrap;
  background: #fff;
  color: #1089ff;
  border: none;
  border-radius: 9px;
  font-weight: 700;
  font-size: .92rem;
  transition: all .3s;
  font-family: inherit;
  cursor: pointer;
}
.S.v4 .gcrd .sbar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.S.v4 .gcrd .tag.tag-l {
  font-size: .77rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}
.S.v4 .gcrd .trust {
  display: flex;
  align-items: center;
  gap: 28px;
}
.S.v4 .gcrd .trust-l {
  width: 1px; height: 24px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.S.v4 .gcrd .tl {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
@media (max-width: 768px) {
  .S.v4 { padding: 80px 20px; }
  .S.v4 .gcrd .sbar { flex-direction: column; padding: 12px; }
  .S.v4 .gcrd .sbar input { width: 100%; padding: 10px 12px; }
  .S.v4 .gcrd .sbar-btn { width: 100%; padding: 12px; }
  .S.v4 .gcrd .sbar-proto { display: none; }
  .S.v4 .gcrd .trust { flex-wrap: wrap; gap: 16px; }
  .S.v4 .gcrd .trust-l { display: none; }
}

/* ═══════════════════════════════════════════════════════
   AURORA HERO — Variant 9 (две колонки + фичи)
════════════════════════════════════════════════════════ */
.S.v9 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}
.S.v9 .gridbg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,137,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,137,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.S.v9 .hl {
  max-width: 560px;
}
.S.v9 .hl .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: rgba(16,137,255,.1);
  color: #1089ff;
  border: 1px solid rgba(16,137,255,.2);
}
.S.v9 .hl .badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #1089ff;
  animation: blink 1.6s ease-in-out infinite;
}
.S.v9 .hl .H {
  font-size: clamp(2.6rem,5vw,3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 20px;
}
.S.v9 .hl .H .grad {
  background: linear-gradient(135deg,#1089ff,#a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.S.v9 .hl .sub.sub-d {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.S.v9 .hl .sbar {
  display: flex; align-items: center; gap: 6px;
  background: #fff; padding: 6px; border-radius: 14px;
  border: 2px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  max-width: 480px; width: 100%;
}
.S.v9 .hl .sbar .sbar-proto {
  font-size: .75rem; font-weight: 700; color: #94a3b8;
  background: #f1f5f9; padding: 8px 12px; border-radius: 9px; white-space: nowrap;
}
.S.v9 .hl .sbar input {
  flex: 1; border: none; outline: none; font-size: 1rem;
  color: var(--text); padding: 8px 10px; font-family: inherit;
  background: transparent;
}
.S.v9 .hl .sbar input::placeholder { color: #94a3b8; }
.S.v9 .hl .sbar-btn {
  padding: 11px 24px; white-space: nowrap;
  background: linear-gradient(135deg,#1089ff,#4daefe); color: #fff;
  border: none; border-radius: 9px; font-weight: 700; font-size: .92rem;
  transition: all .3s; font-family: inherit; cursor: pointer;
}
.S.v9 .hl .sbar-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,137,255,.4); }
.S.v9 .hl .trust { display: flex; align-items: center; gap: 28px; margin-top: 28px; }
.S.v9 .hl .trust-d { width:1px; height:24px; background: var(--border); flex-shrink:0; }
.S.v9 .hl .tv.tv-b { font-size:1.3rem; font-weight:900; color:var(--blue); line-height:1; margin-bottom:3px; }
.S.v9 .hl .tl.tl-d { font-size:.7rem; font-weight:600; color:var(--text-muted); text-transform:uppercase; letter-spacing:.06em; }
.S.v9 .ftlist { display:flex; flex-direction:column; gap:20px; }
.S.v9 .ftrow {
  display:flex; align-items:flex-start; gap:18px;
  padding:24px; border-radius:16px;
  border:1.5px solid var(--border); background:#fff;
  transition:all .3s;
}
.S.v9 .ftrow:hover { border-color:var(--blue); box-shadow:0 4px 16px rgba(16,137,255,.12); }
.S.v9 .ftico {
  width:46px; height:46px; border-radius:12px; flex-shrink:0;
  background:linear-gradient(135deg,rgba(16,137,255,.1),rgba(77,174,254,.12));
  display:flex; align-items:center; justify-content:center; font-size:1.3rem;
}
.S.v9 .fttitle { font-size:.95rem; font-weight:700; color:var(--text); margin-bottom:4px; }
.S.v9 .ftsub { font-size:.82rem; color:var(--text-muted); line-height:1.5; }

@media (max-width: 900px) {
  .S.v9 .wrap { grid-template-columns:1fr!important; gap:48px!important; padding:0 24px!important; text-align:center; }
  .S.v9 .hl .sbar { margin:0 auto; }
  .S.v9 .hl .trust { justify-content:center; }
}

/* ═══════════════════════════════════════════════════════
   AURORA HERO — Variant 10 (glassmorphism + SVG flow)
════════════════════════════════════════════════════════ */
.S.v10 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
  background: linear-gradient(135deg, #1089ff 0%, #4daefe 100%);
  overflow: hidden;
}
.S.v10 .flowsvg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
  transform: translateY(15%);
}
.S.v10 .flowsvg .fp {
  fill: none;
  stroke: rgba(255,255,255,.3);
  stroke-width: 2;
  stroke-linecap: round;
  animation: flow-drift 20s ease-in-out infinite;
}
.S.v10 .flowsvg .fp:nth-child(2) { animation-delay: -4s; opacity: 0.4; }
.S.v10 .flowsvg .fp:nth-child(3) { animation-delay: -8s; opacity: 0.3; stroke-width: 1.5; }
.S.v10 .flowsvg .fp:nth-child(4) { animation-delay: -12s; opacity: 0.5; stroke-width: 1; }
.S.v10 .flowsvg .fp:nth-child(5) { animation-delay: -16s; opacity: 0.35; stroke-width: 2.5; }
@keyframes flow-drift {
  0%, 100% { d: path("M-200,150 C200,50 400,350 700,200 C1000,50 1200,300 1700,150"); }
  25% { d: path("M-200,180 C150,80 450,320 700,230 C1050,80 1250,280 1700,180"); }
  50% { d: path("M-200,120 C250,30 350,380 700,170 C950,30 1150,320 1700,120"); }
  75% { d: path("M-200,200 C180,100 400,300 700,260 C1050,100 1300,250 1700,200"); }
}
.S.v10 .hc {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}
.S.v10 .hc .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 24px;
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.S.v10 .hc .badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  animation: blink 1.6s ease-in-out infinite;
}
.S.v10 .hc .H {
  font-size: clamp(3rem,6.25vw,4.75rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 20px;
}
.S.v10 .hc .sub.sub-l {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 32px;
}
.S.v10 .hc .sbar {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); padding: 6px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
  max-width: 480px; width: 100%; margin: 0 auto 24px;
}
.S.v10 .hc .sbar .sbar-proto {
  font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.1); padding: 8px 12px; border-radius: 9px; white-space: nowrap;
}
.S.v10 .hc .sbar input {
  flex: 1; border: none; outline: none; font-size: 1rem;
  color: #fff; padding: 8px 10px; font-family: inherit; background: transparent;
}
.S.v10 .hc .sbar input::placeholder { color: rgba(255,255,255,.4); }
.S.v10 .hc .sbar-btn {
  padding: 11px 24px; white-space: nowrap;
  background: #fff; color: #1089ff;
  border: none; border-radius: 9px; font-weight: 700; font-size: .92rem;
  transition: all .3s; font-family: inherit; cursor: pointer;
}
.S.v10 .hc .sbar-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.S.v10 .hc .tag.tag-l {
  font-size: .77rem; font-weight: 600;
  padding: 5px 13px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}
.S.v10 .hc .trust { display: flex; align-items: center; gap: 28px; margin-top: 28px; }
.S.v10 .hc .trust-l { width:1px; height:24px; background:rgba(255,255,255,.15); flex-shrink:0; }
.S.v10 .hc .tl { font-size:.7rem; font-weight:600; text-transform:uppercase; letter-spacing:.06em; }
@media (max-width: 768px) {
  .S.v10 { padding: 80px 20px; }
  .S.v10 .hc .sbar { flex-direction: column; padding: 12px; }
  .S.v10 .hc .sbar input { width: 100%; padding: 10px 12px; }
  .S.v10 .hc .sbar-btn { width: 100%; padding: 12px; }
  .S.v10 .hc .sbar-proto { display: none; }
  .S.v10 .hc .trust { flex-wrap: wrap; gap: 16px; }
  .S.v10 .hc .trust-l { display: none; }
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════════ */
.cta-section { padding: 0 0 60px; background: #fff; }
.cta-inner {
  background: linear-gradient(140deg,#0b2d6e 0%,#1089ff 60%,#4daefe 100%);
  border-radius: var(--radius-xl); padding: 80px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-inner::before {
  content:''; position:absolute; bottom:-120px; right:-100px;
  width:340px; height:340px; border-radius:50%;
  background:radial-gradient(rgba(255,255,255,.08),transparent 70%);
}
.cta-inner::after {
  content:''; position:absolute; top:-80px; left:-60px;
  width:240px; height:240px; border-radius:50%;
  background:radial-gradient(rgba(255,255,255,.06),transparent 70%);
}
.cta-inner .sh-title { color:#fff; position:relative; z-index:1; }
.cta-inner .sh-sub  { color:rgba(255,255,255,.75); position:relative; z-index:1; margin:0 auto; }
.cta-sbar {
  display:flex; align-items:center; gap:6px;
  background:rgba(255,255,255,.12); padding:6px; border-radius:14px;
  border:1px solid rgba(255,255,255,.22); backdrop-filter:blur(12px);
  max-width:600px; width:100%; margin:32px auto 0; position:relative; z-index:1;
}
.cta-sbar .sbar-proto { background:rgba(255,255,255,.15); color:rgba(255,255,255,.6); }
.cta-sbar input {
  flex:1; border:none; outline:none; font-size:1rem; color:#fff; background:transparent;
  padding:8px 10px; font-family:inherit; min-width:0;
}
.cta-sbar input::placeholder { color:rgba(255,255,255,.45); }
.cta-sbar-btn {
  padding:11px 24px; white-space:nowrap;
  background:#fff; color:#1089ff;
  border:none; border-radius:9px; font-weight:700; font-size:.92rem;
  transition:all .3s; font-family:inherit;
}
.cta-sbar-btn:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,0,0,.25); }
.cta-note { margin-top:16px; font-size:.8rem; color:rgba(255,255,255,.55); position:relative; z-index:1; }

/* ═══════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.footer {
  background: #0a0f1e; color: rgba(255,255,255,.5);
  padding: 60px 0 32px;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand-logo { margin-bottom:14px; }
.footer-logo {
  display:inline-flex; align-items:center; gap:10px; color:#fff;
  font-size:1.05rem; font-weight:900; letter-spacing:-.03em; text-decoration:none;
}
.footer-logo-mark {
  width:32px; height:32px; border-radius:8px;
  background:linear-gradient(135deg,#1089ff,#4daefe);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:.9rem; font-weight:900;
}
.footer-desc { font-size:.83rem; line-height:1.72; color:rgba(255,255,255,.42); max-width:260px; }
.footer-col-title { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:#fff; margin-bottom:16px; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:.82rem; color:rgba(255,255,255,.45); text-decoration:none; transition:color .2s; }
.footer-links a:hover { color:#fff; }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:28px; gap:20px; flex-wrap:wrap;
}
.footer-copy { font-size:.78rem; color:rgba(255,255,255,.3); }
.footer-author-link { color:rgba(255,255,255,.5); text-decoration:none; transition:color .2s; }
.footer-author-link:hover { color:#1089ff; }
.footer-badges { display:flex; align-items:center; gap:12px; }
.footer-tech-badge {
  display:flex; align-items:center; gap:6px;
  padding:5px 12px; border-radius:100px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  font-size:.7rem; font-weight:600; color:rgba(255,255,255,.45);
}

/* ═══════════════════════════════════════════════════════
   SCORE DEMO
════════════════════════════════════════════════════════ */
.demo-card {
  background:#fff; border:1.5px solid var(--border); border-radius:var(--radius-lg);
  padding:28px; max-width:340px; box-shadow:var(--shadow-md);
  position:absolute; right:0; bottom:40px;
}
.demo-url { font-size:.78rem; font-weight:700; color:var(--text-subtle); margin-bottom:12px; }
.demo-url span { color:var(--blue); }
.demo-score-row { display:flex; align-items:center; gap:16px; margin-bottom:16px; }
.demo-ring { position:relative; width:70px; height:70px; flex-shrink:0; }
.demo-ring svg { transform:rotate(-90deg); }
.demo-ring-n { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:1.2rem; font-weight:900; color:var(--blue); }
.demo-label { font-size:.7rem; color:var(--text-subtle); text-transform:uppercase; letter-spacing:.06em; }
.demo-metrics { display:flex; flex-direction:column; gap:8px; }
.demo-mrow { display:flex; align-items:center; gap:10px; }
.demo-mname { font-size:.75rem; color:var(--text-muted); flex:1; }
.demo-mbar { flex:1; height:5px; background:#f1f5f9; border-radius:3px; overflow:hidden; }
.demo-mfill { height:100%; background:linear-gradient(90deg,#1089ff,#4daefe); border-radius:3px; }
.demo-mval { font-size:.75rem; font-weight:700; color:var(--blue); min-width:32px; text-align:right; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .checks-grid { grid-template-columns:repeat(2,1fr); }
  .tech-grid { grid-template-columns:repeat(2,1fr); }
  .tools-grid { grid-template-columns:repeat(3,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
}
@media (max-width: 900px) {
  .expert-grid { grid-template-columns:1fr; gap:48px; }
  .ba-grid { grid-template-columns:1fr; }
  .ba-before { border-right:1.5px solid #fecaca; border-radius:var(--radius-lg); border-bottom:none; border-radius:var(--radius-lg) var(--radius-lg) 0 0; }
  .ba-after  { border-left:1.5px solid rgba(16,137,255,.2); border-top:none; border-radius:0 0 var(--radius-lg) var(--radius-lg); }
  .ba-vs { display:none; }
  .price-grid { grid-template-columns:1fr; }
  .pain-grid  { grid-template-columns:repeat(2,1fr); }
  .steps-grid { grid-template-columns:repeat(2,1fr); }
  .steps-grid .step::after { display:none; }
  .nav-links { display:none; }
}
@media (max-width: 640px) {
  .container { padding:0 20px; }
  .section { padding:70px 0; }
  .hero { padding:90px 20px 60px; }
  .hero-h1 { font-size:2.3rem; }
  .pain-grid { grid-template-columns:1fr; }
  .checks-grid { grid-template-columns:1fr; }
  .tech-grid { grid-template-columns:1fr; }
  .tools-grid { grid-template-columns:repeat(2,1fr); }
  .steps-grid { grid-template-columns:1fr; }
  .trust { flex-wrap:wrap; gap:18px; }
  .trust-d { display:none; }
  .sbar { flex-direction:column; border-radius:16px; }
  .sbar input { width:100%; padding:10px 12px; }
  .sbar-btn { width:100%; padding:12px; text-align:center; }
  .sbar-proto { display:none; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; gap:12px; text-align:center; }
  .cta-inner { padding:48px 28px; border-radius:var(--radius-lg); }
  .cta-sbar { flex-direction:column; border-radius:16px; }
  .cta-sbar input { width:100%; padding:10px 12px; }
  .cta-sbar-btn { width:100%; padding:12px; }
  .ba-card { padding:28px 24px; }
  .expert-float { display:none; }
}
