/* =============================================
   ИНТЕР-ПЛАТА — Общие стили
   style.css
   ============================================= */

/* === ПЕРЕМЕННЫЕ === */
:root {
  --bg: #070b14;
  --bg2: #0c1220;
  --bg3: #111827;
  --border: #1a2744;
  --border2: #243354;
  --text: #e2e8f0;
  --muted: #64748b;
  --dim: #475569;
  --accent: #3b82f6;
  --accent2: #06b6d4;
  --accent-glow: rgba(59, 130, 246, .12);
  --gradient: linear-gradient(135deg, #3b82f6, #06b6d4);
  --font-head: 'Outfit', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --max: 1140px;
}

/* === СБРОС === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); overflow-x: hidden; }
a { color: var(--accent); text-decoration: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* === НАВИГАЦИЯ === */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 16px 0;
  background: rgba(7, 11, 20, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
nav .inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
}
.logo {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  color: #fff; display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--muted); font-size: 16px; font-weight: 500;
  transition: color .2s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border-radius: 2px; transform: scaleX(0); transition: transform .2s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: #fff; }
.burger { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
.nav-cta {
  padding: 10px 22px; background: var(--gradient); color: #fff;
  border: none; border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; transition: transform .2s;
}
.nav-cta:hover { transform: translateY(-1px); }

/* === КНОПКИ === */
.btn {
  padding: 16px 32px; border-radius: 10px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all .2s; border: none;
  display: inline-block; text-decoration: none;
}
.btn-primary { background: var(--gradient); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59, 130, 246, .25); }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid var(--border2); }
.btn-ghost:hover { color: #fff; border-color: var(--accent); }

/* === СЕКЦИИ === */
.section { padding: 100px 0; }
.section-tag {
  display: inline-block; padding: 6px 14px; border-radius: 6px;
  font-size: 12px; font-weight: 600;
  background: var(--accent-glow); color: var(--accent);
  border: 1px solid rgba(59, 130, 246, .15);
  margin-bottom: 16px; letter-spacing: .5px; text-transform: uppercase;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; letter-spacing: -.5px; margin-bottom: 16px;
}
.section-sub { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 600px; margin-bottom: 48px; }

/* === PAGE HERO === */
.page-hero { padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, .07) 0%, transparent 55%);
}
.page-hero .container { position: relative; }
.breadcrumb { font-size: 13px; color: var(--dim); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }

/* === ТЕГ (badge) === */
.tag {
  display: inline-block; padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 600;
  background: var(--accent-glow); color: var(--accent);
  border: 1px solid rgba(59, 130, 246, .15);
}

/* === CTA БЛОК === */
.cta-block {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; padding: 48px; text-align: center; margin-top: 64px;
}
.cta-block h3 { font-family: var(--font-head); font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.cta-block p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }

/* === PRICE TABLE (общая для SMD, DIP, Price) === */
.price-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.price-table th {
  text-align: left; padding: 14px 20px;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: 14px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: .5px;
}
.price-table td { padding: 14px 20px; border: 1px solid var(--border); font-size: 14px; }
.price-table tr:hover td { background: var(--bg2); }
.price-val { font-family: var(--font-head); font-weight: 700; color: var(--accent); font-size: 18px; }

/* === FEATURE GRID (SMD, DIP) === */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 36px; }
.feature-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: all .3s; }
.feature-card:hover { border-color: var(--accent); }
.feature-card h4 { font-family: var(--font-head); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* === CONTENT BLOCK (SMD, DIP) === */
.content-block { max-width: 760px; margin: 0 auto; }
.content-block h2 { font-family: var(--font-head); font-size: 28px; font-weight: 700; margin: 48px 0 16px; letter-spacing: -.3px; }
.content-block h3 { font-family: var(--font-head); font-size: 22px; font-weight: 600; margin: 36px 0 12px; }
.content-block p { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.content-block ul { color: var(--muted); font-size: 15px; line-height: 1.75; margin: 0 0 16px 24px; }
.content-block li { margin-bottom: 8px; }

/* === ФУТЕР === */
footer { padding: 48px 0 24px; border-top: 1px solid var(--border); }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 36px; margin-bottom: 36px; }
.footer-col h4 { font-family: var(--font-head); font-size: 14px; font-weight: 600; margin-bottom: 14px; color: #fff; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 13px; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-copy { text-align: center; color: var(--dim); font-size: 12px; padding-top: 24px; }

/* === TELEGRAM FLOAT === */
.tg-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(59, 130, 246, .35);
  text-decoration: none; transition: all .3s;
}
.tg-float:hover { transform: scale(1.1); }
.tg-float svg { width: 26px; height: 26px; fill: #fff; }

/* === АНИМАЦИИ === */
.reveal { opacity: 0; transform: translateY(30px); transition: all .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === АДАПТИВ === */
@media (max-width: 1000px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7, 11, 20, .97); backdrop-filter: blur(12px);
    padding: 16px 24px; gap: 0; border-bottom: 1px solid var(--border);
  }
  .nav-links.show { display: flex; }
  .nav-links li { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .burger { display: block; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .page-hero { padding: 110px 0 60px; }
  .section { padding: 64px 0; }
  .price-table th, .price-table td { padding: 10px 12px; font-size: 13px; }
}

@media (max-width: 450px) {
  .logo span { display: none; }
}

/* === PDN CONSENT / COOKIES === */
.pdn-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.pdn-consent input[type="checkbox"],
.contact-form .pdn-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 2px 0 0;
  padding: 0;
  flex: 0 0 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.pdn-consent span {
  display: block;
}

.pdn-consent a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pdn-consent a:hover {
  color: var(--accent2);
}

/* Чекбокс под формой заявки */
.contact-form .pdn-consent {
  margin: -2px 0 2px;
}

/* Чекбокс в чат-виджете */
.chat-consent {
  padding: 10px 16px;
  border-top: 1px solid rgba(0, 198, 255, .15);
  background: #0d1117;
}

.chat-consent .pdn-consent {
  font-size: 11px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  background: #0d1424;
  border: 1px solid var(--border2);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .45);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions button {
  padding: 10px 14px;
  border: 1px solid var(--border2);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .2s;
}

.cookie-actions button:hover {
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.cookie-actions .accept {
  border: none;
  background: var(--gradient);
  color: #fff;
}

.cookie-actions .accept:hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, .24);
}

/* Focus states */
.pdn-consent input[type="checkbox"]:focus-visible,
.cookie-actions button:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 3px;
}

/* Mobile */
@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
    padding: 10px 12px;
  }

  .pdn-consent {
    font-size: 11px;
  }
}


