@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Noto+Sans+KR:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #0b2545;
    --navy-2: #123b65;
    --blue: #1677b8;
    --sky: #eaf5fb;
    --red: #e83338;
    --ink: #102033;
    --muted: #5e6c7b;
    --line: #dbe3ea;
    --paper: #f7f9fb;
    --white: #fff;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(11,37,69,.12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Noto Sans KR",sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased
}

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

button {
    font: inherit
}

.container {
    width: min(1180px,calc(100% - 48px));
    margin-inline: auto
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -60px;
    background: #fff;
    padding: 12px 18px;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: var(--shadow)
}

    .skip-link:focus {
        top: 16px
    }

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(219,227,234,.75);
    backdrop-filter: blur(18px);
    transition: .3s
}

    .site-header.is-scrolled {
        box-shadow: 0 10px 30px rgba(11,37,69,.08)
    }

.header-inner {
    width: min(1180px,calc(100% - 48px));
    height: 82px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px
}

.brand-mark {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: flex-end;
    gap: 3px
}

    .brand-mark i {
        display: block;
        width: 17px;
        height: 34px;
        border: 6px solid var(--red);
        border-top: 0;
        border-radius: 0 0 11px 11px;
        transform: skewY(-9deg)
    }

        .brand-mark i + i {
            height: 25px;
            border-color: var(--navy);
            transform: skewY(9deg)
        }

.brand-copy {
    display: grid;
    line-height: 1
}

    .brand-copy strong {
        font-size: 25px;
        letter-spacing: -1.7px
    }

    .brand-copy small {
        font: 700 8px/1.4 Manrope,sans-serif;
        letter-spacing: 2px;
        color: #86909a;
        margin-top: 5px
    }

.primary-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    font-size: 15px;
    font-weight: 600
}

    .primary-nav a {
        position: relative;
        padding: 29px 0;
        color: #34475b
    }

        .primary-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 100%;
            bottom: 20px;
            height: 2px;
            background: var(--blue);
            transition: .25s
        }

        .primary-nav a:hover::after, .primary-nav a.is-active::after {
            right: 0
        }

    .primary-nav .nav-login {
        padding: 10px 18px;
        border: 1px solid var(--line);
        border-radius: 999px
    }

        .primary-nav .nav-login::after {
            display: none
        }

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    cursor: pointer
}

    .menu-toggle i {
        display: block;
        height: 2px;
        background: var(--navy);
        margin: 6px 0;
        transition: .25s
    }

.hero {
    position: relative;
    overflow: hidden;
    padding: 178px 0 96px;
    background: linear-gradient(135deg,#f8fbfd 0%,#edf7fb 52%,#fff 100%)
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 82px 0 0;
        background-image: linear-gradient(rgba(22,119,184,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(22,119,184,.04) 1px,transparent 1px);
        background-size: 54px 54px;
        mask-image: linear-gradient(to right,#000,transparent 75%)
    }

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px)
}

.hero-glow-one {
    width: 460px;
    height: 460px;
    background: rgba(53,169,222,.11);
    right: -100px;
    top: 80px
}

.hero-glow-two {
    width: 260px;
    height: 260px;
    background: rgba(232,51,56,.06);
    right: 300px;
    bottom: -120px
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1.45fr) minmax(310px,.55fr);
    gap: 80px;
    align-items: center
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--blue);
    font: 800 12px/1.4 Manrope,sans-serif;
    letter-spacing: 2.3px
}

.hero h1 {
    margin: 0;
    font-size: clamp(44px,5.2vw,72px);
    line-height: 1.16;
    letter-spacing: -4px
}

    .hero h1 span {
        color: var(--blue)
    }

.hero-description {
    max-width: 680px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.85;
    word-break: keep-all
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 36px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 56px;
    padding: 0 25px;
    border-radius: 12px;
    font-weight: 700;
    transition: .25s
}

    .button:hover {
        transform: translateY(-2px)
    }

.button-primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 12px 28px rgba(11,37,69,.18)
}

.button-ghost {
    border: 1px solid #cbd8e3;
    background: rgba(255,255,255,.7)
}

.hero-facts {
    display: flex;
    margin: 42px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--line)
}

    .hero-facts div {
        padding-right: 30px;
        margin-right: 30px;
        border-right: 1px solid var(--line)
    }

        .hero-facts div:last-child {
            border: 0
        }

    .hero-facts dt {
        font-size: 13px;
        color: var(--blue);
        font-weight: 700
    }

    .hero-facts dd {
        margin: 2px 0 0;
        font-size: 14px;
        font-weight: 600
    }

.hero-panel {
    position: relative;
    padding: 38px;
    border-radius: 28px;
    background: linear-gradient(160deg,var(--navy),#164c76);
    color: #fff;
    box-shadow: 0 32px 80px rgba(11,37,69,.22)
}

    .hero-panel::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        right: -70px;
        bottom: -80px;
        border: 34px solid rgba(255,255,255,.05);
        border-radius: 50%
    }

.hero-panel-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 35px;
    font-size: 13px;
    color: #cfeaf8
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7de3ae;
    box-shadow: 0 0 0 5px rgba(125,227,174,.12)
}

.hero-panel > p {
    margin: 0;
    font-size: 14px;
    color: #bcd5e5
}

.phone {
    display: block;
    margin: 6px 0 16px;
    font: 800 39px/1.2 Manrope,sans-serif;
    letter-spacing: -1.5px
}

.hero-panel .panel-note {
    font-size: 14px;
    line-height: 1.8
}

.panel-link {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.18);
    font-weight: 700
}

.trust-bar {
    background: var(--navy);
    color: #d9ebf5
}

.trust-list {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px
}

    .trust-list i {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #499dcb
    }

.section {
    padding: 120px 0
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 54px
}

.section h2 {
    margin: 0;
    font-size: clamp(36px,4vw,54px);
    line-height: 1.25;
    letter-spacing: -3px
}

.section-heading > p {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 16px;
    word-break: keep-all
}

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

.service-card {
    position: relative;
    min-height: 350px;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    transition: .3s
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
        border-color: transparent
    }

.service-card-featured {
    grid-row: span 2;
    min-height: 718px;
    background: linear-gradient(155deg,#102f51,#0b2545);
    color: #fff;
    border: 0;
    padding: 46px
}

.card-number {
    position: absolute;
    right: 30px;
    top: 24px;
    color: #bdc9d3;
    font: 700 54px/1 Manrope,sans-serif;
    opacity: .4
}

.service-card-featured .card-number {
    color: #fff;
    opacity: .12
}

.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--sky);
    color: var(--blue);
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 60px
}

.service-card-featured .service-icon {
    background: rgba(255,255,255,.1);
    color: #86d3f7;
    margin-bottom: 190px
}

.card-kicker {
    margin: 0 0 9px;
    color: var(--blue);
    font: 800 10px/1.4 Manrope,sans-serif;
    letter-spacing: 1.8px
}

.service-card-featured .card-kicker {
    color: #82d2f6
}

.service-card h3 {
    margin: 0 0 14px;
    font-size: 28px;
    letter-spacing: -1.5px
}

.service-card > p:not(.card-kicker) {
    margin: 0;
    color: var(--muted);
    word-break: keep-all
}

.service-card-featured > p:not(.card-kicker) {
    color: #c9d8e5;
    font-size: 16px
}

.service-card ul {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    color: #dce8f0
}

.service-card li::before {
    content: "✓";
    color: #79d0f4;
    margin-right: 10px
}

.service-card > a {
    position: absolute;
    left: 38px;
    right: 38px;
    bottom: 32px;
    display: flex;
    justify-content: space-between;
    padding-top: 17px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700
}

.service-card-featured > a {
    left: 46px;
    right: 46px;
    bottom: 42px;
    border-color: rgba(255,255,255,.18)
}

.process {
    background: var(--paper)
}

.process-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 110px;
    align-items: start
}

.process-copy {
    position: sticky;
    top: 130px
}

    .process-copy > p:not(.eyebrow) {
        color: var(--muted);
        margin: 28px 0
    }

