.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e5e7eb;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-title {
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 15px;
}

.logo-subtitle {
    font-size: 12px;
    color: #9ca3af;
}

.main-nav {
    display: flex;
    gap: 16px;
    font-size: 14px;
}

.nav-link {
    color: #e5e7eb;
    opacity: 0.85;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    opacity: 1;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #38bdf8);
    transition: width 0.18s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-city-and-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.city-label {
    font-size: 11px;
    color: #9ca3af;
}

/* Селектор города (309 городов) */
.city-selector {
    position: relative;
    display: inline-block;
}

.city-selector__trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 500;
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.city-selector__trigger:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.city-selector__trigger::after {
    content: '';
    width: 0;
    height: 0;
    margin-left: 4px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.8;
}

.city-selector--open .city-selector__trigger::after {
    border-top: none;
    border-bottom: 5px solid currentColor;
}

.city-selector__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 6px;
    min-width: 260px;
    max-width: 320px;
    max-height: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid #e5e7eb;
    z-index: 1000;
    overflow: hidden;
}

.city-selector--open .city-selector__dropdown {
    display: flex;
    flex-direction: column;
}

.city-selector__search-wrap {
    padding: 10px;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.city-selector__search {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
}

.city-selector__search:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.city-selector__list-wrap {
    overflow-y: auto;
    max-height: 260px;
}

.city-selector__list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
}

.city-selector__item {
    padding: 10px 14px;
    font-size: 14px;
    color: #1f2937;
    cursor: pointer;
    transition: background 0.15s;
}

.city-selector__item:hover {
    background: #f0fdf4;
}

.city-selector__item:active {
    background: #dcfce7;
}

.header-phone-number {
    font-weight: 700;
    color: #f9fafb;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
    color: #ffffff;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.btn-outline {
    border: 1px solid #2563eb;
    color: #2563eb;
    background: transparent;
}

.btn-outline:hover {
    background: #eff6ff;
}

.btn-lg {
    padding: 12px 22px;
    font-size: 15px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.header-phone .btn-primary.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.6);
}

.hero {
    padding: 64px 0 56px;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.14) 0, transparent 55%),
        radial-gradient(circle at top right, rgba(52, 211, 153, 0.16) 0, transparent 60%),
        linear-gradient(180deg, #020617, #020617 55%, #020617 100%);
    color: #e5e7eb;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 40px;
    align-items: stretch;
}

.hero-content,
.hero-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.hero-title {
    font-size: 38px;
    line-height: 1.2;
    margin-top: 16px;
}

.hero-title-accent {
    color: #38bdf8;
}

.hero-offer {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.6);
    background: rgba(15, 23, 42, 0.8);
    font-size: 12px;
    color: #e0f2fe;
}

.hero-subtitle {
    margin-top: 12px;
    color: #cbd5f5;
}

.hero-benefits {
    margin-top: 16px;
    display: grid;
    gap: 6px;
    color: #d1d5db;
}

.hero-kpis {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-kpi {
    border-radius: 999px;
    padding: 10px 14px;
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.35), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(22, 163, 74, 0.6);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-kpi-number {
    font-weight: 700;
    font-size: 16px;
    color: #bbf7d0;
}

.hero-kpi-label {
    font-size: 12px;
    color: #dcfce7;
}

.lead-form-card {
    margin-top: 24px;
    padding: 20px;
    border-radius: 16px;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.92));
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.lead-form-title {
    font-size: 18px;
    margin-bottom: 16px;
    color: #f9fafb;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-field--full {
    flex: 1 1 100%;
}

.form-label {
    font-size: 13px;
    color: #cbd5f5;
}

input[type="text"],
input[type="tel"],
input[type="number"],
select,
textarea {
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 8px 10px;
    background-color: rgba(15, 23, 42, 0.6);
    color: #e5e7eb;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
}

.form-footnote {
    margin-top: 8px;
    font-size: 11px;
    color: #9ca3af;
}

.lead-form-note {
    margin-top: 10px;
    font-size: 13px;
    color: #cbd5f5;
}

