/* ==========================================================================
   START-RABOTA.RU — Аутстаффинг персонала для складов и производств
   Основные стили (дизайн-система)
   ========================================================================== */

/* ---------- CSS-переменные (цветовая схема) ---------- */
:root {
    --color-primary: #0d47a1;
    --color-primary-dark: #0a3276;
    --color-primary-light: #1565c0;
    --color-accent: #f57c00;
    --color-accent-dark: #e65100;
    --color-accent-light: #ff9800;
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-gray-border: #e9ecef;
    --color-text: #212529;
    --color-text-muted: #6c757d;
    --bg-hero-gradient: linear-gradient(135deg, #0a3276 0%, #0d47a1 55%, #1565c0 100%);
    --font-heading: 'Montserrat', 'Inter', sans-serif;
    --font-body: 'Inter', 'Roboto', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(13, 71, 161, 0.08);
    --shadow-md: 0 8px 24px rgba(13, 71, 161, 0.12);
    --shadow-lg: 0 16px 48px rgba(13, 71, 161, 0.16);
    --transition: all .3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--color-text); background: var(--color-white); overflow-x: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--color-text); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--light { background: var(--color-light); }
.section--dark { background: var(--bg-hero-gradient); color: var(--color-white); }
.section--dark h2, .section--dark h3 { color: var(--color-white); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-header .section-title { font-size: 34px; margin-bottom: 12px; }
.section-header .section-subtitle { color: var(--color-text-muted); font-size: 17px; }
.section--dark .section-subtitle { color: rgba(255,255,255,.8); }
.section-badge { display: inline-block; background: rgba(245,124,0,.12); color: var(--color-accent); font-weight: 600; font-size: 13px; letter-spacing: .5px; text-transform: uppercase; padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: 14px; }

/* --- Кнопки --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 30px; font-family: var(--font-body); font-size: 16px; font-weight: 600; border-radius: var(--radius-md); border: 2px solid transparent; cursor: pointer; transition: var(--transition); text-align: center; line-height: 1.2; white-space: nowrap; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn--accent { background: var(--color-accent); color: var(--color-white); }
.btn--accent:hover { background: var(--color-accent-dark); color: var(--color-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary { background: var(--color-primary); color: var(--color-white); }
.btn--primary:hover { background: var(--color-primary-dark); color: var(--color-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--color-white); border-color: rgba(255,255,255,.6); }
.btn--outline:hover { background: rgba(255,255,255,.12); color: var(--color-white); }
.btn--outline-dark { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--outline-dark:hover { background: var(--color-primary); color: var(--color-white); }
.btn--white { background: var(--color-white); color: var(--color-primary); }
.btn--white:hover { background: var(--color-light); color: var(--color-primary-dark); }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 36px; font-size: 17px; }
.btn--sm { padding: 9px 18px; font-size: 14px; }

/* --- Шапка --- */
.header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.98); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo__icon { width: 42px; height: 42px; border-radius: var(--radius-md); background: var(--bg-hero-gradient); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 18px; flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__text strong { font-family: var(--font-heading); font-size: 20px; color: var(--color-primary); }
.logo__text span { font-size: 11px; color: var(--color-text-muted); letter-spacing: .5px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav__link { font-weight: 500; font-size: 15px; color: var(--color-text); position: relative; }
.nav__link:hover { color: var(--color-accent); }
.nav__link--active { color: var(--color-primary); font-weight: 600; }
.header__contacts { display: flex; align-items: center; gap: 20px; }
.header__phone { display: flex; flex-direction: column; line-height: 1.2; }
.header__phone a { font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: var(--color-text); }
.header__phone span { font-size: 12px; color: var(--color-text-muted); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.burger span { width: 26px; height: 3px; background: var(--color-primary); border-radius: 3px; transition: var(--transition); }
.burger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--color-white); z-index: 1500; box-shadow: -10px 0 40px rgba(0,0,0,.15); transition: right .35s ease; padding: 80px 30px 30px; display: flex; flex-direction: column; gap: 18px; }
.mobile-menu.is-open { right: 0; }
.mobile-menu__link { font-family: var(--font-heading); font-size: 20px; font-weight: 600; color: var(--color-text); }
.mobile-menu__close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 30px; cursor: pointer; color: var(--color-text); }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1400; opacity: 0; visibility: hidden; transition: var(--transition); }
.overlay.is-visible { opacity: 1; visibility: visible; }

