* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: #2F3342;
    background: #FFFFFF;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(56, 47, 133, 0.14);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
}

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

.logo img {
    width: 42px;
    height: 42px;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.nav a {
    color: #202332;
    font-size: 16px;
    font-weight: 700;
}

.nav a:hover {
    color: #382F85;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(56, 47, 133, 0.3);
    background: #FFFFFF;
    color: #111827;
    font-size: 24px;
}

.phone-button,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    background: #382F85;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.01em;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.72), 0 16px 34px rgba(56, 47, 133, 0.34);
    animation: pulseGlow 2.4s infinite;
    cursor: pointer;
}

.phone-button:hover,
.cta-button:hover {
    transform: translateY(-2px);
    background: #211A5F;
    color: #FFFFFF;
}

.phone-button svg,
.cta-button svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55), 0 16px 34px rgba(56, 47, 133, 0.34); }
    70% { box-shadow: 0 0 0 18px rgba(255, 255, 255, 0), 0 16px 34px rgba(56, 47, 133, 0.34); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 16px 34px rgba(56, 47, 133, 0.34); }
}

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: grid;
    align-items: center;
    padding: 70px 0 82px;
    color: #FFFFFF;
    isolation: isolate;
    background: linear-gradient(rgba(12, 10, 31, 0.72), rgba(12, 10, 31, 0.76)), url("../images/kitchen-premium.jpg") center/cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.06));
    z-index: -1;
}

.hero-content {
    width: min(920px, 100%);
    margin: 0 auto;
    text-align: center;
}

.eyebrow,
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 13px;
    background: rgba(124, 113, 216, 0.16);
    border: 1px solid rgba(124, 113, 216, 0.36);
    color: #382F85;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero .eyebrow {
    color: #FFFFFF;
    background: rgba(124, 113, 216, 0.34);
    border-color: rgba(255, 255, 255, 0.24);
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: var(--font-heading);
    color: #111827;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(39px, 6vw, 72px);
    color: #FFFFFF;
}

h2 {
    font-size: clamp(31px, 4vw, 48px);
}

h3,
h4 {
    font-size: 22px;
}

p {
    margin: 0;
    font-size: 16px;
}

.hero-lead {
    width: min(820px, 100%);
    margin: 22px auto 0;
    color: #FFFFFF;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

.stars {
    margin-top: 18px;
    color: #7C71D8;
    font-size: 24px;
    letter-spacing: 0.12em;
    text-shadow: 0 0 18px rgba(124, 113, 216, 0.8);
}

.trust-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 22px 0 30px;
}

.trust-icons img {
    width: 92px;
    height: 60px;
    object-fit: contain;
    padding: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-cta-copy {
    margin-bottom: 14px;
    color: #FFFFFF;
    font-weight: 900;
}

.section {
    padding: 94px 0;
}

.section-alt {
    background: #F7F6FF;
}

.section-dark {
    background: radial-gradient(circle at top left, rgba(124, 113, 216, 0.32), transparent 34%), #111022;
    color: #FFFFFF;
}

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

.section-dark .section-badge {
    color: #FFFFFF;
    background: rgba(124, 113, 216, 0.28);
    border-color: rgba(255, 255, 255, 0.24);
}

.section-head {
    max-width: 820px;
    margin-bottom: 38px;
}

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

.section-head p {
    margin-top: 18px;
    color: #4B5563;
}

.section-dark .section-head p {
    color: rgba(255, 255, 255, 0.84);
}

.underline {
    display: block;
    width: 74px;
    height: 4px;
    margin-top: 18px;
    background: #7C71D8;
}

.center .underline {
    margin-right: auto;
    margin-left: auto;
}

.split {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 38px;
    align-items: center;
}

.split.reverse {
    grid-template-columns: 3fr 7fr;
}

.split-text {
    display: grid;
    gap: 18px;
}

.split-image {
    position: relative;
}

.split-image img,
.feature-photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid rgba(56, 47, 133, 0.16);
    box-shadow: 0 28px 68px rgba(30, 25, 72, 0.18);
}

