    :root {
        --bg: #0f1720;
        --bg-soft: #18222d;
        --card: #ffffff;
        --text: #111827;
        --text-light: #64748b;
        --white: #ffffff;
        --accent: #f59e0b;
        --accent-dark: #d97706;
        --line: rgba(255, 255, 255, 0.08);
        --shadow: 0 20px 50px rgba(15, 23, 32, 0.18);
        --radius-xl: 28px;
        --radius-lg: 22px;
        --radius-md: 16px;
        --container: 1240px;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: Inter, Arial, sans-serif;
        color: var(--text);
        background: #f3f4f6;
        line-height: 1.55;
    }

    img {
        max-width: 100%;
        display: block;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    .container {
        width: min(var(--container), calc(100% - 32px));
        margin: 0 auto;
    }

    .section {
        padding: 92px 0;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 3.4rem);
        line-height: 1.05;
        font-weight: 800;
        letter-spacing: -0.03em;
        margin-bottom: 18px;
    }

    .section-subtitle {
        max-width: 760px;
        color: #525f73;
        font-size: 1.05rem;
        margin-bottom: 42px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 24px;
        border-radius: 999px;
        font-weight: 700;
        transition: 0.25s ease;
        border: none;
        cursor: pointer;
    }

    .btn-primary {
        background: var(--accent);
        color: #111827;
        box-shadow: 0 12px 30px rgba(245, 158, 11, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        background: #ffb11e;
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.08);
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 50;
        backdrop-filter: blur(16px);
        background: rgba(15, 23, 32, 0.82);
        border-bottom: 1px solid var(--line);
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        min-height: 84px;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 14px;
        color: var(--white);
    }

    .brand-mark {
        width: 63px;
        height: 48px;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--accent), #f97316);
        color: #111827;
        display: grid;
        place-items: center;
        font-weight: 900;
        font-size: 1.1rem;
        box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
        padding: 6px;
    }

    .brand-name {
        font-size: 1rem;
        font-weight: 800;
        letter-spacing: 0.04em;
    }

    .brand-text small {
        display: block;
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.8rem;
        margin-top: 2px;
    }

    .header-meta {
        display: flex;
        align-items: center;
        gap: 26px;
        flex-wrap: wrap;
        color: var(--white);
    }

    .meta-item small {
        display: block;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.78rem;
        margin-bottom: 3px;
    }

    .meta-item strong {
        font-size: 0.96rem;
    }

    .socials {
        display: flex;
        gap: 10px;
    }

    .socials a {
        width: 177px;
        height: 42px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: grid;
        place-items: center;
        color: var(--white);
        background: rgba(255, 255, 255, 0.05);
        transition: 0.25s ease;
        font-size: 0.92rem;
        font-weight: 700;
    }

    .socials a:hover {
        background: var(--accent);
        color: #111827;
        transform: translateY(-2px);
    }

    .hero {
        background:
            linear-gradient(120deg, rgba(15, 23, 32, 0.94), rgba(15, 23, 32, 0.72)),
            url('/static/img/photo-1505693416388-ac5ce068fe85.png') center/cover no-repeat;
        color: var(--white);
        padding: 88px 0 54px;
        overflow: hidden;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 34px;
        align-items: center;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 18px;
        font-size: 0.92rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5vw, 3.2rem);
        line-height: 0.96;
        letter-spacing: -0.05em;
        font-weight: 900;
        max-width: 850px;
        margin-bottom: 18px;
    }

    .hero-title span {
        color: var(--accent);
    }

    .hero-text {
        color: rgba(255, 255, 255, 0.82);
        font-size: 1.08rem;
        max-width: 680px;
        margin-bottom: 32px;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 40px;
    }

    .hero-facts {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .fact-card {
        padding: 18px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.09);
        background: rgba(255, 255, 255, 0.06);
    }

    .fact-card strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .fact-card span {
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.94rem;
    }

    .hero-side {
        display: grid;
        gap: 18px;
    }

    .hero-panel,
    .offer-card,
    .about-card,
    .contact-card,
    .stress-step,
    .price-card,
    .review-card,
    .before-after-card,
    .logos-strip,
    .gallery-card {
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow);
        overflow: hidden;
    }

    .hero-panel {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.09);
        backdrop-filter: blur(12px);
        padding: 22px;
    }

    .estimate-box {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        padding: 26px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .estimate-box h3 {
        font-size: 1.35rem;
        margin-bottom: 10px;
    }

    .estimate-box p {
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 18px;
    }

    .mini-list {
        display: grid;
        gap: 12px;
    }

    .mini-list li {
        list-style: none;
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .showcase-wrap {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 28px;
        align-items: stretch;
    }

    .slider {
        position: relative;
        min-height: 620px;
        border-radius: var(--radius-xl);
        overflow: hidden;
        background: #d7dce2;
        box-shadow: var(--shadow);
    }

    .slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.55s ease;
    }

    .slide.active {
        opacity: 1;
        pointer-events: auto;
    }

    .slide img,
    .slide video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slide-overlay {
        position: absolute;
        inset: auto 24px 24px 24px;
        padding: 22px;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(15, 23, 32, 0.2), rgba(15, 23, 32, 0.88));
        color: var(--white);
    }

    .slide-overlay small {
        display: inline-block;
        margin-bottom: 8px;
        color: rgba(255, 255, 255, 0.72);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: 0.74rem;
    }

    .slide-overlay h3 {
        font-size: 1.7rem;
        margin-bottom: 8px;
    }

    .slider-nav {
        position: absolute;
        inset: auto 24px 24px auto;
        display: flex;
        gap: 10px;
        z-index: 3;
    }

    .slider-btn {
        width: 48px;
        height: 48px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.16);
        color: var(--white);
        backdrop-filter: blur(8px);
        cursor: pointer;
        font-size: 1.1rem;
        transition: 0.25s ease;
    }

    .slider-btn:hover {
        background: var(--accent);
        color: #111827;
    }

    .gallery-card {
        background: #fff;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .gallery-card h3 {
        font-size: 1.9rem;
        line-height: 1.06;
        margin-bottom: 14px;
    }

    .gallery-card p {
        color: var(--text-light);
        margin-bottom: 24px;
    }

    .feature-list {
        display: grid;
        gap: 14px;
        margin-top: 10px;
    }

    .feature-item {
        padding: 16px;
        border-radius: 18px;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
    }

    .feature-item strong {
        display: block;
        margin-bottom: 6px;
        font-size: 1rem;
    }

    .feature-item span {
        color: #64748b;
        font-size: 0.95rem;
    }

    .logos-strip {
        margin-top: 28px;
        background: #ffffff;
        padding: 18px;
    }

    .logos {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .logo-box {
        border-radius: 18px;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
        padding: 20px;
        min-height: 110px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }

    .logo-box .icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: rgba(245, 158, 11, 0.14);
        color: var(--accent-dark);
        font-weight: 800;
        font-size: 1.15rem;
    }

    .logo-box strong {
        font-size: 1rem;
    }

    .logo-box span {
        color: #64748b;
        font-size: 0.92rem;
    }

    .prices-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .price-card {
        background: #fff;
        padding: 28px;
        border: 1px solid #e5e7eb;
        position: relative;
    }

    .price-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 20px;
    }

    .price-icon {
        width: 62px;
        height: 62px;
        border-radius: 18px;
        display: grid;
        place-items: center;
        font-size: 1.4rem;
        font-weight: 800;
        background: rgba(245, 158, 11, 0.13);
        color: var(--accent-dark);
    }

    .price-card h3 {
        font-size: 1.35rem;
        margin-bottom: 10px;
    }

    .price {
        display: inline-block;
        padding: 10px 14px;
        border-radius: 999px;
        background: #111827;
        color: #fff;
        font-weight: 800;
        margin-bottom: 16px;
        font-size: 0.98rem;
    }

    .price-card p {
        color: #64748b;
        margin-bottom: 18px;
    }

    .price-card ul {
        display: grid;
        gap: 10px;
        padding-left: 18px;
        color: #334155;
    }

    .stress-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px;
    }

    .stress-step {
        background: #fff;
        border: 1px solid #e5e7eb;
    }

    .stress-step img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    .stress-body {
        padding: 24px;
    }

    .step-num {
        display: inline-flex;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        align-items: center;
        justify-content: center;
        background: rgba(245, 158, 11, 0.14);
        color: var(--accent-dark);
        font-weight: 900;
        margin-bottom: 16px;
    }

    .stress-body h3 {
        font-size: 1.18rem;
        margin-bottom: 10px;
    }

    .stress-body p {
        color: #64748b;
        font-size: 0.95rem;
    }

    .offer {
        background: linear-gradient(135deg, #111827, #1f2937);
        color: var(--white);
    }

    .offer-card {
        display: grid;
        grid-template-columns: 0.95fr 1.05fr;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
    }

    .offer-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 420px;
    }

    .offer-content {
        padding: 42px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .offer-tag {
        display: inline-flex;
        width: fit-content;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(245, 158, 11, 0.16);
        color: #ffd084;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .offer-content h2 {
        font-size: clamp(2rem, 4vw, 3.6rem);
        line-height: 1;
        margin-bottom: 14px;
    }

    .offer-content p {
        color: rgba(255, 255, 255, 0.78);
        max-width: 560px;
        margin-bottom: 24px;
        font-size: 1.05rem;
    }

    .offer-benefits {
        display: grid;
        gap: 12px;
        margin-bottom: 28px;
    }

    .offer-benefits li {
        list-style: none;
        padding: 14px 16px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .before-after-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .before-after-card {
        background: #fff;
        border: 1px solid #e5e7eb;
        padding: 20px;
    }

    .compare {
        /* display: grid; */
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 16px;
    }

    .compare .shot {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        min-height: 200px;
    }

    .compare img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .label {
        position: absolute;
        top: 12px;
        left: 12px;
        padding: 7px 12px;
        border-radius: 999px;
        background: rgba(15, 23, 32, 0.78);
        color: #fff;
        font-size: 0.8rem;
        font-weight: 700;
    }
    .label1 {
        position: absolute;
        top: 12px;
        right: 12px;
        padding: 7px 12px;
        border-radius: 999px;
        background: rgba(15, 23, 32, 0.78);
        color: #fff;
        font-size: 0.8rem;
        font-weight: 700;
    }

    .before-after-card h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .before-after-card p {
        color: #64748b;
        font-size: 0.95rem;
    }

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

    .review-card {
        background: #fff;
        padding: 28px;
        border: 1px solid #e5e7eb;
    }

    .review-stars {
        color: var(--accent);
        letter-spacing: 0.12em;
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

    .review-card p {
        color: #334155;
        margin-bottom: 18px;
    }

    .review-author {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .avatar {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: linear-gradient(135deg, #f59e0b, #fb7185);
        color: #111827;
        display: grid;
        place-items: center;
        font-weight: 900;
    }

    .review-author strong {
        display: block;
    }

    .review-author span {
        color: #64748b;
        font-size: 0.9rem;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .about-card {
        background: #fff;
        border: 1px solid #e5e7eb;
        padding: 32px;
    }

    .about-card p {
        color: #475569;
        margin-bottom: 16px;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-top: 26px;
    }

    .stat-box {
        border-radius: 20px;
        padding: 20px;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
    }

    .stat-box strong {
        display: block;
        font-size: 2rem;
        line-height: 1;
        margin-bottom: 8px;
    }

    .contact-wrap {
        display: grid;
        grid-template-columns: 0.95fr 1.05fr;
        gap: 24px;
    }

    .contact-card {
        background: #fff;
        border: 1px solid #e5e7eb;
        padding: 32px;
    }

    .contact-list {
        display: grid;
        gap: 16px;
        margin-top: 24px;
    }

    .contact-item {
        padding: 16px 18px;
        border-radius: 18px;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
    }

    .contact-item small {
        display: block;
        color: #64748b;
        margin-bottom: 6px;
    }

    .contact-item strong,
    .contact-item a {
        font-size: 1.02rem;
        font-weight: 700;
    }

    .contact-form {
        display: grid;
        gap: 14px;
        margin-top: 28px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        border: 1px solid #d7dce2;
        border-radius: 18px;
        padding: 16px 18px;
        outline: none;
        font: inherit;
        background: #fff;
        transition: 0.2s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
    }

    .contact-form textarea {
        min-height: 146px;
        resize: vertical;
    }

    .map-box {
        margin-top: 20px;
        min-height: 220px;
        border-radius: 24px;
        background:
            linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(249, 115, 22, 0.12)),
            url('/static/img/pg.png') center/cover;
        border: 1px solid #e5e7eb;
        display: flex;
        align-items: flex-end;
        padding: 22px;
        color: #111827;
        font-weight: 700;
    }

    .site-footer {
        background: #0f1720;
        color: rgba(255, 255, 255, 0.82);
        padding: 28px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }

    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.65s ease, transform 0.65s ease;
    }

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

    @media (max-width: 1120px) {

        .hero-grid,
        .showcase-wrap,
        .offer-card,
        .contact-wrap,
        .about-grid {
            grid-template-columns: 1fr;
        }

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

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

        .slider {
            min-height: 520px;
        }
    }

    @media (max-width: 760px) {
        .section {
            padding: 74px 0;
        }

        .header-inner {
            padding: 14px 0;
            align-items: flex-start;
        }

        .header-meta {
            gap: 14px;
        }

        .hero {
            padding-top: 64px;
        }

        .hero-facts,
        .prices-grid,
        .stress-grid,
        .before-after-grid,
        .reviews-grid,
        .logos,
        .stats {
            grid-template-columns: 1fr;
        }

        .slider {
            min-height: 420px;
        }

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

        .offer-content,
        .about-card,
        .contact-card,
        .gallery-card,
        .price-card,
        .review-card {
            padding: 22px;
        }

        .socials a {
            width: 180px;
            height: 38px;
            border-radius: 10px;
        }
    }
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 16px 24px;
    display: none;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    z-index: 99999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    font-family: system-ui, -apple-system, sans-serif;
    color: #1e293b;
}

.cookie-banner.show {
    display: flex;
}

.cookie-banner p {
    margin: 0;
    flex: 1 1 300px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner a {
    color: #2563eb;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-cookie:hover {
    opacity: 0.9;
}

.btn-accept {
    background: #2563eb;
    color: #fff;
}

.btn-reject {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}