:root {
    --site-header-height: 86px;
    --site-header-compact-height: 62px;
    --site-red: #EC1E24;
    --site-text: #101828;
    --site-muted: #475467;
    --site-border: rgba(16, 24, 40, .10);
}

* {
    box-sizing: border-box;
}

.container-fluid {
    max-width: 1400px;
    margin-inline: auto;
}

html {
    scroll-padding-top: var(--site-header-height);
}

body {
    padding-top: var(--site-header-height);
    color: var(--site-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.header-scrolled,
body:has(.site-header.is-scrolled) {
    padding-top: var(--site-header-compact-height);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -340px;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    transition: .35s ease;
    box-shadow: 0 15px 60px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-logo img {
    height: 26px;
}

.sidebar-close {
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-menu {
    padding: 10px 0;
}

.mobile-menu>a,
.mobile-dropdown-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    color: #222;
    border: none;
    background: none;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #f3f3f3;
    cursor: pointer;
}

.mobile-dropdown-content {
    display: none;
    background: #fafafa;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown.active .material-symbols-outlined {
    transform: rotate(180deg);
}

.mobile-dropdown-content a {
    display: block;
    padding: 13px 40px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-dropdown-content a:hover {
    color: #0d6efd;
}

.view-all {
    font-weight: 600;
    color: #0d6efd !important;
}

.mobile-contact {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-contact a {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
}

@media(min-width:992px) {

    .mobile-sidebar,
    .mobile-overlay {
        display: none;
    }

}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--site-border);
    box-shadow: 0 8px 24px rgba(16, 24, 40, .06);
    transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    border-color: rgba(236, 30, 36, .16);
    box-shadow: 0 8px 22px rgba(16, 24, 40, .10);
}

.header-inner {
    min-height: var(--site-header-height);
    display: grid;
    grid-template-columns: minmax(180px, .8fr) minmax(360px, 1.2fr) auto;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    padding-inline: clamp(14px, 3vw, 44px);
    transition: min-height .25s ease;
}

.site-header.is-scrolled .header-inner {
    min-height: var(--site-header-compact-height);
}

.site-header .brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    color: var(--site-text);
    text-decoration: none;
}

.site-header .brand-logo {
    width: auto;
    max-width: 390px;
    height: 64px;
    object-fit: contain;
    transition: height .25s ease, max-width .25s ease;
}

.site-header.is-scrolled .brand-logo {
    max-width: 230px;
    height: 42px;
}

.site-header .brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    transition: width .25s ease, height .25s ease, font-size .25s ease;
}

.site-header.is-scrolled .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 15px;
}

.main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.6vw, 24px);
}

.nav-link,
.nav-dropdown-toggle {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 0;
    color: var(--site-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: color .2s ease;
}

.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .nav-dropdown-toggle {
    min-height: 30px;
    font-size: 13px;
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown-toggle.active,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.is-hovered .nav-dropdown-toggle {
    color: var(--site-red);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle .material-symbols-outlined {
    font-size: 18px;
    line-height: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: min(560px, calc(100vw - 36px));
    padding: 12px;
    display: grid;
    gap: 6px;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, 8px);
    background: #ffffff;
    border: 1px solid rgba(236, 30, 36, .14);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .14);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-hovered .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.solution-category {
    position: relative;
}

.nav-mega-menu {
    grid-template-columns: minmax(170px, .72fr) minmax(0, 1fr);
    gap: 12px;
    min-width: 500px;
    max-width: 600px;
}

.nav-mega-intro {
    padding: 14px;
    background: #fff7f7;
    border: 1px solid rgba(236, 30, 36, .10);
    border-radius: 8px;
}

.nav-mega-intro strong {
    display: block;
    margin-bottom: 12px;
    color: #06254b;
    font-size: 13px;
    font-weight: 900;
}

.nav-mega-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nav-mega-tags a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    color: var(--site-red);
    background: #ffffff;
    border: 1px solid rgba(236, 30, 36, .14);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
}

.nav-mega-list {
    display: grid;
    gap: 5px;
}

.nav-mega-list a {
    display: grid;
    gap: 4px;
    padding: 10px 12px;
    color: var(--site-text);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
    text-decoration: none;
}

.nav-mega-list a:hover,
.nav-mega-tags a:hover {
    color: var(--site-red);
    background: #fff0f1;
}

.nav-mega-list small {
    color: #667085;
    font-size: 11px;
    font-weight: 700;
}

.nav-simple-menu {
    left: 0;
    width: 250px;
    transform: translateY(8px);
}

.nav-dropdown:hover .nav-simple-menu,
.nav-dropdown.is-hovered .nav-simple-menu {
    transform: translateY(0);
}

.nav-simple-menu a {
    display: grid;
    gap: 4px;
    padding: 11px 12px;
    color: var(--site-text);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
    text-decoration: none;
}

.nav-simple-menu a:hover {
    color: var(--site-red);
    background: #fff0f1;
}

.nav-simple-menu small {
    color: #667085;
    font-size: 11px;
    font-weight: 700;
}

.solution-category-link,
.solution-submenu a,
.dropdown-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    color: var(--site-text);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.solution-category-link:hover,
.solution-submenu a:hover,
.dropdown-all:hover {
    color: var(--site-red);
    background: #fff0f1;
}

.solution-submenu {
    display: grid;
    gap: 4px;
    padding-left: 12px;
}

.dropdown-all {
    grid-column: 1 / -1;
    margin-top: 4px;
    color: var(--site-red);
    background: #fff7f7;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
}

.header-contact-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    color: #ffffff;
    background: var(--site-red);
    border: 1px solid var(--site-red);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: min-height .25s ease, padding .25s ease, transform .2s ease, background .2s ease;
}

.site-header.is-scrolled .header-contact-btn {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 13px;
}

.header-contact-btn:hover {
    color: #ffffff;
    background: #c9181e;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    place-items: center;
    justify-self: end;
    color: var(--site-red);
    background: #ffffff;
    border: 1px solid rgba(236, 30, 36, .20);
    border-radius: 6px;
}

.menu-toggle .material-symbols-outlined {
    font-size: 24px;
}

.inner-breadcrumb {
    position: relative;
    min-height: clamp(260px, 34vw, 420px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background-color: #101828;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.inner-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: inherit;
    transform: scale(1.04);
}

.inner-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(16, 24, 40, .88) 0%, rgba(16, 24, 40, .68) 48%, rgba(236, 30, 36, .42) 100%),
        linear-gradient(180deg, rgba(16, 24, 40, .24), rgba(16, 24, 40, .72));
}

.inner-breadcrumb .container {
    position: relative;
    z-index: 1;
}

.inner-breadcrumb-content {
    max-width: 850px;
    padding: 70px 0;
    color: #ffffff;
}

.inner-breadcrumb-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(40px, 6vw, 78px);
    font-weight: 900;
    line-height: 1.02;
    text-transform: capitalize;
}

.inner-breadcrumb-content nav {
    width: fit-content;
    max-width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    backdrop-filter: blur(12px);
}

.inner-breadcrumb-content nav a,
.inner-breadcrumb-content nav span {
    color: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none;
}

.inner-breadcrumb-content nav a:hover {
    color: #ffffff;
}

.inner-breadcrumb-content nav i {
    color: rgba(255, 255, 255, .74);
    font-size: 16px;
}

@media (max-width: 1040px) {
    .header-inner {
        grid-template-columns: minmax(150px, .65fr) minmax(320px, 1fr) auto;
        gap: 14px;
    }

    .site-header .brand-logo {
        max-width: 170px;
        height: 54px;
    }

    .site-header.is-scrolled .brand-logo {
        max-width: 124px;
        height: 38px;
    }

    .main-nav {
        gap: 14px;
    }
}

@media (max-width: 900px) {
    :root {
        --site-header-height: 72px;
        --site-header-compact-height: 60px;
    }

    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
        padding-inline: 12px;
    }

    .site-header .brand-logo {
        max-width: 142px;
        height: 46px;
    }

    .site-header.is-scrolled .brand-logo {
        max-width: 112px;
        height: 34px;
    }

    .menu-toggle {
        display: grid;
    }

    .main-nav {
        position: fixed;
        top: var(--site-header-height);
        left: 12px;
        right: 12px;
        max-height: calc(100vh - var(--site-header-height) - 18px);
        padding: 12px;
        display: grid;
        justify-content: stretch;
        gap: 4px;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        background: #ffffff;
        border: 1px solid rgba(236, 30, 36, .14);
        border-radius: 8px;
        box-shadow: 0 18px 45px rgba(16, 24, 40, .16);
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease, top .25s ease;
    }

    .site-header.is-scrolled .main-nav {
        top: var(--site-header-compact-height);
    }

    .main-nav.open {
        visibility: visible;
        opacity: 0;
        transform: translateY(0);
    }

    .nav-link,
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        min-height: 40px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        max-width: none;
        margin-top: 4px;
        display: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        border-radius: 6px;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: grid;
    }

    .nav-dropdown.is-open .nav-dropdown-toggle .material-symbols-outlined {
        transform: rotate(180deg);
    }

    .nav-simple-menu {
        width: 100%;
    }

    .nav-mega-menu {
        grid-template-columns: 1fr;
    }

    .header-contact-btn span {
        display: none;
    }

    .site-header.is-scrolled .header-contact-btn {
        width: 36px;
        min-height: 36px;
        padding: 0;
    }
}

@media (max-width: 520px) {
    .site-header .brand-logo {
        max-width: 122px;
        height: 42px;
    }

    .site-header.is-scrolled .brand-logo {
        max-width: 96px;
        height: 32px;
    }

    .inner-breadcrumb {
        min-height: 250px;
    }

    .inner-breadcrumb-content {
        padding: 54px 0;
    }

    .inner-breadcrumb-content h1 {
        font-size: 38px;
    }

    .inner-breadcrumb-content nav {
        margin-top: 18px;
        padding: 9px 12px;
    }
    .faq-section{
        padding: 30px 0px;
    }
}

.home-banner-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(236, 30, 36, .10), transparent 28%),
        linear-gradient(180deg, #ffffff, #fff7f7);
}

.home-banner-carousel,
.home-banner-carousel .owl-stage-outer,
.home-banner-carousel .owl-stage,
.home-banner-carousel .owl-item {
    min-height: 640px;
}

.home-banner-slide {
    position: relative;
    min-height: 640px;
    overflow: hidden;
}

.home-banner-slide::before {
    content: "";
    position: absolute;
    right: -120px;
    top: 54px;
    width: 430px;
    height: 430px;
    border: 52px solid rgba(236, 30, 36, .08);
    border-radius: 50%;
}

.home-banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 600px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, .9fr);
    align-items: center;
    gap: clamp(32px, 5vw, 84px);
    padding: clamp(48px, 0vw, 82px) clamp(22px, 3vw, 90px);
}

.home-banner-copy {
    max-width: 760px;
    color: var(--site-text);
}

.home-banner-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-banner-kicker::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--site-red);
    border-radius: 999px;
}

.home-banner-copy h1 {
    max-width: 780px;
    margin: 0 0 22px;
    color: var(--site-text);
    font-size: clamp(38px, 3.5vw, 64px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.home-banner-copy h1 span {
    color: var(--site-red);
}

.home-banner-copy p {
    max-width: 720px;
    margin: 0 0 26px;
    color: #475467;
    font-size: clamp(16px, 1.25vw, 21px);
    font-weight: 600;
    line-height: 1.65;
}

.home-banner-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 680px;
    margin-bottom: 28px;
}

.home-banner-points span {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #263238;
    background: #ffffff;
    border: 1px solid rgba(236, 30, 36, .14);
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(16, 24, 40, .06);
    font-size: clamp(13px, 1vw, 16px);
    font-weight: 800;
}

.home-banner-points i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 50%;
    font-size: 15px;
}

.home-banner-btn {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 24px 13px 14px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: clamp(14px, 1vw, 17px);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(236, 30, 36, .32);
    transition: transform .2s ease, background .2s ease;
}

.home-banner-btn i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--site-red);
    background: #ffffff;
    border-radius: 50%;
    font-size: 18px;
}

.home-banner-btn:hover {
    color: #ffffff;
    background: #d7191f;
    transform: translateY(-2px);
}

.home-banner-media {
    position: relative;
}

.home-banner-media::before {
    content: "";
    position: absolute;
    inset: 34px -20px -20px 46px;
    background: var(--site-red);
    border-radius: 8px;
    opacity: .95;
}

.home-banner-image-box {
    position: relative;
    min-height: clamp(360px, 34vw, 520px);
    overflow: hidden;
    background: #ffffff;
    border: 10px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(16, 24, 40, .16);
}