/* --- Хиро --- */
.hero { position: relative; color: var(--color-white); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background: var(--bg-hero-gradient); z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.hero__content { position: relative; z-index: 2; padding: 110px 0 90px; max-width: 680px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); padding: 8px 18px; border-radius: var(--radius-full); font-size: 14px; font-weight: 500; margin-bottom: 24px; }
.hero__title { font-size: 52px; font-weight: 800; color: var(--color-white); margin-bottom: 20px; }
.hero__title span { color: var(--color-accent-light); }
.hero__subtitle { font-size: 19px; color: rgba(255,255,255,.9); margin-bottom: 36px; line-height: 1.6; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Плавающая форма на хиро --- */
.hero__quick-form { margin-top: 44px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); padding: 22px; }
.quick-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; align-items: end; }
.quick-form h3 { color: var(--color-white); font-size: 17px; margin-bottom: 8px; }
.quick-form .field { display: flex; flex-direction: column; gap: 6px; }
.quick-form label { font-size: 12px; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .5px; }
.quick-form input, .quick-form select { width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.95); font-family: var(--font-body); font-size: 15px; color: var(--color-text); }

/* --- Статистика --- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat { text-align: center; padding: 28px 20px; background: var(--color-white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.stat__number { font-family: var(--font-heading); font-size: 46px; font-weight: 800; color: var(--color-primary); }
.stat__number::after { content: '+'; color: var(--color-accent); }
.stat__label { color: var(--color-text-muted); margin-top: 6px; font-size: 15px; }

/* --- Карточки вакансий --- */
.vacancy-card { background: var(--color-white); border-radius: var(--radius-md); border: 1px solid var(--color-gray-border); box-shadow: var(--shadow-sm); padding: 26px; display: flex; flex-direction: column; transition: var(--transition); height: 100%; }
.vacancy-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.vacancy-card__title { font-family: var(--font-heading); font-size: 20px; margin-bottom: 8px; color: var(--color-primary); }
.vacancy-card__salary { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--color-accent); margin-bottom: 12px; }
.vacancy-card__meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; color: var(--color-text-muted); font-size: 14px; }
.vacancy-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.vacancy-card__meta svg { width: 16px; height: 16px; color: var(--color-primary); }
.vacancy-card__desc { color: var(--color-text-muted); font-size: 15px; margin-bottom: 20px; flex-grow: 1; }
.vacancy-card__more { margin-top: auto; }

