html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
}

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

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 850;
    letter-spacing: -0.03em;
    text-decoration: none;
    white-space: nowrap;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 14px 30px rgba(219, 0, 59, 0.24);
}

.desktop-nav {
    display: none;
}

.desktop-nav a,
.mobile-panel a {
    color: #202633;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
    color: var(--primary);
}

.header-phone,
.hero-phone,
.section-phone,
.mobile-menu-phone,
.sticky-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    border-radius: 999px;
    background: #111827;
    color: #FFFFFF;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.header-phone {
    display: none;
    padding: 0 18px;
    font-size: 16px;
}

.header-phone:hover,
.hero-phone:hover,
.section-phone:hover,
.mobile-menu-phone:hover,
.sticky-call:hover {
    color: #FFFFFF;
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(219, 0, 59, 0.26);
}

.hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 16px;
    background: #FFFFFF;
    color: #111827;
}

.mobile-panel {
    display: none;
    position: fixed;
    inset: 74px 16px auto 16px;
    z-index: 60;
    padding: 18px;
    border: 1px solid rgba(219, 0, 59, 0.14);
    border-radius: 26px;
    background: #FFFFFF;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.18);
}

.mobile-panel.is-open {
    display: block;
}

.mobile-panel nav {
    display: grid;
    gap: 14px;
}

.mobile-menu-phone {
    width: 100%;
    margin-top: 16px;
    padding: 0 18px;
    font-size: 16px;
}

.hero-section {
    position: relative;
    padding: 34px 0 58px;
    background: radial-gradient(circle at top left, rgba(237, 107, 142, 0.28), transparent 34%), linear-gradient(135deg, #FFF5F8 0%, #FFFFFF 45%, #F8FAFC 100%);
}

.hero-grid {
    display: grid;
    gap: 28px;
    align-items: stretch;
}

.hero-copy,
.hero-visual {
    min-height: 100%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 13px;
    border: 1px solid rgba(219, 0, 59, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: #7C102C;
    font-size: 16px;
    font-weight: 850;
}

h1,
.h1 {
    margin: 0;
    color: #111827;
    font-family: var(--font-heading);
    font-size: 35px;
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.055em;
}

h2 {
    margin: 0;
    color: #111827;
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: -0.04em;
}

h3,
h4 {
    margin: 0;
    color: #111827;
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: -0.025em;
}

p,
li {
    font-size: 16px;
}

.hero-lead {
    margin-top: 18px;
    color: #303642;
    font-size: 18px;
    line-height: 1.72;
}

.stars {
    margin: 16px 0 14px;
    color: var(--accent);
    font-size: 24px;
    letter-spacing: 0.12em;
}

.trust-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 24px;
}

.trust-icons img {
    width: auto;
    height: 48px;
    object-fit: contain;
    padding: 6px;
    border: 1px solid rgba(219, 0, 59, 0.14);
    border-radius: 14px;
    background: #FFFFFF;
}

.cta-note {
    margin: 0 0 14px;
    color: #111827;
    font-weight: 850;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

.hero-phone,
.section-phone {
    min-height: 54px;
    padding: 0 24px;
    font-size: 17px;
}

.secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid rgba(219, 0, 59, 0.28);
    border-radius: 999px;
    color: #111827;
    font-size: 17px;
    font-weight: 850;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease;
}

.secondary-link:hover {
    background: #FFFFFF;
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-image-card {
    position: relative;
    display: flex;
    min-height: 100%;
    overflow: hidden;
    border-radius: 34px;
    background: #FFFFFF;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.16);
}

.hero-image-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    max-width: 230px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    color: #111827;
    font-size: 16px;
    font-weight: 850;
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.16);
}

.section {
    padding: 58px 0;
}

.section-soft {
    background: var(--surface-soft);
}

