/* ═══════════════════════════════════════
   ЮЛКОМ — общие стили для всех страниц
   ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800;900&family=Nunito:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #1B4FD8;
  --blue-dark: #0C2EA8;
  --blue-deep: #060D2E;
  --blue-mid:  #0C2260;
  --blue-lt:   #EEF3FD;
  --orange:    #F97316;
  --orange-dk: #EA6B0A;
  --text:      #0F172A;
  --muted:     #64748B;
  --light:     #F1F5F9;
  --border:    #E2E8F0;
  --white:     #FFFFFF;
  --r:         14px;
  --r-lg:      22px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text); background: var(--white);
  line-height: 1.65; font-size: 16px; overflow-x: hidden;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: box-shadow .3s;
  padding: 0 32px;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(27,79,216,.1); }
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 0; height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 14px; color: white;
  box-shadow: 0 4px 12px rgba(27,79,216,.35);
}
.logo-name { font-family: 'Exo 2', sans-serif; font-weight: 800; font-size: 18px; color: var(--text); display: block; letter-spacing: -.3px; }
.logo-sub  { font-size: 11px; color: var(--muted); font-weight: 500; }
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  font-size: 14px; font-weight: 600; color: var(--muted);
  text-decoration: none; padding: 8px 14px; border-radius: 8px;
  transition: color .2s, background .2s; white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--blue); background: var(--blue-lt); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone { font-weight: 700; font-size: 15px; color: var(--text); text-decoration: none; }
.header-phone:hover { color: var(--blue); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px;
  cursor: pointer; text-decoration: none; border: none;
  transition: all .22s; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: white; box-shadow: 0 4px 16px rgba(249,115,22,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,.45); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white; box-shadow: 0 4px 16px rgba(27,79,216,.3);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,79,216,.4); }
.btn-ghost {
  background: rgba(255,255,255,.1); color: white;
  border: 2px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); }
.btn-outline {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: white; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }

/* ── LAYOUT ── */
.section      { padding: 88px 32px; }
.section-alt  { background: var(--light); }
.section-dark {
  background: linear-gradient(145deg, var(--blue-deep) 0%, var(--blue-mid) 50%, #1340A8 100%);
  position: relative; overflow: hidden;
}
.wrap { max-width: 1240px; margin: 0 auto; }

/* ── SECTION HEADER ── */
.s-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-lt); color: var(--blue);
  font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 16px;
}
.s-label::before { content:''; width:6px; height:6px; background:var(--blue); border-radius:50%; }
.s-label.light { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.15); }
.s-label.light::before { background: var(--orange); }

h2.s-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px); font-weight: 800;
  color: var(--text); line-height: 1.15; letter-spacing: -.5px; margin-bottom: 14px;
}
h2.s-title em  { font-style: normal; color: var(--blue); }
h2.s-title.white { color: white; }
h2.s-title.white em { color: var(--orange); }
p.s-sub {
  font-size: 17px; color: var(--muted); max-width: 600px;
  line-height: 1.65; margin-bottom: 52px;
}
p.s-sub.white { color: rgba(255,255,255,.65); }

