/* =========================================================
   SetCad — Landing Page Styles
   Mobile First · Бренд: чёрный / светло-серый / зелёный #00A63F
   ========================================================= */

/* ---------- Дизайн-токены ---------- */
:root {
    --green: #00A63F;
    --green-dark: #008A35;
    --green-light: #E6F7EE;
    --green-glow: rgba(0, 166, 63, 0.18);

    --black: #0E1217;
    --ink: #1A1F26;
    --body: #4A5159;
    --muted: #8A929C;

    --bg: #FFFFFF;
    --bg-soft: #F5F7F9;
    --bg-dark: #0E1217;

    --border: #E6E9ED;
    --border-strong: #D4D9DF;

    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;

    --shadow-sm: 0 1px 2px rgba(14, 18, 23, 0.04), 0 2px 8px rgba(14, 18, 23, 0.04);
    --shadow: 0 4px 12px rgba(14, 18, 23, 0.06), 0 12px 32px rgba(14, 18, 23, 0.06);
    --shadow-lg: 0 12px 28px rgba(14, 18, 23, 0.10), 0 24px 64px rgba(14, 18, 23, 0.12);
    --shadow-green: 0 8px 24px rgba(0, 166, 63, 0.30);

    --container: 1200px;
    --header-h: 72px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ---------- Сброс ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--body);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }
ul, ol { list-style: none; }

/* ---------- Контейнер ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ---------- Кнопки ---------- */
.btn {
    --btn-bg: var(--green);
    --btn-color: #fff;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px;
    font-size: 0.95rem; font-weight: 600; line-height: 1.3;
    border-radius: var(--radius-sm);
    background: var(--btn-bg); color: var(--btn-color);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    max-width: 100%;
    text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--accent { background: var(--green); color: #fff; box-shadow: var(--shadow-green); }
.btn--accent:hover { background: var(--green-dark); box-shadow: 0 12px 28px rgba(0,166,63,.4); }

.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border-strong); box-shadow: none; }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }

.btn--white { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.btn--white:hover { background: var(--bg-soft); }

.btn--accent-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); box-shadow: none; }
.btn--accent-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Логотип ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.logo__mark svg { display: block; }
.logo__text { font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.logo__accent { color: var(--green); }

.logo--full { color: var(--ink); }
.logo__full { display: block; height: 32px; width: auto; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }

.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.nav { display: none; align-items: center; gap: 28px; }
.nav__link { font-size: 0.95rem; font-weight: 500; color: var(--ink); position: relative; transition: color .2s var(--ease); }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--green); transition: width .25s var(--ease); }
.nav__link:hover { color: var(--green); }
.nav__link:hover::after { width: 100%; }
.nav__phones { display: none; flex-direction: column; gap: 2px; padding-left: 24px; margin-left: 8px; border-left: 1px solid var(--border); }
.nav__phone { font-size: 0.875rem; font-weight: 600; color: var(--ink); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.header__phones { display: none; flex-direction: column; align-items: flex-end; gap: 2px; }
.header__phones a { font-size: 0.85rem; font-weight: 600; color: var(--ink); transition: color .2s; }
.header__phones a:hover { color: var(--green); }
.header .btn { display: none; }

/* Бургер */
.burger { display: inline-flex; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Мобильное меню (выезжает из шапки) */
@media (max-width: 991px) {
    .nav {
        display: flex; flex-direction: column; align-items: stretch; gap: 0;
        position: fixed; top: var(--header-h); left: 0; right: 0;
        background: #fff;
        max-height: 0; overflow: hidden;
        box-shadow: var(--shadow);
        transition: max-height .35s var(--ease);
        border-bottom: 1px solid var(--border);
    }
    .nav.is-open { max-height: 80vh; overflow-y: auto; }
    .nav__link { padding: 16px 20px; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
    .nav__link::after { display: none; }
    .nav__phones { display: flex; padding: 16px 20px; margin: 0; border-left: 0; border-top: 1px solid var(--border); }
    .nav__phone { font-size: 1rem; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: calc(var(--header-h) + 48px) 0 72px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, #000 30%, transparent 75%);
    opacity: .55;
}
.hero__glow {
    position: absolute; top: -120px; right: -120px;
    width: 480px; height: 480px; border-radius: 50%;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
    filter: blur(20px);
}

.hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 40px; }

.hero__content { max-width: 640px; }
.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px; border-radius: 100px;
    background: var(--green-light); color: var(--green-dark);
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.01em;
    margin-bottom: 22px;
}
.hero__badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-glow); }