.home-banner-image {
    width: 100%;
    height: 100%;
    min-height: clamp(340px, 32vw, 500px);
    object-fit: cover;
    display: block;
}

.home-banner-carousel.owl-theme .owl-nav {
    position: absolute;
    left: clamp(22px, 5vw, 90px);
    bottom: 34px;
    display: flex;
    gap: 12px;
    margin: 0;
}

.owl-nav {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
}

.owl-carousel .owl-nav button.owl-next {

    width: 46px !important;
    height: 46px !important;
    display: grid;
    place-items: center;
    margin: 0;
    color: white !important;
    background: var(--site-red) !important;
    border: 1px solid rgba(236, 30, 36, .28);
    border-radius: 50%;
    font-size: 22px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;

}

.owl-carousel .owl-nav button.owl-prev {
    width: 46px !important;
    height: 46px !important;
    display: grid;
    place-items: center;
    margin: 0;
    color: white !important;
    background: var(--site-red) !important;
    border: 1px solid rgba(236, 30, 36, .28);
    border-radius: 50%;
    font-size: 22px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}



.home-banner-carousel.owl-theme .owl-nav {
    width: 46px !important;
    height: 46px !important;
    display: grid;
    place-items: center;
    margin: 0;
    color: var(--site-red);
    background: red !important;
    border: 1px solid rgba(236, 30, 36, .28);
    border-radius: 50%;
    font-size: 22px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.home-banner-carousel.owl-theme .owl-nav [class*=owl-]:hover {
    color: #ffffff;
    background: var(--site-red);
    border-color: var(--site-red);
    transform: translateY(-2px);
}

.home-banner-carousel.owl-theme .owl-dots {
    position: absolute;
    right: clamp(22px, 5vw, 90px);
    bottom: 50px;
    display: flex;
    gap: 8px;
}

.home-banner-carousel.owl-theme .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0;
    background: rgba(236, 30, 36, .22);
    transition: width .2s ease, background .2s ease;
}

.home-banner-carousel.owl-theme .owl-dots .owl-dot.active span {
    width: 28px;
    background: var(--site-red);
}

@media (max-width: 1100px) {
    .home-banner-content {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {

    .home-banner-carousel,
    .home-banner-carousel .owl-stage-outer,
    .home-banner-carousel .owl-stage,
    .home-banner-carousel .owl-item,
    .home-banner-slide {
        min-height: auto;
    }

    .home-banner-content {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 44px 18px 104px;
    }

    .home-banner-copy {
        max-width: 100%;
    }

    .home-banner-media {
        order: -1;
    }

    .home-banner-media::before {
        inset: 24px -10px -12px 24px;
    }

    .home-banner-image-box {
        min-height: 260px;
    }

    .home-banner-image {
        min-height: 240px;
    }

    .home-banner-points {
        gap: 10px;
    }

    .home-banner-points span {
        min-height: 42px;
        padding: 9px 13px;
    }

    .home-banner-carousel.owl-theme .owl-nav {
        left: 18px;
        bottom: 30px;
    }

    .home-banner-carousel.owl-theme .owl-nav [class*=owl-] {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }

    .home-banner-carousel.owl-theme .owl-dots {
        right: 18px;
        bottom: 44px;
    }
}

@media (max-width: 560px) {
    .home-banner-copy h1 {
        font-size: 34px;
    }

    .home-banner-copy p {
        font-size: 15px;
    }

    .home-banner-points span {
        width: 100%;
        justify-content: flex-start;
    }
}

.home-about-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;
    background-color: #ffeef0;
}

.home-about-section::before {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -180px;
    width: 430px;
    height: 430px;
    border: 56px solid rgba(236, 30, 36, .06);
    border-radius: 50%;
}

.home-about-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, .92fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(14px, 2vw, 16px);
    padding-inline: clamp(22px, 5vw, 90px);
}

.home-about-media {
    position: relative;
    min-height: 560px;
}

.home-about-main-image,
.home-about-small-image {
    overflow: hidden;
    background: #ffffff;
    border: 10px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(16, 24, 40, .14);
}

.home-about-main-image {
    position: relative;
    z-index: 1;
    width: 89%;
    height: 560px;
}

.home-about-small-image {
    position: absolute;
    right: 0;
    bottom: 28px;
    z-index: 2;
    width: 46%;
    height: 250px;
}

.home-about-main-image img,
.home-about-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.home-about-experience {
    position: absolute;
    left: clamp(18px, 4vw, 54px);
    bottom: 22px;
    z-index: 3;
    max-width: 210px;
    padding: 22px 24px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(236, 30, 36, .25);
}

.home-about-experience strong {
    display: block;
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
}

.home-about-experience span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.home-about-content {
    max-width: 760px;
}

.home-about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-about-kicker::before {
    content: "";
    width: 36px;
    height: 3px;
    background: var(--site-red);
    border-radius: 999px;
}

.home-about-content h2 {
    margin: 0 0 20px;
    color: var(--site-text);
    font-size: clamp(34px, 2vw, 58px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.home-about-content p {
    margin: 0 0 16px;
    color: #5b6678;
    font-size: clamp(15px, 1.08vw, 18px);
    font-weight: 600;
    line-height: 1.75;
}

.home-about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.home-about-features article {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(236, 30, 36, .12);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}

.home-about-features i {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 24px;
}

.home-about-features strong {
    display: block;
    margin-bottom: 6px;
    color: var(--site-text);
    font-size: 16px;
    font-weight: 900;
}

.home-about-features span {
    display: block;
    color: #667085;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.home-about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.home-about-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(236, 30, 36, .25);
    transition: transform .2s ease, background .2s ease;
}

.home-about-btn:hover {
    color: #ffffff;
    background: #d7191f;
    transform: translateY(-2px);
}

.home-about-link {
    color: var(--site-red);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.home-about-link:hover {
    color: #c9181e;
}

@media (max-width: 980px) {
    .home-about-wrap {
        grid-template-columns: 1fr;
    }

    .home-about-media {
        min-height: 500px;
    }

    .home-about-content {
        max-width: 100%;
    }
}

@media (max-width: 680px) {
    .home-about-section {
        padding:30px 0;
    }

    .home-about-media {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .home-about-media::before,
    .home-about-small-image {
        display: none;
    }

    .home-about-main-image {
        width: 100%;
        height: 320px;
    }

    .home-about-experience {
        position: static;
        max-width: none;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .home-about-features {
        grid-template-columns: 1fr;
    }

    .home-about-content h2 {
        font-size: 32px;
    }
}

.about-full-page {
    overflow: hidden;
    padding: 72px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #fff7f8 46%, #f7f9fc 100%);
}

.about-full-wrap {
    padding-inline: clamp(18px, 5vw, 90px);
}

.about-full-hero {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
    align-items: center;
    gap: clamp(30px, 5vw, 76px);
    margin-bottom: 38px;
}

.about-full-copy>span,
.about-full-intro span,
.about-story-copy>span,
.about-more-list span,
.about-full-cta span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--site-red);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.about-full-copy h2,
.about-full-intro h2,
.about-story-copy h2,
.about-more-list h2,
.about-full-cta h2 {
    margin: 0;
    color: #06254b;
    font-size: clamp(36px, 4.7vw, 68px);
    font-weight: 900;
    line-height: 1.04;
}

.about-full-copy p,
.about-full-intro p,
.about-story-copy p,
.about-story-copy div,
.about-more-list p {
    margin: 20px 0 0;
    color: #586678;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.72;
}

.about-full-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.about-full-actions a:first-child,
.about-full-cta>a,
.about-service-preview .about-full-intro>a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(236, 30, 36, .22);
}

.about-full-actions a:last-child {
    color: var(--site-red);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.about-full-media {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #e9eef6;
    box-shadow: 0 28px 70px rgba(6, 37, 75, .16);
}

.about-full-media img {
    width: 100%;
    min-height: clamp(420px, 42vw, 640px);
    display: block;
    object-fit: cover;
}

.about-full-media-card {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    max-width: 420px;
    padding: 20px;
    color: #ffffff;
    background: rgba(6, 37, 75, .88);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    backdrop-filter: blur(12px);
}

.about-full-media-card strong {
    display: block;
    font-size: 20px;
    font-weight: 950;
}

.about-full-media-card span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

.about-full-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 68px;
}

.about-full-stats article,
.about-capability-grid article,
.about-process-grid article,
.about-service-preview-grid a {
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(16, 24, 40, .06);
}

.about-full-stats article {
    display: grid;
    gap: 8px;
    padding: 22px;
}

.about-full-stats i,
.about-capability-grid i,
.about-service-preview-grid i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 24px;
}

.about-full-stats strong {
    color: #06254b;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 950;
    line-height: 1;
}

.about-full-stats span {
    color: #667085;
    font-size: 14px;
    font-weight: 800;
}

.about-full-intro {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
    align-items: end;
    gap: clamp(24px, 5vw, 72px);
    margin-bottom: 28px;
}

.about-full-intro h2 {
    font-size: clamp(32px, 3.6vw, 52px);
}

.about-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 68px;
}

.about-capability-grid article {
    min-height: 250px;
    padding: 24px;
}

.about-capability-grid h3,
.about-process-grid h3 {
    margin: 18px 0 10px;
    color: #06254b;
    font-size: 21px;
    font-weight: 950;
    line-height: 1.2;
}

.about-capability-grid p,
.about-process-grid p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.6;
}

.about-story-panel {
    display: grid;
    grid-template-columns: minmax(360px, .85fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(30px, 5vw, 76px);
    margin-bottom: 72px;
}

.about-story-images {
    position: relative;
    min-height: 560px;
}

.about-story-images img {
    position: absolute;
    width: 76%;
    height: 430px;
    object-fit: cover;
    border: 10px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 24px 62px rgba(6, 37, 75, .16);
}

.about-story-images img:first-child {
    top: 0;
    left: 0;
}

.about-story-images img:last-child {
    right: 0;
    bottom: 0;
    width: 58%;
    height: 300px;
}

.about-story-copy {
    padding: clamp(24px, 4vw, 44px);
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(16, 24, 40, .06);
}

.about-story-copy h2 {
    font-size: clamp(30px, 3vw, 46px);
}

.about-process-section,
.about-service-preview {
    margin-bottom: 70px;
}

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

.about-process-grid article {
    position: relative;
    padding: 26px;
}

.about-process-grid article>span {
    color: rgba(236, 30, 36, .18);
    font-size: 54px;
    font-weight: 950;
    line-height: 1;
}

.about-more-list {
    display: grid;
    gap: 18px;
    margin-bottom: 70px;
}

.about-more-list article {
    display: grid;
    grid-template-columns: minmax(240px, .36fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(16, 24, 40, .06);
}

.about-more-list img {
    width: 100%;
    aspect-ratio: 1.32;
    object-fit: cover;
    border-radius: 7px;
}

.about-more-list h2 {
    font-size: clamp(26px, 2.4vw, 38px);
}

.about-service-preview .about-full-intro {
    align-items: center;
}

.about-service-preview .about-full-intro>a {
    justify-self: end;
    box-shadow: none;
}

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

.about-service-preview-grid a {
    display: grid;
    gap: 12px;
    padding: 24px;
    color: #06254b;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.about-service-preview-grid a:hover {
    color: #06254b;
    box-shadow: 0 22px 46px rgba(16, 24, 40, .11);
    transform: translateY(-3px);
}

.about-service-preview-grid span {
    color: var(--site-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.about-service-preview-grid strong {
    font-size: 20px;
    font-weight: 950;
    line-height: 1.25;
}

.about-full-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(28px, 4vw, 46px);
    color: #ffffff;
    background: #06254b;
    border-radius: 8px;
}

.about-full-cta span,
.about-full-cta h2 {
    color: #ffffff;
}

.about-full-cta h2 {
    max-width: 760px;
    font-size: clamp(30px, 3.4vw, 50px);
}

.about-full-cta>a {
    flex: 0 0 auto;
    background: #ffffff;
    color: var(--site-red);
    box-shadow: none;
}

@media (max-width: 1100px) {

    .about-full-hero,
    .about-story-panel,
    .about-full-intro {
        grid-template-columns: 1fr;
    }

    .about-full-stats,
    .about-capability-grid,
    .about-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .about-full-page {
        padding: 30px 0;
    }

    .about-full-hero {
        gap: 24px;
    }

    .about-full-media img {
        min-height: 360px;
    }

    .about-full-media-card {
        position: static;
        max-width: none;
        border-radius: 0;
    }

    .about-full-stats,
    .about-capability-grid,
    .about-process-grid,
    .about-service-preview-grid,
    .about-more-list article {
        grid-template-columns: 1fr;
    }

    .about-story-images {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .about-story-images img,
    .about-story-images img:first-child,
    .about-story-images img:last-child {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 1.22;
    }

    .about-service-preview .about-full-intro>a {
        justify-self: start;
    }

    .about-full-cta {
        display: grid;
    }
}

.team-page,
.founder-page {
    overflow: hidden;
    padding: 72px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #fff7f8 48%, #f7f9fc 100%);
}

.team-page-wrap,
.founder-page-wrap {
    padding-inline: clamp(18px, 5vw, 90px);
}

.team-page-head {
    max-width: 900px;
    margin-bottom: 34px;
}

.team-page-head span,
.founder-copy>span,
.founder-story>span,
.team-cta span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--site-red);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.team-page-head h2,
.founder-copy h2,
.founder-story h2,
.team-cta h2 {
    margin: 0;
    color: #06254b;
    font-size: clamp(34px, 4.6vw, 66px);
    font-weight: 900;
    line-height: 1.04;
}

.team-page-head p,
.founder-copy p,
.founder-story p,
.founder-story div {
    margin: 20px 0 0;
    color: #586678;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.72;
}

.team-value-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 38px;
}

.team-value-strip article,
.team-card,
.founder-message-grid article,
.founder-story {
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(16, 24, 40, .06);
}

.team-value-strip article {
    min-height: 150px;
    display: grid;
    align-content: start;
    gap: 9px;
    padding: 22px;
}

.team-value-strip i,
.founder-message-grid i,
.team-empty i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 24px;
}

.team-value-strip strong {
    color: #06254b;
    font-size: 20px;
    font-weight: 950;
}

.team-value-strip span {
    color: #667085;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.55;
}

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

.team-card {
    overflow: hidden;
}

.team-card-image {
    height: 430px;
    ;
    overflow: hidden;
    background: #e9eef6;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .25s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.04);
}

.team-card-body {
    padding: 22px;
}

.team-card-body span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--site-red);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .14em;
    line-height: 1.35;
    text-transform: uppercase;
}

