* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #374151;
    background: #ffffff;
    line-height: 1.65;
    font-size: 16px;
}

body.mobile-call-visible {
    padding-bottom: 88px;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 18px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111827;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(39px, 8vw, 72px);
    max-width: 940px;
}

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

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

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

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

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

ul,
ol {
    margin: 0;
    padding-left: 20px;
}

li {
    margin: 8px 0;
}

.container {
    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.92);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, #ed6f78, #5cc5ba);
    color: #ffffff;
    flex: 0 0 auto;
}

.brand-mark svg,
.icon svg {
    width: 22px;
    height: 22px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 16px;
    font-weight: 750;
    color: #374151;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
    color: #c84e58;
}

.phone-button,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border: 0;
    background: #ed6f78;
    color: #ffffff;
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.54), 0 18px 40px rgba(237, 111, 120, 0.34);
    animation: pulseGlow 2.4s ease-in-out infinite;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.phone-dark {
    color: #111827;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.13);
}

.hamburger {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(17, 24, 39, 0.16);
    background: #ffffff;
    color: #111827;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #111827;
}

.mobile-menu {
    display: none;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
    padding: 14px 0 18px;
}

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

.mobile-menu a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 800;
    color: #111827;
}

.mobile-header-phone {
    display: none;
    padding-bottom: 14px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    display: grid;
    align-items: center;
    color: #ffffff;
    background-image: linear-gradient(90deg, rgba(8, 13, 25, 0.94) 0%, rgba(8, 13, 25, 0.74) 48%, rgba(8, 13, 25, 0.28) 100%), url('../images/hero-technician.jpg');
    background-size: cover;
    background-position: center;
}