.hero__title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800; line-height: 1.08; letter-spacing: -0.03em;
    color: var(--ink); margin-bottom: 20px;
}
.hero__title em { font-style: normal; color: var(--green); }

.hero__subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: var(--body); margin-bottom: 32px; max-width: 560px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

@media (max-width: 479px) {
    .hero__actions .btn--lg,
    .cta-bar__actions .btn--lg { width: 100%; }
}

.hero__stats {
    display: grid; grid-template-columns: 1fr; gap: 20px;
    border-top: 1px solid var(--border); padding-top: 28px;
}
.hero__stats li { display: flex; flex-direction: column; gap: 4px; }
.hero__stats strong { font-size: 1.5rem; font-weight: 800; color: var(--ink); line-height: 1; }
.hero__stats span { font-size: 0.875rem; color: var(--muted); }

.hero__visual { display: none; }
.hero__card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 36px; box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
    display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.hero__card svg { width: 100%; height: auto; }
.hero__card-label { font-size: 0.9rem; font-weight: 600; color: var(--green-dark); }

/* ---------- Анимация графика в hero-карточке ---------- */
.hero__chart-clip-rect {
    transform-box: view-box;
    transform-origin: 0px 0px;
    transform: scaleX(0);
    animation: chart-reveal 1.1s var(--ease) .15s forwards;
}
.hero__chart-fill {
    opacity: 0;
    animation: chart-fill-in .7s var(--ease) 1.05s forwards;
}
.hero__chart-base {
    stroke-dasharray: 6 6;
    stroke-dashoffset: 0;
    opacity: 0;
    animation:
        chart-base-in .4s var(--ease) .05s forwards,
        chart-march 18s linear 1.5s infinite;
}
.hero__chart-dot {
    transform-origin: center;
    transform-box: fill-box;
    opacity: 0;
    animation: chart-dot-pop .5s cubic-bezier(0.34, 1.56, 0.64, 1) var(--d, 0s) forwards;
}
.hero__card-label {
    opacity: 0;
    transform: translateY(6px);
    animation: chart-label-in .5s var(--ease) 1.3s forwards;
}

@keyframes chart-reveal {
    to { transform: scaleX(1); }
}
@keyframes chart-fill-in {
    to { opacity: 0.12; }
}
@keyframes chart-base-in {
    to { opacity: 1; }
}
@keyframes chart-march {
    to { stroke-dashoffset: -240; }
}
@keyframes chart-dot-pop {
    0% { opacity: 0; transform: scale(0); }
    70% { opacity: 1; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes chart-label-in {
    to { opacity: 1; transform: none; }
}

/* =========================================================
   СЕКЦИИ (общее)
   ========================================================= */
.section { padding: 72px 0; }
.section__head { max-width: 720px; margin-bottom: 44px; }
.section__eyebrow {
    display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.15;
    letter-spacing: -0.02em; color: var(--ink); margin-bottom: 14px;
}
.section__lead { font-size: 1.05rem; color: var(--body); }

.section__head--light .section__title { color: #fff; }
.section__head--light .section__lead { color: rgba(255,255,255,0.72); }

/* =========================================================
   УСЛУГИ
   ========================================================= */
.services { background: var(--bg-soft); }
.services__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }

.card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green); }