.team-card-body h3 {
    margin: 0;
    color: #06254b;
    font-size: 24px;
    font-weight: 950;
    line-height: 1.15;
}

.team-card-body strong {
    display: block;
    margin-top: 8px;
    color: #344054;
    font-size: 14px;
    font-weight: 850;
}

.team-card-body p {
    margin: 14px 0 0;
    color: #667085;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.62;
}

.team-empty,
.founder-empty {
    grid-column: 1 / -1;
    display: grid;
    justify-items: start;
    gap: 12px;
    padding: 28px;
    background: #ffffff;
    border: 1px dashed rgba(236, 30, 36, .28);
    border-radius: 8px;
}

.team-empty strong,
.founder-empty strong {
    color: #06254b;
    font-size: 22px;
    font-weight: 950;
}

.team-empty span,
.founder-empty span {
    color: #667085;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.55;
}

.team-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
    padding: clamp(28px, 4vw, 46px);
    color: #ffffff;
    background: #06254b;
    border-radius: 8px;
}

.team-cta span,
.team-cta h2 {
    color: #ffffff;
}

.team-cta h2 {
    max-width: 760px;
    font-size: clamp(28px, 3.2vw, 48px);
}

.team-cta a {
    flex: 0 0 auto;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    color: var(--site-red);
    background: #ffffff;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.founder-hero {
    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(36px, 6vw, 96px);
    margin-bottom: 48px;
}

.founder-portrait {
    position: relative;
    min-height: clamp(480px, 42vw, 660px);
    overflow: hidden;
    background: #eef3f8;
    border-radius: 0 54px 0 54px;
    box-shadow: 0 28px 70px rgba(6, 37, 75, .14);
}

.founder-portrait::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 37, 75, .9) 100%);
}

.founder-portrait img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
}

.founder-portrait-caption {
    position: absolute;
    z-index: 1;
    left: 30px;
    right: 30px;
    bottom: 28px;
    color: #ffffff;
}

.founder-portrait-caption strong {
    display: block;
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 950;
    line-height: 1.12;
}

.founder-portrait-caption span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .2em;
    line-height: 1.35;
    text-transform: uppercase;
    opacity: .86;
}

.founder-copy {
    max-width: 850px;
}

.founder-copy h2 {
    font-size: clamp(38px, 4.8vw, 72px);
}

.founder-signature {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(16, 24, 40, .1);
}

.founder-signature strong {
    display: block;
    color: #06254b;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.1;
}

.founder-signature span {
    display: block;
    margin-top: 8px;
    color: #667085;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.founder-message-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 42px;
}

.founder-message-grid article {
    min-height: 230px;
    padding: 24px;
}

.founder-message-grid h3 {
    margin: 18px 0 10px;
    color: #06254b;
    font-size: 22px;
    font-weight: 950;
}

.founder-message-grid p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.6;
}

.founder-story {

    padding: clamp(26px, 4vw, 48px);
}

.founder-story h2 {
    font-size: clamp(30px, 3.4vw, 52px);
}

@media (max-width: 1100px) {

    .team-grid,
    .team-value-strip,
    .founder-message-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .founder-hero {
        grid-template-columns: 1fr;
    }

    .founder-portrait {
        max-width: 620px;
        width: 100%;
    }
}

@media (max-width: 760px) {

    .team-page,
    .founder-page {
        padding: 58px 0;
    }

    .team-grid,
    .team-value-strip,
    .founder-message-grid {
        grid-template-columns: 1fr;
    }

    .team-card-image {
        aspect-ratio: 1.18;
    }

    .team-cta {
        display: grid;
    }

    .team-cta a {
        justify-self: start;
    }

    .founder-portrait {
        min-height: 430px;
        border-radius: 0 34px 0 34px;
    }
}

.home-brand-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;


}


.home-brand-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(420px, .95fr);
    align-items: center;
    gap: clamp(32px, 2vw, 32px);
    padding-inline: clamp(22px, 5vw, 90px);
}

.home-brand-copy {
    max-width: 620px;
}

.home-brand-copy span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-brand-copy span::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--site-red);
    border-radius: 999px;
}

.home-brand-copy h2 {
    margin: 0;
    color: var(--site-text);
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.06;
}

.home-brand-copy p {
    max-width: 560px;
    margin: 20px 0 28px;
    color: #5f6b7c;
    font-size: clamp(16px, 1.18vw, 20px);
    font-weight: 600;
    line-height: 1.65;
}


.home-brand-wall {
    position: relative;
    height: 520px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    overflow: hidden;
    padding-inline: 4px;
    mask-image: linear-gradient(180deg, transparent, #000 13%, #000 87%, transparent);
}

.home-brand-lane {
    overflow: hidden;
}

.home-brand-stack {
    display: grid;
    gap: 18px;
    animation: brand-scroll-y 22s linear infinite;
}

.home-brand-lane.is-reverse .home-brand-stack {
    animation-name: brand-scroll-y-reverse;
}

.home-brand-wall:hover .home-brand-stack {
    animation-play-state: paused;
}

.home-brand-card {
    min-height: 148px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--site-text);
    background: #ffffff;

    border-radius: 14px;
    border: 1px solid rgb(230, 230, 230);
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-brand-card:hover {
    color: var(--site-red);
    border-color: rgba(236, 30, 36, .28);
    box-shadow: 0 18px 40px rgba(236, 30, 36, .12);
    transform: translateY(-4px);
}

.home-brand-card img {
    max-width: 130px;
    max-height: 58px;
    object-fit: contain;

    transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.home-brand-card:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

.home-brand-card span {
    color: #667085;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

@keyframes brand-scroll-y {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

@keyframes brand-scroll-y-reverse {
    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .home-brand-wrap {
        grid-template-columns: 1fr;
    }

    .home-brand-wall {
        height: 420px;
    }
}

@media (max-width: 620px) {
    .home-brand-copy h2 {
        font-size: 34px;
    }

    .home-brand-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        height: 390px;
        gap: 12px;
    }

    .home-brand-lane:nth-child(3) {
        display: none;
    }

    .home-brand-card {
        min-height: 120px;
        padding: 14px;
    }

    .home-brand-card img {
        max-width: 112px;
        max-height: 44px;
    }
}

.clients-page {
    padding: 80px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #fff7f8 100%);
}

.clients-page-head {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.clients-page-head .section-label {
    justify-content: center;
}

.clients-page-head h1 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.04;
}

.clients-page-head p {
    max-width: 680px;
    margin: 20px auto 0;
    color: #5f6b7c;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.75;
}

.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.clients-logo-card {
    min-height: 150px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    padding: 22px 18px;
    color: var(--site-text);
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.clients-logo-card:hover {
    color: var(--site-red);
    border-color: rgba(236, 30, 36, .26);
    box-shadow: 0 18px 42px rgba(236, 30, 36, .12);
    transform: translateY(-4px);
}

.clients-logo-card img {
    width: 100%;
    max-width: 138px;
    height: 70px;
    object-fit: contain;
    transition: transform .2s ease;
}

.clients-logo-card:hover img {
    transform: scale(1.04);
}

.clients-logo-card span {
    max-width: 100%;
    color: #667085;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.clients-logo-card:hover span {
    color: var(--site-red);
}

.clients-logo-grid .client-empty {
    grid-column: 1 / -1;
}

.contact-page {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #fff7f8 100%);
}

.contact-page::before {
    content: "";
    position: absolute;
    top: 70px;
    right: -120px;
    width: 340px;
    height: 340px;
    border: 48px solid rgba(236, 30, 36, .06);
    border-radius: 50%;
}

.contact-page .container {
    position: relative;
    z-index: 1;
}

.contact-page-head {
    max-width: 820px;
    margin-bottom: 34px;
}

.contact-page-head h1 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 900;
    line-height: 1.04;
}

.contact-page-head p {
    max-width: 720px;
    margin: 20px 0 0;
    color: #5f6b7c;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.72;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.contact-info-card {
    min-height: 132px;
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 24px;
    color: var(--site-text);
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-info-card:hover {
    color: var(--site-red);
    border-color: rgba(236, 30, 36, .28);
    box-shadow: 0 18px 42px rgba(236, 30, 36, .12);
    transform: translateY(-4px);
}

.contact-info-card i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 22px;
}

.contact-info-card span {
    color: #667085;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.contact-info-card strong {
    color: currentColor;
    font-size: clamp(16px, 1.35vw, 21px);
    font-weight: 900;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.contact-main-layout {
    display: grid;
    grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr);
    gap: 24px;
    align-items: stretch;
}

.contact-quick-panel,
.contact-form-card,
.contact-faq-strip {
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .08);
}

.contact-quick-panel {
    padding: clamp(28px, 3vw, 40px);
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(16, 24, 40, .94), rgba(87, 18, 24, .92)),
        url("/uploads/banners/1782288193-banner-6a3b8f41c5af12.63268793.jpg") center / cover no-repeat;
}

.contact-quick-panel .section-label {
    color: #ff7378;
}

.contact-quick-panel h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 900;
    line-height: 1.1;
}

.contact-quick-panel p {
    margin: 18px 0 30px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

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

.contact-quick-list div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 5px 14px;
    align-items: start;
    padding: 16px;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
}

.contact-quick-list i {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--site-red);
    background: #ffffff;
    border-radius: 8px;
    font-size: 23px;
}

.contact-quick-list strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}

.contact-quick-list span {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.contact-form-card {
    padding: clamp(26px, 3vw, 42px);
}

.contact-form-head {
    margin-bottom: 22px;
}

.contact-form-head h2 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.1;
}

.contact-alert,
.contact-error {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
}

.contact-alert {
    color: #067647;
    background: #ecfdf3;
    border: 1px solid #abefc6;
}

.contact-error {
    color: #b42318;
    background: #fef3f2;
    border: 1px solid #fecdca;
}

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

.contact-form-grid label {
    display: grid;
    gap: 8px;
    margin: 0;
}

.contact-form-grid label>span {
    color: #344054;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-form-grid em {
    color: var(--site-red);
    font-style: normal;
}

.contact-form-grid input,
.contact-form-grid textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    color: var(--site-text);
    background: #f9fafb;
    border: 1px solid rgba(16, 24, 40, .12);
    border-radius: 8px;
    outline: none;
    font: inherit;
    font-weight: 650;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

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

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
    background: #ffffff;
    border-color: rgba(236, 30, 36, .48);
    box-shadow: 0 0 0 4px rgba(236, 30, 36, .10);
}

.contact-form-grid small {
    color: #b42318;
    font-size: 12px;
    font-weight: 700;
}

.contact-email-field,
.contact-message-field {
    grid-column: 1 / -1;
}