.text-link {
    display: inline-flex;
    gap: 30px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--navy);
    font-weight: 700
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none
}

    .process-list li {
        display: grid;
        grid-template-columns: 74px 1fr;
        gap: 24px;
        padding: 36px 0;
        border-top: 1px solid #d5dde4
    }

        .process-list li:last-child {
            border-bottom: 1px solid #d5dde4
        }

    .process-list > li > span {
        font: 800 15px/1.5 Manrope,sans-serif;
        color: var(--blue)
    }

    .process-list strong {
        font-size: 24px;
        letter-spacing: -1px
    }

    .process-list p {
        margin: 7px 0 0;
        color: var(--muted)
    }

.news {
    padding-bottom: 140px
}

.section-title-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 38px
}

    .section-title-row > a {
        font-size: 14px;
        font-weight: 700
    }

.notice-card {
    min-height: 210px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(135deg,#fff,#f8fbfd)
}

.notice-empty span {
    display: block;
    color: var(--blue);
    font: 800 10px/1.4 Manrope,sans-serif;
    letter-spacing: 2px;
    margin-bottom: 10px
}

.notice-empty strong {
    display: block;
    font-size: 21px
}

.notice-empty p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 14px
}

.contact-cta {
    padding: 90px 0;
    background: linear-gradient(120deg,#0b2545,#11537d);
    color: #fff;
    overflow: hidden
}

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

.contact-cta h2 {
    font-size: clamp(34px,4vw,52px);
    line-height: 1.25;
    letter-spacing: -2.5px;
    margin: 0
}

.contact-cta .eyebrow {
    color: #88d7f8
}

.cta-actions {
    display: flex;
    gap: 12px
}

.button-light {
    background: #fff;
    color: var(--navy);
    font: 800 20px Manrope,sans-serif
}

.button-outline-light {
    border: 1px solid rgba(255,255,255,.35);
    color: #fff
}

.site-footer {
    padding: 70px 0 30px;
    background: #07192c;
    color: #9eb0c0
}

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

.brand-footer {
    color: #fff
}

    .brand-footer .brand-mark i + i {
        border-color: #fff
    }

.footer-grid > div > p {
    font-size: 13px
}

.footer-info p {
    margin: 0 0 4px
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 8px;
    font-size: 14px;
    color: #d2dde5
}

.copyright {
    margin-top: 55px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    font: 600 10px Manrope,sans-serif;
    letter-spacing: 1px
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease,transform .65s ease
}

    .reveal.is-visible {
        opacity: 1;
        transform: none
    }

@media (max-width:900px) {
    .container, .header-inner {
        width: min(100% - 36px,720px)
    }

    .header-inner {
        height: 72px
    }

    .menu-toggle {
        display: block
    }

    .primary-nav {
        position: absolute;
        display: none;
        inset: 72px 0 auto;
        padding: 12px 18px 22px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 30px rgba(11,37,69,.08)
    }

        .primary-nav.is-open {
            display: grid
        }

        .primary-nav a {
            padding: 5px
        }

            .primary-nav a::after {
                display: none
            }

        .primary-nav .nav-login {
            border: 0;
            padding: 13px 5px
        }

    .menu-toggle[aria-expanded="true"] i:nth-child(1) {
        transform: translateY(8px) rotate(45deg)
    }

    .menu-toggle[aria-expanded="true"] i:nth-child(2) {
        opacity: 0
    }

    .menu-toggle[aria-expanded="true"] i:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg)
    }

    .hero {
        padding: 130px 0 72px
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 46px
    }

    .hero h1 {
        letter-spacing: -3px
    }

    .hero-panel {
        max-width: 520px
    }

    .section {
        padding: 90px 0
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .process-copy {
        position: static
    }

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

    .footer-links {
        display: none
    }
}

@media (max-width:640px) {
    .container, .header-inner {
        width: calc(100% - 32px)
    }

    .brand-copy strong {
        font-size: 22px
    }

    .hero {
        padding-top: 120px
    }

        .hero h1 {
            font-size: 39px;
            letter-spacing: -2.5px
        }

    .hero-description {
        font-size: 16px
    }

    .hero-actions {
        display: grid
    }

    .button {
        width: 100%
    }

    .hero-facts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

        .hero-facts div {
            padding: 0;
            margin: 0;
            border: 0
        }

            .hero-facts div:last-child {
                grid-column: 1/-1
            }

    .hero-panel {
        padding: 30px
    }

    .phone {
        font-size: 34px
    }

    .trust-list {
        padding: 20px 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px 18px
    }

        .trust-list i {
            display: none
        }

    .section {
        padding: 72px 0
    }

        .section h2 {
            font-size: 36px;
            letter-spacing: -2px
        }

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

    .service-card, .service-card-featured {
        grid-row: auto;
        min-height: 390px;
        padding: 30px
    }

    .service-card-featured {
        min-height: 580px
    }

        .service-card-featured .service-icon {
            margin-bottom: 120px
        }

        .service-card > a, .service-card-featured > a {
            left: 30px;
            right: 30px
        }

    .process-list li {
        grid-template-columns: 50px 1fr
    }

    .section-title-row {
        align-items: start
    }

    .notice-card {
        padding: 30px 20px
    }

    .cta-inner {
        display: grid;
        gap: 35px
    }

    .cta-actions {
        display: grid
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .site-footer {
        padding-top: 55px
    }

    .copyright {
        margin-top: 35px
    }
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .button, .service-card {
        transition: none
    }
}

/* Sub pages */
.sub-hero {
    padding: 178px 0 100px;
    background: linear-gradient(135deg,#f5f9fc,#e9f4fa);
    position: relative;
    overflow: hidden
}

    .sub-hero::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        right: -150px;
        bottom: -280px;
        border: 80px solid rgba(22,119,184,.06);
        border-radius: 50%
    }

.sub-hero-inner {
    position: relative;
    z-index: 1
}

.sub-hero h1 {
    font-size: clamp(48px,6vw,76px);
    line-height: 1.16;
    letter-spacing: -4px;
    margin: 0
}

.sub-hero-inner > p:last-child {
    max-width: 650px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 18px
}

.sub-hero-compact {
    padding-bottom: 85px
}

.product-tabs {
    position: sticky;
    top: 82px;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px)
}

    .product-tabs .container {
        display: flex;
        justify-content: center;
        gap: 60px
    }

    .product-tabs a {
        padding: 20px 0;
        font-size: 14px;
        font-weight: 700;
        color: #536474
    }

        .product-tabs a:hover {
            color: var(--blue)
        }

.product-summary-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px
}

.product-summary {
    min-height: 220px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 18px;
    transition: .25s
}

    .product-summary:hover {
        transform: translateY(-4px);
        border-color: transparent;
        box-shadow: var(--shadow)
    }

    .product-summary > span {
        display: block;
        color: var(--blue);
        font: 800 12px Manrope,sans-serif
    }

    .product-summary strong {
        display: block;
        margin-top: 45px;
        font-size: 20px;
        letter-spacing: -1px
    }

    .product-summary p {
        margin: 8px 0 0;
        color: var(--muted);
        font-size: 14px
    }

.product-detail {
    padding: 130px 0
}

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

.product-detail-soft {
    background: var(--paper)
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 100px;
    align-items: center
}

.product-detail-reverse .product-visual {
    order: 2
}

.product-visual {
    height: 520px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center
}

.visual-label {
    position: absolute;
    left: 34px;
    top: 30px;
    font: 800 64px/1 Manrope,sans-serif;
    color: rgba(255,255,255,.2)
}