/* =============================================
   SV2026 — Страница Startup Village
   (стили специфичны для /startup или /sv2026)
   ============================================= */
 
/* === HERO === */
.sv-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.sv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(59,130,246,.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(6,182,212,.05) 0%, transparent 60%);
}
.sv-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 0%, transparent 70%);
}
.sv-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.25);
  color: var(--accent);
  margin-bottom: 24px;
}
.sv-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
.sv-h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: #fff;
}
.sv-h1 .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sv-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.sv-sub {
  color: var(--dim);
  font-size: 14px;
  margin-bottom: 36px;
}
.sv-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.sv-hero-visual { position: relative; }
.sv-board {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}
 
/* === PCB CARD (hero-визуал) === */
.pcb-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.pcb-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg at 50% 50%,
    transparent 0deg, rgba(59,130,246,.06) 60deg,
    transparent 120deg, rgba(6,182,212,.04) 180deg,
    transparent 240deg, rgba(59,130,246,.06) 300deg,
    transparent 360deg);
  animation: rotate-glow 12s linear infinite;
}
@keyframes rotate-glow { to { transform: rotate(360deg); } }
.pcb-title {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 20px;
  position: relative;
}
.pcb-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}
.pcb-metric {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.pcb-metric .val {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.pcb-metric .lbl {
  font-size: 11px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.pcb-steps { display: flex; flex-direction: column; gap: 10px; position: relative; }
.pcb-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--muted);
  transition: border-color .3s;
}
.pcb-step.active { border-color: var(--accent); color: var(--text); }
.pcb-step .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border2);
  flex-shrink: 0;
}
.pcb-step.active .dot {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(59,130,246,.6);
}
 
/* === STATS BAR === */
.stats-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 36px; font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl { color: var(--muted); font-size: 13px; }
 
/* === FOR WHOM === */
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.fw-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.fw-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform .3s;
}
.fw-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.fw-card:hover::after { transform: scaleX(1); }
.fw-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-glow);
  border: 1px solid rgba(59,130,246,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.fw-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.fw-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
 
/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.srv-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: all .3s;
}
.srv-card:hover { border-color: var(--accent); }
.srv-num {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.srv-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.srv-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
 
/* === PROCESS === */
.process-track {
  position: relative;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: .3;
}
.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.proc-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: all .3s;
}
.proc-step:hover .proc-num {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(59,130,246,.4);
}
.proc-step h4 { font-family: var(--font-head); font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.proc-step p { color: var(--dim); font-size: 12px; line-height: 1.5; }
 
/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}
.plan-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all .3s;
  position: relative;
}
.plan-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(59,130,246,.08) 0%, var(--bg2) 50%);
}
.plan-card.featured::before {
  content: 'Популярный выбор';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--gradient);
  border-radius: 20px;
  font-size: 11px; font-weight: 700;
  white-space: nowrap;
  letter-spacing: .5px;
}
.plan-name {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--accent);
  margin-bottom: 8px;
}
.plan-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.plan-divider { height: 1px; background: var(--border); margin: 20px 0; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.plan-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-body);
}
.plan-card.featured .plan-btn { background: var(--gradient); border: none; color: #fff; }
.plan-btn:hover { transform: translateY(-2px); }
.plan-card.featured .plan-btn:hover { box-shadow: 0 8px 30px rgba(59,130,246,.3); }
 
/* === CONTACT FORM === */
.sv-contact {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px;
  max-width: 680px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--dim);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--bg3); }
.form-submit { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
 
/* === TG STRIP === */
.tg-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 32px;
  margin-top: 80px;
}
.tg-strip-text h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.tg-strip-text p { color: var(--muted); font-size: 14px; }
.tg-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #229ED9, #1a7fc1);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.tg-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,158,217,.3); }
.tg-btn svg { width: 20px; height: 20px; fill: #fff; }
 
/* === SV2026 АДАПТИВ === */
@media (max-width: 900px) {
  .sv-hero .container { grid-template-columns: 1fr; gap: 48px; }
  .sv-hero-visual { display: none; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .for-whom-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-track::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .sv-contact { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .tg-strip { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .for-whom-grid { grid-template-columns: 1fr; }
  .sv-cta-row { flex-direction: column; }
  .sv-cta-row .btn { text-align: center; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
}
 