.contact-submit-btn {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    padding: 14px 24px;
    color: #ffffff;
    background: var(--site-red);
    border: 0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-submit-btn:hover {
    background: #c9181e;
    box-shadow: 0 16px 30px rgba(236, 30, 36, .22);
    transform: translateY(-2px);
}

.contact-submit-btn i {
    font-size: 20px;
}

.contact-faq-strip {
    display: grid;
    grid-template-columns: minmax(260px, .6fr) minmax(0, 1fr);
    gap: 28px;
    margin-top: 24px;
    padding: clamp(24px, 3vw, 34px);
}

.contact-faq-strip h2 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.12;
}

.contact-faq-list {
    display: grid;
    gap: 10px;
}

.contact-faq-list details {
    padding: 16px 18px;
    background: #f9fafb;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
}

.contact-faq-list summary {
    color: var(--site-text);
    cursor: pointer;
    font-size: 15px;
    font-weight: 900;
}

.contact-faq-list details div {
    margin-top: 12px;
    color: #667085;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
}

.faq-page {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff7f8 100%);
}

.faq-page::before {
    content: "";
    position: absolute;
    top: 90px;
    left: -140px;
    width: 340px;
    height: 340px;
    border: 48px solid rgba(236, 30, 36, .06);
    border-radius: 50%;
}

.faq-page .container {
    position: relative;
    z-index: 1;
}

.faq-page-head {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.faq-page-head .section-label {
    justify-content: center;
}

.faq-page-head h1 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 900;
    line-height: 1.04;
}

.faq-page-head p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #5f6b7c;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.72;
}

.faq-page-layout {
    display: grid;
    grid-template-columns: minmax(300px, .62fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.faq-help-card {
    position: sticky;
    top: 98px;
    padding: clamp(28px, 3vw, 40px);
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(16, 24, 40, .94), rgba(87, 18, 24, .92)),
        url("/uploads/banners/1782288193-banner-6a3b8f41c5af12.63268793.jpg") center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .12);
}

.faq-help-card .section-label {
    color: #ff7378;
}

.faq-help-card strong {
    display: block;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.12;
}

.faq-help-card p {
    margin: 18px 0 26px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

.faq-help-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}

.faq-help-btn:hover {
    color: #ffffff;
    background: #c9181e;
    transform: translateY(-2px);
}

.faq-page-list {
    display: grid;
    gap: 14px;
}

.faq-page-list .faq-page-item {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}

.faq-page-list .accordion-button {
    min-height: 76px;
    gap: 16px;
    padding: 22px 26px;
    color: var(--site-text);
    background: #ffffff;
    border: 0;
    box-shadow: none;
    font-size: clamp(17px, 1.4vw, 21px);
    font-weight: 900;
    line-height: 1.35;
}

.faq-page-list .accordion-button span {
    padding-right: 12px;
}

.faq-page-list .accordion-button::after {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    margin-left: auto;
    background-color: #fff0f1;
    background-position: center;
    background-size: 16px;
    border-radius: 8px;
}

.faq-page-list .accordion-button:not(.collapsed) {
    color: #ffffff;
    background: var(--site-red);
}

.faq-page-list .accordion-button:not(.collapsed)::after {
    background-color: rgba(255, 255, 255, .18);
    filter: brightness(0) invert(1);
}

.faq-page-list .accordion-button:focus {
    box-shadow: 0 0 0 4px rgba(236, 30, 36, .12);
}

.faq-page-list .accordion-collapse {
    border: 0;
}

.faq-page-list .faq-page-answer {
    padding: 24px 26px 28px;
    color: #667085;
    background: #ffffff;
    border-top: 1px solid rgba(16, 24, 40, .08);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
}

.faq-page-list .faq-page-answer p:last-child {
    margin-bottom: 0;
}

.faq-page-list .client-empty {
    margin: 0;
}

.why-section {
    padding: 70px 0;
    background: white;
    position: relative;
    overflow: hidden;
}




.why-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.tag {
    display: inline-block;
    padding: 8px 18px;
    background: #fff;
    color: var(--site-red);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.why-left h2 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #111;
}

.why-left h2 span {
    color: var(--site-red);
}

.why-left p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 520px;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    transition: .3s;
}

.btn-more:hover {
    background: var(--site-red);
}

.why-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.why-right::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 10px;
    width: 2px;
    height: calc(100% - 20px);
    background: #e4e7eb;
}

.feature {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    position: relative;
}

.number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--site-red);
    color: var(--site-red);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.content {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    flex: 1;
    transition: .3s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
}

.content:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.content h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #111;
}

.content p {
    color: #666;
    line-height: 1.7;
}

.why-stats {
    margin-top: 90px;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(20px);
    border-radius: 22px;
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.why-stats h3 {
    font-size: 34px;
    color: var(--site-red);
    margin-bottom: 8px;
}

.why-stats span {
    color: #666;
    font-size: 15px;
}

@media(max-width:991px) {

    .why-header {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-left h2 {
        font-size: 38px;
    }

    .why-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

}

@media(max-width:576px) {

    .why-stats {
        grid-template-columns: 1fr;
    }

    .why-left h2 {
        font-size: 32px;
    }

    .content {
        padding: 22px;
    }

}

.blogs-page {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff7f8 100%);
}

.blogs-page::before {
    content: "";
    position: absolute;
    top: 80px;
    right: -130px;
    width: 340px;
    height: 340px;
    border: 48px solid rgba(236, 30, 36, .06);
    border-radius: 50%;
}

.blogs-page .container {
    position: relative;
    z-index: 1;
}

.blog-page-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    margin-bottom: 36px;
}

.blog-page-copy {
    max-width: 820px;
}

.blog-page-copy h1 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.04;
}

.blog-page-copy p {
    max-width: 720px;
    margin: 20px 0 0;
    color: #667085;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.72;
}

.blog-page-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}

.blog-page-stats div {
    min-height: 108px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 20px;
    border-right: 1px solid rgba(16, 24, 40, .08);
}

.blog-page-stats div:last-child {
    border-right: 0;
}

.blog-page-stats strong {
    color: var(--site-red);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.blog-page-stats span {
    color: #667085;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.blog-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
    overflow: hidden;
    margin-bottom: 28px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(16, 24, 40, .10);
}

.blog-feature-image,
.blog-list-image {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.blog-feature-image {
    min-height: 440px;
}

.blog-feature-image img,
.blog-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.blog-feature-card:hover .blog-feature-image img,
.blog-list-card:hover .blog-list-image img {
    transform: scale(1.05);
}

.blog-feature-image span,
.blog-list-image span {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 1;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 8px 12px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.blog-feature-content {
    display: grid;
    align-content: center;
    padding: clamp(30px, 4vw, 52px);
}

.blog-pill {
    width: fit-content;
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    color: var(--site-red);
    background: #fff0f1;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.blog-feature-content h2,
.blog-list-content h2 {
    margin: 0;
}

.blog-feature-content h2 a,
.blog-list-content h2 a {
    color: var(--site-text);
    text-decoration: none;
    transition: color .2s ease;
}

.blog-feature-content h2 a:hover,
.blog-list-content h2 a:hover {
    color: var(--site-red);
}

.blog-feature-content h2 {
    font-size: clamp(30px, 3.4vw, 48px);
    font-weight: 900;
    line-height: 1.08;
}

.blog-feature-content p,
.blog-list-content p {
    color: #667085;
    font-weight: 600;
    line-height: 1.65;
}

.blog-feature-content p {
    margin: 18px 0 20px;
    font-size: 16px;
}

.blog-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #667085;
    font-size: 13px;
    font-weight: 800;
}

.blog-list-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-list-meta i {
    color: var(--site-red);
    font-size: 16px;
}

.blog-read-btn {
    width: fit-content;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 10px 16px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}

.blog-read-btn:hover {
    color: #ffffff;
    background: #c9181e;
    transform: translateY(-2px);
}

.blog-page-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .32fr);
    gap: 24px;
    align-items: start;
}

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

.blog-list-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.blog-list-card:hover {
    border-color: rgba(236, 30, 36, .22);
    box-shadow: 0 20px 44px rgba(16, 24, 40, .12);
    transform: translateY(-4px);
}

.blog-list-image {
    height: 230px;
}

.blog-list-content {
    padding: 24px;
}

.blog-list-content h2 {
    margin-top: 14px;
    font-size: clamp(21px, 1.7vw, 28px);
    font-weight: 900;
    line-height: 1.18;
}

.blog-list-content p {
    margin: 12px 0 0;
    font-size: 15px;
}

.blog-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.blog-sidebar-panel {
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}

.blog-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-category-list span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 8px 11px;
    color: #06254b;
    background: #f9fafb;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
}

.blog-sidebar-panel.is-dark {
    color: #ffffff;
    background: #06254b;
}

.blog-sidebar-panel.is-dark span {
    color: #ff7378;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.blog-sidebar-panel.is-dark strong {
    display: block;
    margin: 12px 0 20px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.15;
}

.blog-sidebar-panel.is-dark a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.blog-empty {
    grid-column: 1 / -1;
    min-height: 240px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 34px;
    color: #667085;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}

.blog-empty i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 26px;
}

.blog-empty strong {
    color: var(--site-text);
    font-size: 22px;
    font-weight: 900;
}

@media (max-width: 620px) {
    .clients-page {
        padding: 58px 0;
    }

    .clients-page-head {
        margin-bottom: 30px;
        text-align: left;
    }

    .clients-page-head .section-label {
        justify-content: flex-start;
    }

    .clients-page-head h1 {
        font-size: 36px;
    }

    .clients-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .clients-logo-card {
        min-height: 126px;
        padding: 18px 12px;
    }

    .clients-logo-card img {
        max-width: 108px;
        height: 52px;
    }
}

@media (max-width: 980px) {

    .contact-info-grid,
    .contact-main-layout,
    .contact-faq-strip,
    .faq-page-layout,
    .why-choose-intro,
    .why-choose-experience,
    .blog-page-head,
    .blog-feature-card,
    .blog-page-body {
        grid-template-columns: 1fr;
    }

    .faq-help-card,
    .why-choose-command,
    .blog-sidebar {
        position: relative;
        top: 0;
    }

    .why-choose-command {
        min-height: auto;
    }

    .blog-list-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .contact-page {
        padding: 58px 0;
    }

    .contact-page-head {
        margin-bottom: 26px;
    }

    .contact-page-head h1 {
        font-size: 38px;
    }

    .contact-page-head p {
        font-size: 16px;
    }

    .contact-info-grid {
        gap: 12px;
    }

    .contact-info-card {
        min-height: 116px;
        padding: 20px;
    }

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

    .contact-submit-btn {
        width: 100%;
    }

    .faq-page {
        padding: 58px 0;
    }

    .faq-page-head {
        margin-bottom: 30px;
        text-align: left;
    }

    .faq-page-head .section-label {
        justify-content: flex-start;
    }

    .faq-page-head h1 {
        font-size: 38px;
    }

    .faq-page-head p {
        font-size: 16px;
    }

    .faq-page-list .accordion-button {
        min-height: 66px;
        padding: 18px;
    }

    .faq-page-list .faq-page-answer {
        padding: 20px 18px 22px;
        font-size: 15px;
    }

    .why-choose-section {
        padding: 48px 0;
    }

    .why-choose-intro {
        margin-bottom: 30px;
    }

    .why-choose-intro h2 {
        font-size: 30px;
    }

    .why-choose-intro p {
        font-size: 14px;
    }

    .why-command-flow {
        grid-template-columns: 1fr;
    }

    .why-command-flow i {
        width: 1px;
        height: 18px;
        justify-self: center;
        background: linear-gradient(180deg, rgba(255, 255, 255, .70), transparent);
    }

    .why-point {
        grid-template-columns: 44px 1fr;
        gap: 12px;
        min-height: auto;
        padding: 14px 16px;
    }

    .why-point-index {
        display: none;
    }

    .why-point-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .why-point h3 {
        font-size: 17px;
    }

    .why-point p {
        font-size: 12px;
        line-height: 1.45;
    }

    .why-point:hover {
        transform: translateY(-4px);
    }

    .why-choose-metrics {
        grid-template-columns: 1fr;
    }

    .why-choose-metrics div {
        min-height: 76px;
        padding: 16px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .why-choose-metrics div:last-child {
        border-bottom: 0;
    }

    .blogs-page {
        padding: 58px 0;
    }

    .blog-page-copy h1 {
        font-size: 34px;
    }

    .blog-page-copy p {
        font-size: 15px;
    }

    .blog-page-stats {
        grid-template-columns: 1fr;
    }

    .blog-page-stats div {
        min-height: 86px;
        border-right: 0;
        border-bottom: 1px solid rgba(16, 24, 40, .08);
    }

    .blog-page-stats div:last-child {
        border-bottom: 0;
    }

    .blog-feature-image {
        min-height: 260px;
    }

    .blog-feature-content {
        padding: 26px 20px;
    }

    .blog-feature-content h2 {
        font-size: 28px;
    }

    .blog-list-image {
        height: 210px;
    }

    .blog-list-content {
        padding: 20px;
    }
}

.home-achievement-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;
    color: #ffffff;
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 76, 140, .56), transparent 34%),
        linear-gradient(135deg, #061120 0%, #062749 48%, #073d76 100%);
}

