:root {
  --bg: #FFFFFF;
  --bg-alt: #F7F8FA;
  --bg-dark: #0F172A;
  --text: #0F172A;
  --text-2: #475569;
  --text-3: #94A3B8;
  --border: #E2E8F0;
  --accent: #2563EB;
  --accent-dark: #1D4ED8;
  --accent-bg: #EFF6FF;
  --ok: #16A34A;
  --ok-bg: #F0FDF4;
  --warn: #EA580C;
  --warn-bg: #FFF7ED;
  --danger: #DC2626;
  --danger-bg: #FEF2F2;
  --sans: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 0; font-weight: 600; font-size: 15px; text-decoration: none; color: inherit; }
.logo-img { height: 28px; width: auto; }
.logo-divider { width: 1px; height: 22px; background: rgba(0,0,0,0.15); margin: 0 14px; flex-shrink: 0; }
.logo-sub { font-size: 12px; color: var(--text-3); font-weight: 500; letter-spacing: .01em; }
.logo-mark {
  width: 34px; height: 34px; background: var(--accent); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px;
}
.logo small { display: block; font-size: 11px; color: var(--text-3); font-weight: 500; }
.header-nav { display: flex; gap: 28px; font-size: 14px; }
.header-nav a { color: var(--text-2); text-decoration: none; }
.header-nav a:hover { color: var(--text); }
.header-phone { font-size: 14px; color: var(--text-2); text-decoration: none; font-weight: 500; }
.header-contact { display: none !important; }
.header-contact:hover { color: var(--accent); }
.header-cta {
  background: var(--accent); color: #fff; padding: 9px 18px;
  border-radius: 8px; text-decoration: none; font-size: 14px; font-weight: 500;
  border: none; cursor: pointer;
}
.header-cta:hover { background: var(--accent-dark); }
@media (max-width: 1000px) {
  .header-nav, .header-phone { display: none; }
}

/* ===== HERO ===== */
.hero {
  padding: 72px 0 64px;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-bg); color: var(--accent-dark);
  padding: 6px 12px; border-radius: 100px; font-size: 13px; font-weight: 500;
  margin-bottom: 20px;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
h1 {
  font-size: 46px; line-height: 1.1; font-weight: 700;
  letter-spacing: -1.2px; margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px; color: var(--text-2); margin-bottom: 28px; line-height: 1.55;
  max-width: 540px;
}
.hero-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.hero-bullet {
  display: flex; gap: 10px; align-items: flex-start; font-size: 15px;
}
.hero-bullet-check {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--ok-bg); color: var(--ok);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; margin-top: 1px;
}
.hero-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--warn-bg); color: var(--warn);
  border: 1px solid #FED7AA; border-radius: 8px;
  padding: 9px 14px; font-size: 13px; font-weight: 600;
  margin-bottom: 28px;
}
.hero-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #fff; padding: 14px 24px;
  border-radius: 10px; border: none; font-size: 15px; font-weight: 500;
  cursor: pointer; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary {
  background: #fff; color: var(--text); padding: 14px 24px;
  border-radius: 10px; border: 1px solid var(--border); font-size: 15px; font-weight: 500;
  cursor: pointer; text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--text-2); }
