/* ── ШРИФТЫ ──────────────────────────────────────────── */
@font-face {
    font-family:'Inter'; src:url('/assets/fonts/inter-400.woff2') format('woff2');
    font-weight:400; font-style:normal; font-display:swap;
}
@font-face {
    font-family:'Inter'; src:url('/assets/fonts/inter-600.woff2') format('woff2');
    font-weight:600; font-style:normal; font-display:swap;
}

/* ── ПЕРЕМЕННЫЕ ──────────────────────────────────────── */
:root {
    --primary:#E84444; --primary-dark:#C73333; --secondary:#1A1A2E;
    --accent:#F5A623; --bg:#fff; --bg-gray:#F8F9FA; --bg-dark:#1A1A2E;
    --text:#2D2D2D; --text-muted:#6B7280; --border:#E5E7EB; --success:#22C55E;
    --font:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
    --container:1200px; --r-sm:4px; --r-md:8px; --r-lg:12px;
    --sh-sm:0 1px 3px rgba(0,0,0,.10); --sh-md:0 4px 12px rgba(0,0,0,.10);
    --sh-lg:0 10px 30px rgba(0,0,0,.12);
}

/* ── RESET ───────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font);font-size:16px;color:var(--text);
     line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
ol{list-style:none;margin:0;padding:0}
button{cursor:pointer;font-family:inherit;border:none;background:none}
input,textarea,select{font-family:inherit}

/* ── КОНТЕЙНЕР ───────────────────────────────────────── */
.container{max-width:var(--container);margin:0 auto;padding:0 24px}

/* ── ТИПОГРАФИКА ─────────────────────────────────────── */
h1{font-size:40px;font-weight:600;line-height:1.2;color:var(--secondary)}
h2{font-size:30px;font-weight:600;line-height:1.3;color:var(--secondary);margin-bottom:24px}
h3{font-size:20px;font-weight:600;line-height:1.4}
h4{font-size:18px;font-weight:600}

/* ── КНОПКИ ──────────────────────────────────────────── */
.btn{display:inline-flex;align-items:center;justify-content:center;
     gap:8px;padding:12px 24px;border-radius:var(--r-md);
     min-height:44px;font-size:15px;font-weight:600;transition:all .2s;
     text-align:center;white-space:nowrap}