.home-achievement-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .12), transparent 42%),
        radial-gradient(circle at 18% 88%, rgba(236, 30, 36, .10), transparent 32%);
    pointer-events: none;
}

.home-achievement-wrap {
    position: relative;
    z-index: 1;
    padding-inline: clamp(22px, 5vw, 90px);
}

.home-achievement-head {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr);
    align-items: end;
    gap: clamp(34px, 6vw, 110px);
    margin-bottom: clamp(44px, 5vw, 72px);
}

.home-achievement-head span {
    display: inline-flex;
    margin-bottom: 22px;
    color: #ff4850;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .26em;
    text-transform: uppercase;
}

.home-achievement-head h2 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.home-achievement-head h2 span {
    display: inline;
    margin: 0;
    color: #ff4850;
    font-size: inherit;
    letter-spacing: 0;
}

.home-achievement-head p {
    max-width: 620px;
    margin: 0;
    color: rgba(242, 242, 242, 0.72);
    font-size: 17px;

    line-height: 1.55;
}

.home-achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    background: rgba(4, 10, 22, .86);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 22px;
}

.home-achievement-card {
    min-height: 200px;
    display: grid;
    align-content: center;
    gap: 18px;
    padding: clamp(26px, 3vw, 48px);
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.home-achievement-card:last-child {
    border-right: 0;
}

.home-achievement-card strong {
    display: block;
    color: #ffffff;
    font-size: 3.4rem;
    font-weight: 900;
    line-height: .9;
}

.home-achievement-card strong span {
    color: #ff4850;
}

.home-achievement-card p {
    max-width: 210px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: clamp(12px, .9vw, 15px);
    font-weight: 900;
    letter-spacing: .28em;
    line-height: 1.45;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .home-achievement-head {
        grid-template-columns: 1fr;
    }

    .home-achievement-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-achievement-card:nth-child(3n) {
        border-right: 0;
    }
}

@media (max-width: 720px) {
    .home-achievement-section {
        padding:30px 0;
    }

    .home-achievement-head h2 {
        font-size: 38px;
    }

    .home-achievement-head p {
        font-size: 16px;
    }

    .home-achievement-grid {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .home-achievement-card,
    .home-achievement-card:nth-child(3n) {
        min-height: 150px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .home-achievement-card:last-child {
        border-bottom: 0;
    }
}

.home-service-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;
    background: #ffffff;
}

.home-service-wrap {
    padding-inline: clamp(22px, 5vw, 90px);
}

.home-service-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    align-items: end;
    gap: clamp(34px, 6vw, 110px);
    margin-bottom: clamp(42px, 5vw, 72px);
}

.home-service-head span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .26em;
    text-transform: uppercase;
}

.home-service-head h2 {
    max-width: 760px;
    margin: 0;
    color: #06254b;
    font-size: clamp(42px, 3.4vw, 42px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.home-service-head p {
    max-width: 620px;
    margin: 0;
    color: #5f6b7c;
    font-size: 17px;

    line-height: 1.55;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.home-service-card {
    position: relative;
    min-height: 260px;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 34px 30px;
    color: #06254b;
    background: #ffffff;
    border: 1px solid #e5ebf3;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(16, 24, 40, .03);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    opacity: 0;
    background: linear-gradient(90deg, #06254b, var(--site-red));
    border-radius: 14px 14px 0 0;
    transition: opacity .2s ease;
}

.home-service-card:hover,
.home-service-card.is-featured {
    color: #06254b;
    border-color: rgba(236, 30, 36, .18);
    box-shadow: 0 24px 48px rgba(16, 24, 40, .12);
    transform: translateY(-4px);
}

.home-service-card:hover::before,
.home-service-card.is-featured::before {
    opacity: 1;
}

.home-service-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #a5adba;
    font-size: 22px;
    transition: color .2s ease, transform .2s ease;
}

.home-service-card:hover .home-service-arrow,
.home-service-card.is-featured .home-service-arrow {
    color: var(--site-red);
    transform: translate(3px, -3px);
}

.home-service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #06254b;
    background: #f6f8fb;
    border-radius: 14px;
    font-size: 27px;
    transition: color .2s ease, background .2s ease;
}

.home-service-card:hover .home-service-icon,
.home-service-card.is-featured .home-service-icon {
    color: #ffffff;
    background: #06254b;
}

.home-service-card strong {
    display: block;
    margin-top: 10px;
    color: #06254b;
    font-size: clamp(20px, 1.45vw, 25px);
    font-weight: 900;
    line-height: 1.18;
}

.home-service-card p {
    margin: 0;
    color: #667085;
    font-size: clamp(14px, 1vw, 17px);
    font-weight: 600;
    line-height: 1.55;
}

.home-service-link {
    align-self: end;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
    color: #06254b;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.home-service-link i {
    width: 28px;
    height: 1px;
    background: currentColor;
}

.home-service-card:hover .home-service-link,
.home-service-card.is-featured .home-service-link {
    color: var(--site-red);
}

.services-page-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #fff7f8 100%);
}

.services-page-head {
    margin-bottom: 28px;
}

.service-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.service-category-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    color: #06254b;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, .05);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.service-category-nav a:hover {
    color: var(--site-red);
    border-color: rgba(236, 30, 36, .26);
    transform: translateY(-2px);
}

.service-category-list {
    display: grid;
    gap: 42px;
}

.service-category-block {
    scroll-margin-top: calc(var(--site-header-height) + 24px);
}

.service-category-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.service-category-head h2 {
    margin: 0;
    color: #06254b;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.1;
}

.service-category-head .section-label {
    margin-bottom: 8px;
}

.service-empty {
    min-height: 240px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 34px;
    color: #667085;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}

.service-empty i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 26px;
}

.service-empty strong {
    color: var(--site-text);
    font-size: 22px;
    font-weight: 900;
}

.gallery-page {
    overflow: hidden;
    padding: 76px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #fff7f8 42%, #f7f9fc 100%);
}

.gallery-page-wrap {
    padding-inline: clamp(18px, 5vw, 90px);
}

.gallery-page-head {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .62fr);
    align-items: end;
    gap: clamp(24px, 5vw, 76px);
    margin-bottom: 30px;
}

.gallery-page-head span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--site-red);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.gallery-page-head h2 {
    margin: 0;
    color: #06254b;
    font-size: clamp(36px, 4.6vw, 66px);
    font-weight: 950;
    line-height: 1.04;
}

.gallery-page-head p {
    margin: 0;
    color: #586678;
    font-size: 17px;
    font-weight: 650;
    line-height: 1.68;
}

.gallery-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.gallery-filter-bar button {
    min-height: 38px;
    padding: 10px 18px;
    color: var(--site-red);
    background: #ffffff;
    border: 1px solid #dde5ef;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(16, 24, 40, .04);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.gallery-filter-bar button:hover,
.gallery-filter-bar button.is-active {
    color: #ffffff;
    background: var(--site-red);
    border-color: var(--site-red);
    transform: translateY(-1px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 18px;
}

.gallery-card {
    min-height: 300px;
    margin: 0;
    overflow: hidden;
    background: #06254b;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(6, 37, 75, .12);
}

.gallery-card.is-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 620px;
}

.gallery-card.is-hidden {
    display: none;
}

.gallery-card a {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    color: #ffffff;
    text-decoration: none;
}

.gallery-card a::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 37, 75, .04) 0%, rgba(6, 37, 75, .22) 42%, rgba(2, 18, 38, .92) 100%);
    opacity: .92;
    transition: opacity .25s ease, background .25s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .55s ease, filter .25s ease;
}

.gallery-card:hover img {
    filter: saturate(1.08);
    transform: scale(1.08);
}

.gallery-card figcaption {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 8px;
}

.gallery-card figcaption small {
    justify-self: start;
    max-width: 100%;
    padding: 7px 10px;
    color: #06254b;
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .14em;
    line-height: 1;
    text-transform: uppercase;
}

.gallery-card figcaption span {
    padding-right: 46px;
    color: #ffffff;
    font-size: clamp(18px, 1.45vw, 24px);
    font-weight: 950;
    line-height: 1.15;
}

.gallery-card figcaption i {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    font-size: 18px;
    transition: background .2s ease, transform .2s ease;
}

.gallery-card:hover figcaption i {
    background: var(--site-red);
    transform: translate(3px, -3px);
}

.gallery-empty {
    grid-column: 1 / -1;
}

body.gallery-lock {
    overflow: hidden;
}

.gallery-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: clamp(18px, 5vw, 70px);
    visibility: hidden;
    opacity: 0;
    background: rgba(2, 8, 18, .92);
    transition: opacity .2s ease, visibility .2s ease;
}

.gallery-fullscreen.active {
    visibility: visible;
    opacity: 1;
}

.gallery-fullscreen img {
    max-width: min(1120px, 100%);
    max-height: 78vh;
    display: block;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

.gallery-fullscreen-title {
    max-width: min(900px, 100%);
    margin-top: 18px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 850;
    text-align: center;
}

.gallery-fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    font-size: 22px;
}

@media (max-width: 1100px) {
    .gallery-page-head {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .gallery-page {
        padding: 58px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-card,
    .gallery-card.is-large {
        grid-column: auto;
        grid-row: auto;
        min-height: 340px;
    }

    .gallery-filter-bar button {
        min-height: 36px;
        padding: 9px 14px;
        font-size: 11px;
    }
}

.service-detail-full {
    overflow: hidden;
    padding: 72px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #fff7f8 48%, #f7f9fc 100%);
}

.service-detail-wrap {
    padding-inline: clamp(18px, 5vw, 90px);
}

.service-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
    align-items: center;
    gap: clamp(30px, 5vw, 76px);
    margin-bottom: 56px;
}

.service-detail-hero-copy>span,
.service-detail-card>span,
.service-section-head span,
.service-inquiry-card>span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--site-red);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.service-detail-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 31px;
    box-shadow: 0 16px 34px rgba(236, 30, 36, .22);
}

.service-detail-hero-copy h2,
.service-detail-card h2,
.service-section-head h2 {
    margin: 0;
    color: #06254b;
    font-size: clamp(36px, 4.6vw, 66px);
    font-weight: 950;
    line-height: 1.04;
}

.service-detail-hero-copy p {
    max-width: 720px;
    margin: 20px 0 0;
    color: #586678;
    font-size: 18px;
    font-weight: 650;
    line-height: 1.68;
}

.service-detail-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.service-detail-hero-actions a:first-child,
.service-inquiry-card a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(236, 30, 36, .22);
}

.service-detail-hero-actions a:last-child {
    color: var(--site-red);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.service-detail-hero-media {
    position: relative;
    overflow: hidden;
    background: #e9eef6;
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(6, 37, 75, .16);
}

.service-detail-hero-media img {
    width: 100%;
    min-height: clamp(420px, 42vw, 620px);
    display: block;
    object-fit: cover;
}

.service-detail-media-note {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    max-width: 430px;
    padding: 20px;
    color: #ffffff;
    background: rgba(6, 37, 75, .88);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    backdrop-filter: blur(12px);
}

.service-detail-media-note strong {
    display: block;
    font-size: 20px;
    font-weight: 950;
}

.service-detail-media-note span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    align-items: start;
    gap: clamp(28px, 4vw, 56px);
}

.service-detail-main,
.service-detail-side {
    display: grid;
    gap: 24px;
}

.service-detail-card,
.service-process-card,
.service-info-card,
.service-inquiry-card,
.service-related-card,
.service-highlight-grid article {
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(16, 24, 40, .06);
}

.service-detail-card,
.service-process-card,
.service-info-card,
.service-inquiry-card,
.service-related-card {
    padding: clamp(24px, 3vw, 36px);
}

.service-detail-card h2,
.service-section-head h2 {
    font-size: clamp(28px, 3vw, 44px);
}

.service-detail-overview div,
.service-detail-overview p {
    margin-top: 18px;
    color: #586678;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
}

.service-detail-overview p,
.service-detail-overview ul,
.service-detail-overview ol {
    margin-bottom: 16px;
}

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

.service-highlight-grid article {
    min-height: 230px;
    padding: 24px;
}

.service-highlight-grid i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 24px;
}

