/* responsive stylesheet */
:root {
    --navy: #08233f;
    --blue: #1475c9;
    --orange: #ff7417;
    --text: #152334;
    --muted: #667386;
    --line: #e6ebf1;
    --soft: #f5f8fb
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    line-height: 1.6
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8, 35, 63, .97);
    color: #fff
}

.nav-wrap {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

/* .nav-wrap-footer{
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between
} */

.brand {
    /* display: inline-flex;
    align-items: center; */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: #fff;
    /* background-color: #1475c9; */
}

#brand-footer{
    display: flex;
    flex-wrap: nowrap;

}
.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--orange), #ffb044);
    font-size: 22px
}

#brand-footer .brand-mark{
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 22px;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.05
}

.brand strong {
    font-size: 13px
}

.brand small {
    font-size: 9px;
    letter-spacing: .8px
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 13px;
    font-weight: 600
}

.nav-cta {
    background: var(--orange);
    padding: 11px 16px;
    border-radius: 10px;
    color: #fff !important
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px
}

.hero {
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
    color: #fff
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(5, 26, 47, .98), rgba(5, 26, 47, .82) 40%, rgba(5, 26, 47, .25) 75%), url("assets/showroom.jpg");
    background-size: cover;
    background-position: center
}

.hero-content {
    position: relative
}

.hero-copy {
    width: min(640px, 100%);
    padding: 85px 0
}

.eyebrow {
    display: inline-block;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    margin-bottom: 10px
}

.light {
    color: #ff9a4b
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -2.8px;
    margin: 8px 0 22px
}

.hero h1 em,
.cta-section h2 em {
    font-style: normal;
    color: var(--orange)
}

.hero p {
    font-size: 17px;
    color: #d8e3ee
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 13px;
    border: 1px solid transparent
}

.btn-primary {
    background: var(--orange);
    color: #fff
}

.btn-ghost {
    border-color: #fff;
    color: #fff
}

.hero-note {
    font-size: 12px
}

.trust-strip {
    box-shadow: 0 5px 22px rgba(0, 0, 0, .05)
}

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

.trust-grid>div {
    padding: 0 22px;
    border-right: 1px solid var(--line)
}

.trust-grid>div:last-child {
    border: 0
}

.trust-grid strong,
.trust-grid small {
    display: block
}

.trust-grid strong {
    font-size: 13px
}

.trust-grid small {
    font-size: 11px;
    color: var(--muted)
}

.section {
    padding: 86px 0
}

.soft {
    background: var(--soft)
}

.dark {
    background: var(--navy);
    color: #fff
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px
}

.section-head h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    margin: 4px 0 12px
}

.section-head p {
    color: var(--muted)
}

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

.card,
.service-card,
.type-card {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(11, 38, 65, .07)
}

.card,
.service-card {
    padding: 24px
}

.card h3,
.service-card h3 {
    margin: 8px 0 4px;
    font-size: 16px
}

.card p,
.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px
}

.center {
    text-align: center;
    margin-top: 28px
}

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

.type-card {
    overflow: hidden
}

.type-card img {
    width: 100%;
    height: 210px;
    object-fit: cover
}

.type-card div {
    padding: 17px
}

.type-card h3 {
    font-size: 15px;
    margin: 0;
    color: var(--blue)
}

.type-card p {
    font-size: 12px;
    color: var(--muted);
    margin: 0
}

.mini-cta {
    text-align: center;
    margin-top: 20px;
    font-size: 13px
}

.mini-cta a {
    color: #159447;
    font-weight: 800
}

.about-grid,
.coverage {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center
}

.about-grid h2,
.coverage h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    margin: 0 0 15px
}

.about-grid p {
    color: #cbd8e5
}

.steps {
    display: grid;
    gap: 14px
}

.steps>div {
    display: flex;
    gap: 16px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px
}

.steps b {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: var(--navy)
}

.steps strong,
.steps small {
    display: block
}

.steps small {
    color: #b9c9d9;
    font-size: 12px
}

.gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 190px;
    gap: 14px
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px
}

.gallery img:first-child {
    grid-row: span 2
}

.coverage {
    grid-template-columns: .9fr 1.1fr
}

.coverage h2 span {
    color: var(--blue)
}

.coverage p {
    color: var(--muted)
}

.area-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none
}

.area-list li {
    background: #fff;
    border: 1px solid var(--line);
    padding: 13px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 18px
}

.faq-list summary {
    cursor: pointer;
    padding: 17px 0;
    font-weight: 700;
    font-size: 13px;
    list-style: none
}

.faq-list summary::-webkit-details-marker {
    display: none
}

.faq-list p {
    font-size: 12px;
    color: var(--muted);
    padding: 0 0 17px;
    margin: 0
}

.cta-section {
    background: linear-gradient(90deg, rgba(7, 30, 52, .98), rgba(9, 44, 76, .94)), url("assets/showroom.jpg") center/cover;
    color: #fff;
    padding: 65px 0
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.cta-section h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    margin: 0 0 10px
}

.cta-section p {
    color: #cbd8e5
}

.footer {
    background: #061c32;
    color: #c9d6e3;
    padding: 55px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 35px
}

.footer h4 {
    color: #fff;
    margin: 0 0 14px
}

.footer-grid a,
.footer-grid span {
    display: block;
    font-size: 12px;
    margin: 7px 0
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 35px;
    padding: 18px 0;
    font-size: 11px
}

.floating-wa {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #18a558;
    color: #fff;
    font-weight: 900;
    z-index: 40
}

@media(max-width:900px) {
    .type-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-grid,
    .coverage {
        grid-template-columns: 1fr
    }
}

@media(max-width:720px) {
    .container {
        width: calc(100% - 28px)
    }

    .menu-toggle {
        display: block
    }

    .main-nav {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: var(--navy);
        display: none;
        flex-direction: column;
        padding: 12px 14px 18px
    }

    .main-nav.open {
        display: flex
    }

    .nav-cta {
        text-align: center
    }

    .hero {
        min-height: 570px
    }

    .hero-copy {
        padding: 70px 0
    }

    .hero h1 {
        font-size: 43px
    }

    .trust-grid,
    .problem-grid,
    .service-grid,
    .faq-list {
        grid-template-columns: 1fr 1fr
    }

    .trust-grid>div {
        border: 0;
        padding: 8px
    }

    .type-grid {
        grid-template-columns: 1fr 1fr
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:430px) {
    .hero h1 {
        font-size: 38px
    }

    .hero-actions .btn {
        width: 100%
    }

    .trust-grid,
    .problem-grid,
    .service-grid,
    .type-grid,
    .faq-list,
    .area-list,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 210px
    }

    .gallery img:first-child {
        grid-row: auto
    }
}