.hero::before,
.section-wave::before {
    content: "";
    position: absolute;
    inset: auto -10% -22% auto;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(92, 197, 186, 0.3);
    background: radial-gradient(circle, rgba(92, 197, 186, 0.18), transparent 64%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 46px;
    align-items: center;
    padding: 112px 0 88px;
}

.hero h1,
.hero h2,
.hero h3,
.section-dark h2,
.section-dark h3,
.cta-section h2 {
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

.eyebrow::before,
.section-heading::after {
    content: "";
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, #ed6f78, #5cc5ba);
}

.hero-copy {
    max-width: 860px;
}

.hero-copy p {
    max-width: 720px;
    color: #eef2f7;
    font-size: 19px;
}

.stars {
    margin: 14px 0 14px;
    color: #ed6f78;
    font-size: 25px;
    letter-spacing: 4px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 14px 0 28px;
}

.hero-badges img {
    width: auto;
    height: 48px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 6px 10px;
}

.hero-actions {
    display: grid;
    gap: 16px;
    justify-items: start;
    margin-top: 26px;
}

.hero-actions strong {
    color: #ffffff;
    font-size: 18px;
}

.benefit-panel {
    position: relative;
    padding: 28px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(22px);
    color: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.benefit-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-item:last-child {
    border-bottom: 0;
}

.icon {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    background: rgba(92, 197, 186, 0.2);
    color: #ffffff;
    border: 1px solid rgba(92, 197, 186, 0.52);
}

.benefit-item strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.25;
}

.benefit-item span {
    color: #f8fafc;
    font-size: 14px;
}

section {
    padding: 86px 0;
}

.intro-text {
    padding: 56px 0 82px;
}

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

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

.section-kicker {
    color: #c84e58;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 900;
}

.two-column {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 34px;
    align-items: stretch;
}

.two-column.reverse {
    grid-template-columns: 35% 65%;
}

.image-panel {
    min-height: 320px;
    overflow: hidden;
    background: #edf7f8;
}

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

.content-panel {
    padding: 36px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

.soft-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

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

.trust-card,
.service-card,
.issue-card,
.payment-card,
.faq-card,
.review-card {
    background: #ffffff;
    color: #374151;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.trust-card {
    padding: 24px;
}

.trust-card .icon,
.service-card .icon,
.issue-card .icon {
    color: #111827;
    background: linear-gradient(135deg, rgba(237, 111, 120, 0.14), rgba(92, 197, 186, 0.16));
    border-color: rgba(17, 24, 39, 0.08);
    margin-bottom: 16px;
}

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

.service-card {
    padding: 26px;
}

.service-card p,
.trust-card p,
.issue-card p,
.faq-card p,
.review-card p {
    color: #4b5563;
}

.service-card ul,
.issue-card ul {
    padding-left: 18px;
}

.section-dark {
    background: #111827;
    color: #f9fafb;
}

.section-dark p,
.section-dark li {
    color: #000000;
}

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

.issue-card {
    padding: 26px;
}

.section-dark .issue-card h3 {
    color: #111827 !important;
}

.process-list {
    counter-reset: step;
    display: grid;
    gap: 16px;
}

.process-step {
    position: relative;
    padding: 26px 26px 26px 82px;
    background: #ffffff;
    color: #374151;
    border: 1px solid rgba(17, 24, 39, 0.08);
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 24px;
    top: 24px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: #5cc5ba;
    color: #111827;
    font-weight: 900;
}

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    color: #ffffff;
    background: linear-gradient(135deg, #101827 0%, #263245 52%, #1b5c5a 100%);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.cta-section p {
    color: #eef2f7;
    max-width: 720px;
    margin-bottom: 0;
}

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

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

.review-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.review-card {
    padding: 26px;
    min-height: 250px;
}

.review-card strong {
    display: block;
    margin-bottom: 10px;
    color: #111827;
    font-size: 18px;
}

.review-stars {
    color: #ed6f78;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

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

.carousel-controls button {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(17, 24, 39, 0.14);
    background: #ffffff;
    color: #111827;
    cursor: pointer;
    font-size: 22px;
}

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

.area-list,
.payment-card,
.faq-card {
    padding: 26px;
    background: #ffffff;
    color: #374151;
    border: 1px solid rgba(17, 24, 39, 0.08);
}

.area-list ul {
    columns: 2;
}

.site-footer {
    background: #0b1220;
    color: #d1d5db;
    padding: 56px 0 28px;
    font-size: 14px;
}

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

.site-footer .brand,
.site-footer h3,
.site-footer a strong {
    color: #ffffff;
}

.site-footer a {
    color: #ffffff;
}

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

.disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 22px;
    color: #cbd5e1;
    font-size: 14px;
}

.mobile-sticky-call {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: none;
    width: 100%;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: rgba(11, 18, 32, 0.92);
    transform: translateY(110%);
    opacity: 0;
    transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-sticky-call a {
    width: 100%;
    min-height: 54px;
    color: #ffffff;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.42), 0 18px 40px rgba(237, 111, 120, 0.34);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0), 0 22px 48px rgba(237, 111, 120, 0.44);
    }
}

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 12px;
        font-size: 15px;
    }

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

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

@media (max-width: 767px) {
    h1 {
        font-size: clamp(39px, 11vw, 50px);
    }

    h2 {
        font-size: clamp(31px, 9vw, 38px);
    }

    .header-inner {
        min-height: 68px;
    }

    .brand {
        font-size: 24px;
    }

    .desktop-nav,
    .desktop-phone {
        display: none;
    }

    .hamburger {
        display: block;
        flex: 0 0 auto;
    }

    .mobile-header-phone {
        display: block;
    }

    .mobile-header-phone .phone-button {
        width: 100%;
        font-size: 15px;
    }

    .hero {
        min-height: 780px;
        background-position: 58% center;
    }

    .hero-grid,
    .two-column,
    .two-column.reverse,
    .cta-card,
    .footer-grid,
    .areas-grid,
    .payment-grid,
    .faq-grid,
    .issue-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 28px;
        padding: 82px 0 70px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .hero-badges img {
        height: 48px;
        max-width: calc(33.333% - 8px);
    }

    .benefit-panel,
    .content-panel,
    .trust-card,
    .service-card,
    .issue-card,
    .area-list,
    .payment-card,
    .faq-card,
    .review-card {
        padding: 22px;
    }

    section {
        padding: 66px 0;
    }

    .intro-text {
        padding: 46px 0 62px;
    }

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

    .review-slide {
        grid-template-columns: 1fr;
    }

    .area-list ul {
        columns: 1;
    }

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

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

@media (min-width: 768px) {
    .mobile-menu,
    .mobile-header-phone,
    .mobile-sticky-call {
        display: none !important;
    }
}

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