.service-highlight-grid h3,
.service-process-grid h3,
.service-info-card h3,
.service-related-card h3 {
    margin: 18px 0 10px;
    color: #06254b;
    font-size: 21px;
    font-weight: 950;
    line-height: 1.2;
}

.service-highlight-grid p,
.service-process-grid p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.6;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.service-process-grid article {
    padding: 22px;
    background: #f8fafc;
    border: 1px solid rgba(16, 24, 40, .07);
    border-radius: 8px;
}

.service-process-grid article>span {
    color: rgba(236, 30, 36, .18);
    font-size: 46px;
    font-weight: 950;
    line-height: 1;
}

.service-info-card h3,
.service-related-card h3 {
    margin-top: 0;
}

.service-info-card dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.service-info-card dl div {
    padding-bottom: 14px;
    border-bottom: 1px solid #edf1f6;
}

.service-info-card dt {
    margin-bottom: 4px;
    color: #8993a3;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.service-info-card dd {
    margin: 0;
    color: #06254b;
    font-size: 15px;
    font-weight: 850;
}

.service-inquiry-card {
    color: #ffffff;
    background: #06254b;
}

.service-inquiry-card>span {
    color: #ffffff;
}

.service-inquiry-card strong {
    display: block;
    color: #ffffff;
    font-size: 25px;
    font-weight: 950;
    line-height: 1.18;
}

.service-inquiry-card p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.55;
}

.service-inquiry-card a {
    margin-top: 22px;
    background: #ffffff;
    color: var(--site-red);
    box-shadow: none;
}

.service-related-list {
    display: grid;
    gap: 8px;
}

.service-related-list a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    color: #06254b;
    background: #f8fafc;
    border: 1px solid rgba(16, 24, 40, .06);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}

.service-related-list a:hover {
    color: var(--site-red);
    background: #fff0f1;
}

.service-related-list p {
    margin: 0;
    color: #667085;
}

@media (max-width: 1100px) {

    .service-detail-hero,
    .service-detail-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .service-detail-full {
        padding: 58px 0;
    }

    .service-detail-hero {
        gap: 24px;
        margin-bottom: 36px;
    }

    .service-detail-hero-media img {
        min-height: 340px;
    }

    .service-detail-media-note {
        position: static;
        max-width: none;
        border-radius: 0;
    }

    .service-highlight-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1180px) {
    .home-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-service-head {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 620px) {
    .home-service-section {
        padding: 30px 0;
    }

    .home-service-head h2 {
        font-size: 36px;
    }

    .home-service-head p {
        font-size: 16px;
    }

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

    .home-service-card {
        min-height: 230px;
        padding: 28px 24px;
    }

    .service-category-nav {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-category-head {
        display: grid;
        align-items: start;
    }
}

.home-founder-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;
    background:
        radial-gradient(circle at 6% 16%, rgba(236, 30, 36, .08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.home-founder-wrap {
    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(44px, 6vw, 110px);
    padding-inline: clamp(22px, 5vw, 90px);
}

.home-founder-media {
    position: relative;
    min-height: clamp(460px, 42vw, 650px);
    overflow: hidden;
    border-radius: 0 54px 0 54px;
    background: #f4f7fb;
    box-shadow: 0 28px 70px rgba(6, 37, 75, .14);
}

.home-founder-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 37, 75, .88) 100%);
}

.home-founder-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
}

.home-founder-quote-icon {
    position: absolute;
    z-index: 2;
    top: -28px;
    left: -26px;
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border: 10px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(236, 30, 36, .24);
    font-size: 42px;
}

.home-founder-name {
    position: absolute;
    z-index: 2;
    left: 32px;
    right: 32px;
    bottom: 30px;
    color: #ffffff;
}

.home-founder-name strong {
    display: block;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 900;
    line-height: 1.15;
}

.home-founder-name span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .86;
}

.home-founder-content {
    max-width: 850px;
}

.home-founder-kicker {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.home-founder-content h2 {
    margin: 0;
    color: #06254b;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: 0;
}

.home-founder-content h2 span {
    color: var(--site-red);

    font-size: 3.4rem;
    font-weight: 700;
}

.home-founder-content>p,
.home-founder-description {
    max-width: 760px;
    margin: 28px 0 38px;
    color: #5f6b7c;
    font-size: clamp(17px, 1.25vw, 22px);
    font-weight: 600;
    line-height: 1.7;
}

.home-founder-description p {
    margin: 0 0 16px;
}

.home-founder-description p:last-child {
    margin-bottom: 0;
}

.home-founder-timeline {
    position: relative;
    display: grid;
    gap: 26px;
    margin: 0 0 38px;
    padding-left: 34px;
}

.home-founder-timeline::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 7px;
    border-left: 2px dashed #d6deea;
}

.home-founder-timeline article {
    position: relative;
}

.home-founder-timeline article::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -34px;
    width: 14px;
    height: 14px;
    background: #06254b;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #d6deea;
}

.home-founder-timeline strong {
    display: block;
    color: #06254b;
    font-size: clamp(24px, 2.1vw, 34px);
    font-weight: 950;
    line-height: 1;
}

.home-founder-timeline span {
    display: block;
    margin-top: 10px;
    color: #657286;
    font-size: clamp(15px, 1vw, 18px);
    font-weight: 600;
    line-height: 1.45;
}

.home-founder-sign {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    text-align: left;
    gap: 0px;
    flex-direction: column;
}

.home-founder-sign strong {
    color: #06254b;

    font-size: clamp(30px, 3vw, 46px);
    font-weight: 500;
}

.home-founder-sign span {
    color: #667085;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 1050px) {
    .home-founder-wrap {
        grid-template-columns: 1fr;
    }

    .home-founder-media {
        max-width: 620px;
        width: 100%;
        margin-inline: auto;
    }
}

@media (max-width: 620px) {
    .home-founder-section {
        padding: 30px 0;
    }

    .home-founder-wrap {
        gap: 34px;
    }

    .home-founder-media {
        min-height: 430px;
        border-radius: 0 34px 0 34px;
    }

    .home-founder-quote-icon {
        top: -18px;
        left: -12px;
        width: 76px;
        height: 76px;
        border-width: 8px;
        font-size: 34px;
    }

    .home-founder-content h2 {
        font-size: 36px;
    }

    .home-founder-content>p {
        margin: 22px 0 30px;
        font-size: 16px;
    }
}

.home-project-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;
    background: #f7f9fc;
}

.home-project-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 240px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.home-project-wrap {
    position: relative;
    z-index: 1;
    padding-inline: clamp(18px, 5vw, 90px);
}

.home-project-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    align-items: end;
    gap: clamp(30px, 6vw, 100px);
    margin-bottom: 34px;
}

.home-project-head span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.home-project-head h2 {
    max-width: 780px;
    margin: 0;
    color: #06254b;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.home-project-head h2 span {
    display: inline;
    margin: 0;
    color: var(--site-red);
    font-size: inherit;
    letter-spacing: 0;
}

.home-project-head p {
    max-width: 620px;
    margin: 0;
    color: #5f6b7c;
    font-size: 17px;

    line-height: 1.55;
}

.home-project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(32px, 4vw, 54px);
}

.home-project-filters button {
    min-height: 38px;
    padding: 10px 20px;
    color: var(--site-red);
    background: #ffffff;
    border: 1px solid #dde5ef;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(16, 24, 40, .04);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .16em;
    line-height: 1;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.home-project-filters button:hover,
.home-project-filters button.is-active {
    color: #ffffff;
    background: var(--site-red);
    border-color: var(--site-red);
    transform: translateY(-1px);
}

.home-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 22px;
}

.home-project-card {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    display: block;
    color: #ffffff;
    background: #06254b;
    border-radius: 16px;
    box-shadow: 0 24px 54px rgba(6, 37, 75, .14);
    text-decoration: none;
    transform: translateY(0);
    transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}

.home-project-card:nth-child(3n + 1),
.home-project-card.is-large {
    min-height: 430px;
}

.home-project-card:nth-child(4n) {
    min-height: 380px;
}

.home-project-card.is-hidden {
    display: none;
}

.home-project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 37, 75, .05) 0%, rgba(6, 37, 75, .34) 44%, rgba(2, 18, 38, .92) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 48%);
    transition: background .25s ease;
}

.home-project-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .5s ease, filter .25s ease;
}

.home-project-card:hover {
    color: #ffffff;
    box-shadow: 0 30px 70px rgba(6, 37, 75, .22);
    transform: translateY(-5px);
}

.home-project-card:hover img {
    filter: saturate(1.08);
    transform: scale(1.08);
}

.home-project-card:hover::after {
    background:
        linear-gradient(180deg, rgba(6, 37, 75, .02) 0%, rgba(6, 37, 75, .22) 40%, rgba(2, 18, 38, .94) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 54%);
}

.home-project-badge {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
    max-width: calc(100% - 40px);
    padding: 8px 14px;
    color: #06254b;
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .16em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-project-card-copy {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 54px;
    bottom: 20px;
}

.home-project-card-copy strong {
    display: block;
    color: #ffffff;
    font-size: clamp(19px, 1.55vw, 26px);
    font-weight: 950;
    line-height: 1.14;
}

.home-project-card-copy p {
    max-width: 520px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.home-project-card>i {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 20px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    font-size: 18px;
    transition: background .2s ease, transform .2s ease;
}

.home-project-card:hover>i {
    background: var(--site-red);
    transform: translate(3px, -3px);
}

@media (max-width: 1100px) {
    .home-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-project-head {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .home-project-section {
        padding: 30px 0;
    }

    .home-project-head h2 {
        font-size: 38px;
    }

    .home-project-head p {
        font-size: 16px;
    }

    .home-project-filters {
        gap: 8px;
    }

    .home-project-filters button {
        min-height: 36px;
        padding: 9px 14px;
        font-size: 11px;
    }

    .home-project-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-project-card,
    .home-project-card:nth-child(3n + 1),
    .home-project-card:nth-child(4n),
    .home-project-card.is-large {
        min-height: 340px;
    }
}

.portfolio-page-section,
.portfolio-detail-section {
    padding: 72px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.portfolio-page-wrap,
.portfolio-detail-wrap {
    padding-inline: clamp(18px, 5vw, 90px);
}

.portfolio-page-head {
    max-width: 900px;
    margin-bottom: 34px;
}

.portfolio-page-head span,
.portfolio-section-title span,
.portfolio-detail-copy span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--site-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.portfolio-page-head h2,
.portfolio-section-title h2,
.portfolio-detail-copy h2 {
    margin: 0;
    color: #06254b;
    font-size: clamp(36px, 4.4vw, 62px);
    font-weight: 850;
    line-height: 1.05;
}

.portfolio-page-head p,
.portfolio-detail-copy p {
    max-width: 720px;
    margin: 18px 0 0;
    color: #5f6b7c;
    font-size: 17px;
    line-height: 1.6;
}

.portfolio-page-grid .service-empty {
    grid-column: 1 / -1;
}

.portfolio-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    margin-bottom: 52px;
}

.portfolio-detail-media {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(6, 37, 75, .16);
}

.portfolio-detail-media img {
    width: 100%;
    aspect-ratio: 1.28;
    display: block;
    object-fit: cover;
}

.portfolio-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
    align-items: start;
    gap: clamp(28px, 4vw, 56px);
}

.portfolio-detail-main,
.portfolio-detail-side {
    display: grid;
    gap: 26px;
}

.portfolio-detail-content,
.portfolio-gallery,
.portfolio-facts,
.service-appointment-box {
    padding: clamp(24px, 3vw, 34px);
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(16, 24, 40, .06);
}

.portfolio-detail-content h2,
.portfolio-gallery h2,
.portfolio-facts h3 {
    margin: 0 0 18px;
    color: #06254b;
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 900;
    line-height: 1.15;
}

.portfolio-detail-content div {
    color: #536173;
    font-size: 16px;
    line-height: 1.75;
}

.portfolio-detail-content p,
.portfolio-detail-content ul,
.portfolio-detail-content ol {
    margin-bottom: 16px;
}

.portfolio-gallery>div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.portfolio-gallery img {
    width: 100%;
    aspect-ratio: 1.18;
    display: block;
    object-fit: cover;
    border-radius: 7px;
}

.portfolio-facts dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.portfolio-facts dl div {
    padding-bottom: 14px;
    border-bottom: 1px solid #edf1f6;
}

.portfolio-facts dt {
    margin-bottom: 4px;
    color: #8993a3;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.portfolio-facts dd {
    margin: 0;
    color: #06254b;
    font-size: 15px;
    font-weight: 850;
}

.portfolio-facts>a,
.service-appointment-box a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 11px 16px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.service-appointment-box strong {
    display: block;
    color: #06254b;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

.related-portfolio {
    margin-top: 64px;
}

.related-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.related-portfolio-grid a {
    overflow: hidden;
    display: grid;
    color: #06254b;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(16, 24, 40, .06);
}

.related-portfolio-grid img {
    width: 100%;
    aspect-ratio: 1.55;
    object-fit: cover;
}

.related-portfolio-grid span {
    margin: 16px 18px 6px;
    color: var(--site-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.related-portfolio-grid strong {
    margin: 0 18px 18px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
}

@media (max-width: 980px) {

    .portfolio-detail-hero,
    .portfolio-detail-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 620px) {

    .portfolio-page-section,
    .portfolio-detail-section {
        padding: 56px 0;
    }

    .portfolio-gallery>div,
    .related-portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.home-review-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;
    color: #ffffff;
    background:
        radial-gradient(circle at 72% 16%, rgba(236, 30, 36, .16), transparent 28%),
        radial-gradient(circle at 88% 58%, rgba(93, 63, 211, .22), transparent 34%),
        linear-gradient(135deg, #061120 0%, #06284a 48%, #161b3b 100%);
}

.home-review-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .16), transparent 46%),
        radial-gradient(circle at 18% 74%, rgba(0, 102, 180, .12), transparent 34%);
    pointer-events: none;
}

.home-review-wrap {
    position: relative;
    z-index: 1;
    max-width: 980px;
    padding-inline: clamp(18px, 5vw, 90px);
}

.home-review-head {
    margin-bottom: clamp(34px, 5vw, 58px);
    text-align: center;
}

.home-review-head span {
    display: inline-flex;
    margin-bottom: 18px;
    color: #ff4850;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.home-review-head h2 {
    margin: 0;
    color: #ffffff;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.home-review-head h2 span {
    display: inline;
    margin: 0;
    color: #ff4850;
    font-size: inherit;
    letter-spacing: 0;
}

.home-review-carousel {
    padding-bottom: 72px;
}

.home-review-carousel .owl-stage-outer {
    overflow: visible;
}

.home-review-card {
    min-height: clamp(330px, 28vw, 430px);
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 24px;
    padding: clamp(42px, 5vw, 72px);
    color: #ffffff;
    background: rgba(3, 19, 43, .72);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 28px 70px rgba(0, 0, 0, .18);
    text-align: center;
    backdrop-filter: blur(10px);
}

.home-review-quote {
    color: #ff4850;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1;
}

.home-review-card blockquote {
    max-width: 780px;
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
}

.home-review-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: rgba(255, 255, 255, .26);
    font-size: 18px;
}

.home-review-stars .is-active {
    color: #ff4850;
}

.home-review-author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.home-review-author img {
    width: 58px !important;
    height: 58px !important;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
}

.home-review-author strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.1;
}

.home-review-author span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
    font-weight: 600;
}