.stats-card,
.contacts-card {
    border-radius: 16px;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), rgba(15, 23, 42, 0.98));
    padding: 18px 20px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.stats-card {
    margin-bottom: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.service-card {
    border-radius: 20px;
    background: linear-gradient(160deg, #0f172a 0%, #020617 100%);
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(56, 189, 248, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    color: #e5e7eb;
    display: flex;
    flex-direction: column;
    min-height: 260px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(56, 189, 248, 0.15);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, #22c55e, #38bdf8);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f9fafb;
    letter-spacing: 0.02em;
}

.service-card p {
    font-size: 14px;
    line-height: 1.55;
    color: #cbd5e1;
    margin-bottom: 0;
}

.service-card .service-features {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    flex-grow: 1;
}

.service-card .service-features li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.45;
    color: #94a3b8;
}

.service-card .service-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #38bdf8;
}

.service-card .service-meta {
    margin-top: 12px;
    font-size: 12px;
    color: #64748b;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-card .service-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.services-grid .service-card:nth-child(1)::before,
.service-card--1::before { background: linear-gradient(90deg, #22c55e, #38bdf8); }
.services-grid .service-card:nth-child(2)::before,
.service-card--2::before { background: linear-gradient(90deg, #f97316, #fbbf24); }
.services-grid .service-card:nth-child(3)::before,
.service-card--3::before { background: linear-gradient(90deg, #0ea5e9, #a855f7); }
.services-grid .service-card:nth-child(4)::before,
.service-card--4::before { background: linear-gradient(90deg, #06b6d4, #22c55e); }
.services-grid .service-card:nth-child(5)::before,
.service-card--5::before { background: linear-gradient(90deg, #8b5cf6, #ec4899); }
.services-grid .service-card:nth-child(6)::before,
.service-card--6::before { background: linear-gradient(90deg, #14b8a6, #38bdf8); }

.service-price {
    margin-top: 14px;
    font-weight: 700;
    font-size: 1.125rem;
    color: #38bdf8;
    letter-spacing: 0.02em;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    background: linear-gradient(135deg, #67e8f9, #38bdf8);
    border-radius: 999px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 12px rgba(56, 189, 248, 0.35);
    align-self: flex-start;
}

.service-link:hover {
    opacity: 0.95;
    transform: scale(1.02);
    color: #0f172a;
}

/* Быстрые ссылки на услуги дезинфекции — карточка с иконкой */
.quick-links {
    margin-top: 32px;
}
.quick-links-card {
    position: relative;
    background: linear-gradient(160deg, #0f172a 0%, #020617 100%);
    border-radius: 20px;
    padding: 28px 28px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(56, 189, 248, 0.12);
    overflow: hidden;
}
.quick-links-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4, #38bdf8);
    border-radius: 20px 20px 0 0;
}
.quick-links-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f9fafb;
    margin: 0 0 20px 0;
    letter-spacing: 0.02em;
}
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px 24px;
}
.quick-links-grid a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(56, 189, 248, 0.08);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.quick-links-grid a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #38bdf8;
    opacity: 0.6;
    flex-shrink: 0;
}
.quick-links-grid a:hover {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.08);
    border-color: rgba(56, 189, 248, 0.25);
}
.quick-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.quick-links-list li {
    margin-bottom: 6px;
}
.quick-links-list a {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}
.quick-links-list a:hover {
    color: #38bdf8;
}
.quick-links-group-title {
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.quick-links-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px 32px;
}

.footer-col h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-links {
    display: grid;
    gap: 6px;
    font-size: 14px;
}

.footer-text {
    margin-top: 8px;
    font-size: 14px;
    color: #9ca3af;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e5e7eb;
}

.footer-logo .logo-image {
    width: 32px;
    height: 32px;
}

/* Мобильная фиксированная плашка CTA */
.mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 60;
    display: none;
}

.mobile-sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 0;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.35), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(56, 189, 248, 0.7);
}

.mobile-sticky-cta-text {
    font-size: 13px;
    color: #e5e7eb;
}

.mobile-sticky-cta-buttons {
    display: flex;
    gap: 6px;
}

.footer-phone {
    font-weight: 600;
    color: #e5e7eb;
}

.steps-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.step-card {
    border-radius: 14px;
    background: linear-gradient(135deg, #0f172a, #020617);
    padding: 16px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.7);
    position: relative;
    padding-top: 30px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    color: #e5e7eb;
}

.step-card::before {
    content: "✓";
    position: absolute;
    top: 10px;
    left: 16px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #22c55e;
    color: #ffffff;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.benefits-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.benefit-card {
    border-radius: 14px;
    background: linear-gradient(135deg, #0f172a, #020617);
    padding: 16px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.7);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    color: #e5e7eb;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.reviews-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.review-card {
    border-radius: 16px;
    background: linear-gradient(135deg, #0f172a, #020617);
    padding: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.7);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    color: #e5e7eb;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.review-text {
    font-size: 14px;
    color: #e5e7eb;
    margin-bottom: 10px;
}

.review-meta {
    font-size: 13px;
    color: #9ca3af;
}

.faq-list {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

.faq-item {
    border-radius: 10px;
    background: linear-gradient(135deg, #020617, #020617);
    padding: 10px 14px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.7);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 500;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin-top: 8px;
    font-size: 14px;
    color: #4b5563;
}

.section--seo p {
    margin-top: 10px;
    color: #4b5563;
}

.seo-content {
    max-width: 920px;
    margin: 0 auto;
}

.seo-content h2 {
    color: #f9fafb;
    margin-bottom: 20px;
    font-size: 28px;
}

.seo-subtitle {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 18px;
    color: #e5e7eb;
}

.seo-content p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

/* Timeline (Как мы работаем) */
.section--timeline {
    background: transparent;
    padding: 60px 0;
}

.timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 32px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #10b981, #0ea5e9);
    border-radius: 999px;
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
    padding-left: 24px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.timeline-content {
    background: linear-gradient(135deg, #020617, #020617);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-left: 3px solid #10b981;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-content:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.timeline-content h3 {
    color: #f9fafb;
    font-size: 18px;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #e5e7eb;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA блоки */
.section--cta,
.section--cta-alt {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(14, 165, 233, 0.15));
    border-top: 2px solid rgba(16, 185, 129, 0.3);
    border-bottom: 2px solid rgba(14, 165, 233, 0.3);
    padding: 48px 0;
}

.section--cta-alt {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(168, 85, 247, 0.15));
    border-top: 2px solid rgba(14, 165, 233, 0.3);
    border-bottom: 2px solid rgba(168, 85, 247, 0.3);
}

.cta-container {
    text-align: center;
}

.cta-container h2 {
    font-size: 32px;
    color: #f9fafb;
    margin-bottom: 12px;
}

.cta-container p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Новый блок преимуществ */
.section--benefits {
    background: transparent;
    padding: 60px 0;
}

.benefits-grid-new {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card-new {
    background: linear-gradient(135deg, #020617, #020617);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid transparent;
}

.benefit-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: #10b981;
}

.benefit-icon {
    font-size: 42px;
    margin-bottom: 16px;
    display: block;
}

.benefit-card-new h3 {
    color: #f9fafb;
    font-size: 19px;
    margin-bottom: 10px;
}

.benefit-card-new p {
    color: #e5e7eb;
    font-size: 14px;
    line-height: 1.6;
}

/* Соц.доказательства / логотипы клиентов */
.trust-bar {
    border-radius: 16px;
    padding: 16px 20px;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.35), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(56, 189, 248, 0.6);
    color: #e5e7eb;
    margin-top: 32px;
}

.trust-bar-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.trust-bar-subtitle {
    font-size: 13px;
    color: #cbd5e1;
}

.trust-logos {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-logos-label {
    font-size: 13px;
    color: #9ca3af;
}

.trust-logos-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.trust-logo-item {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.85);
    color: #e5e7eb;
}

/* Сравнение: частные мастера vs ДЕЗ-ЭКО */
.compare-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.compare-card {
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.compare-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.compare-card ul {
    display: grid;
    gap: 6px;
    font-size: 14px;
}

.compare-card--bad {
    background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.25), rgba(15, 23, 42, 0.98));
    color: #fee2e2;
    border-color: rgba(248, 113, 113, 0.7);
}

.compare-card--good {
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.35), rgba(15, 23, 42, 0.98));
    color: #dcfce7;
    border-color: rgba(34, 197, 94, 0.7);
}

.compare-card--bad h3 {
    color: #fecaca;
}

.compare-card--good h3 {
    color: #bbf7d0;
}

.compare-card--bad li::marker,
.compare-card--good li::marker {
    color: #facc15;
}

@media (max-width: 960px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }

    .mobile-sticky-cta {
        display: block;
    }
}

/* Новые отзывы */
.reviews-grid-new {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card-new {
    background: linear-gradient(135deg, #020617, #020617);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.15);
    border: 2px solid #fbbf24;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card-new:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(251, 191, 36, 0.25);
}

.review-stars {
    font-size: 18px;
    margin-bottom: 12px;
    color: #f59e0b;
}

.review-card-new .review-text {
    color: #78350f;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.review-card-new .review-meta {
    color: #92400e;
    font-size: 13px;
    font-weight: 600;
}

.review-object {
    font-size: 13px;
    color: #e5e7eb;
    margin-bottom: 6px;
}

/* Новый FAQ */
.section--faq {
    background: transparent;
    padding: 60px 0;
}

.faq-list-new {
    margin-top: 32px;
    display: grid;
    gap: 16px;
}

.faq-item-new {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.98));
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #0ea5e9;
    transition: all 0.2s ease;
}

.faq-item-new:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.10);
    border-left-color: #10b981;
}

.faq-item-new[open] {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.98), rgba(224, 242, 254, 0.98));
    border-left-color: #10b981;
}

.faq-item-new summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #111827;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item-new summary::before {
    content: "▶";
    color: #0ea5e9;
    font-size: 12px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item-new[open] summary::before {
    transform: rotate(90deg);
    color: #10b981;
}

.faq-item-new summary::-webkit-details-marker {
    display: none;
}

.faq-answer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.faq-answer p {
    color: #374151;
    font-size: 14px;
    line-height: 1.7;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* Бургер-меню и мобильная навигация */
.header-burger {
    display: none;
    width: 32px;
    height: 32px;
    border-radius: 0;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
}

.header-burger span {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 9999px;
    background: #e5e7eb;
    transition: transform 0.16s ease, opacity 0.16s ease, translate 0.16s ease;
}

.header-burger span + span {
    margin-top: 6px;
}

.header-burger.is-active span:nth-child(1) {
    transform: rotate(45deg);
    translate: 0 6px;
}

.header-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.header-burger.is-active span:nth-child(3) {
    transform: rotate(-45deg);
    translate: 0 -6px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 40;
}

.mobile-menu-inner {
    padding-top: 72px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu--open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-link {
    color: #e5e7eb;
    font-size: 16px;
    font-weight: 500;
}

.mobile-city-and-contact {
    padding-top: 12px;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-city-and-contact .header-phone {
    align-items: flex-start;
}

body.mobile-menu-open {
    overflow: hidden;
}

/* Exit-intent popup */
.exit-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 70;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.exit-popup--visible {
    opacity: 1;
    pointer-events: auto;
}

.exit-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
}

.exit-popup-dialog {
    position: relative;
    z-index: 1;
    max-width: 420px;
    width: 90%;
    padding: 24px 22px 20px;
    border-radius: 12px;
    background: #020617;
    border: 1px solid rgba(56, 189, 248, 0.7);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
    color: #e5e7eb;
}

.exit-popup-dialog h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.exit-popup-dialog p {
    font-size: 14px;
    margin-bottom: 12px;
}

.exit-popup-form {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.exit-popup-note {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 6px;
}

.exit-popup-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    color: #e5e7eb;
    font-size: 20px;
    cursor: pointer;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    background: rgba(15, 23, 42, 0.98);
    border-top: 1px solid rgba(148, 163, 184, 0.5);
}

.cookie-banner-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cookie-banner-text {
    font-size: 13px;
    color: #e5e7eb;
}

@media (max-width: 640px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefits-grid,
    .benefits-grid-new {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-grid,
    .reviews-grid-new {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-kpis {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cta-container h2 {
        font-size: 26px;
    }

    .main-nav,
    .header-city-and-contact {
        display: none;
    }

    .header-inner {
        position: relative;
    }

    .header-burger {
        display: inline-flex;
        position: absolute;
        top: 8px;
        right: 16px;
    }
}

@media (max-width: 640px) {
    .form-row {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid,
    .benefits-grid,
    .benefits-grid-new,
    .reviews-grid,
    .reviews-grid-new {
        grid-template-columns: 1fr;
    }

    .hero-kpis {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 24px;
    }

    .timeline::before {
        left: 8px;
    }

    .timeline-marker {
        left: -32px;
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-container h2 {
        font-size: 22px;
    }
}

@media (max-width: 380px) {
    .hero {
        padding: 48px 0 36px;
    }

    .hero-title {
        font-size: 30px;
    }

    .lead-form-card {
        margin-top: 16px;
        padding: 16px;
    }

    .btn-lg {
        padding: 10px 18px;
        font-size: 14px;
    }
}