.visual-inspection {
    background: linear-gradient(145deg,#176c9d,#0d3658)
}

.gauge {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 35px solid rgba(255,255,255,.12);
    border-top-color: #80d8f8;
    border-right-color: #80d8f8;
    display: grid;
    place-items: center;
    transform: rotate(25deg)
}

    .gauge i {
        position: absolute;
        width: 80px;
        height: 5px;
        background: #fff;
        transform: rotate(-55deg) translateX(28px);
        transform-origin: left
    }

    .gauge b {
        color: #fff;
        font: 800 20px Manrope,sans-serif;
        transform: rotate(-25deg)
    }

.visual-locker {
    background: linear-gradient(145deg,#eaf4f8,#d6e8ef)
}

    .visual-locker .visual-label, .visual-bid .visual-label, .visual-fms .visual-label {
        color: rgba(11,37,69,.13)
    }

.locker-grid {
    width: 68%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px
}

    .locker-grid i {
        aspect-ratio: 1.15;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 12px 24px rgba(11,37,69,.1);
        border-left: 5px solid #1e8cc3
    }

.visual-bid {
    background: linear-gradient(145deg,#fff,#e3edf5)
}

.chart {
    height: 55%;
    width: 70%;
    display: flex;
    align-items: end;
    gap: 18px;
    border-left: 2px solid #c5d2dc;
    border-bottom: 2px solid #c5d2dc;
    padding: 0 18px
}

    .chart i {
        flex: 1;
        background: linear-gradient(#3ca8d7,#176d9e);
        border-radius: 8px 8px 0 0
    }

.visual-fms {
    background: linear-gradient(145deg,#0f3455,#176d9e)
}

.fms-ui {
    width: 74%;
    height: 58%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 12px;
    padding: 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.2)
}

    .fms-ui b {
        grid-column: 1/-1;
        height: 18px;
        background: #dceaf2;
        border-radius: 4px
    }

    .fms-ui i {
        background: #eaf2f6;
        border-radius: 8px
    }

    .fms-ui em {
        height: 55px;
        background: #80cbe8;
        border-radius: 8px
    }

.product-detail-copy h2 {
    font-size: clamp(38px,4.5vw,60px);
    line-height: 1.18;
    letter-spacing: -3px;
    margin: 0 0 28px
}

.product-detail-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 17px;
    word-break: keep-all
}

.product-detail-dark .product-detail-copy > p:not(.eyebrow) {
    color: #c8d7e3
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 38px;
    display: grid;
    gap: 12px
}

    .check-list li {
        font-weight: 600
    }

        .check-list li::before {
            content: "✓";
            display: inline-grid;
            place-items: center;
            width: 24px;
            height: 24px;
            margin-right: 12px;
            border-radius: 50%;
            background: var(--sky);
            color: var(--blue);
            font-size: 12px
        }

.product-detail-dark .check-list li::before {
    background: rgba(255,255,255,.12);
    color: #82d5f8
}

.product-button {
    width: max-content
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: center
}

.location-map {
    height: 560px;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #e8eff1
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(73,113,128,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(73,113,128,.09) 1px,transparent 1px);
    background-size: 45px 45px;
    transform: rotate(-8deg) scale(1.2)
}

.map-road {
    position: absolute;
    background: #fff;
    box-shadow: 0 0 0 2px #d8e1e4
}

.road-one {
    width: 130%;
    height: 48px;
    left: -15%;
    top: 45%;
    transform: rotate(-18deg)
}

.road-two {
    height: 130%;
    width: 38px;
    left: 37%;
    top: -15%;
    transform: rotate(12deg)
}

.map-pin {
    position: absolute;
    left: 55%;
    top: 45%;
    display: grid;
    justify-items: center;
    transform: translate(-50%,-50%)
}

    .map-pin i {
        width: 42px;
        height: 42px;
        border: 12px solid var(--red);
        border-radius: 50% 50% 50% 0;
        transform: rotate(-45deg);
        background: #fff;
        box-shadow: 0 10px 25px rgba(11,37,69,.18)
    }

    .map-pin span {
        margin-top: 12px;
        padding: 6px 10px;
        border-radius: 6px;
        background: var(--navy);
        color: #fff;
        font: 800 10px Manrope,sans-serif;
        letter-spacing: 1px
    }

.map-label {
    position: absolute;
    padding: 4px 8px;
    border-radius: 5px;
    background: rgba(255,255,255,.8);
    font-size: 11px;
    color: #71808c
}

.label-one {
    left: 16%;
    top: 28%
}

.label-two {
    right: 13%;
    bottom: 20%
}

.location-info h2 {
    font-size: 44px;
    letter-spacing: -2px;
    margin: 0
}

.address {
    margin: 18px 0 34px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6
}

.location-info dl {
    margin: 0;
    border-top: 1px solid var(--line)
}

    .location-info dl div {
        display: grid;
        grid-template-columns: 100px 1fr;
        padding: 15px 0;
        border-bottom: 1px solid var(--line)
    }

.location-info dt {
    color: var(--muted);
    font-size: 14px
}

.location-info dd {
    margin: 0;
    font-weight: 700
}

.location-actions {
    display: flex;
    gap: 10px;
    margin-top: 34px
}

.visit-guide {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-top: 65px
}

.visit-card {
    padding: 30px;
    border-radius: 18px;
    background: var(--paper)
}

    .visit-card > span {
        color: var(--blue);
        font: 800 12px Manrope,sans-serif
    }

    .visit-card h3 {
        margin: 25px 0 9px;
        font-size: 19px
    }

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

.login-main {
    min-height: calc(100vh - 85px);
    padding: 150px 24px 70px;
    background: linear-gradient(135deg,#f4f9fc,#e8f3f8);
    display: grid;
    place-items: center
}

.login-shell {
    width: min(1050px,100%);
    display: grid;
    grid-template-columns: 1fr 440px;
    align-items: center;
    gap: 90px
}

.login-message h1 {
    font-size: clamp(42px,5vw,66px);
    line-height: 1.18;
    letter-spacing: -3.5px;
    margin: 0
}

    .login-message h1 span {
        color: var(--blue)
    }

.login-message > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 17px
}

.login-message ul {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
    font-weight: 600
}

.login-message li::before {
    content: "✓";
    color: var(--blue);
    margin-right: 12px
}

.login-card {
    padding: 42px;
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow)
}

.login-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px
}

.login-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff;
    border-radius: 14px;
    font-weight: 800
}

.login-card-head p {
    margin: 0;
    color: var(--blue);
    font: 800 9px Manrope,sans-serif;
    letter-spacing: 1.8px
}

.login-card-head h2 {
    margin: 2px 0 0;
    font-size: 28px
}

.login-card form {
    display: grid
}

.login-card label {
    font-size: 13px;
    font-weight: 700;
    margin: 14px 0 7px
}

.login-card input {
    width: 100%;
    height: 54px;
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 0 16px;
    font: inherit;
    outline: none
}

    .login-card input:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(22,119,184,.1)
    }

.login-submit {
    width: 100%;
    border: 0;
    margin-top: 22px;
    cursor: pointer
}

.login-feedback {
    min-height: 24px;
    margin: 10px 0 0;
    color: var(--blue);
    font-size: 13px;
    text-align: center
}

.login-help {
    padding-top: 22px;
    margin-top: 10px;
    border-top: 1px solid var(--line)
}

    .login-help strong {
        font-size: 14px
    }

    .login-help p {
        margin: 5px 0;
        color: var(--muted);
        font-size: 12px
    }

    .login-help a {
        font-size: 12px;
        color: var(--blue);
        font-weight: 700
    }

.login-footer {
    min-height: 85px;
    padding: 20px 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #07192c;
    color: #8fa4b5;
    font: 600 10px Manrope,sans-serif;
    letter-spacing: .5px
}

    .login-footer a {
        color: #d8e2e9
    }

