:root {
  --bg: #FFFFFF;
  --bg-alt: #F1F4FE;
  --bg-dark: #1A2C6E;
  --text: #111A33;
  --text-2: #4A5570;
  --text-3: #909BBA;
  --border: #E3E7F6;
  --accent: #2B54E6;
  --accent-dark: #2244C6;
  --accent-bg: #E9EDFE;
  --steel: #1E327E;
  --ok: #16A34A;
  --ok-bg: #F0FDF4;
  --warn: #C2410C;
  --warn-bg: #FFF4ED;
  --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.94); 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: 10px; font-weight: 600; font-size: 15px; }
.logo-mark { width: 34px; height: 34px; background: var(--steel); 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: 24px; 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; }
.header-cta:hover { background: var(--accent-dark); }
@media (max-width: 1000px) { .header-nav, .header-phone { display: none; } }
@media (max-width: 600px) {
  .header-inner { flex-wrap: wrap; height: auto; padding: 12px 20px 14px; gap: 10px; }
  .header-cta { width: 100%; text-align: center; box-sizing: border-box; margin: 0; display: block; }
}

/* HERO */
.hero { padding: 64px 0 56px; background: linear-gradient(180deg, #EEF1FE 0%, #FFFFFF 100%); border-bottom: 1px solid var(--border); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 52px; 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: 44px; line-height: 1.1; font-weight: 700; letter-spacing: -1.1px; margin-bottom: 18px; color: var(--text); }
.h1-accent { color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--text-2); margin-bottom: 26px; max-width: 540px; }
.hero-bullets { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 30px; }
.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-cta-row { display: flex; gap: 12px; 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: 26px; color: #fff; box-shadow: 0 20px 48px rgba(43,84,230,0.28); }
.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: 44px 0; } .hero-grid { grid-template-columns: 1fr; gap: 32px; } h1 { font-size: 32px; } .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); }
@media (max-width: 820px) { .trust-content { grid-template-columns: 1fr; gap: 18px; max-width: 460px; margin: 0 auto; } }
.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; }

/* SECTIONS */
.section { padding: 76px 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: 34px; line-height: 1.15; font-weight: 700; letter-spacing: -0.7px; margin-bottom: 14px; max-width: 780px; color: var(--text); }
.section-lead { font-size: 17px; color: var(--text-2); max-width: 660px; margin-bottom: 44px; }
@media (max-width: 768px) { .section { padding: 52px 0; } .section h2 { font-size: 26px; } }
@media (max-width: 600px) {
  .btn-primary, .btn-secondary, .header-cta, .form-submit, .calc-cta-white {
    display: block !important; width: 100% !important; box-sizing: border-box !important; text-align: center !important;
  }
  .hero-cta-row { flex-direction: column !important; }
  .dir-link { display: block !important; width: 100% !important; box-sizing: border-box !important; text-align: center !important; }
}

/* INLINE CTA BAR (repeated conversion element) */
.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(--steel); 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; }

/* EXPLAINER (project / why free) */
.explainer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.explainer-flow { display: flex; flex-direction: column; gap: 12px; height: 100%; }
.explainer-step { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px; display: flex; gap: 14px; align-items: flex-start; flex: 1; }
.explainer-step b { display: block; font-size: 15px; margin-bottom: 3px; color: var(--steel); }
.explainer-step span { font-size: 14px; color: var(--text-2); }
.explainer-step .ex-num { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; background: var(--accent-bg); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.explainer-facts { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; }
.explainer-fact { display: flex; gap: 20px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--border); }
.explainer-fact:first-of-type { padding-top: 2px; }
.explainer-fact b { font-size: 42px; font-weight: 700; color: var(--accent); letter-spacing: -1.4px; min-width: 138px; line-height: 1.0; }
.explainer-fact span { font-size: 14px; color: var(--text-2); line-height: 1.45; }
.explainer-doc { display: inline-block; margin-top: 18px; font-size: 14px; color: var(--accent); text-decoration: none; font-weight: 600; }
.explainer-doc:hover { text-decoration: underline; }
@media (max-width: 900px) { .explainer-grid { grid-template-columns: 1fr; gap: 26px; align-items: start; } .explainer-step { flex: none; } }