.btn--primary{background:var(--primary);color:#fff}
.btn--primary:hover{background:var(--primary-dark);transform:translateY(-1px);
                    box-shadow:var(--sh-md)}
.btn--outline{border:2px solid var(--primary);color:var(--primary)}
.btn--outline:hover{background:var(--primary);color:#fff}
.btn--lg{padding:16px 32px;font-size:17px}
.btn--sm{padding:8px 16px;font-size:14px}
.btn--full{width:100%}

/* ── ШАПКА ───────────────────────────────────────────── */
.header{position:sticky;top:0;z-index:100;background:var(--bg);
        box-shadow:var(--sh-sm)}
.header__top{background:var(--secondary);padding:8px 0;color:#fff;font-size:14px}
.header__top-inner{display:flex;align-items:center;gap:24px}
.header__schedule{color:rgba(255,255,255,.7);margin-left:auto}
.header__phone{color:#fff;font-weight:600;font-size:15px}
.header__phone:hover{color:var(--accent)}
.city-trigger{display:flex;align-items:center;gap:6px;color:#fff;font-size:14px}
.city-trigger:hover{color:var(--accent)}

.header__main-inner{display:flex;align-items:center;gap:24px;padding:14px 0}
.header__logo{flex-shrink:0}
.nav__list{display:flex;gap:4px;align-items:center}
.nav__link{display:block;padding:8px 12px;font-size:15px;font-weight:500;
           border-radius:var(--r-sm);transition:color .15s,background .15s}
.nav__link:hover{color:var(--primary);background:var(--bg-gray)}
.nav__mobile-head{display:none}
.nav__city{display:none}
.nav__close{
    width:34px;height:34px;border-radius:10px;
    border:1px solid var(--border);background:#fff;color:var(--secondary);
    font-size:24px;line-height:1;display:flex;align-items:center;justify-content:center;
}
.nav__close:hover{border-color:var(--primary);color:var(--primary)}
.nav__item--has-drop{position:relative}
.nav__drop{display:none;position:absolute;top:100%;left:-20px;background:#fff;
           box-shadow:var(--sh-lg);border-radius:var(--r-lg);min-width:560px;
           padding:20px;z-index:200}
.nav__item--has-drop:hover .nav__drop{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.header__actions{margin-left:auto;display:flex;align-items:center;gap:12px}
.header__btn-phone{font-weight:600;color:var(--secondary);font-size:15px;display:none}

.hamburger{display:none;flex-direction:column;gap:5px;padding:6px;width:36px}
.hamburger span{display:block;height:2px;background:var(--secondary);
                border-radius:2px;transition:all .3s}
.hamburger.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.is-active span:nth-child(2){opacity:0}
.hamburger.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.nav-open{overflow:hidden}

/* ── HERO ────────────────────────────────────────────── */
.hero{background:linear-gradient(135deg,var(--secondary) 0%,#2D2D5E 100%);
      color:#fff;padding:64px 0}
.hero__inner{display:grid;grid-template-columns:1fr 420px;gap:48px;align-items:center}
.hero__title{font-size:48px;color:#fff;margin-bottom:16px}
.hero__subtitle{font-size:18px;color:rgba(255,255,255,.8);margin-bottom:32px}
.hero__form{background:#fff;border-radius:var(--r-lg);padding:24px;box-shadow:var(--sh-lg)}
.hero__form-title{font-size:18px;font-weight:600;color:var(--secondary);
                  margin-bottom:16px;text-align:center}

/* ── ДОВЕРИЕ ─────────────────────────────────────────── */
.trust{padding:48px 0;background:var(--bg-gray)}
.trust__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.trust__item{text-align:center}
.trust__num{font-size:36px;font-weight:700;color:var(--primary);display:block}
.trust__label{font-size:14px;color:var(--text-muted)}

/* ── КАРТОЧКИ УСЛУГ ──────────────────────────────────── */
.services-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.service-card{border:1px solid var(--border);border-radius:var(--r-lg);
              padding:20px;transition:all .2s;background:#fff}
.service-card:hover{border-color:var(--primary);box-shadow:var(--sh-md);
                    transform:translateY(-2px)}
.service-card__icon{width:48px;height:48px;margin-bottom:12px}
.service-card__title{font-size:15px;font-weight:600;margin-bottom:8px;color:var(--secondary)}
.service-card__desc{font-size:13px;color:var(--text-muted);margin-bottom:12px}
.service-card__footer{display:flex;justify-content:space-between;align-items:center}
.service-card__price{font-weight:600;color:var(--primary);font-size:14px}

/* ── МАСТЕРА ─────────────────────────────────────────── */
.masters-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.master-card{display:flex;gap:16px;padding:20px;
             border:1px solid var(--border);border-radius:var(--r-lg);background:#fff}
.master-card__photo img{width:72px;height:72px;border-radius:50%;object-fit:cover}
.master-card__avatar{
    width:72px;height:72px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    font-weight:700;font-size:22px;letter-spacing:.4px;
    color:#fff;background:linear-gradient(135deg,#8f1f2d,#b13c4b);
    box-shadow:var(--sh-md);
}
.master-card__name a{font-weight:600;font-size:16px;color:var(--secondary)}
.master-card__name a:hover{color:var(--primary)}
.master-card__spec{font-size:13px;color:var(--text-muted);margin:4px 0 8px}
.star{width:16px;height:16px;fill:#d1d5db}
.star--filled{fill:var(--accent)}

/* ── ОТЗЫВЫ ──────────────────────────────────────────── */
.review-card{padding:20px;border:1px solid var(--border);
             border-radius:var(--r-lg);background:#fff}
.review-card__header{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.review-card__avatar{width:44px;height:44px;border-radius:50%;
                     background:var(--bg-gray);display:flex;align-items:center;
                     justify-content:center;font-weight:600;color:var(--secondary);flex-shrink:0}
.review-card__name{font-weight:600;font-size:15px}
.review-card__date{font-size:13px;color:var(--text-muted)}
.review-card__work{font-size:13px;color:var(--text-muted);padding:8px 12px;
                   background:var(--bg-gray);border-radius:var(--r-sm);margin-top:12px}
.reviews-slider{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(320px,1fr);
              gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:4px}
.reviews-slider .review-card{scroll-snap-align:start}

/* ── FAQ ─────────────────────────────────────────────── */
.faq__item{border-bottom:1px solid var(--border)}
.faq__question{display:flex;justify-content:space-between;align-items:center;
               padding:18px 0;cursor:pointer;font-weight:600;font-size:16px}
.faq__question:hover{color:var(--primary)}
.faq__question::after{content:'+';font-size:22px;font-weight:400;color:var(--primary);
                      flex-shrink:0;margin-left:16px;transition:transform .2s}
.faq__item.is-open .faq__question::after{transform:rotate(45deg)}
.faq__answer{max-height:0;overflow:hidden;transition:max-height .3s ease;
             font-size:15px;color:var(--text-muted)}
.faq__item.is-open .faq__answer{max-height:500px;padding-bottom:16px}

/* ── ТАБЛИЦА ЦЕН ─────────────────────────────────────── */
.price-table{width:100%;border-collapse:collapse;font-size:15px}
.table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}
.price-table th{text-align:left;padding:12px 16px;background:var(--secondary);
                color:#fff;font-weight:600}
.price-table td{padding:12px 16px;border-bottom:1px solid var(--border)}
.price-table tr:hover td{background:var(--bg-gray)}
.price-table__price{font-weight:600;color:var(--primary);white-space:nowrap}
.price-table tr:last-child td{border-bottom:none}
.text-muted{color:var(--text-muted)}
.category-page__intro{margin-bottom:2rem;max-width:820px}
.price-table--category td:first-child{min-width:200px}
.price-table__muted{color:var(--text-muted);font-size:14px}
.price-table__service-link{color:var(--secondary);font-weight:600;text-decoration:none}
.price-table__service-link:hover{text-decoration:underline}

/* ── ФОРМА ───────────────────────────────────────────── */
.form-call{display:flex;flex-direction:column;gap:12px}
.field{display:flex;flex-direction:column;gap:6px}
.field__label{font-size:13px;font-weight:600;color:var(--secondary)}
.field__input{padding:12px 16px;border:1.5px solid var(--border);
              border-radius:var(--r-md);font-size:15px;transition:border-color .2s}
.field__input:focus{outline:none;border-color:var(--primary)}
.field__input.is-error{border-color:#EF4444}
.field__error{font-size:12px;color:#EF4444;min-height:16px}
.form-call__agree{font-size:12px;color:var(--text-muted);text-align:center}
.form-call__agree a{color:var(--primary);text-decoration:underline}

/* ── БЕЙДЖИ ──────────────────────────────────────────── */
.badge{display:inline-block;padding:4px 12px;border-radius:20px;
       font-size:13px;font-weight:600}
.badge--green{background:#DCFCE7;color:#166534}
.badge--blue{background:#DBEAFE;color:#1E40AF}
.badge--orange{background:#FEF3C7;color:#92400E}

/* ── СТРАНИЦА УСЛУГИ ─────────────────────────────────── */
.service-hero{background:var(--bg-gray);padding:32px 0;
              border-bottom:1px solid var(--border)}
.service-hero__meta{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.service-layout{display:grid;grid-template-columns:1fr 340px;gap:40px;
                margin:40px 0;align-items:start}
.service-section{margin-bottom:48px}
.service-section h2{font-size:24px;margin-bottom:20px}
.works-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.work-item{border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;background:#fff;box-shadow:var(--sh-sm)}
.work-item img{width:100%;height:220px;object-fit:cover}
.work-card{border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;
         background:#fff;box-shadow:var(--sh-sm);min-height:180px;display:flex;
         align-items:center;justify-content:center;color:var(--text-muted);font-size:14px}
.work-card img{width:100%;height:100%;object-fit:cover}
.work-card--placeholder{background:linear-gradient(135deg,#f8f9fa,#eef1f4)}
.appliance-brand-logo{margin-bottom:12px;display:flex;align-items:center}
.sidebar__sticky{position:sticky;top:90px}
.sidebar__form{background:#fff;border:1px solid var(--border);
               border-radius:var(--r-lg);padding:24px;margin-bottom:16px}
.sidebar__form-title{font-weight:700;font-size:16px;margin-bottom:16px;
                     text-align:center;color:var(--secondary)}
.sidebar__info{padding:16px;background:var(--bg-gray);
               border-radius:var(--r-lg);margin-bottom:16px}
.sidebar__info-row{padding:8px 0;font-size:14px;
                   border-bottom:1px solid var(--border)}
.sidebar__info-row:last-child{border-bottom:none}

/* ── КАК МЫ РАБОТАЕМ ────────────────────────────────── */
.how-it-works{padding:64px 0;background:var(--bg-gray)}
.how-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;position:relative}
.how-steps::before{content:'';position:absolute;top:32px;left:10%;
                   width:80%;height:2px;background:var(--border);z-index:0}
.how-step{text-align:center;position:relative;z-index:1}
.how-step__num{width:64px;height:64px;border-radius:50%;background:var(--primary);
               color:#fff;font-size:24px;font-weight:700;
               display:flex;align-items:center;justify-content:center;
               margin:0 auto 16px;box-shadow:var(--sh-md)}
.how-step__icon-svg{width:26px;height:26px;display:block}
.how-step__title{font-weight:600;margin-bottom:8px}
.how-step__desc{font-size:14px;color:var(--text-muted)}

/* ── ХЛЕБНЫЕ КРОШКИ ──────────────────────────────────── */
.breadcrumbs{padding:12px 0}
.breadcrumbs__list{display:flex;flex-wrap:wrap;gap:4px;
                   font-size:13px;color:var(--text-muted)}
.breadcrumbs__link{color:var(--primary)}
.breadcrumbs__link:hover{text-decoration:underline}
.breadcrumbs__item + .breadcrumbs__item::before{content:'›';margin-right:4px}

/* ── СЕКЦИЯ CTA ──────────────────────────────────────── */
.cta-section{background:var(--secondary);color:#fff;padding:64px 0;text-align:center}
.cta-section h2{color:#fff;margin-bottom:12px}
.cta-section p{color:rgba(255,255,255,.7);margin-bottom:32px;font-size:18px}

/* ── ПОДВАЛ ──────────────────────────────────────────── */
.footer__brand-logo img{filter:brightness(0) invert(1)}
.modal--wide{max-width:640px}
.footer{background:var(--bg-dark);color:rgba(255,255,255,.8);padding:64px 0 32px}
.footer__top{display:grid;grid-template-columns:260px 1fr;gap:64px;margin-bottom:48px}
.footer__tagline{font-size:14px;margin:12px 0;opacity:.7}
.footer__phone{font-size:20px;font-weight:600;color:#fff;display:block;margin-bottom:8px}
.footer__nav{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
.footer__nav-title{font-weight:600;color:#fff;margin-bottom:12px}
.footer__nav ul li + li{margin-top:8px}
.footer__nav a{font-size:14px;opacity:.7;transition:opacity .15s}
.footer__nav a:hover{opacity:1}
.footer__cities{border-top:1px solid rgba(255,255,255,.1);
                padding-top:32px;margin-bottom:32px}
.footer__cities-title{font-size:14px;font-weight:600;color:#fff;margin-bottom:12px}
.footer__cities-list{display:flex;flex-wrap:wrap;gap:8px}
.footer__city-link{font-size:13px;opacity:.6;transition:opacity .15s}
.footer__city-link:hover{opacity:1}
.footer__city-link.is-current{opacity:1;color:var(--accent)}
.footer__bottom{display:flex;justify-content:space-between;align-items:center;
                border-top:1px solid rgba(255,255,255,.1);
                padding-top:24px;font-size:13px}
.footer__legal{display:flex;gap:16px}
.footer__legal a{opacity:.6}
.footer__legal a:hover{opacity:1}

/* ── МОБИЛЬНАЯ CTA ───────────────────────────────────── */
.mobile-cta{display:none;position:fixed;bottom:0;left:0;right:0;z-index:99;
            background:#fff;padding:12px 16px;
            box-shadow:0 -4px 20px rgba(0,0,0,.12);
            border-top:1px solid var(--border);gap:12px}
.mobile-cta__phone{flex:1}
.mobile-cta__order{flex:2}

/* ── МОДАЛЬНОЕ ОКНО ──────────────────────────────────── */
.modal-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);
               z-index:999;align-items:center;justify-content:center;padding:16px}
.modal-overlay.is-open{display:flex}
.modal{background:#fff;border-radius:var(--r-lg);padding:32px;
       max-width:440px;width:100%;position:relative}
.modal__close{position:absolute;top:16px;right:16px;font-size:24px;
              color:var(--text-muted);line-height:1}
.modal__close:hover{color:var(--text)}
.modal__title{font-size:22px;font-weight:600;margin-bottom:20px}
/* ── СИМПТОМЫ ТЕХНИКИ ────────────────────────────────── */
.symptoms-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:20px}
.symptom-card{display:flex;flex-direction:column;align-items:center;gap:8px;
              padding:16px 12px;border:1px solid var(--border);
              border-radius:var(--r-lg);text-align:center;font-size:13px;
              transition:all .2s;background:#fff}
.symptom-card:hover{border-color:var(--primary);color:var(--primary);
                    box-shadow:var(--sh-sm);transform:translateY(-1px)}
.symptom-card__icon{width:32px;height:32px;color:var(--primary)}
.megamenu{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.megamenu__link{display:block;padding:8px 4px;font-size:14px;border-radius:var(--r-sm)}
.megamenu__link:hover{background:var(--bg-gray);color:var(--primary)}
.icon{width:1em;height:1em;vertical-align:-0.125em}
.icon--sm{width:0.85em;height:0.85em}

/* ── VISUAL UPGRADE 2.0 (modern dark-red) ───────────── */
:root{
    --primary:#D22345;
    --primary-dark:#A71632;
    --secondary:#121422;
    --accent:#8D1A2C;
    --bg:#F4F5F9;
    --bg-gray:#ECEFF5;
    --border:#DCE1EC;
    --text:#1F2433;
    --text-muted:#656D80;
    --r-md:12px;
    --r-lg:18px;
    --sh-sm:0 2px 10px rgba(17,24,39,.06), 0 1px 2px rgba(17,24,39,.05);
    --sh-md:0 10px 26px rgba(17,24,39,.12), 0 4px 10px rgba(17,24,39,.06);
    --sh-lg:0 22px 52px rgba(17,24,39,.18), 0 8px 20px rgba(17,24,39,.10);
}
body{
    background:
      radial-gradient(920px 420px at 108% -8%, rgba(210,35,69,.14), transparent 62%),
      radial-gradient(840px 420px at -12% 4%, rgba(141,26,44,.15), transparent 60%),
      var(--bg);
    color:var(--text);
}
h1,h2,h3,h4{letter-spacing:-0.02em}

.header{
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(10px) saturate(120%);
    border-bottom:1px solid rgba(220,225,236,.9);
    box-shadow:0 8px 24px rgba(17,24,39,.08);
}
.header__top{
    background:linear-gradient(90deg,#1A1D31 0%, #2A0F17 100%);
    border-bottom:1px solid rgba(255,255,255,.08);
}
.header__main-inner{min-height:68px}
.nav__link{
    border-radius:10px;
    transition:all .24s ease;
}
.nav__link:hover{
    color:#fff;
    background:linear-gradient(135deg,var(--primary) 0%, var(--accent) 100%);
    box-shadow:0 8px 18px rgba(210,35,69,.28);
}
.nav__drop{
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:var(--sh-lg);
}
.megamenu__link{
    border-radius:10px;
    transition:all .2s ease;
}
.megamenu__link:hover{
    background:#F8EAF0;
    color:var(--primary);
}

.hero{
    position:relative;
    overflow:hidden;
    background:
      radial-gradient(540px 320px at 84% 6%, rgba(141,26,44,.24), transparent 72%),
      radial-gradient(620px 360px at 8% 18%, rgba(210,35,69,.20), transparent 74%),
      linear-gradient(135deg,#0F1120 0%, #20111A 50%, #31101E 100%);
}
.hero::before{
    content:"";
    position:absolute;inset:0;
    background:linear-gradient(180deg,rgba(255,255,255,.06),transparent 28%);
    pointer-events:none;
}
.hero__title{
    text-shadow:0 6px 24px rgba(0,0,0,.35);
    max-width:780px;
}
.hero__form{
    border-radius:18px;
    border:1px solid rgba(255,255,255,.52);
    box-shadow:0 22px 50px rgba(6,8,18,.38);
}

.btn{
    border-radius:12px;
    font-weight:700;
    letter-spacing:.01em;
    transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn:active{transform:translateY(0)}
.btn--primary{
    background:linear-gradient(135deg,var(--primary) 0%, var(--accent) 100%);
    box-shadow:0 10px 22px rgba(210,35,69,.30);
}
.btn--primary:hover{
    background:linear-gradient(135deg,var(--primary-dark) 0%, var(--primary) 72%);
    transform:translateY(-2px);
    box-shadow:0 14px 26px rgba(167,22,50,.36);
}
.btn--outline{
    background:#fff;
    border:1.5px solid var(--border);
    color:var(--secondary);
}
.btn--outline:hover{
    border-color:var(--primary);
    color:var(--primary);
    background:#FFF1F4;
}

.service-card,
.master-card,
.review-card,
.sidebar__form,
.sidebar__info,
.work-item,
.work-card{
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:var(--sh-sm);
    background:#fff;
}
.service-card,
.master-card,
.review-card{transition:all .24s ease}
.service-card:hover,
.master-card:hover,
.review-card:hover{
    transform:translateY(-4px);
    border-color:#D0D8E6;
    box-shadow:var(--sh-md);
}
.service-card{
    position:relative;
    overflow:hidden;
}
.service-card::before{
    content:"";
    position:absolute;inset:0 0 auto 0;height:3px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
    opacity:.9;
}
.service-card__title{
    font-size:15px;
    line-height:1.35;
    margin-top:2px;
}
.service-card__price{
    color:var(--primary);
    font-weight:700;
}
.master-card__photo img{
    border:2px solid #F2D8DF;
}
.review-card__avatar{
    background:#ECEFF5;
    color:var(--primary);
}

.field__label{
    color:#4D5467;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.05em;
}
.field__input{
    background:#fff;
    border:1.5px solid var(--border);
    border-radius:12px;
    min-height:46px;
}
.field__input:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(210,35,69,.14);
}

.price-table{
    border:1px solid var(--border);
    border-radius:14px;
    overflow:hidden;
    background:#fff;
    box-shadow:var(--sh-sm);
}
.price-table th{
    background:linear-gradient(135deg,#15172A 0%, #2A1020 100%);
    color:rgba(255,255,255,.9);
}
.price-table td{border-bottom:1px solid #E9EDF5}
.price-table tr:hover td{background:#FAFBFE}
.price-table__price{color:var(--primary)}
.price-table__service-link{
    color:#30364A;
    font-weight:700;
}
.price-table__service-link:hover{color:var(--primary)}

.faq__item{border-bottom:1px solid #E4E9F2}
.faq__question{
    font-size:15px;
    font-weight:700;
    transition:color .2s ease;
}
.faq__question:hover{color:var(--primary)}
.faq__question::after{
    width:30px;height:30px;
    border-radius:999px;
    background:#EEF2F8;
    color:var(--primary);
    display:flex;align-items:center;justify-content:center;
    font-size:18px;line-height:1;
}

.how-it-works{
    border-radius:20px;
    margin:18px 0 26px;
    box-shadow:var(--sh-sm);
    overflow:hidden;
}
.how-step__num{
    background:linear-gradient(135deg,var(--primary),var(--accent));
    box-shadow:0 10px 20px rgba(210,35,69,.28);
}

.cta-section{
    border-radius:20px;
    margin:22px 0;
    box-shadow:var(--sh-lg);
    overflow:hidden;
    background:
      radial-gradient(420px 200px at 85% 20%, rgba(141,26,44,.24), transparent 75%),
      linear-gradient(135deg,#131526 0%, #2A0E18 100%);
}
.cta-section h2{text-shadow:0 4px 14px rgba(0,0,0,.35)}

.breadcrumbs{
    padding-top:16px;
}
.breadcrumbs__link{
    color:#0B6A6A;
    font-weight:500;
}
.breadcrumbs__link:hover{color:var(--primary)}

.footer{
    background:linear-gradient(180deg,#121427 0%, #0A0F1F 100%);
}
.footer__nav a,.footer__legal a,.footer__city-link{transition:all .2s ease}
.footer__nav a:hover,.footer__legal a:hover,.footer__city-link:hover{
    color:#fff; opacity:1;
}
.text-muted{color:var(--text-muted)}

a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{
    outline:3px solid rgba(141,26,44,.35);
    outline-offset:2px;
}
@media (prefers-reduced-motion: reduce){
    *,*::before,*::after{animation:none !important;transition:none !important}
}

/* ── PAGE CONSISTENCY LAYER ─────────────────────────── */
.page-shell{padding:48px 0}
.page-lead{
    color:var(--text-muted);
    margin:0 0 28px;
    max-width:860px;
    font-size:16px;
    line-height:1.7;
}
.page-panel{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:var(--sh-sm);
    padding:22px;
}
.page-grid-2{
    display:grid;
    gap:24px;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    align-items:start;
}
/* SEO-тексты: единый «премиальный» блок как на странице «О нас» */
.seo-text{
    position:relative;
    font-size:15px;
    line-height:1.7;
    color:var(--text);
    background:
        linear-gradient(135deg, rgba(232,68,68,.06) 0%, transparent 42%),
        linear-gradient(180deg, #FAFBFC 0%, #fff 20%);
    border:1px solid var(--border);
    border-left:4px solid var(--primary);
    border-radius:18px;
    box-shadow:var(--sh-sm);
    padding:26px 28px 28px;
    max-width:min(920px,100%);
    margin-left:auto;
    margin-right:auto;
}
.service-section--seo .seo-text{
    max-width:none;
    margin-left:0;
    margin-right:0;
}
.seo-text.category-page__intro{
    max-width:820px;
    margin-left:0;
    margin-right:auto;
}
.seo-text + .seo-text{margin-top:20px}
.seo-text > *:first-child{margin-top:0}
.seo-text > *:last-child{margin-bottom:0}
.seo-text p{margin:0 0 1rem}
.seo-text p:last-child{margin-bottom:0}
.seo-text h2{
    font-size:22px;
    font-weight:600;
    line-height:1.3;
    color:var(--secondary);
    margin:28px 0 14px;
    padding-bottom:10px;
    border-bottom:2px solid rgba(232,68,68,.22);
}
.seo-text h2:first-child{
    margin-top:0;
    padding-top:0;
}
.seo-text h3{
    font-size:18px;
    font-weight:600;
    line-height:1.35;
    color:var(--secondary);
    margin:22px 0 10px;
}
.seo-text h3:first-child{margin-top:0}
.seo-text h4{
    font-size:16px;
    font-weight:600;
    color:var(--secondary);
    margin:18px 0 8px;
}
.seo-text ul,.seo-text ol{
    margin:12px 0 18px;
    padding-left:24px;
    list-style-position:outside;
}
.seo-text ul{list-style:disc}
.seo-text ol{list-style:decimal}
.seo-text li{margin:0 0 8px}
.seo-text li::marker{color:var(--primary)}
.seo-text a{
    color:#0B6A6A;
    font-weight:500;
    text-decoration:underline;
    text-underline-offset:2px;
    transition:color .15s ease;
}
.seo-text a:hover{color:var(--primary)}
.seo-text strong,.seo-text b{color:var(--secondary);font-weight:600}
.seo-text blockquote{
    margin:20px 0;
    padding:18px 20px 18px 24px;
    border-left:4px solid var(--primary);
    background:linear-gradient(90deg, rgba(232,68,68,.07), transparent 90%);
    border-radius:0 14px 14px 0;
    font-size:16px;
    line-height:1.55;
    color:var(--secondary);
    font-style:italic;
}
.seo-text img{
    max-width:100%;
    height:auto;
    border-radius:12px;
    margin:16px 0;
    box-shadow:var(--sh-sm);
}
.seo-text table{
    width:100%;
    border-collapse:collapse;
    font-size:14px;
    margin:16px 0;
    border-radius:12px;
    overflow:hidden;
    border:1px solid var(--border);
}
.seo-text th,.seo-text td{
    padding:10px 14px;
    border-bottom:1px solid var(--border);
    text-align:left;
}
.seo-text th{
    background:var(--secondary);
    color:#fff;
    font-weight:600;
}
.seo-text tr:last-child td{border-bottom:none}
.seo-text tr:hover td{background:var(--bg-gray)}
/* Юридические страницы: внешняя карточка + внутренняя типографика legal-prose */
.legal-prose.seo-text{
    max-width:none;
    margin-left:0;
    margin-right:0;
    padding:28px 32px 32px;
}
.legal-prose.seo-text h2{
    font-size:22px;
    margin:32px 0 14px;
    padding-top:8px;
    border-bottom:none;
    border-top:1px solid var(--border);
}
.legal-prose.seo-text h2:first-of-type{
    margin-top:0;
    padding-top:0;
    border-top:none;
}
/* Статьи блога: чуть шире интерлиньяж */
.seo-text.article-body{
    max-width:none;
    margin-left:0;
    margin-right:0;
    padding:28px 30px 30px;
}
.seo-text.article-body h2{font-size:24px}
@media (max-width:767px){
    .seo-text{padding:20px 18px 22px;border-radius:16px}
    .legal-prose.seo-text{padding:22px 18px 24px}
    .seo-text.article-body{padding:22px 18px 24px}
    .seo-text h2{font-size:20px}
}

/* ── Страница «О компании» (about-rich) ─────────────── */
.about-page-wrap__h1{
    font-size:40px;
    font-weight:600;
    line-height:1.2;
    color:var(--secondary);
    margin:0 0 8px;
}
.about-page{padding:0 0 56px}
.about-hero{
    border-radius:20px;
    overflow:hidden;
    background:
      radial-gradient(520px 240px at 12% 20%, rgba(232,68,68,.22), transparent 70%),
      linear-gradient(135deg,#131526 0%,#1e2140 48%,#2a1530 100%);
    color:#fff;
    margin:20px 0 28px;
    box-shadow:var(--sh-lg);
}
.about-hero__inner{padding:36px 28px 40px}
@media (min-width:900px){
    .about-hero__inner{padding:48px 44px 52px;max-width:820px}
}
.about-hero__eyebrow{
    font-size:13px;
    font-weight:600;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:rgba(255,255,255,.55);
    margin-bottom:12px;
}
.about-hero__title{
    font-size:clamp(26px,4vw,40px);
    font-weight:700;
    line-height:1.15;
    margin:0 0 16px;
    color:#fff;
}
.about-hero__lead{
    font-size:17px;
    line-height:1.65;
    color:rgba(255,255,255,.88);
    margin:0;
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-bottom:32px;
}
@media (min-width:768px){
    .about-stats{grid-template-columns:repeat(4,1fr);gap:18px}
}
.about-stat{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:18px 16px;
    text-align:center;
    box-shadow:var(--sh-sm);
    transition:border-color .2s,transform .2s;
}
.about-stat:hover{border-color:rgba(232,68,68,.35);transform:translateY(-2px)}
.about-stat__num{
    font-size:22px;
    font-weight:700;
    color:var(--primary);
    line-height:1.2;
}
.about-stat__label{font-size:13px;color:var(--text-muted);margin-top:6px}

.about-section{margin:28px 0}
.about-section__h{
    font-size:22px;
    font-weight:600;
    color:var(--secondary);
    margin:0 0 16px;
    padding-bottom:10px;
    border-bottom:2px solid rgba(232,68,68,.25);
}
.about-section--muted{
    background:var(--bg-gray);
    border-radius:18px;
    padding:26px 22px;
    border:1px solid var(--border);
}
.about-section__grid{
    display:grid;
    gap:20px;
}
@media (min-width:800px){
    .about-section__grid{grid-template-columns:1fr 1fr}
}
.about-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:20px;
    box-shadow:var(--sh-sm);
}
.about-card__h{font-size:17px;margin:0 0 10px;color:var(--secondary)}
.about-card p{margin:0;font-size:15px;line-height:1.65;color:var(--text)}
.about-card a{color:#0B6A6A;font-weight:500}
.about-card a:hover{color:var(--primary)}

.about-pullquote{
    margin:32px 0;
    padding:24px 24px 24px 28px;
    border-left:4px solid var(--primary);
    background:linear-gradient(90deg,rgba(232,68,68,.08),transparent);
    border-radius:0 14px 14px 0;
    font-size:18px;
    font-weight:500;
    line-height:1.55;
    color:var(--secondary);
    font-style:italic;
}

.about-timeline{margin:28px 0}
.about-timeline__list{
    counter-reset:step;
    list-style:none;
    margin:0;
    padding:0;
}
.about-timeline__list li{
    position:relative;
    padding:16px 16px 16px 52px;
    margin-bottom:12px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    box-shadow:var(--sh-sm);
    line-height:1.6;
}
.about-timeline__list li::before{
    counter-increment:step;
    content:counter(step);
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    width:28px;
    height:28px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    color:#fff;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}
.about-timeline__list a{color:#0B6A6A;font-weight:600}
.about-timeline__list a:hover{color:var(--primary)}

.about-cta{
    margin:40px 0 0;
    padding:32px 24px;
    text-align:center;
    border-radius:20px;
    background:
      radial-gradient(380px 180px at 80% 10%, rgba(232,68,68,.2), transparent 65%),
      linear-gradient(135deg,#1A1A2E 0%,#252845 100%);
    color:#fff;
    box-shadow:var(--sh-lg);
}
.about-cta__h{font-size:24px;margin:0 0 10px;color:#fff}
.about-cta__text{
    margin:0 0 22px;
    color:rgba(255,255,255,.85);
    font-size:16px;
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
}
.about-cta .btn--primary{background:var(--primary)}
.about-cta .btn--primary:hover{background:var(--primary-dark)}

.about-section p,.about-section--muted p{
    margin:0 0 14px;
    font-size:15px;
    line-height:1.7;
    color:var(--text);
}
.about-section p:last-child{margin-bottom:0}
.about-section a,.about-section--muted a{color:#0B6A6A;font-weight:500}
.about-section a:hover,.about-section--muted a:hover{color:var(--primary)}

/* ── Юридические тексты ───────────────────────────── */
.legal-page--docs{max-width:920px}
.legal-page--docs > h1{margin-bottom:20px}
.legal-prose{font-size:15px;line-height:1.7;color:var(--text)}
.legal-prose--wide{max-width:none}
.legal-prose h2{
    font-size:22px;
    margin:32px 0 14px;
    padding-top:8px;
    color:var(--secondary);
    border-top:1px solid var(--border);
}
.legal-prose h2:first-of-type{border-top:none;padding-top:0}
.legal-prose h3{font-size:17px;margin:22px 0 10px;color:var(--secondary)}
.legal-prose p{margin:0 0 12px}
.legal-prose ul{margin:10px 0 16px;padding-left:22px;list-style:disc}
.legal-prose ol{margin:10px 0 16px;padding-left:24px;list-style:decimal}
.legal-prose li{margin-bottom:8px}
.legal-prose a{color:#0B6A6A;font-weight:500}
.legal-prose a:hover{color:var(--primary)}
.legal-prose strong{color:var(--secondary)}
.legal-prose__meta{
    font-size:14px;
    color:var(--text-muted);
    margin-bottom:20px !important;
    padding:14px 16px;
    background:var(--bg-gray);
    border-radius:12px;
    border:1px solid var(--border);
}
.legal-prose__placeholders em{color:var(--text-muted);font-style:normal}

/* ── Cookie-баннер ────────────────────────────────── */
.cookie-consent{
    position:fixed;
    z-index:9998;
    left:0;
    right:0;
    bottom:0;
    padding:16px;
    display:flex;
    justify-content:center;
    pointer-events:none;
}
.cookie-consent[hidden]{display:none !important}
.cookie-consent__panel{
    pointer-events:auto;
    max-width:720px;
    width:100%;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:0 -4px 28px rgba(0,0,0,.12),var(--sh-lg);
    padding:18px 20px;
    display:flex;
    flex-direction:column;
    gap:16px;
}
@media (min-width:720px){
    .cookie-consent__panel{
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
        gap:20px;
        max-width:960px;
        padding:20px 24px;
    }
}
.cookie-consent__title{
    font-weight:700;
    font-size:16px;
    color:var(--secondary);
    margin:0 0 6px;
}
.cookie-consent__desc{
    margin:0;
    font-size:14px;
    line-height:1.55;
    color:var(--text-muted);
}
.cookie-consent__desc a{color:#0B6A6A;text-decoration:underline}
.cookie-consent__desc a:hover{color:var(--primary)}
.cookie-consent__actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    flex-shrink:0;
}
.contacts-address{font-size:15px;line-height:1.55;margin:0}