/* --- Сетки --- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* --- Преимущества --- */
.feature-card { text-align: center; padding: 30px 22px; background: var(--color-white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-card__icon { width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 16px; background: rgba(13,71,161,.08); color: var(--color-primary); display: flex; align-items: center; justify-content: center; }
.feature-card__icon svg { width: 32px; height: 32px; }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { color: var(--color-text-muted); font-size: 14px; line-height: 1.5; }

/* --- Отзывы --- */
.review-card { background: var(--color-white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--color-gray-border); padding: 28px; height: 100%; }
.review-card__header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.review-card__avatar { width: 58px; height: 58px; border-radius: 50%; overflow: hidden; background: var(--bg-hero-gradient); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-heading); font-weight: 700; font-size: 22px; }
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__name { font-family: var(--font-heading); font-weight: 600; }
.review-card__role { font-size: 13px; color: var(--color-text-muted); }
.review-card__stars { display: flex; gap: 3px; margin-top: 4px; }
.review-card__stars svg { width: 16px; height: 16px; color: var(--color-accent); }
.review-card__text { color: var(--color-text); font-size: 15px; line-height: 1.6; }

/* --- Партнёры --- */
.partner-card { background: var(--color-white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 30px; display: flex; align-items: center; justify-content: center; height: 100%; border: 1px solid var(--color-gray-border); text-align: center; font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); font-size: 18px; }
.partner-card img { max-height: 56px; opacity: .7; filter: grayscale(30%); transition: var(--transition); }
.partner-card:hover img { opacity: 1; filter: none; }

/* --- Карточки объектов/разделов --- */
.division-card { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.division-card img { width: 100%; height: 260px; object-fit: cover; transition: transform .5s ease; }
.division-card:hover img { transform: scale(1.06); }
.division-card__body { position: absolute; inset: auto 0 0 0; padding: 24px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.8)); }
.division-card__body h3 { color: #fff; font-size: 22px; }

/* --- Формы --- */
.form-card { background: var(--color-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 40px; max-width: 640px; margin: 0 auto; }
.form-card--wide { max-width: 760px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 14px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--color-gray-border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; background: var(--color-light); transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-primary); background: var(--color-white); box-shadow: 0 0 0 3px rgba(13,71,161,.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-error { color: #dc3545; font-size: 13px; margin-top: 4px; display: none; }
.form-group.is-invalid input, .form-group.is-invalid select, .form-group.is-invalid textarea { border-color: #dc3545; }
.form-group.is-invalid .form-error { display: block; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; font-size: 14px; color: var(--color-text-muted); }
.form-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--color-primary); flex-shrink: 0; }
.form-check a { color: var(--color-primary); text-decoration: underline; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.form-success { display: none; text-align: center; padding: 30px; background: #e8f5e9; border-radius: var(--radius-md); color: #2e7d32; }
.form-success.is-visible { display: block; }

/* --- Футер --- */
.footer { background: #0a1f44; color: rgba(255,255,255,.8); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 40px; }
.footer h4 { color: #fff; font-size: 17px; margin-bottom: 20px; }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer__logo .logo__text strong { color: #fff; }
.footer__desc { font-size: 14px; margin-bottom: 20px; }
.footer__links li { margin-bottom: 12px; }
.footer__links a { color: rgba(255,255,255,.75); font-size: 15px; }
.footer__links a:hover { color: var(--color-accent-light); }
.footer__contacts li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 15px; align-items: flex-start; }
.footer__contacts svg { width: 20px; height: 20px; color: var(--color-accent-light); flex-shrink: 0; margin-top: 3px; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: #fff; transition: var(--transition); }
.footer__social a:hover { background: var(--color-accent); border-color: var(--color-accent); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.6); }
.footer__bottom a { color: rgba(255,255,255,.7); }

/* --- Хлебные крошки --- */
.breadcrumbs { padding: 24px 0; background: var(--color-light); }
.breadcrumbs__list { display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; color: var(--color-text-muted); }
.breadcrumbs__list a { color: var(--color-primary); }
.breadcrumbs__list .sep { color: var(--color-gray-border); }

/* --- Page hero --- */
.page-hero { background: var(--bg-hero-gradient); color: #fff; padding: 64px 0; }
.page-hero h1 { color: #fff; font-size: 42px; max-width: 760px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.85); max-width: 640px; margin-top: 14px; }

/* --- Аккордеон FAQ --- */
.accordion { max-width: 820px; margin: 0 auto; }
.accordion-item { border: 1px solid var(--color-gray-border); border-radius: var(--radius-md); margin-bottom: 14px; overflow: hidden; background: var(--color-white); }
.accordion-item__header { width: 100%; padding: 20px 24px; background: none; border: none; text-align: left; font-family: var(--font-heading); font-size: 17px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--color-text); }
.accordion-item__header svg { width: 22px; height: 22px; transition: transform .3s ease; flex-shrink: 0; color: var(--color-primary); }
.accordion-item.is-open .accordion-item__header svg { transform: rotate(45deg); }
.accordion-item__body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-item__body-inner { padding: 0 24px 22px; color: var(--color-text-muted); font-size: 15px; }

/* --- Модальное окно --- */
.modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.7); }
.modal__body { position: relative; background: var(--color-white); border-radius: var(--radius-lg); max-width: 860px; width: 100%; max-height: 90vh; overflow: auto; padding: 30px; box-shadow: var(--shadow-lg); }
.modal__close { position: absolute; top: 14px; right: 14px; background: none; border: none; font-size: 30px; cursor: pointer; color: var(--color-text-muted); line-height: 1; }
.modal__close:hover { color: var(--color-accent); }

/* --- Лицензии --- */
.license-card { cursor: pointer; border: 1px solid var(--color-gray-border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); background: var(--color-white); height: 100%; }
.license-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.license-card__img { background: var(--color-light); height: 200px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--color-gray-border); }
.license-card__img svg { width: 80px; height: 80px; color: var(--color-primary); opacity: .5; }
.license-card__img img { width: 100%; height: 100%; object-fit: cover; }
.license-card__body { padding: 16px; }
.license-card__body h4 { font-size: 15px; margin-bottom: 4px; }
.license-card__body p { font-size: 13px; color: var(--color-text-muted); }

/* --- Пагинация --- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--color-gray-border); border-radius: var(--radius-sm); font-weight: 500; color: var(--color-text); background: var(--color-white); padding: 0 12px; }
.pagination a:hover { border-color: var(--color-primary); color: var(--color-primary); }
.pagination .active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

/* --- Фильтры вакансий --- */
.filters { background: var(--color-light); padding: 28px 0; }
.filters__bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; align-items: end; }
.filters__bar select, .filters__bar input { width: 100%; padding: 13px 16px; border: 1px solid var(--color-gray-border); border-radius: var(--radius-sm); font-family: var(--font-body); background: var(--color-white); font-size: 15px; }
.filters__bar label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--color-text-muted); margin-bottom: 6px; font-weight: 600; }

/* --- Бенчмарк/шаги (процесс работы) --- */
.step-card { text-align: center; padding: 30px 22px; background: var(--color-white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); height: 100%; position: relative; }
.step-card__num { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%; background: var(--color-accent); color: #fff; font-family: var(--font-heading); font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { color: var(--color-text-muted); font-size: 14px; }

/* --- Кейсы --- */
.case-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--color-white); height: 100%; }
.case-card img { width: 100%; height: 200px; object-fit: cover; }
.case-card__body { padding: 24px; }
.case-card__body h3 { font-size: 20px; margin-bottom: 10px; color: var(--color-primary); }
.case-card__body p { color: var(--color-text-muted); font-size: 15px; }
.case-card__result { display: flex; gap: 20px; margin-top: 16px; }
.case-card__result .num { font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: var(--color-accent); }
.case-card__result .lbl { font-size: 13px; color: var(--color-text-muted); }