/* PAINS */
.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); }
.pain-arrow { margin-top: 14px; 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: 700; flex-shrink: 0; }
@media (max-width: 900px) { .pains-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pains-grid { grid-template-columns: 1fr; } }

/* AUDIENCE (niches + triggers) */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.niche-box, .trigger-box { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.niche-box h3, .trigger-box h3 { font-size: 17px; font-weight: 600; margin-bottom: 16px; }
.niche-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.niche-tag { background: var(--accent-bg); color: var(--accent-dark); border-radius: 8px; padding: 8px 13px; font-size: 14px; font-weight: 500; }
.trigger-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.trigger-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-2); }
.trigger-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
@media (max-width: 900px) { .aud-grid { grid-template-columns: 1fr; } }

/* FUNNEL */
.funnel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.funnel-step { background: #fff; border: 1px solid var(--border); padding: 24px; }
.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); }
.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; } .funnel-step:nth-child(3), .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; } }

/* CALCULATOR (universal block) */
.calc { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 36px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; }
.calc-controls h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.calc-sub { font-size: 14px; color: var(--text-2); margin-bottom: 26px; }
.calc-row { margin-bottom: 22px; }
.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: 21px; 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(43,84,230,0.45); cursor: pointer; }
.calc-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; cursor: pointer; }
.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-loss { color: #FB8A8A; }
.calc-num-loss small { color: #FBB6B6; }
.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: 16px; line-height: 1.4; }
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; gap: 26px; padding: 24px; } .calc-result-num { font-size: 40px; } }

/* PROGRAM */
.program-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 44px; }
.program-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.program-meta-cell { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.program-meta-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.3px; font-weight: 600; margin-bottom: 4px; }
.program-meta-value { font-size: 17px; 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; } }

/* SKILLS */
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.skill { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.skill-icon { 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: 21px; margin-bottom: 12px; }
.skill h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.skill p { font-size: 14px; color: var(--text-2); }
@media (max-width: 900px) { .skills-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .skills-grid { grid-template-columns: 1fr; } }

/* TRUST: cases + logos */
.cases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 36px; }
.case { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.case-num { font-size: 30px; font-weight: 700; color: var(--accent); letter-spacing: -0.8px; margin-bottom: 4px; }
.case-co { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.case p { font-size: 13px; color: var(--text-2); }
.logos-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }
.logo-chip { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 12px 22px; font-size: 14px; font-weight: 600; color: var(--text-2); }
@media (max-width: 1000px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cases-grid { grid-template-columns: 1fr; } }

/* OBJECTIONS */
.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; } }

/* FORM */
.form-section { background: linear-gradient(135deg, #2B54E6 0%, #1E3CB8 100%); color: #fff; }
.form-section .section-eyebrow { color: #8FB8EC; }
.form-section h2 { color: #fff; }
.form-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 52px; align-items: start; }
.form-side h2 { margin-bottom: 22px; }
.form-side h3 { font-size: 18px; margin-bottom: 4px; color: #fff; }
.form-side ul { list-style: none; margin-top: 28px; }
.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; }
.form-side ul li::before { content: '✓'; color: #4ADE80; font-weight: 700; flex-shrink: 0; }
.form-side ul li strong { color: #fff; font-weight: 600; }
.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: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-size: 13px; font-weight: 500; }
.form-field label .req { color: var(--warn); }
.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; }
.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-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-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: 6px; }
.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: 30px; } .form-row { grid-template-columns: 1fr; } }