.service__icon {
    width: 64px; height: 64px; border-radius: 16px;
    display: grid; place-items: center;
    background: var(--green-light); color: var(--green);
    margin-bottom: 20px;
}
.service__title { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.service__text { color: var(--body); margin-bottom: 16px; }
.service__list { display: flex; flex-direction: column; gap: 8px; }
.service__list li {
    position: relative; padding-left: 24px; font-size: 0.925rem; color: var(--ink); font-weight: 500;
}
.service__list li::before {
    content: ''; position: absolute; left: 0; top: 7px;
    width: 16px; height: 9px;
    border-left: 2px solid var(--green); border-bottom: 2px solid var(--green);
    transform: rotate(-45deg);
}

/* =========================================================
   ДОВЕРИЕ
   ========================================================= */
.trust { background: var(--bg-dark); color: rgba(255,255,255,0.78); position: relative; overflow: hidden; }
.trust::before {
    content: ''; position: absolute; top: -150px; left: -150px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
    filter: blur(30px); pointer-events: none;
}
.trust__grid { display: grid; grid-template-columns: 1fr; gap: 20px; position: relative; z-index: 1; }
.trust__item {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 28px;
    transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.trust__item:hover { background: rgba(0,166,63,0.08); border-color: rgba(0,166,63,0.3); transform: translateY(-4px); }
.trust__icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: grid; place-items: center; margin-bottom: 18px;
    background: rgba(0,166,63,0.15); color: var(--green);
}
.trust__item h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.trust__item p { font-size: 0.925rem; color: rgba(255,255,255,0.66); margin-bottom: 12px; }
.trust__code {
    display: inline-block; padding: 6px 12px; border-radius: 8px;
    background: rgba(0,166,63,0.15); color: var(--green);
    font-size: 0.875rem; font-weight: 700; font-family: 'Montserrat', monospace;
}

/* =========================================================
   КАК МЫ РАБОТАЕМ
   ========================================================= */
.process { background: var(--bg); }
.steps {
    display: grid; grid-template-columns: 1fr; gap: 16px;
    counter-reset: step;
}
.step {
    position: relative; padding: 28px 28px 28px 28px;
    background: var(--bg-soft); border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step__num {
    font-size: 2rem; font-weight: 900; color: var(--green);
    line-height: 1; margin-bottom: 14px; letter-spacing: -0.04em;
    opacity: .9;
}
.step__title { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step__text { font-size: 0.95rem; color: var(--body); }

/* =========================================================
   CTA-ПОЛОСА
   ========================================================= */
.cta-bar {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 48px 0;
}
.cta-bar__inner { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.cta-bar__text h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; line-height: 1.2; margin-bottom: 8px; }
.cta-bar__text p { color: rgba(255,255,255,0.88); }
.cta-bar__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================
   КОНТАКТЫ
   ========================================================= */
.contacts { background: var(--bg-soft); }
.contacts__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }

.contacts__form-wrap { padding: 32px; }
.contacts__form-title { font-size: 1.4rem; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 24px; }

/* Форма */
.form { display: flex; flex-direction: column; gap: 18px; }
.form__field { display: flex; flex-direction: column; gap: 7px; }
.form__field label { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.form__field input[type="text"],
.form__field input[type="tel"] {
    padding: 14px 16px; font-size: 1rem; color: var(--ink);
    background: #fff; border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
    width: 100%;
}
.form__field input::placeholder { color: var(--muted); }
.form__field input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px var(--green-glow); }
.form__field input.is-invalid { border-color: #E53E3E; box-shadow: 0 0 0 4px rgba(229,62,62,0.12); }

.form__error { font-size: 0.8rem; color: #E53E3E; min-height: 0; opacity: 0; transition: opacity .2s; }
.form__error.is-visible { opacity: 1; }

.form__success {
    background: var(--green-light); color: var(--green-dark);
    padding: 14px 16px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.95rem; text-align: center;
    border: 1px solid rgba(0,166,63,0.3);
}

/* Чекбокс согласия */
.form__field--consent { margin-top: -4px; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox__box {
    flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px;
    border: 1.5px solid var(--border-strong); border-radius: 5px; background: #fff;
    transition: background .2s var(--ease), border-color .2s var(--ease);
    display: grid; place-items: center;
}
.checkbox__box::after {
    content: ''; width: 11px; height: 6px;
    border-left: 2px solid #fff; border-bottom: 2px solid #fff;
    transform: rotate(-45deg) scale(0); transition: transform .15s var(--ease);
}
.checkbox input:checked + .checkbox__box { background: var(--green); border-color: var(--green); }
.checkbox input:checked + .checkbox__box::after { transform: rotate(-45deg) scale(1); }
.checkbox input:focus-visible + .checkbox__box { box-shadow: 0 0 0 4px var(--green-glow); }
.checkbox__text { font-size: 0.825rem; color: var(--muted); line-height: 1.4; }

/* Контактные данные */
.contacts__info { display: flex; flex-direction: column; gap: 24px; }
.contacts__list { display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-row__icon {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center; background: var(--green-light); color: var(--green);
}
.contact-row__label { display: block; font-size: 0.8rem; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.contact-row__value { font-size: 1rem; color: var(--ink); font-weight: 600; line-height: 1.5; }
.contact-row__value a { display: inline-block; transition: color .2s; }
.contact-row__value a:hover { color: var(--green); }

/* Карта */
.map {
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
    min-height: 320px; flex: 1; box-shadow: var(--shadow-sm);
    background: var(--bg-soft);
}
.map iframe { display: block; border: 0; min-height: 320px; }

/* =========================================================
   ПОДВАЛ
   ========================================================= */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.6); padding-top: 56px; }
.footer__inner {
    display: grid; grid-template-columns: 1fr; gap: 32px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand { max-width: 340px; }
.logo--footer { color: #fff; }
.footer__tagline { margin-top: 16px; font-size: 0.925rem; line-height: 1.6; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.footer__col a, .footer__col p { font-size: 0.925rem; color: rgba(255,255,255,0.62); transition: color .2s; }
.footer__col a:hover { color: var(--green); }
.footer__bottom { padding: 20px 0; }
.footer__bottom-inner {
    display: flex; flex-direction: column; gap: 8px;
    font-size: 0.825rem; color: rgba(255,255,255,0.45);
}

/* =========================================================
   ПЛАВАЮЩАЯ КНОПКА
   ========================================================= */
.float-cta {
    position: fixed; bottom: 20px; right: 20px; z-index: 90;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--green); color: #fff;
    display: grid; place-items: center;
    box-shadow: var(--shadow-green);
    transition: transform .25s var(--ease), opacity .3s var(--ease), visibility .3s;
    opacity: 0; visibility: hidden; transform: scale(0.8);
}
.float-cta.is-visible { opacity: 1; visibility: visible; transform: scale(1); }
.float-cta:hover { background: var(--green-dark); transform: scale(1.08) rotate(8deg); }
.float-cta svg { width: 26px; height: 26px; }

/* =========================================================
   МОДАЛЬНОЕ ОКНО
   ========================================================= */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(14,18,23,0.6); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.modal__dialog {
    position: relative; z-index: 1; width: 100%; max-width: 440px;
    background: #fff; border-radius: var(--radius-lg); padding: 36px;
    box-shadow: var(--shadow-lg);
    animation: modalIn .35s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal__close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 50%;
    font-size: 1.6rem; color: var(--muted); line-height: 1;
    display: grid; place-items: center;
    transition: background .2s, color .2s;
}
.modal__close:hover { background: var(--bg-soft); color: var(--ink); }
.modal__title { font-size: 1.5rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.modal__subtitle { font-size: 0.95rem; color: var(--body); margin-bottom: 24px; }

/* =========================================================
   АДАПТИВ — ПЛАНШЕТЫ
   ========================================================= */
@media (min-width: 600px) {
    .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .footer__bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; }
    .cta-bar__inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 768px) {
    .section { padding: 96px 0; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .trust__grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .contacts__grid { grid-template-columns: 1fr 1fr; align-items: start; }
    .footer__inner { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer__bottom-inner { flex-direction: row; }
}

/* =========================================================
   АДАПТИВ — ДЕСКТОП
   ========================================================= */
@media (min-width: 992px) {
    .nav { display: flex; }
    .nav__phones { display: flex; }
    .header__phones { display: flex; }
    .header .btn { display: inline-flex; }
    .burger { display: none; }
    .logo__full { height: 36px; }

    .hero { padding-top: calc(var(--header-h) + 80px); padding-bottom: 100px; }
    .hero__inner { flex-direction: row; align-items: center; gap: 60px; }
    .hero__content { flex: 1; }
    .hero__visual { display: block; flex: 0 0 380px; }

    .services__grid { grid-template-columns: repeat(3, 1fr); }
    .trust__grid { grid-template-columns: repeat(4, 1fr); }
    .steps { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .step { padding: 32px 28px; }
}

@media (min-width: 1200px) {
    .hero__visual { flex-basis: 420px; }
}

/* =========================================================
   АНИМАЦИИ ПОЯВЛЕНИЯ (scroll reveal)
   ========================================================= */
[data-reveal] {
    opacity: 0; transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }

/* =========================================================
   УДОБСТВА ДОСТУПНОСТИ
   ========================================================= */
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}

/* Выделение */
::selection { background: var(--green); color: #fff; }
