:root {
    --accent: #0d6efd;
    --accent-2: #ff6b35;
    --dark: #0b1220;
    --muted: #6b7280;
    --bg: #f6f7fb;
    --card: #ffffff;
    --container: 1160px;
    --radius: 12px;
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: var(--dark);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

/* container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* header */
.site-header {
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(6px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 80px;
}

.brand {
    flex: 1
}

.brand-name {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-name img {
    display: block;
    width: auto;
    height: 64px;
    max-width: min(220px, 100%);
    object-fit: contain;
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(11, 18, 32, 0.18);
    border-radius: 8px;
    background: var(--card);
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 10px;
}

/* nav */
.primary-nav {
    display: block
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-list a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    padding: 8px;
    border-radius: 8px
}

.nav-list a:hover {
    background: rgba(13, 110, 253, 0.06)
}

/* header contact */
.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 14px
}
.header-contact .phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 34px;
    font-weight: 700;
    color: var(--accent-2);
    text-decoration: none;
}

.header-phone-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    fill: var(--accent-2);
    stroke: #000;
    stroke-linejoin: round;
    stroke-width: 1.2;
}

@media (min-width: 1001px) {
    .header-contact .phone {
        min-width: 46px;
        min-height: 46px;
    }

    .header-phone-icon {
        width: 30px;
        height: 30px;
    }
}

/* hero */
.hero {
    min-height: 500px;
    padding: 72px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)), url("img/hero01.webp");
    background-position: center center, center calc(50% + 150px);
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
}

.hero-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 56px clamp(28px, 8vw, 110px);
    background: transparent;
}

.hero-copy h1 {
    line-height: 1.04;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
}

.lead {
    color: #fff;
    margin: 0 0 20px;
    font-size: 17px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
}

.lead-line {
    display: inline;
}

.desktop-break {
    display: inline;
}

.hero-actions {
    margin: 20px 0
}

.hero-actions.is-floating {
    position: fixed;
    top: 50%;
    right: clamp(12px, 3vw, 36px);
    z-index: 70;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    transform: translateY(-50%);
}

.hero-actions.is-floating .btn {
    width: 156px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 700
}

.btn-primary {
    background: var(--accent-2);
    color: #fff;
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.08)
}

.btn-outline {
    background: transparent;
    border-color: rgba(11, 18, 32, 0.06);
    color: var(--dark)
}

.hero-actions .btn-outline {
    background: #67b7e8;
    border-color: #67b7e8;
    color: #fff;
}

/* trust list */
.trust-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted);
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2)
}

.trust-list li {
    color: #fff;
}

/* service grid */
.service-grid {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--card);
    padding: 22px;
    border-radius: 12px;
    border: 1px solid rgba(11, 18, 32, 0.04);
    box-shadow: 0 8px 24px rgba(11, 18, 32, 0.03)
}

.service-title {
    margin: 0 0 8px;
    font-size: 16px
}

.service-desc {
    color: var(--muted);
    margin: 0
}

.contact-map {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
    margin: 28px auto 0;
    border-radius: var(--radius);
}

.addr,
.tel {
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.tel {
    align-items: center;
}

.business-hours {
    margin: 20px 0;
    line-height: 1.7;
}

.hours-heading {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px;
}

.clock-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.contact-icon,
.phone-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    fill: currentColor;
}

/* testimonials */
.testimonials-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0
}

.testimonial {
    background: var(--card);
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(11, 18, 32, 0.04)
}

/* simple footer */
.site-footer {
    padding: 28px 0;
    background: transparent;
    border-top: 1px solid rgba(11, 18, 32, 0.04);
    margin-top: 36px
}

/* responsive */
@media (max-width:1000px) {
    .hero-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        text-align: left;
    }

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

    .header-contact {
        display: none
    }

    .nav-toggle {
        display: inline-block
    }

    .nav-list {
        display: none;
    }

    .primary-nav.open {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        padding: 10px 14px 14px;
        background: var(--card);
        border-bottom: 1px solid rgba(11, 18, 32, 0.08);
    }

    .primary-nav.open .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .primary-nav.open .nav-list a {
        display: block;
    }

    .brand-name {
        max-width: 180px;
    }
}

@media (max-width:480px) {
    .service-grid {
        grid-template-columns: 1fr
    }

    .hero-copy h1 {
        font-size: 28px
    }

    .lead {
        display: flex;
        flex-direction: column;
        font-size: 15px
    }

    .lead-line {
        display: block;
    }

    .lead-line-1 {
        order: 1;
    }

    .lead-line-2 {
        order: 2;
    }

    .lead-line-3 {
        order: 3;
    }

    .desktop-break {
        display: none;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

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

/* Reveal the hero content after the page loads. */
.hero-copy {
    opacity: 0;
    animation: converge-left 1.4s cubic-bezier(.2, .9, .2, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes converge-left {
    0% {
        transform: translateX(-160px) scale(1.02);
        opacity: 0;
    }

    60% {
        transform: translateX(40px) scale(1.01);
        opacity: 1;
    }

    100% {
        transform: none;
        opacity: 1;
    }
}

/* Mobile improvements: tighter margins and header adjustments */
@media (max-width: 900px) {
    .desktop-break {
        display: none;
    }

    .container {
        padding: 0 14px;
    }

    .header-inner {
        height: 64px;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
    }

    .primary-nav.open {
        top: 64px;
    }

    .brand-name {
        max-width: 180px;
    }

    .brand-name img {
        height: 52px;
    }

    .primary-nav.open {
        top: 64px;
    }

    .header-contact {
        display: flex;
        font-size: 12px;
    }

    /* gradient hero spacing */
    .hero {
        min-height: 360px;
        padding: 40px 0;
        background-position: left center, left center;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }

    .hero-copy {
        width: 100%;
        padding: 32px 24px;
        margin: 0 auto;
        background: transparent;
    }

    .hero-actions.is-floating {
        right: 12px;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .brand-name {
        max-width: 145px;
    }

    .hero {
        padding: 28px 0;
    }

    .hero-copy h1 {
        font-size: 26px;
    }

    .lead {
        font-size: 14px;
    }

    .service-grid {
        gap: 14px;
    }

    .trust-list {
        display: block;
        font-size: 12px;
    }

    .trust-list li {
        margin-top: 6px;
    }
}

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