@media(max-width:900px) {
    .sub-hero {
        padding: 145px 0 80px
    }

    .product-tabs {
        top: 72px
    }

        .product-tabs .container {
            gap: 30px;
            justify-content: flex-start;
            overflow-x: auto
        }

        .product-tabs a {
            white-space: nowrap
        }

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

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .product-detail-reverse .product-visual {
        order: 0
    }

    .product-visual {
        height: 440px
    }

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

    .location-map {
        height: 450px
    }

    .login-shell {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .login-message {
        text-align: center
    }

        .login-message ul {
            display: none
        }

    .login-card {
        width: min(440px,100%);
        margin: auto
    }
}

@media(max-width:640px) {
    .sub-hero h1 {
        font-size: 41px;
        letter-spacing: -2.5px
    }

    .sub-hero-inner > p:last-child {
        font-size: 16px
    }

    .product-summary-grid {
        grid-template-columns: 1fr
    }

    .product-summary {
        min-height: 180px
    }

        .product-summary strong {
            margin-top: 32px
        }

    .product-detail {
        padding: 80px 0
    }

    .product-visual {
        height: 330px
    }

    .product-detail-copy h2 {
        font-size: 38px
    }

    .location-map {
        height: 360px
    }

    .address {
        font-size: 18px
    }

    .location-actions {
        display: grid
    }

    .visit-guide {
        grid-template-columns: 1fr
    }

    .login-main {
        padding: 120px 16px 50px
    }

    .login-message h1 {
        font-size: 38px
    }

    .login-card {
        padding: 28px 22px
    }

    .login-footer {
        display: grid;
        justify-content: center;
        text-align: center;
        gap: 6px
    }
}

/* Company */
.company-hero {
    padding: 175px 0 105px;
    background: linear-gradient(145deg,#f8fbfd,#e9f4f9);
    overflow: hidden
}

.company-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;
    align-items: center
}

.company-hero h1 {
    margin: 0;
    font-size: clamp(50px,6.2vw,80px);
    line-height: 1.12;
    letter-spacing: -4.5px
}

    .company-hero h1 span {
        color: var(--blue)
    }

.company-hero-copy > p:last-child {
    max-width: 630px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 18px
}

.company-symbol {
    display: grid;
    place-items: center
}

.symbol-ring {
    position: relative;
    width: 330px;
    height: 330px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(22,119,184,.2);
    border-radius: 50%;
    box-shadow: inset 0 0 0 40px rgba(255,255,255,.35),0 35px 80px rgba(11,37,69,.1)
}

    .symbol-ring::before, .symbol-ring::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(22,119,184,.13)
    }

    .symbol-ring::before {
        inset: -35px
    }

    .symbol-ring::after {
        inset: 45px
    }

    .symbol-ring span {
        font: 800 120px/1 Manrope,sans-serif;
        color: var(--navy);
        letter-spacing: -12px
    }

    .symbol-ring i {
        position: absolute;
        width: 44px;
        height: 100px;
        border: 18px solid var(--red);
        border-top: 0;
        border-radius: 0 0 28px 28px;
        transform: translateX(-34px) skewY(-10deg)
    }

    .symbol-ring b {
        position: absolute;
        bottom: 55px;
        color: var(--blue);
        font: 800 10px Manrope,sans-serif;
        letter-spacing: 3px
    }

.company-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px
}

.company-lead strong {
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: -1.3px
}

.company-lead p {
    color: var(--muted);
    margin: 22px 0 0
}

.company-values {
    padding: 110px 0;
    background: var(--navy);
    color: #fff
}

    .company-values .section-title-row {
        margin-bottom: 45px
    }

    .company-values .eyebrow {
        color: #7cd1f4
    }

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

.value-card {
    min-height: 350px;
    padding: 34px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 20px;
    background: rgba(255,255,255,.035)
}

    .value-card > span {
        font: 800 11px Manrope,sans-serif;
        color: #79d2f5
    }

.value-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 70px 0 26px;
    border-radius: 16px;
    background: rgba(255,255,255,.1);
    color: #8bd9f8;
    font-size: 25px
}

.value-card h3 {
    font-size: 24px;
    margin: 0 0 10px
}

.value-card p {
    margin: 0;
    color: #b9cad8;
    font-size: 14px
}

.business-list {
    border-top: 1px solid var(--line)
}

.business-row {
    display: grid;
    grid-template-columns: 70px 1fr 40px;
    align-items: center;
    gap: 26px;
    padding: 30px 12px;
    border-bottom: 1px solid var(--line);
    transition: .25s
}

    .business-row:hover {
        padding-left: 24px;
        background: var(--paper)
    }

    .business-row > span {
        font: 800 13px Manrope,sans-serif;
        color: var(--blue)
    }

    .business-row strong {
        font-size: 23px
    }

    .business-row p {
        margin: 4px 0 0;
        color: var(--muted);
        font-size: 14px
    }

    .business-row > i {
        font-style: normal;
        font-size: 22px
    }

.company-profile {
    background: var(--paper)
}

.profile-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 100px
}

.profile-title p:last-child {
    color: var(--muted)
}

.profile-table {
    margin: 0;
    border-top: 2px solid var(--navy)
}

    .profile-table > div {
        display: grid;
        grid-template-columns: 130px 1fr;
        padding: 20px 10px;
        border-bottom: 1px solid #d6dfe6
    }

    .profile-table dt {
        font-size: 14px;
        color: var(--muted)
    }

    .profile-table dd {
        margin: 0;
        font-weight: 600
    }

    .profile-table a {
        color: var(--blue)
    }

@media(max-width:900px) {
    .company-hero-grid {
        grid-template-columns: 1fr
    }

    .company-symbol {
        display: none
    }

    .company-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px
    }

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

    .value-card {
        min-height: 260px
    }

    .value-icon {
        margin-top: 40px
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

@media(max-width:640px) {
    .company-hero {
        padding: 140px 0 75px
    }

        .company-hero h1 {
            font-size: 43px;
            letter-spacing: -3px
        }

    .company-hero-copy > p:last-child {
        font-size: 16px
    }

    .company-lead strong {
        font-size: 22px
    }

    .company-values {
        padding: 75px 0
    }

    .business-row {
        grid-template-columns: 42px 1fr 24px;
        gap: 12px
    }

        .business-row strong {
            font-size: 18px
        }

        .business-row p {
            font-size: 12px
        }

    .profile-table > div {
        grid-template-columns: 90px 1fr;
        gap: 10px
    }
}

/* Original site imagery */
.hero {
    background-image: linear-gradient(90deg,rgba(248,251,253,.98) 0%,rgba(237,247,251,.94) 50%,rgba(255,255,255,.65) 100%),url('../../images/WebPage/image03.jpg');
    background-size: cover;
    background-position: center
}

.company-hero {
    background-image: linear-gradient(90deg,rgba(8,34,59,.96),rgba(8,34,59,.86) 55%,rgba(8,34,59,.58)),url('../../images/WebPage/image03.jpg');
    background-size: cover;
    background-position: center;
    color: #fff
}

.company-hero-copy > p:last-child {
    color: #c6d8e5
}

.company-image-band {
    padding: 0 0 120px
}

.company-image-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: repeat(2,240px);
    gap: 16px
}

.company-image {
    position: relative;
    margin: 0;
    border-radius: 22px;
    overflow: hidden
}

.company-image-wide {
    grid-row: 1/3
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.company-image:hover img {
    transform: scale(1.025)
}

.company-image::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent,rgba(5,24,41,.8))
}

.company-image figcaption {
    position: absolute;
    z-index: 1;
    left: 26px;
    bottom: 22px;
    color: #fff;
    font-weight: 700
}

.original-product-gallery {
    padding: 120px 0;
    background: #eef4f7
}

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

.product-image-card {
    margin: 0;
    padding: 10px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(11,37,69,.08);
    overflow: hidden
}

    .product-image-card img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 10px
    }

@media(max-width:900px) {
    .company-image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 420px 230px 230px
    }

    .company-image-wide {
        grid-row: auto
    }

    .product-image-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:640px) {
    .company-image-band {
        padding-bottom: 75px
    }

    .company-image-grid {
        grid-template-rows: 300px 190px 190px
    }

    .original-product-gallery {
        padding: 75px 0
    }

    .product-image-card {
        padding: 5px;
        border-radius: 12px
    }
}

/* Official logo */
.brand-image {
    display: block;
    width: 190px;
    height: 54px;
    overflow: hidden
}

    .brand-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain
    }

    .brand-image.brand-footer {
        width: 165px;
        height: 48px;
        padding: 5px 9px;
        background: #fff;
        border-radius: 8px
    }

        .brand-image.brand-footer img {
            object-fit: contain
        }