.hero-card {
  background: linear-gradient(160deg, #2E5BEC 0%, #2247CF 100%);
  border: none; border-radius: 18px; padding: 30px; color: #fff;
  box-shadow: 0 20px 48px rgba(43,84,230,0.28);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-card-eyebrow { font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: #BCC9F7; font-weight: 600; margin-bottom: 18px; }
.hero-card h3 { font-size: 21px; margin-bottom: 20px; font-weight: 700; color: #fff; letter-spacing: -0.3px; }
.metric-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px;
}
.metric-cell { padding: 16px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.13); border-radius: 12px; }
.metric-label { font-size: 11px; color: #BCC9F7; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.3px; font-weight: 600; }
.metric-num { font-size: 26px; font-weight: 700; letter-spacing: -0.6px; color: #fff; }
.metric-num small { font-size: 14px; font-weight: 500; color: #D5DEFB; }
.hero-card-foot {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px; color: #C9D4F9;
}
.hero-card-foot strong { color: #fff; font-weight: 600; }
@media (max-width: 900px) {
  .hero { padding: 48px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  h1 { font-size: 34px; }
  .hero-sub { font-size: 16px; }
}

/* ===== TRUST STRIP — лента доверия ===== */
.trust-strip {
  padding: 30px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.trust-content {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; font-size: 14px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px; color: var(--text-2);
}
.trust-icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.trust-item strong { color: var(--text); font-weight: 600; }
@media (max-width: 768px) {
  .trust-content { grid-template-columns: 1fr; gap: 18px; }
}

/* ===== SECTION COMMON ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px; font-weight: 600;
}
.section h2 {
  font-size: 36px; line-height: 1.15; font-weight: 700;
  letter-spacing: -0.8px; margin-bottom: 14px; max-width: 760px;
}
.section-lead {
  font-size: 17px; color: var(--text-2); max-width: 640px; margin-bottom: 48px;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section h2 { font-size: 28px; }
}

/* ===== БОЛИ СОТРУДНИКОВ ===== */
.pains-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.pain-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 24px;
}
.pain-icon {
  width: 48px; height: 48px; border-radius: 11px;
  background: var(--warn-bg); color: var(--warn);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.pain-card h3 { font-size: 16px; margin-bottom: 8px; font-weight: 600; line-height: 1.3; }
.pain-card p { font-size: 14px; color: var(--text-2); line-height: 1.55; }
.pain-arrow {
  margin: 14px 0 0; padding-top: 14px; border-top: 1px dashed var(--border);
  display: flex; gap: 8px; align-items: flex-start; font-size: 13px;
}
.pain-arrow strong { color: var(--ok); font-weight: 600; flex-shrink: 0; }
@media (max-width: 900px) {
  .pains-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pains-grid { grid-template-columns: 1fr; }
}

/* ===== ВОЗРАЖЕНИЯ ===== */
.objections-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.objection {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 24px 28px;
}
.objection-q {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px;
}
.objection-q-mark {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  background: var(--warn-bg); color: var(--warn);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.objection-q-text { font-size: 16px; font-weight: 600; line-height: 1.4; padding-top: 4px; }
.objection-a {
  display: flex; gap: 12px; align-items: flex-start;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.objection-a-mark {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  background: var(--ok-bg); color: var(--ok);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.objection-a-text { font-size: 14px; color: var(--text-2); line-height: 1.6; padding-top: 4px; }
@media (max-width: 768px) {
  .objections-grid { grid-template-columns: 1fr; }
}

/* ===== ВОРОНКА / 4 ШАГА ===== */
.funnel {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative;
}
.funnel-step {
  background: #fff; border: 1px solid var(--border);
  padding: 24px; position: relative;
}
.funnel-step:first-child { border-radius: 14px 0 0 14px; }
.funnel-step:last-child { border-radius: 0 14px 14px 0; }
.funnel-step:not(:first-child) { border-left: none; }
.funnel-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 19px;
  margin-bottom: 14px;
}
.funnel-step h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; line-height: 1.3; }
.funnel-step p { font-size: 13px; color: var(--text-2); line-height: 1.55; }
.funnel-time {
  display: inline-block; font-size: 11px; color: var(--text-3);
  background: var(--bg-alt); padding: 3px 8px; border-radius: 4px;
  margin-top: 12px; font-weight: 500;
}
@media (max-width: 900px) {
  .funnel { grid-template-columns: 1fr 1fr; }
  .funnel-step { border-radius: 0 !important; border-left: 1px solid var(--border) !important; border-bottom: none; }
  .funnel-step:nth-child(3) { border-top: none; }
  .funnel-step:nth-child(4) { border-top: none; }
}
@media (max-width: 600px) {
  .funnel { grid-template-columns: 1fr; }
  .funnel-step { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 8px; }
}

/* ===== ПРОГРАММА (7 БЛОКОВ) ===== */
.program-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px;
}
.program-meta {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-bottom: 32px;
}
.program-meta-cell {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 16px;
}
.program-meta-label { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.3px; font-weight: 500; margin-bottom: 4px; }
.program-meta-value { font-size: 18px; font-weight: 600; }
.program-blocks { display: flex; flex-direction: column; gap: 10px; }
.program-block {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 16px 20px; display: flex; gap: 14px; align-items: flex-start;
}
.program-block-num {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 11px;
  background: var(--accent-bg); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
}
.program-block-text { font-size: 14px; line-height: 1.5; }
.program-block-text strong { font-weight: 600; }
@media (max-width: 900px) {
  .program-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== ОТДЕЛЫ ===== */
.deps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.dep {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 22px; display: flex; flex-direction: column;
}
.dep-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.dep-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--accent-bg); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.dep h3 { font-size: 15px; font-weight: 600; line-height: 1.2; }
.dep-tasks {
  font-size: 13px; color: var(--text-2); margin-bottom: 14px; line-height: 1.55;
}
.dep-tasks strong { color: var(--text); font-weight: 500; }
.dep-boost {
  margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--border);
  display: flex; gap: 8px; align-items: flex-start; font-size: 13px;
  line-height: 1.5;
}
.dep-boost-mark {
  flex-shrink: 0; color: var(--ok); font-weight: 700;
}
.dep-boost-text { color: var(--text-2); }
.dep-boost-text strong { color: var(--ok); font-weight: 600; }
@media (max-width: 1100px) {
  .deps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .deps-grid { grid-template-columns: 1fr; }
}

/* ===== КАЛЬКУЛЯТОР ===== */
.calc {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 36px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px;
  align-items: stretch;
}
.calc-controls h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.calc-controls .calc-sub { font-size: 14px; color: var(--text-2); margin-bottom: 28px; }
.calc-row { margin-bottom: 24px; }
.calc-row label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; color: var(--text-2); margin-bottom: 10px; font-weight: 500;
}
.calc-row label span {
  font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -0.4px;
}
.calc-slider {
  width: 100%; height: 6px; border-radius: 100px;
  background: var(--bg-alt);
  appearance: none; -webkit-appearance: none; outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,0.4); cursor: pointer;
}
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,0.4); cursor: pointer;
  border: 3px solid #fff;
}
.calc-slider-marks {
  display: flex; justify-content: space-between; margin-top: 8px;
  font-size: 11px; color: var(--text-3);
}
.calc-result {
  background: linear-gradient(160deg, #2D57E8 0%, #2348D6 100%);
  border-radius: 14px; padding: 30px; color: #fff;
  display: flex; flex-direction: column; justify-content: center;
}
.calc-result-label {
  font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase;
  color: #B9C8F7; margin-bottom: 8px; font-weight: 600;
}
.calc-result-num {
  font-size: 46px; font-weight: 700; letter-spacing: -1.6px; line-height: 1; margin-bottom: 6px;
}
.calc-result-num small { font-size: 22px; font-weight: 500; }
.calc-num-gain { color: #7CE8A0; }
.calc-num-gain small { color: #A7F0BF; }
.calc-result-sub { font-size: 14px; color: #C9D4F9; line-height: 1.5; }
.calc-divider { height: 1px; background: rgba(255,255,255,0.16); margin: 22px 0; }
.calc-cta-white { display: block; margin-top: 24px; background: #fff; color: var(--accent); padding: 14px 22px; border-radius: 10px; text-decoration: none; font-size: 15px; font-weight: 600; text-align: center; }
.calc-cta-white:hover { background: #EEF1FE; }
.calc-fineprint { font-size: 11px; color: #9FB0E8; margin-top: 14px; line-height: 1.4; }
@media (max-width: 900px) {
  .calc { grid-template-columns: 1fr; gap: 28px; padding: 24px; }
  .calc-result-num { font-size: 42px; }
}

/* ===== ВЫГОДЫ ===== */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.benefit {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 28px;
}
.benefit-num {
  font-size: 36px; font-weight: 700; color: var(--accent);
  letter-spacing: -1px; margin-bottom: 8px; line-height: 1;
}
.benefit h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.benefit p { font-size: 14px; color: var(--text-2); line-height: 1.55; }
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ===== ФОРМА ===== */
.form-section {
  background: linear-gradient(135deg, #2B54E6 0%, #1E3CB8 100%);
  color: #fff;
}
.form-section .section-eyebrow { color: #8FB8EC; }
.form-section h2 { color: #fff; }
.form-section .section-lead { color: #CBD5E1; }
.form-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.form-side h2 { color: #fff; margin-bottom: 28px; }
.form-side ul { list-style: none; padding: 0; margin: 20px 0 0; }
.form-side ul li {
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 15px; display: flex; gap: 12px; align-items: flex-start;
  color: #CBD5E1; line-height: 1.5;
}
.form-side ul li::before {
  content: '✓'; color: #4ADE80; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.form-side ul li strong { color: #fff; font-weight: 600; }
.form-urgency { display: flex; gap: 8px; align-items: center; background: var(--warn-bg); color: var(--warn); border-radius: 8px; padding: 10px 13px; font-size: 13px; font-weight: 600; margin-bottom: 18px; }
.form-saving { display: none; margin-top: 8px; font-size: 13px; color: var(--accent-dark); background: var(--accent-bg); border-radius: 8px; padding: 9px 12px; font-weight: 500; }
.form-saving b { font-weight: 700; }
.form-card {
  background: #fff; color: var(--text);
  border-radius: 16px; padding: 32px;
}
.form-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.4px; }
.form-card-sub { font-size: 14px; color: var(--text-2); margin-bottom: 24px; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field-double { grid-column: span 2; }
.form-field label {
  font-size: 13px; font-weight: 500; color: var(--text);
}
.form-field label .req { color: var(--danger); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 14px; font-family: inherit; color: var(--text);
  background: #fff; transition: border-color 0.15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}
.form-field-hint { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.form-radio-group { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.form-radio {
  flex: 1 1 calc(50% - 4px); min-width: 0;
  padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px;
  cursor: pointer; font-size: 13px; text-align: center; user-select: none;
  background: #fff; transition: all 0.15s;
}
.form-radio:hover { border-color: var(--text-3); }
.form-radio input { display: none; }
.form-radio.checked {
  border-color: var(--accent); background: var(--accent-bg); color: var(--accent-dark);
  font-weight: 500;
}
.form-submit {
  width: 100%; background: var(--accent); color: #fff; border: none;
  padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 500;
  cursor: pointer; margin-top: 8px;
}
.form-submit:hover { background: var(--accent-dark); }
.form-foot {
  font-size: 12px; color: var(--text-3); margin-top: 14px; text-align: center;
}
@media (max-width: 900px) {
  .form-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .form-field-double { grid-column: span 1; }
}

/* ===== CTA BAR (inline конверсионный блок) ===== */
.cta-bar { margin-top: 36px; background: var(--accent-bg); border: 1px solid var(--border); border-radius: 14px; padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.cta-bar p { font-size: 16px; font-weight: 600; color: var(--accent-dark); margin: 0; }
.cta-bar p span { display: block; font-size: 13px; font-weight: 400; color: var(--text-2); margin-top: 2px; }
.cta-bar a { flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark); color: #94A3B8;
  padding: 48px 0 32px; font-size: 13px;
}
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer a { color: #CBD5E1; text-decoration: none; }
.footer a:hover { color: #fff; }