/* --- Команда --- */
.team-card { text-align: center; padding: 28px 20px; background: var(--color-white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); height: 100%; }
.team-card__avatar { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 16px; background: var(--bg-hero-gradient); color: #fff; font-family: var(--font-heading); font-size: 32px; font-weight: 700; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 18px; }
.team-card .role { color: var(--color-accent); font-weight: 600; font-size: 14px; margin: 4px 0 10px; }
.team-card p { color: var(--color-text-muted); font-size: 14px; }

/* --- Реквизиты / таблицы --- */
.requisites { background: var(--color-light); border-radius: var(--radius-md); padding: 30px; }
.requisites table { width: 100%; border-collapse: collapse; }
.requisites td { padding: 12px 8px; border-bottom: 1px solid var(--color-gray-border); font-size: 15px; vertical-align: top; }
.requisites td:first-child { font-weight: 600; color: var(--color-primary); width: 240px; }
.requisites tr:last-child td { border-bottom: none; }

/* --- Статья (контент) --- */
.article { max-width: 800px; margin: 0 auto; }
.article h2 { font-size: 26px; margin: 32px 0 14px; }
.article h3 { font-size: 20px; margin: 26px 0 12px; }
.article p { margin-bottom: 16px; color: var(--color-text); }
.article ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.article ul li { margin-bottom: 8px; }
.article ol { list-style: decimal; padding-left: 22px; margin-bottom: 16px; }
.article ol li { margin-bottom: 8px; }

/* --- Медиа-запросы (адаптивность) --- */
@media (max-width: 992px) {
    .nav { display: none; }
    .burger { display: flex; }
    .header__contacts { display: none; }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .hero__title { font-size: 40px; }
    .quick-form { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .section { padding: 48px 0; }
    .section-header .section-title { font-size: 28px; }
    .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr; }
    .hero__title { font-size: 32px; }
    .hero__content { padding: 70px 0 60px; }
    .footer__grid { grid-template-columns: 1fr; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .hero__actions .btn { width: 100%; }
    .page-hero h1 { font-size: 30px; }
    .requisites td:first-child { display: block; width: auto; }
}

/* --- Preloader --- */
.preloader { position: fixed; inset: 0; background: var(--color-white); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity .4s ease; }
.preloader__logo { font-family: var(--font-heading); font-size: 30px; font-weight: 800; color: var(--color-primary); animation: pulse 1s ease-in-out infinite; }
.preloader--hidden { opacity: 0; visibility: hidden; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* --- Анимации появления --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}

/* --- Фото-аватарки --- */
.review-card__avatar img, .team-card__avatar img {
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,.18);
    border: 2px solid #fff;
}
.team-card__avatar img:hover { transform: scale(1.05); }
.review-card__avatar img { transition: transform .3s ease; }
.review-card__avatar img:hover { transform: scale(1.08); }