.comparison-wrap {
    overflow-x: auto;
    border: 1px solid rgba(56, 47, 133, 0.14);
    background: #FFFFFF;
    box-shadow: 0 20px 60px rgba(30, 25, 72, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

th,
td {
    padding: 17px 18px;
    border-bottom: 1px solid #E6E2FF;
    text-align: left;
    font-size: 16px;
}

th {
    background: #382F85;
    color: #FFFFFF;
    font-weight: 900;
}

td:first-child {
    font-weight: 900;
    color: #111827;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card,
.problem-card,
.process-step,
.review-card,
.contact-card {
    background: #FFFFFF;
    border: 1px solid rgba(56, 47, 133, 0.14);
    box-shadow: 0 18px 54px rgba(28, 24, 64, 0.08);
}

.service-card {
    padding: 28px;
    display: grid;
    gap: 16px;
}

.icon-box {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    background: #F0EEFF;
    color: #382F85;
}

.icon-box svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.1;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.service-card p,
.problem-card p,
.process-step p,
.review-card p,
.contact-card p,
.contact-card address {
    color: #4B5563;
}

.service-card h3::after,
.faq-item h3::after,
.cta-band h3::after {
    content: "";
    display: block;
    width: 46px;
    height: 3px;
    margin-top: 12px;
    background: #7C71D8;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.problem-card {
    padding: 22px;
}

.problem-card strong {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 17px;
}

.cta-band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 34px;
    background: linear-gradient(135deg, #382F85, #211A5F);
    color: #FFFFFF;
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    counter-reset: process;
}

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

.process-step::before {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    display: inline-flex;
    margin-bottom: 20px;
    color: #7C71D8;
    font-weight: 900;
    font-size: 22px;
}

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

.reviews-track {
    display: flex;
    transition: transform 0.45s ease;
}

.review-slide {
    min-width: 33.333%;
    padding: 0 10px;
}

.review-card {
    height: 100%;
    padding: 28px;
}

.review-card .stars-small {
    color: #7C71D8;
    letter-spacing: 0.06em;
    font-size: 18px;
    margin-bottom: 14px;
}

.review-card cite {
    display: block;
    margin-top: 18px;
    color: #111827;
    font-style: normal;
    font-weight: 900;
}

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

.slider-controls button {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(56, 47, 133, 0.24);
    background: #FFFFFF;
    color: #382F85;
    font-size: 24px;
    cursor: pointer;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.area-list span {
    padding: 9px 13px;
    background: #FFFFFF;
    border: 1px solid rgba(56, 47, 133, 0.16);
    color: #111827;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.faq-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item h3 {
    margin-bottom: 12px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: stretch;
}

.contact-card {
    padding: 30px;
}

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

.contact-list a,
.contact-list address {
    color: #111827;
    font-style: normal;
    font-weight: 900;
}

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

.contact-form label {
    display: grid;
    gap: 7px;
    color: #111827;
    font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid rgba(56, 47, 133, 0.24);
    background: #FFFFFF;
    color: #111827;
    font: inherit;
    border-radius: 0;
}

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

.site-footer {
    padding: 54px 0 calc(54px + env(safe-area-inset-bottom));
    background: #111022;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 34px;
}

.site-footer .logo,
.site-footer a,
.site-footer strong {
    color: #FFFFFF;
}

.site-footer p,
.site-footer address {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-style: normal;
}

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

.mobile-call {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
    padding: 10px max(14px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-right));
    background: rgba(17, 16, 34, 0.96);
}

.mobile-call a {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #382F85;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.65);
    animation: pulseGlow 2.4s infinite;
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 12px;
        min-height: 72px;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav {
        position: fixed;
        top: 72px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 20px 20px;
        background: #FFFFFF;
        border-bottom: 1px solid rgba(56, 47, 133, 0.16);
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        padding: 14px 0;
        border-bottom: 1px solid #F0EEFF;
    }

    .phone-button {
        padding: 0 14px;
    }

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

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

    .review-slide {
        min-width: 50%;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .site-header {
        position: sticky;
    }

    .header-inner {
        min-height: 86px;
        grid-template-columns: 1fr auto;
        grid-template-areas: "logo menu" "phone phone";
        padding: 8px 0;
    }

    .logo {
        grid-area: logo;
        font-size: 24px;
        min-width: 0;
    }

    .logo img {
        width: 38px;
        height: 38px;
        flex: 0 0 auto;
    }

    .menu-toggle {
        grid-area: menu;
    }

    .header-actions {
        grid-area: phone;
    }

    .header-actions .phone-button {
        width: 100%;
        min-height: 46px;
    }

    .nav {
        top: 86px;
    }

    .hero {
        min-height: calc(100vh - 86px);
        padding: 28px 0 44px;
    }

    h1 {
        font-size: clamp(31px, 9vw, 50px);
    }

    h2 {
        font-size: clamp(26px, 8vw, 38px);
    }

    .hero-lead {
        font-size: 16px;
    }

    .trust-icons img {
        width: 74px;
        height: 50px;
    }

    .section {
        padding: 66px 0;
    }

    .split,
    .split.reverse,
    .contact-grid,
    .footer-grid,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .split.reverse .split-image {
        order: 2;
    }

    .split.reverse .split-text {
        order: 1;
    }

    .split-image img,
    .feature-photo img {
        aspect-ratio: 16 / 11;
    }

    .services-grid,
    .problems-grid,
    .process-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .review-slide {
        min-width: 100%;
    }

    .mobile-call {
        display: block;
    }

    body {
        padding-bottom: 74px;
    }
}

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