@media(max-width:640px) {
    .brand-image {
        width: 152px;
        height: 44px
    }

        .brand-image.brand-footer {
            width: 150px
        }
}

/* Clear subway directions */
.subway-guide {
    margin: 22px 0 24px;
    padding: 20px 22px;
    border-left: 4px solid var(--blue);
    border-radius: 0 14px 14px 0;
    background: var(--sky)
}

    .subway-guide span {
        display: block;
        color: var(--blue);
        font-size: 12px;
        font-weight: 800
    }

    .subway-guide strong {
        display: block;
        margin-top: 3px;
        font-size: 22px;
        letter-spacing: -1px
    }

    .subway-guide p {
        margin: 6px 0 0;
        color: var(--muted);
        font-size: 14px
    }

.location-info .address {
    margin-top: 0
}

.station-label {
    right: 7%;
    bottom: 18%;
    color: var(--navy);
    font-weight: 800;
    border: 2px solid var(--blue)
}

@media(max-width:640px) {
    .subway-guide strong {
        font-size: 19px
    }

    .station-label {
        right: 4%;
        bottom: 14%
    }
}

/* Official mark in company hero */
.symbol-ring > img {
    position: relative;
    z-index: 1;
    width: 72%;
    height: 72%;
    object-fit: contain
}

    .symbol-ring > img + b {
        z-index: 2
    }

.symbol-ring > span, .symbol-ring > i {
    display: none
}

/* Keep the company hero headline on two intentional lines */
.company-hero h1 {
    font-size: clamp(42px,4.6vw,64px)
}

    .company-hero h1 .company-title-line {
        color: inherit;
        white-space: nowrap
    }

@media(max-width:640px) {
    .company-hero h1 {
        font-size: clamp(31px,8.7vw,40px)
    }
}

/* Mechanical customer inquiry */
.mechanical-inquiry {
    padding: 80px 0;
    background: #e9f4f9
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 35px 70px;
    align-items: end;
    padding: 50px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(11,37,69,.09)
}

.inquiry-copy h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.3;
    letter-spacing: -2px
}

.inquiry-copy > p:last-child {
    margin: 18px 0 0;
    color: var(--muted)
}

.inquiry-benefits {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px
}

    .inquiry-benefits > div {
        min-height: 160px;
        padding: 22px;
        border-radius: 16px;
        background: var(--paper)
    }

    .inquiry-benefits span {
        font: 800 10px Manrope,sans-serif;
        color: var(--blue)
    }

    .inquiry-benefits strong {
        display: block;
        margin-top: 30px;
        font-size: 16px
    }

    .inquiry-benefits p {
        margin: 5px 0 0;
        color: var(--muted);
        font-size: 12px
    }

.inquiry-button {
    grid-column: 2;
    background: var(--blue);
    color: #fff;
    justify-self: start
}

.floating-inquiry {
    position: fixed;
    z-index: 90;
    right: 24px;
    bottom: 24px;
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    box-shadow: 0 14px 35px rgba(232,51,56,.3);
    transition: .25s
}

    .floating-inquiry:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(232,51,56,.4)
    }

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

    .inquiry-button {
        grid-column: auto
    }

    .inquiry-benefits {
        grid-template-columns: 1fr 1fr 1fr
    }
}

@media(max-width:640px) {
    .mechanical-inquiry {
        padding: 55px 0
    }

    .inquiry-grid {
        padding: 28px 22px
    }

    .inquiry-copy h2 {
        font-size: 31px
    }

    .inquiry-benefits {
        grid-template-columns: 1fr
    }

        .inquiry-benefits > div {
            min-height: 125px
        }

        .inquiry-benefits strong {
            margin-top: 18px
        }

    .floating-inquiry {
        right: 14px;
        bottom: 14px;
        width: 74px;
        height: 74px;
        font-size: 11px
    }
}

/* Mechanical inspection page */
.mechanical-hero {
    padding: 175px 0 100px;
    background-image: linear-gradient(90deg,rgba(245,250,252,.98),rgba(233,244,249,.9)),url('../../images/WebPage/image03.jpg');
    background-size: cover;
    background-position: center
}

.mechanical-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: center
}

.mechanical-hero h1 {
    margin: 0;
    font-size: clamp(48px,5.5vw,72px);
    line-height: 1.17;
    letter-spacing: -4px
}

    .mechanical-hero h1 span {
        color: var(--blue)
    }

.mechanical-hero-copy > p:not(.eyebrow) {
    max-width: 650px;
    color: var(--muted);
    font-size: 18px
}

.mechanical-hero-card {
    padding: 38px;
    border-radius: 26px;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow)
}

    .mechanical-hero-card > span {
        color: #83d6f6;
        font-size: 13px;
        font-weight: 800
    }

    .mechanical-hero-card > strong {
        display: block;
        margin: 14px 0 30px;
        font-size: 33px;
        line-height: 1.35
    }

    .mechanical-hero-card ul {
        list-style: none;
        margin: 0;
        padding: 22px 0 0;
        border-top: 1px solid rgba(255,255,255,.16);
        display: grid;
        gap: 10px;
        color: #cfdee8
    }

    .mechanical-hero-card li::before {
        content: "✓";
        color: #7ed5f7;
        margin-right: 10px
    }

.estimate-section {
    padding: 120px 0;
    background: #edf5f8
}

.estimate-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 90px;
    align-items: start
}

.estimate-copy {
    position: sticky;
    top: 130px
}

    .estimate-copy h2 {
        margin: 0;
        font-size: 52px;
        line-height: 1.25;
        letter-spacing: -3px
    }

    .estimate-copy > p:not(.eyebrow) {
        color: var(--muted)
    }

    .estimate-copy ol {
        list-style: none;
        margin: 35px 0 0;
        padding: 0;
        border-top: 1px solid #ccd9df
    }

    .estimate-copy li {
        padding: 16px 0;
        border-bottom: 1px solid #ccd9df;
        font-weight: 700
    }

        .estimate-copy li span {
            display: inline-block;
            width: 45px;
            color: var(--blue);
            font: 800 11px Manrope,sans-serif
        }

.estimate-form {
    padding: 42px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(11,37,69,.1)
}

.form-head {
    margin-bottom: 27px
}

    .form-head p {
        margin: 0;
        color: var(--blue);
        font: 800 10px Manrope,sans-serif;
        letter-spacing: 1.8px
    }

    .form-head h3 {
        margin: 5px 0;
        font-size: 28px
    }

    .form-head > span {
        color: var(--muted);
        font-size: 13px
    }

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

    .form-grid label {
        display: grid;
        gap: 7px
    }

        .form-grid label > span {
            font-size: 13px;
            font-weight: 700
        }

    .form-grid b {
        color: var(--red)
    }

    .form-grid input, .form-grid textarea {
        width: 100%;
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 14px 15px;
        font: inherit;
        outline: none;
        resize: vertical
    }

        .form-grid input:focus, .form-grid textarea:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(22,119,184,.1)
        }

.form-full {
    grid-column: 1/-1
}

.privacy-check {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 12px
}

    .privacy-check input {
        width: 17px;
        height: 17px
    }

.estimate-submit {
    width: 100%;
    border: 0;
    margin-top: 18px;
    cursor: pointer
}

.estimate-feedback {
    min-height: 24px;
    margin: 10px 0 0;
    text-align: center;
    color: var(--blue);
    font-size: 13px
}

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

    .mechanical-service-grid article {
        min-height: 280px;
        padding: 34px;
        border: 1px solid var(--line);
        border-radius: 20px
    }

    .mechanical-service-grid span {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border-radius: 12px;
        background: #e7f4f8;
        color: #08789a;
        font: 800 14px Manrope,sans-serif
    }

    .mechanical-service-grid h3 {
        margin: 68px 0 9px;
        font-size: 23px
    }

    .mechanical-service-grid p {
        margin: 0;
        color: var(--muted);
        font-size: 14px
    }

.app-feature {
    padding: 120px 0;
    background: var(--navy);
    color: #fff
}