.home-review-author b {
    color: #ff4850;
    font-weight: 900;
}

.home-review-carousel.owl-theme .owl-nav,
.home-review-carousel .owl-nav {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 116px !important;
    margin: 0;
    transform: translateX(-50%);
    background: transparent !important;
}

.home-review-carousel.owl-carousel .owl-nav button.owl-prev,
.home-review-carousel.owl-carousel .owl-nav button.owl-next {
    width: 42px !important;
    height: 42px !important;
    display: grid;
    place-items: center;
    margin: 0;
    color: #ffffff !important;
    background: rgba(3, 19, 43, .62) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 50%;
    font-size: 19px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.home-review-carousel.owl-carousel .owl-nav button:hover {
    background: var(--site-red) !important;
    border-color: var(--site-red) !important;
    transform: translateY(-2px);
}

.home-review-carousel.owl-theme .owl-dots,
.home-review-carousel .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(-50%);
}

.home-review-carousel.owl-theme .owl-dots .owl-dot span {
    width: 11px;
    height: 6px;
    margin: 0;
    background: rgba(255, 255, 255, .32);
    border-radius: 999px;
    transition: width .2s ease, background .2s ease;
}

.home-review-carousel.owl-theme .owl-dots .owl-dot.active span {
    width: 34px;
    background: #ff4850;
}

@media (max-width: 760px) {
    .home-review-section {
        padding: 30px 0;
    }

    .home-review-head h2 {
        font-size: 38px;
    }

    .home-review-card {
        min-height: 360px;
        padding: 34px 22px;
        border-radius: 16px;
    }

    .home-review-card blockquote {
        font-size: 24px;
    }

    .home-review-carousel .owl-nav {
        gap: 98px !important;
    }
}

.reviews-page {
    overflow: hidden;
    padding: 76px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #fff7f8 44%, #f7f9fc 100%);
}

.reviews-page-wrap {
    padding-inline: clamp(18px, 5vw, 90px);
}

.reviews-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    align-items: end;
    gap: clamp(28px, 5vw, 76px);
    margin-bottom: 36px;
}

.reviews-page-copy>span,
.reviews-score-panel>span,
.reviews-cta span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--site-red);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.reviews-page-copy h2,
.reviews-cta h2 {
    max-width: 900px;
    margin: 0;
    color: #06254b;
    font-size: clamp(30px, 3.6vw, 50px);
    font-weight: 750;
    line-height: 1.12;
}

.reviews-page-copy p {
    max-width: 720px;
    margin: 20px 0 0;
    color: #586678;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.68;
}

.reviews-page-copy>a,
.reviews-cta>a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 13px 20px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(236, 30, 36, .22);
}

.reviews-score-panel,
.reviews-featured-card,
.reviews-card {
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(16, 24, 40, .06);
}

.reviews-score-panel {
    padding: 28px;
}

.reviews-score-panel strong {
    display: block;
    color: #06254b;
    font-size: 52px;
    font-weight: 750;
    line-height: 1;
}

.reviews-score-panel p {
    margin: 14px 0 0;
    color: #667085;
    font-size: 13px;
    font-weight: 500;
}

.reviews-stars {
    display: flex;
    gap: 4px;
    color: #d7dee9;
    font-size: 16px;
}

.reviews-stars .is-active {
    color: var(--site-red);
}

.reviews-featured-card {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
    padding: clamp(28px, 4vw, 48px);
    color: #ffffff;
    background: #06254b;
}

.reviews-featured-card>i {
    color: #ff4850;
    font-size: 38px;
}

.reviews-featured-card blockquote {
    max-width: 980px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 600;
    line-height: 1.35;
}

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

.reviews-card {
    min-height: 300px;
    display: grid;
    gap: 22px;
    align-content: start;
    padding: 26px;
}

.reviews-card p {
    margin: 0;
    color: #586678;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}

.reviews-card-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.reviews-card-footer img {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 50%;
}

.reviews-card-footer strong {
    display: block;
    color: #06254b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.15;
}

.reviews-card-footer span {
    display: block;
    margin-top: 4px;
    color: #667085;
    font-size: 12px;
    font-weight: 500;
}

.reviews-featured-card .reviews-card-footer strong,
.reviews-featured-card .reviews-card-footer span {
    color: #ffffff;
}

.reviews-featured-card .reviews-stars {
    margin-left: auto;
}

.reviews-empty {
    grid-column: 1 / -1;
}

.reviews-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 56px;
    padding: clamp(28px, 4vw, 46px);
    color: #ffffff;
    background: #06254b;
    border-radius: 8px;
}

.reviews-cta span,
.reviews-cta h2 {
    color: #ffffff;
}

.reviews-cta h2 {
    max-width: 760px;
    font-size: clamp(26px, 2.8vw, 38px);
}

.reviews-cta>a {
    flex: 0 0 auto;
    margin-top: 0;
    background: #ffffff;
    color: var(--site-red);
    box-shadow: none;
}

@media (max-width: 1100px) {

    .reviews-page-hero,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .reviews-page {
        padding: 58px 0;
    }

    .reviews-featured-card .reviews-card-footer,
    .reviews-cta {
        display: grid;
    }

    .reviews-featured-card .reviews-stars {
        margin-left: 0;
    }
}

.infrastructure-page,
.infrastructure-detail-page {
    overflow: hidden;
    padding: 76px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #fff7f8 46%, #f7f9fc 100%);
}

.infrastructure-wrap,
.infrastructure-detail-wrap {
    padding-inline: clamp(18px, 5vw, 90px);
}

.infrastructure-hero,
.infrastructure-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
    align-items: center;
    gap: clamp(30px, 5vw, 76px);
    margin-bottom: 34px;
}

.infrastructure-hero-copy>span,
.infrastructure-section-head span,
.infrastructure-detail-copy>span,
.infrastructure-detail-content>span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--site-red);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.infrastructure-hero-copy h2,
.infrastructure-section-head h2,
.infrastructure-detail-copy h2,
.infrastructure-detail-content h2 {
    margin: 0;
    color: #06254b;
    font-size: clamp(34px, 4.6vw, 66px);
    font-weight: 900;
    line-height: 1.04;
}

.infrastructure-hero-copy p,
.infrastructure-section-head p,
.infrastructure-detail-copy p,
.infrastructure-detail-content p,
.infrastructure-detail-content div {
    margin: 20px 0 0;
    color: #586678;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.72;
}

.infrastructure-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.infrastructure-hero-actions a:first-child,
.infrastructure-detail-panel a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(236, 30, 36, .22);
}

.infrastructure-hero-actions a:last-child {
    color: var(--site-red);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.infrastructure-hero-media,
.infrastructure-detail-media {
    position: relative;
    overflow: hidden;

}

.infrastructure-hero-media img,
.infrastructure-detail-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: contain;
}

.infrastructure-hero-media div {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    max-width: 330px;
    padding: 18px;
    color: #ffffff;
    background: rgba(6, 37, 75, .88);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    backdrop-filter: blur(12px);
}

.infrastructure-hero-media strong {
    display: block;
    font-size: 42px;
    font-weight: 950;
    line-height: 1;
}

.infrastructure-hero-media span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.infrastructure-type-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 58px;
}

.infrastructure-type-strip article,
.infrastructure-card,
.infrastructure-detail-content,
.infrastructure-detail-panel,
.related-infrastructure-grid a {
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(16, 24, 40, .06);
}

.infrastructure-type-strip article {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 92px;
    padding: 18px;
}

.infrastructure-type-strip i,
.infrastructure-empty i,
.infrastructure-detail-meta i {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 24px;
}

.infrastructure-type-strip span {
    color: #06254b;
    font-size: 16px;
    font-weight: 950;
    line-height: 1.25;
}

.infrastructure-section-head {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, .72fr);
    align-items: end;
    gap: clamp(24px, 5vw, 72px);
    margin-bottom: 28px;
}

.infrastructure-section-head h2 {
    font-size: clamp(30px, 3.5vw, 50px);
}

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

.infrastructure-card {
    overflow: hidden;
    color: #06254b;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.infrastructure-card:hover {
    color: #06254b;
    box-shadow: 0 22px 46px rgba(16, 24, 40, .11);
    transform: translateY(-3px);
}

.infrastructure-card-image {
    position: relative;
    aspect-ratio: 1.2;
    overflow: hidden;
    background: #e9eef6;
}

.infrastructure-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .25s ease;
}

.infrastructure-card:hover .infrastructure-card-image img {
    transform: scale(1.04);
}

.infrastructure-card-image span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 8px 10px;
    color: #ffffff;
    background: rgba(6, 37, 75, .86);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 900;
}

.infrastructure-card-body {
    padding: 22px;
}

.infrastructure-card-body>span,
.related-infrastructure-grid span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--site-red);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .14em;
    line-height: 1.35;
    text-transform: uppercase;
}

.infrastructure-card-body h3 {
    margin: 0;
    color: #06254b;
    font-size: 24px;
    font-weight: 950;
    line-height: 1.15;
}

.infrastructure-card-body p {
    margin: 14px 0 18px;
    color: #667085;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.62;
}

.infrastructure-card-body strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--site-red);
    font-size: 14px;
    font-weight: 950;
}

.infrastructure-empty {
    grid-column: 1 / -1;
    display: grid;
    justify-items: start;
    gap: 12px;
    padding: 28px;
    background: #ffffff;
    border: 1px dashed rgba(236, 30, 36, .28);
    border-radius: 8px;
}

.infrastructure-empty strong {
    color: #06254b;
    font-size: 22px;
    font-weight: 950;
}

.infrastructure-empty span {
    color: #667085;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.55;
}

.infrastructure-detail-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.infrastructure-detail-meta article {
    display: grid;
    gap: 8px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
}

.infrastructure-detail-meta span {
    color: #667085;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.infrastructure-detail-meta strong {
    color: #06254b;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.25;
}

.infrastructure-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: start;
    gap: 22px;
    margin-bottom: 60px;
}

.infrastructure-detail-content,
.infrastructure-detail-panel {
    padding: clamp(24px, 4vw, 42px);
}