/* ── HERO (SERVICE) ── */
.hero-service {
  background: linear-gradient(145deg, #060D2E 0%, #0C2260 45%, #1B4FD8 85%, #2A65F0 100%);
  padding: 88px 32px 80px; position: relative; overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: .05;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-glow {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(41,102,255,.35) 0%, transparent 70%);
  top: -150px; right: -50px; pointer-events: none;
}
.hero-service-inner {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 28px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb span { color: rgba(255,255,255,.25); }
.hero-service h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 900; color: white;
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 18px; max-width: 720px;
}
.hero-service h1 em { font-style: normal; color: var(--orange); }
.hero-service p.hero-desc {
  font-size: 18px; color: rgba(255,255,255,.72); line-height: 1.7;
  max-width: 620px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.8); font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 20px;
}
.chip-dot { width: 7px; height: 7px; background: #4ADE80; border-radius: 50%; }

/* ── HERO SPLIT LAYOUT (image right) ── */
.hero-service-inner.has-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,.55);
  position: relative;
}
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.15);
  pointer-events: none;
}
.hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ── FOR WHOM ── */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.audience-card {
  background: white; border-radius: var(--r); padding: 26px 22px;
  border: 1.5px solid var(--border); text-align: center;
  transition: all .24s;
}
.audience-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 12px 28px rgba(27,79,216,.1); }
.aud-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.aud-title { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 14px; color: var(--text); line-height: 1.35; margin-bottom: 8px; }
.aud-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── TASKS (problems we solve) ── */
.tasks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.task-card {
  background: white; border-radius: var(--r); padding: 26px 24px;
  border: 1.5px solid var(--border); display: flex; gap: 16px; align-items: flex-start;
  transition: all .24s;
}
.task-card:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(27,79,216,.08); }
.task-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--blue-lt); display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.task-title { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.task-desc  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── WHAT'S INCLUDED (chain) ── */
.chain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.chain::before {
  content: ''; position: absolute;
  top: 32px; left: calc(100%/6); right: calc(100%/6);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
  z-index: 0;
}
.chain-item { position: relative; z-index: 1; text-align: center; padding: 0 16px; }
.chain-num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white; font-family: 'Exo 2', sans-serif; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(27,79,216,.3);
}
.chain-title { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.chain-desc  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* chain 2-row layouts */
.chain-2 { grid-template-columns: repeat(2, 1fr); }
.chain-4 { grid-template-columns: repeat(4, 1fr); }
.chain-5 { grid-template-columns: repeat(5, 1fr); }
.chain-6 { grid-template-columns: repeat(6, 1fr); }

/* ── HOW WE WORK (steps) ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; z-index: 1; }
.steps-wrap { position: relative; }
.steps-line {
  position: absolute; top: 30px;
  left: calc(12.5% + 10px); right: calc(12.5% + 10px);
  height: 2px; background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%); z-index: 0;
}
.step-card { text-align: center; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white; font-family: 'Exo 2', sans-serif; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 8px 20px rgba(27,79,216,.3);
}
.step-title { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.step-desc  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── ADVANTAGES (why us) ── */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.adv-card {
  background: white; border-radius: var(--r); padding: 28px 24px;
  border: 1.5px solid var(--border); transition: all .24s;
}
.adv-card:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(27,79,216,.08); transform: translateY(-3px); }
.adv-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.adv-title { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.adv-desc  { font-size: 14px; color: var(--muted); line-height: 1.6; }
.adv-tag {
  display: inline-block; margin-top: 10px;
  background: var(--blue-lt); color: var(--blue);
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 860px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 0; cursor: pointer;
  font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 16px; color: var(--text);
  user-select: none; transition: color .2s;
}
.faq-q:hover { color: var(--blue); }
.faq-arrow {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: var(--light); display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: transform .3s, background .2s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--blue-lt); }
.faq-a {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── FORM (dark full-width) ── */
.form-section {
  background: linear-gradient(145deg, #060D2E 0%, #0C2260 45%, #1340A8 100%);
  padding: 96px 32px; position: relative; overflow: hidden;
}
.form-section::before {
  content:''; position:absolute; inset:0; opacity:.04;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(255,255,255,.5) 1px,transparent 1px);
  background-size: 48px 48px;
}
.form-glow {
  position:absolute; width:500px; height:500px;
  background:radial-gradient(circle,rgba(249,115,22,.15) 0%,transparent 65%);
  top:-100px; right:-50px; pointer-events:none;
}
.form-layout {
  max-width:1240px; margin:0 auto; position:relative; z-index:1;
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.form-left .s-label.light::before { background: var(--orange); }
.form-left h2.s-title { color:white; margin-bottom:14px; }
.form-left h2.s-title em { color:var(--orange); }
.form-lead { font-size:17px; color:rgba(255,255,255,.65); line-height:1.7; margin-bottom:36px; }
.form-points { display:flex; flex-direction:column; gap:16px; }
.form-point { display:flex; align-items:flex-start; gap:14px; }
.fp-icon {
  width:36px; height:36px; border-radius:10px; flex-shrink:0;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center; font-size:17px;
}
.fp-text strong { display:block; font-size:15px; font-weight:700; color:white; margin-bottom:2px; }
.fp-text span   { font-size:13px; color:rgba(255,255,255,.5); line-height:1.5; }

.form-card {
  background:white; border-radius:20px; padding:44px 40px;
  box-shadow:0 32px 80px rgba(0,0,0,.35);
}
.form-card-title { font-family:'Exo 2',sans-serif; font-size:20px; font-weight:800; color:var(--text); margin-bottom:6px; }
.form-card-sub   { font-size:14px; color:var(--muted); margin-bottom:28px; line-height:1.5; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { display:flex; flex-direction:column; gap:5px; }
.form-group label { font-size:12px; font-weight:700; color:var(--text); text-transform:uppercase; letter-spacing:.4px; }
.form-group input, .form-group select, .form-group textarea {
  padding:13px 16px; border-radius:10px; border:1.5px solid var(--border);
  background:var(--light); font-family:'Nunito',sans-serif; font-size:15px; color:var(--text);
  transition:border-color .2s,box-shadow .2s,background .2s; outline:none; width:100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color:var(--blue); box-shadow:0 0 0 3px rgba(27,79,216,.1); background:white;
}
.form-group textarea { resize:none; height:88px; }
.form-group.full { grid-column:1/-1; }
.form-actions { margin-top:20px; display:flex; flex-direction:column; gap:12px; }
.form-actions .btn { width:100%; justify-content:center; padding:15px 24px; font-size:16px; }
.form-tg {
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:12px; border-radius:10px; border:1.5px solid var(--border);
  font-size:14px; font-weight:700; color:var(--muted); text-decoration:none; transition:all .2s;
}
.form-tg:hover { border-color:#229ED9; color:#229ED9; background:rgba(34,158,217,.05); }
.form-privacy { font-size:11px; color:var(--muted); text-align:center; line-height:1.5; }

/* ── FOOTER ── */
footer { background:var(--text); color:rgba(255,255,255,.6); padding:56px 32px 32px; }
.footer-inner { max-width:1240px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-logo { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-logo-mark {
  width:38px; height:38px; border-radius:9px;
  background:var(--blue); display:flex; align-items:center; justify-content:center;
  font-family:'Exo 2',sans-serif; font-weight:900; font-size:13px; color:white;
}
.footer-logo-name { font-family:'Exo 2',sans-serif; font-weight:800; font-size:17px; color:white; }
.footer-brand { display:flex; flex-direction:column; }
.footer-contacts-block { margin-top:16px; }
.footer-desc { font-size:14px; line-height:1.65; max-width:240px; }
.footer-col h4 { font-family:'Exo 2',sans-serif; font-weight:700; font-size:13px; color:white; letter-spacing:.5px; text-transform:uppercase; margin-bottom:16px; }
.footer-col a { display:block; font-size:14px; color:rgba(255,255,255,.5); text-decoration:none; margin-bottom:8px; transition:color .2s; }
.footer-col a:hover { color:white; }
.footer-contact { display:flex; align-items:center; gap:8px; font-size:14px; color:rgba(255,255,255,.6); margin-bottom:8px; }
.footer-contact a { color:rgba(255,255,255,.85); text-decoration:none; }
.footer-contact a:hover { color:white; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding-top:24px; display:flex; justify-content:space-between; align-items:center; font-size:13px; flex-wrap:wrap; gap:12px; }
.footer-bottom a { color:rgba(255,255,255,.4); text-decoration:none; }
.footer-bottom a:hover { color:rgba(255,255,255,.7); }

/* ── MODAL ── */
.modal-overlay {
  position:fixed; inset:0; z-index:1000;
  background:rgba(7,26,107,.6); backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .25s; padding:20px;
}
.modal-overlay.open { opacity:1; pointer-events:all; }
.modal {
  background:white; border-radius:20px; padding:40px;
  max-width:480px; width:100%;
  transform:translateY(20px) scale(.97); transition:transform .28s;
  max-height:90vh; overflow-y:auto; position:relative;
}
.modal-overlay.open .modal { transform:translateY(0) scale(1); }
.modal-close {
  position:absolute; top:16px; right:20px;
  background:none; border:none; font-size:24px; cursor:pointer; color:var(--muted);
  width:36px; height:36px; border-radius:8px; display:flex; align-items:center; justify-content:center;
}
.modal-close:hover { background:var(--light); }
.modal-title { font-family:'Exo 2',sans-serif; font-size:22px; font-weight:800; margin-bottom:6px; }
.modal-sub   { font-size:15px; color:var(--muted); margin-bottom:24px; }

/* ── HOME HERO ── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #060D2E 0%, #0C2260 40%, #1B4FD8 80%, #2A65F0 100%);
  padding: 100px 32px 90px;
  min-height: 600px; display: flex; align-items: center;
}
.hero-grid {
  position: absolute; inset: 0; opacity: .06;
  background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow1 {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(41,102,255,.4) 0%, transparent 70%);
  top: -200px; right: -100px; pointer-events: none;
}
.hero-glow2 {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,.2) 0%, transparent 70%);
  bottom: -100px; left: 200px; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
}
.hero-badge span { width: 8px; height: 8px; background: #4ADE80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 900; color: white;
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-desc { font-size: 18px; color: rgba(255,255,255,.75); line-height: 1.65; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; overflow: hidden;
}
.hero-stat {
  flex: 1; padding: 18px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child { border-right: none; }
.stat-num { font-family: 'Exo 2', sans-serif; font-size: 26px; font-weight: 900; color: white; display: block; letter-spacing: -0.5px; }
.stat-num .orange { color: var(--orange); }
.stat-label { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 600; margin-top: 2px; }
/* Hero right visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-card-main {
  background: rgba(255,255,255,.08); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 20px;
  padding: 28px; width: 100%; max-width: 380px;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.card-header-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.card-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange) 0%, #FB923C 100%);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.card-title-block .card-name { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 16px; color: white; }
.card-title-block .card-sub  { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }
.card-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.metric { background: rgba(255,255,255,.07); border-radius: 10px; padding: 14px 16px; }
.metric-val { font-family: 'Exo 2', sans-serif; font-size: 22px; font-weight: 800; color: white; }
.metric-lbl { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 3px; line-height: 1.3; }
.card-services { display: flex; flex-direction: column; gap: 8px; }
.card-svc { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: rgba(255,255,255,.06); border-radius: 8px; }
.svc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.svc-name { font-size: 13px; color: rgba(255,255,255,.8); font-weight: 600; flex: 1; }
.svc-badge { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 5px; }
.float-badge {
  position: absolute; background: white; border-radius: 12px;
  padding: 10px 16px; box-shadow: 0 12px 32px rgba(0,0,0,.2);
  display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--text);
  animation: floatBadge 7s ease-in-out infinite;
}
.float-badge.top { top: -20px; right: 20px; animation-delay: -3s; }
.float-badge.bot { bottom: -16px; left: 10px; }
.badge-icon { font-size: 18px; }
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
/* Services overview cards */
.services-overview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sov-card {
  background: white; border-radius: var(--r-lg); padding: 28px 24px 24px;
  border: 1.5px solid var(--border); display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.sov-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 16px 36px rgba(27,79,216,.12); }
.sov-icon { font-size: 34px; }
.sov-title { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 16px; color: var(--text); line-height: 1.3; }
.sov-desc  { font-size: 14px; color: var(--muted); line-height: 1.55; flex: 1; }
.sov-link  { font-size: 13px; font-weight: 700; color: var(--blue); margin-top: 4px; }

/* ── ANIMATIONS ── */
.fade-up { opacity:0; transform:translateY(28px); transition:opacity .6s, transform .6s; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ── MOBILE ── */
@media (max-width:1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-overview-grid { grid-template-columns: repeat(2,1fr); }
  .audience-grid { grid-template-columns:repeat(2,1fr); }
  .tasks-grid    { grid-template-columns:repeat(2,1fr); }
  .chain         { grid-template-columns:repeat(2,1fr); }
  .chain::before { display:none; }
  .chain-4, .chain-5, .chain-6 { grid-template-columns:repeat(2,1fr); }
  .adv-grid      { grid-template-columns:repeat(2,1fr); }
  .form-layout   { grid-template-columns:1fr; gap:48px; }
  .footer-top    { grid-template-columns:1fr 1fr; }
  nav            { display:none; }
}
@media (max-width:900px) {
  .hero-service-inner.has-img { grid-template-columns: 1fr; }
  .hero-img { display: none; }
}
@media (max-width:768px) {
  .hero { padding: 72px 20px 64px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { min-width: 45%; }
  .section { padding:64px 20px; }
  .services-overview-grid { grid-template-columns: 1fr; }
  .hero-service { padding:64px 20px 56px; }
  .steps-grid { grid-template-columns:1fr 1fr; }
  .steps-line { display:none; }
  .form-row   { grid-template-columns:1fr; }
  .form-card  { padding:32px 24px; }
  .form-section { padding:72px 20px; }
  .tasks-grid { grid-template-columns:1fr; }
  .adv-grid   { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; gap:32px; }
  .header { padding:0 20px; }
}
@media (max-width:480px) {
  .audience-grid { grid-template-columns:1fr 1fr; }
  .hero-chips { display:none; }
}