.app-feature-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    align-items: center
}

.app-visual {
    display: grid;
    place-items: center
}

.phone-frame {
    width: 260px;
    height: 470px;
    padding: 60px 28px;
    border: 10px solid #091928;
    border-radius: 36px;
    background: linear-gradient(160deg,#fff,#e0eef4);
    color: var(--navy);
    box-shadow: 0 35px 70px rgba(0,0,0,.25)
}

    .phone-frame span {
        font: 800 12px Manrope,sans-serif;
        color: var(--blue)
    }

    .phone-frame strong {
        display: block;
        font-size: 27px;
        line-height: 1.3;
        margin: 10px 0 45px
    }

    .phone-frame i {
        display: block;
        height: 46px;
        margin: 10px 0;
        border-radius: 8px;
        background: #cde5ef
    }

.app-copy h2 {
    margin: 0;
    font-size: 50px;
    line-height: 1.25;
    letter-spacing: -3px
}

.app-copy > p:not(.eyebrow) {
    color: #bdcfdb
}

.feature-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px
}

    .feature-columns ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 10px
    }

    .feature-columns li {
        font-size: 14px
    }

        .feature-columns li::before {
            content: "✓";
            color: #79d5f7;
            margin-right: 10px
        }

@media(max-width:900px) {
    .mechanical-hero-grid, .estimate-grid, .app-feature-grid {
        grid-template-columns: 1fr
    }

    .estimate-copy {
        position: static
    }

    .mechanical-service-grid {
        grid-template-columns: 1fr
    }

        .mechanical-service-grid article {
            min-height: 220px
        }

        .mechanical-service-grid h3 {
            margin-top: 60px
        }

    .app-visual {
        display: none
    }
}

@media(max-width:640px) {
    .mechanical-hero {
        padding: 135px 0 75px
    }

        .mechanical-hero h1 {
            font-size: 40px;
            letter-spacing: -2.5px
        }

    .mechanical-hero-grid {
        gap: 40px
    }

    .estimate-section, .app-feature {
        padding: 75px 0
    }

    .estimate-copy h2, .app-copy h2 {
        font-size: 37px
    }

    .estimate-form {
        padding: 28px 20px
    }

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

    .form-full {
        grid-column: auto
    }

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

/* Dark footer logo and blog */
.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px
}

.brand-image.brand-footer {
    width: 178px;
    height: 48px;
    padding: 0;
    background: transparent;
    border-radius: 0
}

    .brand-image.brand-footer img {
        object-fit: contain
    }

.blog-link {
    width: 44px;
    height: 44px;
    display: block;
    transition: .2s
}

    .blog-link img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain
    }

    .blog-link:hover {
        transform: translateY(-2px)
    }

@media(max-width:640px) {
    .brand-image.brand-footer {
        width: 165px;
        height: 45px
    }

    .blog-link {
        width: 40px;
        height: 40px
    }
}

/* Employee-only login */
.employee-notice {
    max-width: 580px;
    margin: 28px 0 4px;
    padding: 20px 22px;
    border-left: 4px solid var(--blue);
    border-radius: 0 14px 14px 0;
    background: rgba(255,255,255,.68)
}

    .employee-notice strong {
        display: block;
        color: var(--blue);
        font-size: 14px
    }

    .employee-notice p {
        margin: 6px 0;
        color: var(--muted);
        font-size: 13px
    }

    .employee-notice a {
        display: inline-flex;
        gap: 22px;
        margin-top: 5px;
        color: var(--navy);
        font-size: 13px;
        font-weight: 800
    }

/* Long-term repair reserve */
.reserve-hero {
    padding: 175px 0 100px;
    background-image: linear-gradient(90deg,rgba(247,250,252,.98),rgba(234,244,248,.9)),url('../../images/WebPage/image01.jpg');
    background-size: cover;
    background-position: center
}

    .reserve-hero h1 {
        margin: 0;
        font-size: clamp(48px,5.5vw,72px);
        line-height: 1.17;
        letter-spacing: -4px
    }

        .reserve-hero h1 span {
            color: var(--blue)
        }

.reserve-hero-card {
    background: linear-gradient(155deg,#153d57,#0b2940)
}

.reserve-summary {
    background: #fff
}

.reserve-summary-head {
    max-width: 760px
}

    .reserve-summary-head h2 {
        margin: 8px 0 18px;
        font-size: 48px;
        letter-spacing: -3px
    }

    .reserve-summary-head > p:last-child {
        color: var(--muted);
        font-size: 18px;
        line-height: 1.8
    }

.reserve-summary-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-top: 42px
}

    .reserve-summary-grid article {
        padding: 30px;
        border: 1px solid #dbe6e8;
        border-radius: 18px;
        background: #f8fbfb
    }

    .reserve-summary-grid span {
        color: #168099;
        font: 800 12px Manrope,sans-serif
    }

    .reserve-summary-grid h3 {
        margin: 15px 0 10px;
        color: var(--navy);
        font-size: 21px
    }

    .reserve-summary-grid p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.75
    }

.reserve-source {
    margin: 20px 2px 0;
    color: #84949b;
    font-size: 12px
}

.reserve-estimate-section {
    background: #eff5f4
}

.estimate-note {
    margin-top: 16px;
    padding: 14px 16px;
    border-left: 3px solid #168099;
    background: rgba(255,255,255,.6);
    font-size: 13px !important;
    line-height: 1.65 !important
}

.input-with-unit {
    position: relative
}

    .input-with-unit input {
        padding-right: 62px
    }

    .input-with-unit em {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-style: normal;
        color: var(--muted);
        font-size: 13px
    }

.reserve-submit {
    background: #176f83
}

.reserve-guide {
    padding: 110px 0;
    background: #0d2d3d;
    color: #fff
}

.reserve-guide-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px
}

.reserve-guide h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1.3;
    letter-spacing: -3px
}

.reserve-checklist {
    border-top: 1px solid rgba(255,255,255,.18)
}

    .reserve-checklist > div {
        display: grid;
        grid-template-columns: 55px 1fr;
        gap: 15px;
        padding: 24px 0;
        border-bottom: 1px solid rgba(255,255,255,.18)
    }

    .reserve-checklist span {
        color: #82d5e2;
        font: 800 11px Manrope,sans-serif
    }

    .reserve-checklist strong {
        font-size: 20px
    }

    .reserve-checklist p {
        grid-column: 2;
        margin: 0;
        color: #b9cdd5;
        font-size: 14px
    }

@media(max-width:1050px) and (min-width:901px) {
    .primary-nav {
        gap: 18px;
        font-size: 14px
    }
}

@media(max-width:900px) {
    .reserve-summary-grid {
        grid-template-columns: 1fr
    }

    .reserve-guide-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }
}

@media(max-width:640px) {
    .reserve-hero {
        padding: 135px 0 75px
    }

        .reserve-hero h1 {
            font-size: 42px;
            letter-spacing: -2.5px
        }

    .reserve-summary-head h2 {
        font-size: 36px
    }

    .reserve-summary-head > p:last-child {
        font-size: 16px
    }

    .reserve-summary-grid {
        margin-top: 28px
    }

        .reserve-summary-grid article {
            padding: 24px
        }

    .reserve-guide {
        padding: 75px 0
    }

        .reserve-guide h2 {
            font-size: 36px
        }
}

/* Schematic directions map */
.route-map {
    isolation: isolate;
    background: #edf2f3
}

    .route-map::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(107,132,141,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(107,132,141,.1) 1px,transparent 1px);
        background-size: 48px 48px;
        z-index: -4
    }

.route-block {
    position: absolute;
    background: #f8faf9;
    border: 1px solid #dbe4e5;
    border-radius: 5px;
    z-index: -3
}

.block-one {
    left: 4%;
    top: 7%;
    width: 28%;
    height: 25%
}

.block-two {
    right: 5%;
    top: 6%;
    width: 32%;
    height: 29%
}

.block-three {
    left: 5%;
    bottom: 6%;
    width: 27%;
    height: 27%
}