.infrastructure-detail-content h2 {
    font-size: clamp(28px, 3.2vw, 46px);
}

.infrastructure-detail-panel {
    position: sticky;
    top: 106px;
}

.infrastructure-detail-panel h3 {
    margin: 0 0 20px;
    color: #06254b;
    font-size: 22px;
    font-weight: 950;
}

.infrastructure-detail-panel ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0 0 24px;
    list-style: none;
}

.infrastructure-detail-panel li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(16, 24, 40, .08);
}

.infrastructure-detail-panel li span {
    color: #667085;
    font-size: 13px;
    font-weight: 750;
}

.infrastructure-detail-panel li strong {
    color: #06254b;
    font-size: 13px;
    font-weight: 950;
    text-align: right;
}

.infrastructure-gallery,
.related-infrastructure {
    margin-top: 62px;
}

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

.infrastructure-gallery-grid img {
    width: 100%;
    aspect-ratio: 1.28;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(16, 24, 40, .08);
}

.related-infrastructure-grid a {
    overflow: hidden;
    display: grid;
    color: #06254b;
    text-decoration: none;
}

.related-infrastructure-grid img {
    width: 100%;
    aspect-ratio: 1.45;
    object-fit: cover;
}

.related-infrastructure-grid span {
    margin: 16px 18px 6px;
}

.related-infrastructure-grid strong {
    margin: 0 18px 18px;
    color: #06254b;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.25;
}

@media (max-width: 1100px) {

    .infrastructure-hero,
    .infrastructure-detail-hero,
    .infrastructure-section-head,
    .infrastructure-detail-layout {
        grid-template-columns: 1fr;
    }

    .infrastructure-type-strip,
    .infrastructure-grid,
    .infrastructure-detail-meta,
    .infrastructure-gallery-grid,
    .related-infrastructure-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .infrastructure-detail-panel {
        position: static;
    }
}

@media (max-width: 680px) {

    .infrastructure-page,
    .infrastructure-detail-page {
        padding: 58px 0;
    }

    .infrastructure-hero,
    .infrastructure-detail-hero {
        gap: 24px;
    }

    .infrastructure-hero-media,
    .infrastructure-detail-media {
        min-height: 360px;
    }

    .infrastructure-type-strip,
    .infrastructure-grid,
    .infrastructure-detail-meta,
    .infrastructure-gallery-grid,
    .related-infrastructure-grid {
        grid-template-columns: 1fr;
    }

    .infrastructure-detail-panel li {
        display: grid;
    }

    .infrastructure-detail-panel li strong {
        text-align: left;
    }
}

.faq-section {
    padding: 70px 0;
    background-color: #ffeef0;
}

.faq-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-sticky {
    position: sticky;
    top: 120px;
}

.section-label {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .26em;
    text-transform: uppercase;
}

.faq-sticky h2 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.faq-sticky p {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
}

.faq-info-box {
    margin-top: 35px;
    display: flex;
    gap: 18px;
    padding: 25px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.faq-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #cc0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.custom-faq .accordion-item {
    border: 0;
    margin-bottom: 18px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.custom-faq .accordion-button {
    padding: 24px 28px;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    background: #fff;
    box-shadow: none;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: #cc0000;
    color: #fff;
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
}

.custom-faq .accordion-body {
    padding: 25px 28px;
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
}

@media (max-width: 991px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-sticky {
        position: relative;
        top: 0;
    }

    .faq-sticky h2 {
        font-size: 32px;
    }
}


.cta-section {
    padding: 40px;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.cta-box {
    max-width: 1260px;
    margin: auto;
    padding: 80px 30px;
    border-radius: 42px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 82%, #ff3445 0%, transparent 35%),
        radial-gradient(circle at 12% 15%, #0c416d 0%, transparent 35%),
        linear-gradient(135deg, #073b70 0%, #143d75 35%, #773d6f 68%, #ef3349 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cta-badge {
    display: inline-block;
    padding: 9px 20px;
    margin-bottom: 30px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.cta-box h2 {
    max-width: 900px;
    margin: 0 auto;
    font-size: 68px;
    line-height: 1;
    font-weight: 900;
}

.cta-box h2 span {
    display: block;
    margin-top: 10px;
    font-size: 56px;
    font-family: cursive;
    font-weight: 500;
}

.cta-box p {
    max-width: 720px;
    margin: 28px auto 42px;
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 17px 30px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-light {
    background: #ffffff;
    color: #0b2442;
}

.btn-outline {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 20px;
    }

    .cta-box {
        padding: 55px 20px;
        border-radius: 28px;
    }

    .cta-box h2 {
        font-size: 38px;
    }

    .cta-box h2 span {
        font-size: 36px;
    }

    .cta-box p {
        font-size: 16px;
    }
}

.site-footer {
    position: relative;
    z-index: 2;
    background: #070d18;
    color: #a6adba;
    padding: 70px 8% 35px;
    font-family: Arial, sans-serif;
}

.site-footer a {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.footer-container {
    display: grid;
    grid-template-columns: 3.3fr 1.2fr 2.8fr 2.9fr 1.3fr;
    gap: 45px;
}

.footer-logo {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 900;
}

.footer-logo span {
    color: #ef3d4f;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    max-width: 210px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    text-transform: lowercase;
}

.footer-brand:hover {
    color: #ffffff;
}

.footer-brand img {
    width: auto;
    max-width: 190px;
    max-height: 58px;
    display: block;
    object-fit: contain;
}

.footer-brand em {
    color: #ef3d4f;
    font-style: normal;
}

.footer-about p {
    max-width: 320px;
    line-height: 1.7;
    font-size: 15px;
}

.footer-info {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.footer-info li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-bottom: 14px;
    line-height: 1.5;
    font-size: 14px;
}

.footer-info i {
    color: #ef3d4f;
    font-size: 18px;
    line-height: 1.4;
}

.footer-info a {
    color: #d8dde7;
    text-decoration: none;
}

.footer-info a:hover {
    color: #ffffff;
}

.footer-info small {
    display: block;
    margin-top: 4px;
    color: #858c99;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #151c2a;
    color: #fff;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ef3d4f;
}

.footer-links h4,
.footer-newsletter h4 {
    color: #ef3d4f;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 22px;
}

.footer-links a {
    display: block;
    color: #a6adba;
    text-decoration: none;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.footer-links a:hover {
    color: #fff;
}

.footer-newsletter h3 {
    color: #fff;
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 18px;
}

.footer-newsletter p {
    max-width: 320px;
    margin: 0 0 22px;
    color: #a6adba;
    font-size: 14px;
    line-height: 1.7;
}

.footer-cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    color: #ffffff;
    background: #ef3d4f;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.footer-cta:hover {
    color: #ffffff;
    background: #d92f41;
}

.footer-newsletter form {
    display: flex;
    max-width: 280px;
    background: #151c2a;
    border-radius: 35px;
    overflow: hidden;
    border: 1px solid #252d3a;
}

.footer-newsletter input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    padding: 16px 18px;
}

.footer-newsletter button {
    width: 58px;
    border: 0;
    background: #ef3d4f;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.footer-newsletter small {
    display: block;
    margin-top: 13px;
    color: #747b88;
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid #18202d;
    margin-top: 60px;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
}

.footer-bottom a {
    color: #858c99;
    text-decoration: none;
    margin-left: 25px;
}

.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-about,
    .footer-newsletter {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 20px 28px;
    }

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

    .footer-about,
    .footer-newsletter {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom div {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .footer-bottom a {
        margin-left: 0;
        margin-right: 0;
    }
}

.process-section {
    padding: 120px 40px 100px;
    background: #ffffff;
    font-family: Arial, sans-serif;
    color: #082b59;
    text-align: center;
    position: relative;
}

.process-header span {
    display: block;
    color: #ef3445;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.process-header h2 {
    margin: 0 auto 90px;
    max-width: 980px;
    font-size: 70px;
    line-height: 1.05;
    font-weight: 900;
    color: #062856;
}

.process-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 57%;
    height: 1px;
    background: #dce2eb;
    z-index: 0;
}

.process-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 35px;
    max-width: 1500px;
    margin: 0 auto;
}

.process-card {
    text-align: center;
}

.icon-box {
    width: 78px;
    height: 78px;
    margin: 0 auto 30px;
    border-radius: 50%;
    border: 2px solid #e1e6ee;
    background: #fff;
    color: #062856;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    position: relative;
}

.icon-box span {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #062856;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 6px 11px;
    border-radius: 20px;
}

.process-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #062856;
    font-weight: 900;
}

.process-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #586274;
    max-width: 240px;
    margin: auto;
}

@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-line {
        display: none;
    }

    .process-header h2 {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 70px 20px;
    }

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

    .process-header h2 {
        font-size: 36px;
    }

    .process-card p {
        max-width: 100%;
    }
}

/* ==========================
   BLOG DETAIL PAGE
========================== */

.blog-detail-page {
    padding: 70px 0;
    background: #f8fafc;
}

.blog-detail-head {
    max-width: 900px;
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
}

.blog-pill {
    display: inline-block;
    background: #e8f3ff;
    color: #0d6efd;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.blog-detail-head h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 20px;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #666;
    font-size: 15px;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-meta i {
    color: #0d6efd;
}

/* ======================
LAYOUT
====================== */

.blog-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 45px;
    align-items: start;
}

/* ======================
MAIN CONTENT
====================== */

.blog-detail-main {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(0, 0, 0, .05);
}

.blog-detail-image img {
    width: 100%;
    display: block;
    height: 480px;
    object-fit: cover;
}

.blog-detail-copy {
    padding: 40px;
    color: #444;
    line-height: 1.9;
    font-size: 17px;
}

.blog-detail-copy h2,
.blog-detail-copy h3,
.blog-detail-copy h4 {
    margin-top: 35px;
    margin-bottom: 18px;
    color: #111;
    font-weight: 700;
}

.blog-detail-copy p {
    margin-bottom: 18px;
}

.blog-detail-copy img {
    max-width: 100%;
    border-radius: 10px;
    margin: 25px 0;
}

.blog-detail-copy ul,
.blog-detail-copy ol {
    margin: 20px 0 20px 25px;
}

.blog-detail-copy li {
    margin-bottom: 10px;
}

.blog-detail-copy blockquote {
    background: #f5f9ff;
    border-left: 5px solid #0d6efd;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 6px;
}

/* ======================
SIDEBAR
====================== */

.blog-side-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 100px;
}

.blog-side-box {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.blog-side-box h3 {
    margin-bottom: 22px;
    font-size: 20px;
    color: #111;
}

/* Contact */

.blog-contact-box {
    background: linear-gradient(135deg, #0d6efd, #4b8cff);
    color: #fff;
}

.blog-contact-box .section-label {
    display: inline-block;
    background: rgba(255, 255, 255, .2);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 18px;
}

.blog-contact-box strong {
    display: block;
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-contact-box p {
    opacity: .95;
    margin-bottom: 25px;
}

.blog-contact-box a {
    display: inline-block;
    background: #fff;
    color: #0d6efd;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.blog-contact-box a:hover {
    transform: translateY(-2px);
}

/* Related */

.blog-related-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog-related-list a {
    display: flex;
    gap: 14px;
    text-decoration: none;
    color: #222;
    transition: .3s;
}

.blog-related-list a:hover {
    color: #0d6efd;
}

.blog-related-list img {
    width: 95px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.blog-related-list span {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

/* Tags */

.blog-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-tag-list a,
.blog-tag-list span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    background: #eef4ff;
    color: #0d6efd;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.blog-tag-list a:hover {
    background: #0d6efd;
    color: #fff;
}

/* ======================
TABLES
====================== */

.blog-detail-copy table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.blog-detail-copy table th,
.blog-detail-copy table td {
    border: 1px solid #ddd;
    padding: 12px;
}

.blog-detail-copy table th {
    background: #f5f5f5;
}

/* ======================
RESPONSIVE
====================== */

@media (max-width:991px) {

    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-side-panel {
        position: static;
    }

    .blog-detail-head h1 {
        font-size: 34px;
    }

    .blog-detail-image img {
        height: 360px;
    }

}

@media (max-width:767px) {

    .blog-detail-page {
        padding: 50px 0;
    }

    .blog-detail-head h1 {
        font-size: 28px;
    }

    .blog-detail-copy {
        padding: 25px;
        font-size: 16px;
    }

    .blog-detail-image img {
        height: 250px;
    }

    .blog-side-box {
        padding: 22px;
    }

    .blog-detail-meta {
        gap: 15px;
        font-size: 14px;
    }
    .home-brand-section{
        padding: 30px 0px;
    }

    .why-section{
        padding: 30px 0px;
    }
}