.section-rose {
    background: linear-gradient(180deg, #FFF5F8, #FFFFFF);
}

.section-dark {
    background: #15151C;
    color: #FFFFFF;
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark li {
    color: #FFFFFF;
}

.section-kicker {
    margin: 0 0 10px;
    color: #7C102C;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading {
    display: grid;
    gap: 12px;
    max-width: 790px;
    margin-bottom: 30px;
}

.section-heading.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.split-layout {
    display: grid;
    gap: 28px;
    align-items: center;
}

.split-text {
    order: 2;
}

.split-media {
    order: 1;
}

.media-card {
    overflow: hidden;
    border-radius: 30px;
    background: #FFFFFF;
    box-shadow: 0 22px 60px rgba(17, 24, 39, 0.12);
}

.media-card img,
.media-card svg {
    width: 100%;
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.service-grid {
    display: grid;
    gap: 18px;
}

.service-card,
.parts-list li,
.step-card,
.payment-card,
.area-card {
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.service-card {
    padding: 22px;
    transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(219, 0, 59, 0.26);
    box-shadow: 0 24px 58px rgba(219, 0, 59, 0.12);
}

.service-icon,
.mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    border-radius: 18px;
    background: #FFF0F4;
    color: var(--primary);
}

.service-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
}

.mini-icon {
    width: 44px;
    height: 44px;
}

.service-card ul,
.parts-list,
.area-list,
.payment-list {
    display: grid;
    gap: 12px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li,
.parts-list li,
.area-list li,
.payment-list li {
    position: relative;
    padding-left: 24px;
    color: #303642;
}

.service-card li::before,
.parts-list li::before,
.area-list li::before,
.payment-list li::before {
    content: "";
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--primary);
}

.parts-list li {
    padding: 18px 18px 18px 42px;
}

.parts-list li::before {
    left: 18px;
}

.steps-grid {
    display: grid;
    gap: 18px;
}

.step-card {
    position: relative;
    padding: 24px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 16px;
    background: #111827;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 900;
}

.cta-band {
    display: grid;
    gap: 16px;
    align-items: center;
    padding: 26px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--primary), #111827);
    color: #FFFFFF;
    box-shadow: 0 24px 64px rgba(219, 0, 59, 0.22);
}

.cta-band h2,
.cta-band p {
    color: #FFFFFF;
}

.cta-band .section-phone {
    background: #FFFFFF;
    color: #111827;
}

.cta-band .section-phone:hover {
    background: #FFF0F4;
    color: #111827;
}

.reviews-shell {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 350ms ease;
}

.review-card {
    flex: 0 0 100%;
    padding: 0 8px;
}

.review-inner {
    height: 100%;
    padding: 24px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 28px;
    background: #FFFFFF;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.review-stars {
    margin-bottom: 12px;
    color: var(--accent);
    letter-spacing: 0.08em;
}

.review-author {
    margin-top: 16px;
    color: #111827;
    font-weight: 900;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.carousel-controls button {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: #111827;
    color: #FFFFFF;
    font-size: 22px;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease;
}

.carousel-controls button:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.area-grid,
.payment-grid {
    display: grid;
    gap: 18px;
}

.area-card,
.payment-card {
    padding: 22px;
}

.footer {
    padding: 42px 0 92px;
    background: #15151C;
    color: #FFFFFF;
}

.footer p,
.footer a,
.footer li {
    color: #FFFFFF;
    font-size: 14px;
}

.footer .logo-link {
    color: #FFFFFF;
}

.footer-grid {
    display: grid;
    gap: 26px;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.disclaimer {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.65;
}

.sticky-call {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: flex;
    height: 58px;
    border-radius: 0;
    background: #111827;
    color: #FFFFFF;
    font-size: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
}

.sticky-call.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 700ms ease forwards;
}

.delay-1 {
    animation-delay: 120ms;
}

.delay-2 {
    animation-delay: 220ms;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        align-items: center;
    }

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

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .header-phone {
        display: inline-flex;
    }

    .hamburger,
    .mobile-panel,
    .mobile-panel.is-open,
    .sticky-call,
    .sticky-call.is-visible {
        display: none;
    }

    h1,
    .h1 {
        font-size: clamp(48px, 5vw, 70px);
    }

    h2 {
        font-size: clamp(34px, 3vw, 46px);
    }

    .hero-section {
        padding: 54px 0 78px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
        gap: 42px;
    }

    .split-layout {
        grid-template-columns: minmax(0, 65fr) minmax(260px, 35fr);
        gap: 44px;
    }

    .split-text {
        order: 1;
    }

    .split-media {
        order: 2;
    }

    .split-layout.reverse .split-text {
        order: 2;
    }

    .split-layout.reverse .split-media {
        order: 1;
    }

    .review-card {
        flex-basis: 33.3333%;
    }

    .cta-band {
        grid-template-columns: 1fr auto;
        padding: 34px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr;
    }
}

@media (min-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 767px) {
    h1,
    .h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 28px;
    }

    .container-page {
        width: min(100% - 28px, 1180px);
    }

    .site-main {
        padding-bottom: 58px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}