.block-four {
    right: 5%;
    bottom: 7%;
    width: 34%;
    height: 29%
}

.route-road {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #d3dcdf;
    box-shadow: 0 0 0 9px #fff;
    z-index: -1
}

    .route-road span {
        padding: 3px 8px;
        border-radius: 5px;
        background: rgba(255,255,255,.92);
        color: #61737b;
        font-size: 12px;
        font-weight: 800
    }

.namdong-road {
    width: 68px;
    height: 135%;
    left: 31%;
    top: -18%;
    transform: rotate(7deg)
}

    .namdong-road span {
        writing-mode: vertical-rl
    }

.baekbeom-road {
    width: 135%;
    height: 62px;
    left: -18%;
    top: 55%;
    transform: rotate(15deg)
}

.route-intersection {
    position: absolute;
    left: 31%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
    border: 9px solid #fff;
    border-radius: 50%;
    background: #e2eaec;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    z-index: 2
}

.route-station {
    position: absolute;
    left: 9%;
    top: 39%;
    display: grid;
    padding: 10px 13px;
    border: 2px solid #66a9d6;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(11,37,69,.1);
    z-index: 4
}

    .route-station small {
        color: var(--blue);
        font-size: 10px;
        font-weight: 800
    }

    .route-station strong {
        font-size: 14px
    }

.route-exit {
    position: absolute;
    left: 39%;
    top: 46%;
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 5
}

    .route-exit b {
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: #f1c742;
        color: #333;
        border: 2px solid #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,.12)
    }

    .route-exit span {
        padding: 5px 8px;
        border-radius: 6px;
        background: #fff;
        color: var(--navy);
        font-size: 12px;
        font-weight: 800
    }

.walking-route {
    position: absolute;
    height: 8px;
    border-radius: 99px;
    background: #257cc0;
    z-index: 3;
    box-shadow: 0 0 0 3px rgba(255,255,255,.8)
}

.route-segment-one {
    left: 43%;
    top: 52%;
    width: 17%;
    transform: rotate(14deg)
}

.route-segment-two {
    left: 58%;
    top: 58%;
    width: 18%;
    transform: rotate(15deg)
}

.route-corner {
    position: absolute;
    left: 53%;
    top: 65%;
    padding: 5px 9px;
    border-radius: 7px;
    background: #fff;
    color: #2676ad;
    font-size: 11px;
    font-weight: 800;
    z-index: 4
}

.route-office {
    position: absolute;
    right: 7%;
    top: 47%;
    display: grid;
    justify-items: center;
    z-index: 6
}

    .route-office i {
        position: relative;
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
        border: 12px solid var(--red);
        border-radius: 50% 50% 50% 0;
        transform: rotate(-45deg);
        background: #fff;
        box-shadow: 0 8px 18px rgba(11,37,69,.2)
    }

        .route-office i::after {
            content: "";
            position: absolute;
            inset: 4px;
            border-radius: 50%;
            background: var(--red)
        }

    .route-office strong, .route-office span {
        padding: 3px 7px;
        background: #fff
    }

    .route-office strong {
        color: var(--navy);
        font-size: 15px
    }

    .route-office span {
        color: var(--muted);
        font-size: 11px
    }

.route-landmark {
    position: absolute;
    right: 23%;
    top: 29%;
    padding: 4px 6px;
    border-radius: 5px;
    background: #8cc63f;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    z-index: 2
}

@media(max-width:640px) {
    .route-station {
        left: 4%;
        top: 37%;
        padding: 7px
    }

        .route-station strong {
            font-size: 12px
        }

    .route-exit {
        left: 36%;
        top: 45%
    }

        .route-exit span {
            display: none
        }

    .route-office {
        right: 2%;
        top: 45%
    }

        .route-office strong {
            font-size: 12px
        }

        .route-office span {
            font-size: 9px
        }

    .route-corner {
        display: none
    }

    .namdong-road {
        left: 27%
    }
}

/* Simplified route map */
.simple-route-map {
    background: #f5f7f7
}

    .simple-route-map::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,transparent 0 48%,rgba(210,220,223,.28) 48% 52%,transparent 52%);
        z-index: 0
    }

.simple-road {
    position: absolute;
    z-index: 1;
    background: #fff;
    border: 2px solid #d4dde0;
    box-shadow: 0 0 0 8px #fff
}

    .simple-road span {
        position: absolute;
        padding: 5px 10px;
        border-radius: 6px;
        background: #fff;
        color: #51646d;
        font-size: 13px;
        font-weight: 800;
        white-space: nowrap
    }

.simple-overpass {
    left: 29%;
    top: -15%;
    width: 72px;
    height: 130%;
    transform: rotate(6deg);
    background: #dfe8eb;
    border-color: #cad6da
}

    .simple-overpass span {
        left: 50%;
        top: 28%;
        transform: translateX(-50%);
        writing-mode: vertical-rl;
        background: #dfe8eb
    }

.simple-baekbeom {
    left: -15%;
    top: 54%;
    width: 135%;
    height: 65px;
    transform: rotate(14deg)
}

    .simple-baekbeom span {
        left: 52%;
        top: 50%;
        transform: translate(-50%,-50%)
    }

.simple-intersection {
    position: absolute;
    z-index: 2;
    left: 31%;
    top: 52%;
    width: 90px;
    height: 90px;
    transform: translate(-50%,-50%);
    border: 12px solid #fff;
    border-radius: 50%;
    background: #e6ecee
}

.simple-station {
    position: absolute;
    z-index: 4;
    left: 7%;
    top: 37%;
    display: grid;
    padding: 12px 15px;
    border-radius: 12px;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 10px 24px rgba(11,37,69,.18)
}

    .simple-station small {
        color: #7fd2f5;
        font-size: 10px;
        font-weight: 800
    }

    .simple-station strong {
        font-size: 15px
    }

.exit-highlight {
    position: absolute;
    z-index: 7;
    left: 39%;
    top: 43%;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px 8px 8px;
    border: 3px solid #f1c232;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 0 0 6px rgba(241,194,50,.22),0 8px 18px rgba(11,37,69,.15)
}

    .exit-highlight b {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: #f1c232;
        color: #2d3740;
        font: 800 17px Manrope,sans-serif
    }

    .exit-highlight span {
        color: var(--navy);
        font-size: 14px;
        font-weight: 900
    }

.simple-blue-route {
    position: absolute;
    z-index: 5;
    left: 46%;
    top: 54%;
    width: 32%;
    height: 10px;
    border-radius: 999px;
    background: #257bc0;
    transform: rotate(14deg);
    box-shadow: 0 0 0 4px rgba(255,255,255,.9)
}

    .simple-blue-route::after {
        content: "";
        position: absolute;
        right: -2px;
        top: 50%;
        width: 14px;
        height: 14px;
        border-right: 4px solid #257bc0;
        border-top: 4px solid #257bc0;
        transform: translateY(-50%) rotate(45deg);
        background: #f5f7f7
    }

.simple-office {
    position: absolute;
    z-index: 6;
    right: 5%;
    top: 42%;
    display: grid;
    justify-items: center
}

    .simple-office i {
        position: relative;
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
        border: 12px solid var(--red);
        border-radius: 50% 50% 50% 0;
        transform: rotate(-45deg);
        background: #fff;
        box-shadow: 0 8px 18px rgba(11,37,69,.2)
    }

        .simple-office i::after {
            content: "";
            position: absolute;
            inset: 4px;
            border-radius: 50%;
            background: var(--red)
        }

    .simple-office strong, .simple-office span {
        padding: 3px 8px;
        background: #fff
    }

    .simple-office strong {
        color: var(--navy);
        font-size: 15px
    }

    .simple-office span {
        color: var(--muted);
        font-size: 11px
    }