/* FOOTER */
.footer { background: var(--bg-dark); color: #94A3B8; padding: 44px 0 30px; 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; }
@media (max-width: 768px) {
  #about > .container > div { grid-template-columns: 1fr !important; gap: 28px !important; }
}

/* DIRECTIONS CATALOG */
.dir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dir-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; transition: border-color .15s, box-shadow .15s, transform .15s; }
.dir-card:hover { border-color: var(--accent); box-shadow: 0 12px 32px rgba(43,84,230,0.10); transform: translateY(-2px); }
.dir-icon { width: 54px; height: 54px; border-radius: 13px; background: var(--accent-bg); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; font-size: 27px; margin-bottom: 16px; }
.dir-cat { font-size: 12px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--text-3); font-weight: 600; margin-bottom: 8px; }
.dir-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; line-height: 1.25; }
.dir-card > p { font-size: 14px; color: var(--text-2); margin-bottom: 16px; }
.dir-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.dir-meta span { font-size: 12px; background: var(--bg-alt); color: var(--text-2); border-radius: 6px; padding: 5px 10px; font-weight: 500; }
.dir-link { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 600; font-size: 15px; text-decoration: none; transition: gap .15s; }
.dir-link:hover { gap: 11px; }
.dir-wide { margin-top: 18px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.dir-wide-text h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.dir-wide-text p { font-size: 14px; color: var(--text-2); margin-bottom: 12px; }
.dir-wide-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dir-wide-tags span { font-size: 13px; background: var(--accent-bg); color: var(--accent-dark); border-radius: 8px; padding: 7px 12px; font-weight: 500; }
@media (max-width: 900px) { .dir-grid { grid-template-columns: 1fr; } .dir-wide { flex-direction: column; align-items: flex-start; } }
.form-hint { font-weight: 400; color: var(--text-3); font-size: 12px; }
.form-checks { display: flex; flex-direction: column; gap: 8px; }
.form-check { display: flex; align-items: center; gap: 11px; border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; font-size: 14px; cursor: pointer; user-select: none; background: #fff; transition: border-color .15s, background .15s; }
.form-check:hover { border-color: var(--text-3); }
.form-check input { accent-color: var(--accent); margin: 0; width: 17px; height: 17px; flex-shrink: 0; }
.form-check.checked { border-color: var(--accent); background: var(--accent-bg); color: var(--accent-dark); font-weight: 500; }

/* eligibility block */
.eligibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 32px; }
.elig-item { display: flex; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.elig-check { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; min-width: 28px; background: var(--ok-bg); color: var(--ok); font-weight: 700; font-size: 16px; border-radius: 50%; }
.elig-icon { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; min-width: 28px; background: var(--accent-bg); color: var(--accent); font-weight: 700; font-size: 15px; border-radius: 50%; }
.elig-note { background: var(--accent-bg); border-color: var(--accent); }
.elig-item b { display: block; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.elig-item p { font-size: 13px; color: var(--text-2); margin: 0; }
@media (max-width: 640px) { .eligibility-grid { grid-template-columns: 1fr; } }
/* logo */
.logo { display: flex; align-items: center; gap: 0; 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; }
/* geography map */
.russia-map { display: block; width: 100%; margin-top: 32px; border-radius: 16px; box-shadow: 0 2px 16px rgba(43,84,230,0.10); }
/* partner logos */
.partner-logo { height: 36px; width: auto; max-width: 120px; object-fit: contain; opacity: 0.8; filter: grayscale(30%); transition: opacity .2s, filter .2s; }
.partner-logo:hover { opacity: 1; filter: grayscale(0%); }
/* about */
.about-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; margin-top: 32px; align-items: start; }
.about-lead { font-size: 16px; color: var(--text-2); line-height: 1.6; margin-bottom: 24px; }
.about-bullets { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.about-bullet { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.about-check { color: var(--ok); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.about-link { font-size: 14px; color: var(--accent); text-decoration: none; font-weight: 600; }
.about-link:hover { text-decoration: underline; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stat { background: var(--accent-bg); border-radius: 16px; padding: 20px 18px; }
.about-stat-num { font-size: 32px; font-weight: 700; color: var(--accent); letter-spacing: -1px; line-height: 1.1; margin-bottom: 4px; }
.about-stat-label { font-size: 13px; color: var(--text-2); line-height: 1.4; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .about-stats { grid-template-columns: 1fr 1fr; } }
/* reviews */
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.review-body { font-size: 14px; color: var(--text-2); line-height: 1.65; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-author strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.review-author span { display: block; font-size: 12px; color: var(--text-3); line-height: 1.4; margin-top: 2px; }
@media (max-width: 720px) { .reviews-grid { grid-template-columns: 1fr; } }