/* ===== TOKENS ===== */
:root {
    --ink: #0F1720;
    --ink-soft: #334155;
    --muted: #64748B;
    --line: #E6E8EC;
    --bg: #FFFFFF;
    --tint: #F6F8F9;
    /* ---- АКЦЕНТ: единственный цвет ---- */
    --accent: #2563EB;
    --accent-dark: #1D4ED8;
    /* ---- /АКЦЕНТ ---- */
    --radius: 8px;
    --container: 1120px;
    --shadow: 0 6px 24px rgba(15,23,32,.07);

    /* ---- ШРИФТЫ: меняй только этот блок ---- */
    --font-head: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* ---- /ШРИФТЫ ---- */
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS (два стиля: заливка и контур) ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 22px; border-radius: var(--radius);
    font-weight: 500; font-size: 15px;
    border: 1px solid transparent; cursor: pointer;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }

/* ===== HERO ===== */
.hero {
    background: var(--bg);
    padding: clamp(72px, 12vw, 128px) 0 clamp(56px, 9vw, 96px);
    border-bottom: 1px solid var(--line);
}
.hero__inner { max-width: 860px; }
.hero__eyebrow {
    text-transform: uppercase; letter-spacing: .14em; font-size: 13px; font-weight: 500;
    color: var(--accent); margin-bottom: 22px;
}
.hero__title { font-size: clamp(34px, 5.4vw, 56px); font-weight: 600; }
.hero__lead { margin-top: 24px; font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); max-width: 660px; }
.hero__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__facts {
    margin-top: 48px; display: flex; flex-wrap: wrap; gap: 12px 40px;
    padding-top: 28px; border-top: 1px solid var(--line);
    font-size: 15px; color: var(--muted);
}
.hero__facts b { color: var(--ink); font-weight: 500; }

/* ===== SECTIONS (заголовки слева, без центрирования) ===== */
.section { padding: clamp(64px, 9vw, 100px) 0; }
.section--tint { background: var(--tint); }
.section__title {
    font-size: clamp(26px, 3.4vw, 36px); font-weight: 600; max-width: 820px;
    margin: 0; text-align: left;
}
.section__intro { margin: 16px 0 0; max-width: 720px; text-align: left; color: var(--ink-soft); font-size: 18px; }
.section__note { margin: 28px 0 0; max-width: 720px; text-align: left; color: var(--muted); font-size: 16px; }

/* ===== POINTS (контекст) — простой список из двух колонок, без боксов ===== */
.points { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.point { padding: 22px 0; border-top: 1px solid var(--line); }
.point h3 { font-size: 18px; margin-bottom: 8px; }
.point p { color: var(--ink-soft); font-size: 16px; }

/* ===== CARDS (форматы) ===== */
.cards { margin-top: 40px; display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.card {
    background: var(--bg); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 28px 26px;
    transition: border-color .15s ease;
}
.card:hover { border-color: var(--accent); }
.card h3 { font-size: 20px; }
.card p { margin-top: 12px; color: var(--ink-soft); font-size: 16px; }

/* ===== REASONS (почему я) — простой список, без «таблицы» ===== */
.reasons { margin-top: 32px; display: grid; gap: 0; max-width: 860px; }
.reasons li { padding: 22px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 16px; }
.reasons li:last-child { border-bottom: 1px solid var(--line); }
.reasons__key { display: block; font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 18px; margin-bottom: 6px; }

/* ===== ATTEST (чем подтверждаю) — простой список, без бокса на белом ===== */
.attest { max-width: 860px; margin: 44px 0 0; }
.attest h3 { font-size: 18px; margin-bottom: 16px; }
.attest ul { display: grid; gap: 12px; }
.attest li { position: relative; padding-left: 20px; color: var(--ink-soft); font-size: 16px; }
.attest li::before {
    content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px;
    border-radius: 50%; background: var(--accent);
}
.attest b { color: var(--ink); font-weight: 600; }
.proof__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-start; }

/* ===== STEPS (как работаю) — компактные строки, не вертикальные боксы ===== */
.steps { margin-top: 28px; max-width: 780px; display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 30px 1fr; gap: 14px; padding: 18px 0; align-items: baseline; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--accent); }
.step p { color: var(--ink-soft); font-size: 16px; }
.step b { color: var(--ink); font-weight: 600; }

/* ===== CTA (кнопки в секции «Расскажите задачу») ===== */
.cta__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-start; }

/* ===== PARTNERS — приглушённый второстепенный блок ===== */
.partners { padding: clamp(40px, 6vw, 64px) 0; border-top: 1px solid var(--line); }
.partners__title { font-family: var(--font-head); font-weight: 600; font-size: 20px; color: var(--ink-soft); max-width: 760px; }
.partners__text { margin-top: 12px; max-width: 700px; color: var(--muted); font-size: 15px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg); color: var(--muted); padding: 40px 0; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.footer__brand { color: var(--ink); font-weight: 500; }
.footer__links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer__links a { font-size: 15px; color: var(--muted); transition: color .15s ease; }
.footer__links a:hover { color: var(--ink); }
.footer__legal { font-size: 13px; color: var(--muted); width: 100%; padding-top: 18px; border-top: 1px solid var(--line); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .points { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .cards { grid-template-columns: 1fr; }
    body { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; }
}