@media(max-width:640px) {
    .simple-overpass {
        left: 23%;
        width: 58px
    }

    .simple-baekbeom {
        top: 56%;
        height: 54px
    }

    .simple-intersection {
        left: 26%;
        width: 75px;
        height: 75px
    }

    .simple-station {
        left: 3%;
        top: 31%;
        padding: 8px
    }

        .simple-station strong {
            font-size: 12px
        }

    .exit-highlight {
        left: 31%;
        top: 43%;
        padding: 5px 8px 5px 5px
    }

        .exit-highlight b {
            width: 30px;
            height: 30px
        }

        .exit-highlight span {
            font-size: 11px
        }

    .simple-blue-route {
        left: 43%;
        width: 31%
    }

    .simple-office {
        right: 1%;
        top: 44%
    }

        .simple-office strong {
            font-size: 12px
        }

        .simple-office span {
            font-size: 9px
        }
}

/* Corrected exit 2 position from the reference map */
.exit-highlight {
    left: 68%;
    top: 31%
}

.simple-blue-route {
    left: 70%;
    top: 49%;
    width: 19%;
    transform: rotate(58deg);
    transform-origin: left center
}

.simple-office {
    right: 6%;
    top: 59%
}

@media(max-width:640px) {
    .exit-highlight {
        left: 59%;
        top: 29%
    }

    .simple-blue-route {
        left: 65%;
        top: 47%;
        width: 22%
    }

    .simple-office {
        right: 0;
        top: 60%
    }
}

/* Supplied directions image */
.location-map-image {
    height: auto;
    aspect-ratio: 4/3;
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(11,37,69,.1)
}

    .location-map-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain
    }

    .location-map-image:focus-visible {
        outline: 3px solid var(--blue);
        outline-offset: 4px
    }

@media(max-width:900px) {
    .location-map-image {
        height: auto
    }
}

@media(max-width:640px) {
    .location-map-image {
        height: auto;
        border-radius: 18px
    }
}

/* Company values number badges */
.value-card > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 13px;
    background: rgba(121,210,245,.14);
    color: #8bdcff;
    font: 800 15px Manrope,sans-serif
}

.value-icon {
    margin-top: 52px
}

@media(max-width:900px) {
    .value-icon {
        margin-top: 34px
    }
}

/* Match reserve summary numbers with the service-card badges */
.reserve-summary-grid span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: #e7f4f8;
    color: #08789a;
    font: 800 14px Manrope,sans-serif
}

/* Unified numbered badges across all pages */
.inquiry-benefits span,
.mechanical-service-grid span,
.reserve-summary-grid span,
.value-card > span,
.product-summary > span,
.visit-card > span,
.process-list > li > span,
.business-row > span,
.estimate-copy li span,
.reserve-checklist span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    flex: 0 0 42px;
    border-radius: 12px;
    background: #e7f4f8;
    color: #08789a;
    font: 800 14px/1 Manrope,sans-serif
}

.value-card > span, .reserve-checklist span {
    background: rgba(121,210,245,.14);
    color: #8bdcff
}

.inquiry-benefits strong {
    margin-top: 26px
}

.product-summary strong {
    margin-top: 30px
}

.visit-card h3 {
    margin-top: 22px
}

.estimate-copy li {
    display: flex;
    align-items: center;
    gap: 12px
}

    .estimate-copy li span {
        margin-right: 0
    }

.process-list li {
    grid-template-columns: 42px 1fr;
    gap: 28px
}

.business-row {
    grid-template-columns: 42px 1fr 40px;
    gap: 28px
}

.reserve-checklist > div {
    grid-template-columns: 42px 1fr;
    gap: 18px
}

.reserve-checklist p {
    grid-column: 2
}

@media(max-width:640px) {
    .process-list li {
        grid-template-columns: 42px 1fr
    }

    .business-row {
        grid-template-columns: 42px 1fr 24px;
        gap: 14px
    }
}

/* Unified five-service product layout */
.sub-hero h1 span {
    color: var(--blue)
}

.product-hero-title span {
    white-space: nowrap
}

.product-tabs .container {
    gap: 34px
}

.product-tabs a {
    font-size: 13px;
    white-space: nowrap
}

.product-summary-grid {
    grid-template-columns: repeat(5,1fr)
}

.product-summary {
    padding: 26px
}

    .product-summary strong {
        font-size: 18px
    }

.visual-repair {
    background: linear-gradient(145deg,#e7f4f3,#cfe7e5)
}

    .visual-repair .visual-label {
        color: rgba(11,37,69,.13)
    }

.repair-visual-mark {
    width: 210px;
    height: 210px;
    display: grid;
    place-items: center;
    border: 34px solid rgba(23,111,131,.16);
    border-radius: 50%;
    color: #176f83;
    font: 800 76px/1 Manrope,sans-serif;
    box-shadow: 0 24px 55px rgba(11,37,69,.12)
}

@media(max-width:1100px) and (min-width:901px) {
    .product-summary-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .product-tabs .container {
        gap: 22px
    }

    .product-tabs a {
        font-size: 12px
    }
}

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

@media(max-width:640px) {
    .product-hero-title {
        font-size: 36px !important;
        letter-spacing: -2.5px !important
    }

    .product-summary-grid {
        grid-template-columns: 1fr
    }

    .repair-visual-mark {
        width: 160px;
        height: 160px;
        border-width: 26px;
        font-size: 58px
    }
}

/* Contemporary company vision panel */
.company-vision {
    position: relative;
    min-height: 590px;
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
    background: #071b31;
    box-shadow: 0 30px 75px rgba(11,37,69,.18)
}

    .company-vision > img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center
    }

    .company-vision::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,rgba(5,22,40,.96) 0%,rgba(5,22,40,.8) 36%,rgba(5,22,40,.2) 68%,rgba(5,22,40,.08) 100%)
    }

.company-vision-copy {
    position: relative;
    z-index: 1;
    width: min(610px,58%);
    padding: 62px;
    color: #fff
}

    .company-vision-copy .eyebrow {
        color: #78d5fa
    }

    .company-vision-copy h2 {
        margin: 0;
        font-size: clamp(42px,4.6vw,64px);
        line-height: 1.18;
        letter-spacing: -3.5px
    }

        .company-vision-copy h2 span {
            color: #71cef5
        }

.company-vision-points {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 70px
}

    .company-vision-points > div {
        min-height: 128px;
        padding: 20px;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 16px;
        background: rgba(255,255,255,.08);
        backdrop-filter: blur(10px)
    }

    .company-vision-points b {
        display: block;
        color: #79d5fa;
        font: 800 12px Manrope,sans-serif
    }

    .company-vision-points strong {
        display: block;
        margin: 18px 0 5px;
        font-size: 18px
    }

    .company-vision-points span {
        color: #bfd0dd;
        font-size: 12px;
        line-height: 1.55
    }

@media(max-width:900px) {
    .company-vision {
        min-height: 650px
    }

        .company-vision > img {
            object-position: 65% center
        }

        .company-vision::after {
            background: linear-gradient(90deg,rgba(5,22,40,.96),rgba(5,22,40,.72))
        }

    .company-vision-copy {
        width: 80%;
        padding: 50px
    }

    .company-vision-points {
        margin-top: 55px
    }
}

@media(max-width:640px) {
    .company-image-band {
        padding-bottom: 75px
    }

    .company-vision {
        min-height: 760px;
        border-radius: 22px
    }

        .company-vision > img {
            object-position: 69% center
        }

        .company-vision::after {
            background: linear-gradient(180deg,rgba(5,22,40,.92) 0%,rgba(5,22,40,.75) 54%,rgba(5,22,40,.98) 100%)
        }

    .company-vision-copy {
        width: 100%;
        padding: 34px 25px
    }

        .company-vision-copy h2 {
            font-size: 38px;
            letter-spacing: -2.5px
        }

    .company-vision-points {
        grid-template-columns: 1fr;
        margin-top: 210px
    }

        .company-vision-points > div {
            min-height: auto;
            padding: 16px 18px
        }

        .company-vision-points strong {
            display: inline-block;
            margin: 0 10px 0 14px
        }

        .company-vision-points span {
            font-size: 11px
        }
}

/* Improve number contrast on the dark FMS visual */
.visual-fms .visual-label {
    color: rgba(255,255,255,.38)
}
