:root {
    --navy: #0B1F33;
    --navy-dark: #071522;
    --blue: #1E6FA8;
    --blue-light: #3A8FC7;
    --blue-pale: #EAF4FA;
    --gold: #F2A900;
    --gold-light: #FFC84A;
    --white: #FFFFFF;
    --off-white: #F7F9FB;
    --soft-gray: #EEF2F5;
    --border: #DDE5EA;
    --text: #18232D;
    --muted: #62717D;
    --muted-light: #8A98A3;
    --heading-font: "Lora", serif;
    --body-font: "DM Sans", sans-serif;
    --radius-md: 18px;
    --radius-xl: 38px;
    --shadow-sm: 0 8px 25px rgba(11, 31, 51, 0.06);
    --shadow-md: 0 18px 45px rgba(11, 31, 51, 0.10);
    --shadow-lg: 0 30px 70px rgba(11, 31, 51, 0.14);
    --transition: 0.35s ease;
    --section-space: clamp(50px, 9vw, 80px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--white);
    color: var(--text);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: -0.005em;
    overflow-x: hidden;
}

img {
    max-width: 200%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: var(--gold-light);
    color: var(--navy);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--navy);
    font-family: var(--heading-font);
    font-weight: 500;
    letter-spacing: -0.018em;
    line-height: 1.15;
}

p {
    margin-top: 0;
    letter-spacing: 0;
}

.text-blue {
    color: var(--blue);
}

.text-gold {
    color: var(--gold);
}

.display-heading {
    margin-bottom: 0;
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.display-heading em {
    color: var(--blue);
    font-style: italic;
}

.section-lead {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--blue);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
}

.section-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.section-padding {
    padding: var(--section-space) 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 13px 24px;
    border-radius: 50px;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 700;
    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.btn i {
    font-size: 17px;
    transition: transform var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:hover i {
    transform: translate(2px, -2px);
}

.btn-primary-custom {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(30, 111, 168, 0.20);
}

.btn-primary-custom:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    box-shadow: 0 16px 35px rgba(11, 31, 51, 0.18);
}

.btn-outline-custom {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--navy);
}

.btn-outline-custom:hover {
    background: var(--blue-pale);
    border-color: var(--blue-light);
    color: var(--blue);
}

.btn-dark-custom {
    background: var(--navy);
    border: 1px solid var(--navy);
    color: var(--white);
}

.btn-dark-custom:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.btn-outline-dark-custom {
    background: transparent;
    border: 1px solid var(--navy);
    color: var(--navy);
}

.btn-outline-dark-custom:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-warning-custom {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--navy);
    box-shadow: 0 14px 30px rgba(242, 169, 0, 0.22);
}

.btn-warning-custom:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 42%,
            rgba(58, 143, 199, 0.12),
            transparent 30%),
        var(--navy-dark);
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.65s ease,
        visibility 0.65s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    width: min(360px, 82%);
    text-align: center;
}

.loader-symbol {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 38px;
    margin-bottom: 24px;
}

.loader-symbol span {
    display: block;
    width: 7px;
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg,
            var(--gold-light),
            var(--gold));
    transform-origin: bottom;
    animation: loaderBars 1.15s ease-in-out infinite;
}

.loader-symbol span:nth-child(1) {
    height: 18px;
    animation-delay: 0s;
}

.loader-symbol span:nth-child(2) {
    height: 32px;
    animation-delay: 0.14s;
}

.loader-symbol span:nth-child(3) {
    height: 24px;
    animation-delay: 0.28s;
}

.loader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.loader-brand img {
    display: block;
    width: min(210px, 72%);
    max-height: 112px;
    object-fit: contain;
}

.loader-brand small {
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.5;
}

.loader-line {
    position: relative;
    width: 100%;
    height: 2px;
    margin-top: 28px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.loader-line span {
    display: block;
    width: 34%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg,
            var(--blue),
            var(--blue-light),
            var(--gold));
    animation: loaderLine 1.6s ease-in-out infinite;
}

@keyframes loaderBars {

    0%,
    100% {
        transform: scaleY(0.65);
        opacity: 0.7;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes loaderLine {
    0% {
        transform: translateX(-130%);
    }

    100% {
        transform: translateX(390%);
    }
}

@media (max-width: 575.98px) {
    .loader-inner {
        width: min(300px, 82%);
    }

    .loader-brand img {
        width: min(190px, 75%);
    }

    .loader-brand small {
        font-size: 10px;
    }
}

.top-bar {
    position: relative;
    z-index: 1100;
    height: 44px;
    background: #07111f;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container-fluid {
    height: 100%;
}

.top-bar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-contact,
.top-bar-info,
.top-socials {
    display: flex;
    align-items: center;
}

.top-bar-contact {
    gap: 30px;
}

.top-bar-contact a,
.top-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.top-bar-contact a:hover {
    color: #ffffff;
}

.top-bar i {
    font-size: 13px;
}

.top-bar-contact i,
.top-location i {
    color: #4db8ff;
}

.top-bar-info {
    gap: 28px;
}

.top-location {
    white-space: nowrap;
}

.top-socials {
    gap: 18px;
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.top-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.top-socials a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.top-socials i {
    font-size: 14px;
}

/* ========================================
   TOP BAR RESPONSIVE
======================================== */
@media (max-width: 991.98px) {
    .top-bar {
        height: 40px;
        font-size: 12px;
    }

    .top-bar-contact {
        gap: 22px;
    }

    .top-bar-info {
        gap: 18px;
    }

    .top-socials {
        gap: 14px;
        padding-left: 18px;
    }
}

@media (max-width: 767.98px) {
    .top-bar {
        height: 38px;
        font-size: 11px;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .top-bar-contact {
        width: 100%;
        justify-content: center;
        gap: 18px;
    }

    .top-bar-contact a {
        gap: 6px;
    }

    .top-bar-info {
        display: none;
    }

    .top-bar-contact a:first-child {
        padding-right: 18px;
        border-right: 1px solid rgba(255, 255, 255, 0.14);
    }

    .top-bar i {
        font-size: 11px;
    }
}

@media (max-width: 420px) {
    .top-bar {
        font-size: 10px;
    }

    .top-bar-contact {
        gap: 12px;
    }

    .top-bar-contact a:first-child {
        padding-right: 12px;
    }
}

.site-header {
    position: sticky !important;
    top: 0 !important;
    left: auto !important;
    right: auto !important;
    z-index: 1050;
    width: 100%;
    background: #ffffff;
}

.site-header .navbar {
    position: relative;
    width: 100%;
    padding: 10px 0;
    background: #ffffff;
    transition:
        padding 0.3s ease,
        box-shadow 0.3s ease;
}

.site-header .container {
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.navbar-brand img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    display: block;
    transition:
        width 0.3s ease,
        height 0.3s ease;
}

.navbar-nav {
    gap: 4px;
}

.navbar .nav-item {
    position: relative;
}

.navbar .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 10px 16px !important;
    color: var(--navy) !important;
    font-size: 15px;
    font-weight: 650;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 8px;
    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--blue) !important;
    background: rgba(11, 111, 184, 0.06);
}

.navbar .dropdown-toggle::after {
    width: 7px;
    height: 7px;
    margin: -4px 0 0 3px;
    border: 0;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
}

@media (min-width: 992px) {
    .navbar .dropdown-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 50%;
        width: 285px;
        min-width: 285px;
        margin: 0 !important;
        padding: 10px;
        border: 1px solid rgba(8, 76, 125, 0.12);
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 22px 55px rgba(5, 25, 45, 0.14);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(-50%) translateY(10px) !important;
        transition:
            opacity 0.22s ease,
            visibility 0.22s ease,
            transform 0.22s ease;
    }

    .navbar .dropdown:hover>.dropdown-menu,
    .navbar .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0) !important;
    }

    .products-dropdown {
        width: 270px !important;
        min-width: 270px !important;
    }

    .solutions-dropdown {
        width: 300px !important;
        min-width: 300px !important;
    }

    .accessories-dropdown {
        width: 285px !important;
        min-width: 285px !important;
    }
}

.navbar .dropdown-menu li {
    width: 100%;
}

.navbar .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    color: var(--navy);
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    white-space: normal;
    border-radius: 7px;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        padding 0.2s ease;
}

.navbar .dropdown-item i {
    flex-shrink: 0;
    font-size: 14px;
    opacity: 0;
    transform: translate(-5px, 5px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.navbar .dropdown-item:hover {
    color: var(--blue);
    background: rgba(11, 111, 184, 0.07);
    padding-left: 16px;
}

.navbar .dropdown-item:hover i {
    opacity: 1;
    transform: translate(0, 0);
}

.nav-cta-item {
    margin-left: 16px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 10px 19px;
    color: #ffffff !important;
    background: var(--navy);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 9px;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.nav-cta i {
    font-size: 15px;
    transition: transform 0.25s ease;
}

.nav-cta:hover {
    color: #ffffff !important;
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(11, 111, 184, 0.2);
}

.nav-cta:hover i {
    transform: translate(3px, -3px);
}

.site-header.scrolled .navbar {
    padding: 5px 0;
    box-shadow: 0 10px 30px rgba(5, 25, 45, 0.10);
}

.site-header.scrolled .navbar-brand img {
    width: 68px;
    height: 68px;
}

.navbar-toggler {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(8, 76, 125, 0.15);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: none !important;
}

.navbar-toggler span {
    width: 21px;
    height: 2px;
    display: block;
    background: var(--navy);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

@media (max-width: 991.98px) {
    .site-header {
        position: sticky !important;
        top: 0 !important;
    }

    .site-header .navbar {
        padding: 8px 0;
    }

    .navbar-brand img {
        width: 62px;
        height: 62px;
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 10px;
        border: 1px solid rgba(8, 76, 125, 0.12);
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 18px 45px rgba(5, 25, 45, 0.12);
    }

    .navbar-nav {
        width: 100%;
        gap: 3px;
        align-items: stretch !important;
    }

    .navbar .nav-item {
        width: 100%;
    }

    .navbar .nav-link {
        width: 100%;
        min-height: 50px;
        justify-content: space-between;
        padding: 12px 14px !important;
        font-size: 15px;
    }

    .navbar .dropdown-menu {
        position: static !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 6px;
        border: 0;
        border-radius: 8px;
        background: #f4f7fa;
        box-shadow: none;
        transform: none !important;
    }

    .navbar .dropdown-menu:not(.show) {
        display: none;
    }

    .navbar .dropdown-menu.show {
        display: block;
    }

    .navbar .dropdown-item {
        min-height: 46px;
        padding: 11px 12px;
        font-size: 14px;
    }

    .navbar .dropdown-item i {
        opacity: 1;
        transform: none;
    }

    .nav-cta-item {
        width: 100%;
        margin: 10px 0 0;
    }

    .nav-cta {
        width: 100%;
        min-height: 52px;
    }

    .site-header.scrolled .navbar-brand img {
        width: 62px;
        height: 62px;
    }
}

@media (max-width: 767.98px) {
    .site-header .navbar {
        padding: 7px 0;
    }

    .navbar-brand img {
        width: 58px;
        height: 58px;
    }

    .navbar-toggler {
        width: 46px;
        height: 46px;
    }

    .navbar-collapse {
        margin-top: 9px;
    }
}

@media (max-width: 575.98px) {
    .site-header .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: #07111f;
}

#ecssHero {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
}

#ecssHero .carousel-inner,
#ecssHero .carousel-item,
.hero-slide {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.hero-banner {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 5s cubic-bezier(.2, .65, .3, 1);
}

.carousel-item.active .hero-banner {
    transform: scale(1);
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* background:
        linear-gradient(90deg,
            rgba(3, 13, 25, .94) 0%,
            rgba(3, 13, 25, .82) 28%,
            rgba(3, 13, 25, .52) 55%,
            rgba(3, 13, 25, .12) 100%); */
}

/* CONTENT */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 720px;
    padding: 0 0 85px;
    color: #fff;
}

.hero-content h1 {
    width: 100%;
    max-width: 700px;
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(50px, 5.35vw, 84px);
    line-height: .96;
    font-weight: 700;
    letter-spacing: -.055em;
    color: #fff !important;
}

.hero-content h1 span {
    display: block;
    color: #43b5ff !important;
}

.hero-content p {
    max-width: 590px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .88) !important;
    font-size: 18px;
    line-height: 1.6;
}

/* BUTTONS */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.hero-btn {
    min-width: 190px;
    height: 56px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}

.hero-btn-primary {
    color: #fff;
    background: #0878c9;
    border: 2px solid #0878c9;
}

.hero-btn-primary:hover {
    color: #fff;
    background: #075f9e;
    border-color: #075f9e;
    transform: translateY(-3px);
}

.hero-btn-light {
    color: #fff;
    background: rgba(255, 255, 255, .03);
    border: 2px solid rgba(255, 255, 255, .7);
}

.hero-btn-light:hover {
    color: #07111f;
    background: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

/* NAVIGATION */
.hero-navigation {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    pointer-events: none;
}

.hero-navigation-inner {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.hero-arrows {
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

.hero-arrow {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 0;
    background: rgba(7, 17, 31, .28);
    color: #fff;
    font-size: 19px;
    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.hero-arrow:hover {
    background: #0878c9;
    border-color: #0878c9;
    transform: translateY(-2px);
}

/* SLIDE TRANSITION */
.carousel-fade .carousel-item {
    transition: opacity 1s ease-in-out;
}

.carousel-item .hero-content {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity .75s ease .15s,
        transform .75s ease .15s;
}

.carousel-item.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* TABLET */
@media (max-width: 991px) {
    #ecssHero {
        height: 700px;
    }

    .hero-content {
        max-width: 650px;
        padding-bottom: 90px;
    }

    .hero-content h1 {
        max-width: 650px;
        font-size: clamp(46px, 7vw, 68px);
    }

    .hero-content p {
        max-width: 560px;
        font-size: 17px;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(3, 13, 25, .94) 0%,
                rgba(3, 13, 25, .78) 45%,
                rgba(3, 13, 25, .3) 100%);
    }
}

/* MOBILE */
@media (max-width: 767px) {
    #ecssHero {
        height: 720px;
    }

    .hero-container {
        align-items: flex-start;
    }

    .hero-content {
        max-width: 100%;
        padding: 90px 0 100px;
    }

    .hero-content h1 {
        max-width: 100%;
        font-size: clamp(40px, 11vw, 56px);
        line-height: .98;
        letter-spacing: -.05em;
    }

    .hero-content p {
        max-width: 100%;
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 26px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
        min-width: 0;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(3, 13, 25, .72) 0%,
                rgba(3, 13, 25, .68) 40%,
                rgba(3, 13, 25, .94) 100%);
    }

    .hero-navigation-inner {
        height: 68px;
    }

    .hero-arrow {
        width: 48px;
        height: 48px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    #ecssHero {
        height: 700px;
    }

    .hero-content {
        padding-top: 75px;
    }

    .hero-content h1 {
        font-size: 39px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-navigation-inner {
        height: 64px;
    }
}

.brands-section {
    padding: 35px 0 40px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.brands-heading {
    max-width: 700px;
    margin-bottom: 32px;
}

.brands-heading h2 {
    margin: 0;
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.brands-heading p {
    max-width: 500px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* CONTINUOUS MARQUEE */
.brands-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 18px;
    animation: brandsLoop 28s linear infinite;
    will-change: transform;
}

.brand-item {
    width: 250px;
    height: 125px;
    flex: 0 0 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 30px;
    background: #f7f9fa;
    border: 1px solid #e1e7ea;
    border-radius: 14px;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.brand-item:hover {
    background: #ffffff;
    border-color: rgba(242, 169, 0, 0.5);
    box-shadow: 0 12px 30px rgba(11, 31, 51, 0.08);
}

.brand-item img {
    display: block;
    width: 175px;
    height: 55px;
    object-fit: contain;
    object-position: center;
    opacity: 0.9;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.brand-item:hover img {
    opacity: 1;
    transform: scale(1.04);
}

/* SEAMLESS LOOP */
@keyframes brandsLoop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}

/* PAUSE WHEN HOVERED */
.brands-track:hover {
    animation-play-state: paused;
}

/* TABLET */
@media (max-width: 991.98px) {
    .brands-section {
        padding: 55px 0 60px;
    }

    .brands-heading {
        margin-bottom: 26px;
    }

    .brand-item {
        width: 220px;
        flex-basis: 220px;
        height: 115px;
    }

    .brand-item img {
        width: 155px;
        height: 50px;
    }

    .brands-track {
        gap: 14px;
        animation-duration: 24s;
    }
}

/* MOBILE */
@media (max-width: 575.98px) {
    .brands-section {
        padding: 45px 0 50px;
    }

    .brands-heading {
        margin-bottom: 22px;
    }

    .brands-heading h2 {
        font-size: 2rem;
    }

    .brands-heading p {
        font-size: 14px;
    }

    .brand-item {
        width: 190px;
        flex-basis: 190px;
        height: 105px;
        padding: 20px;
        border-radius: 12px;
    }

    .brand-item img {
        width: 140px;
        height: 45px;
    }

    .brands-track {
        gap: 12px;
        animation-duration: 20s;
    }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    .brands-track {
        animation: none;
    }
}

.about-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #F5F8FA;
}

.about-bg-word {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%) rotate(-90deg);
    color: rgba(58, 143, 199, 0.045);
    font-family: var(--heading-font);
    font-size: clamp(8rem, 17vw, 15rem);
    font-weight: 600;
    line-height: 0.8;
    letter-spacing: -0.08em;
    pointer-events: none;
    user-select: none;
}

.about-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 90px;
}

.about-visual {
    position: relative;
    min-height: 570px;
    padding: 20px 40px 35px 0;
}

.about-image {
    position: relative;
    width: 100%;
    height: 530px;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(11, 31, 51, 0.15);
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(7, 21, 34, 0.02),
            rgba(7, 21, 34, 0.18));
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.about-visual:hover .about-image img {
    transform: scale(1.035);
}

.about-image-title {
    position: absolute;
    left: -25px;
    bottom: 0;
    width: 235px;
    padding: 25px 28px;
    background: var(--navy);
    color: var(--white);
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(7, 21, 34, 0.2);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.about-image-title span {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.about-image-title strong {
    display: block;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.15;
}

.about-visual:hover .about-image-title {
    transform: translateY(-7px);
    box-shadow: 0 28px 55px rgba(7, 21, 34, 0.25);
}

.about-image-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 105px;
    height: 105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    border: 8px solid #F5F8FA;
    box-shadow: 0 15px 35px rgba(7, 21, 34, 0.12);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.about-image-number strong {
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
}

.about-image-number span {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-visual:hover .about-image-number {
    transform: rotate(8deg) scale(1.04);
    box-shadow: 0 20px 40px rgba(7, 21, 34, 0.16);
}

.about-content {
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.about-content h2 {
    max-width: 650px;
    margin: 0;
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: clamp(3.3rem, 5vw, 5.5rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.about-content h2 span {
    display: block;
    color: var(--blue);
}

.about-lead {
    max-width: 610px;
    margin: 32px 0 18px;
    color: #243846;
    font-size: 18px;
    line-height: 1.7;
}

.about-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 38px;
    border-top: 1px solid #D7E0E5;
    border-bottom: 1px solid #D7E0E5;
}

.about-capability {
    min-height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 20px;
    border-right: 1px solid #D7E0E5;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.about-capability:first-child {
    padding-left: 0;
}

.about-capability:last-child {
    border-right: 0;
}

.about-capability:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
}

.about-capability strong {
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.2;
}

.about-capability span {
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    margin-top: 35px;
    padding: 0 24px;
    border-radius: 8px;
    background: var(--navy);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.about-btn i {
    font-size: 17px;
    transition: transform 0.3s ease;
}

.about-btn:hover {
    color: var(--white);
    background: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(58, 143, 199, 0.2);
}

.about-btn:hover i {
    transform: translate(3px, -3px);
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 85px 0;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .about-visual {
        min-height: 500px;
        padding-right: 35px;
    }

    .about-image {
        height: 470px;
    }

    .about-content h2 {
        max-width: 700px;
    }

    .about-lead {
        max-width: 700px;
    }

    .about-bg-word {
        top: 25%;
        left: -90px;
        font-size: 10rem;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 70px 0;
    }

    .about-layout {
        gap: 50px;
    }

    .about-visual {
        min-height: 390px;
        padding: 10px 20px 30px 0;
    }

    .about-image {
        height: 370px;
        border-radius: 20px;
    }

    .about-image-title {
        left: -10px;
        bottom: 0;
        width: 190px;
        padding: 20px;
    }

    .about-image-title span {
        font-size: 12px;
    }

    .about-image-title strong {
        font-size: 19px;
    }

    .about-image-number {
        width: 82px;
        height: 82px;
        border-width: 6px;
    }

    .about-image-number strong {
        font-size: 24px;
    }

    .about-image-number span {
        font-size: 9px;
    }

    .about-content {
        padding: 0;
    }

    .about-content h2 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .about-lead {
        margin-top: 25px;
        font-size: 16px;
    }

    .about-capabilities {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .about-capability,
    .about-capability:first-child {
        min-height: 78px;
        padding: 15px 0;
        border-right: 0;
        border-bottom: 1px solid #D7E0E5;
    }

    .about-capability:last-child {
        border-bottom: 0;
    }

    .about-capability strong {
        font-size: 19px;
    }

    .about-btn {
        width: 100%;
        margin-top: 28px;
    }

    .about-bg-word {
        display: none;
    }
}

.industries-section {
    padding: 80px 0;
    background: #f5f8fa;
    overflow: hidden;
}

.industries-intro {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
    align-items: end;
    margin-bottom: 38px;
}

.industries-intro h2 {
    margin: 0;
    max-width: 850px;
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.industries-intro h2 span {
    color: var(--blue);
}

.industries-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.industries-showcase {
    width: 100%;
}

.industry-feature {
    position: relative;
    height: 440px;
    overflow: hidden;
    border-radius: 22px;
    background: #071522;
}

.industry-feature img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 6s ease;
}

.carousel-item.active .industry-feature img {
    transform: scale(1.04);
}

.industry-feature-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(7, 21, 34, 0.88) 0%,
            rgba(7, 21, 34, 0.52) 42%,
            rgba(7, 21, 34, 0.08) 100%);
}

.industry-feature-content {
    position: absolute;
    left: 50px;
    right: 50px;
    bottom: 45px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.industry-feature-content h3 {
    margin: 0 0 8px;
    color: #fff;
    font-family: var(--heading-font);
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.industry-feature-content p {
    max-width: 550px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.6;
}

.industry-feature-arrow {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-size: 21px;
    transition: transform 0.3s ease;
}

.industry-feature:hover .industry-feature-arrow {
    transform: rotate(45deg);
}

.industry-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(7, 21, 34, 0.45);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 18px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.industry-carousel-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.industry-prev {
    left: 25px;
}

.industry-next {
    right: 25px;
}

.industry-nav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 14px;
    gap: 8px;
}

.industry-nav button {
    min-height: 58px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #dfe6ea;
    border-radius: 10px;
    background: #fff;
    color: var(--navy);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.industry-nav button span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
}

.industry-nav button:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.industry-nav button.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.industry-nav button.active span {
    color: var(--gold);
}

@media (max-width: 991.98px) {
    .industries-section {
        padding: 65px 0;
    }

    .industries-intro {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 28px;
    }

    .industries-intro h2 {
        max-width: 700px;
    }

    .industry-feature {
        height: 390px;
    }

    .industry-feature-content {
        left: 35px;
        right: 35px;
        bottom: 35px;
    }

    .industry-nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575.98px) {
    .industries-section {
        padding: 50px 0;
    }

    .industries-intro {
        margin-bottom: 22px;
    }

    .industries-intro h2 {
        font-size: 2.6rem;
    }

    .industries-intro p {
        font-size: 14px;
    }

    .industry-feature {
        height: 330px;
        border-radius: 16px;
    }

    .industry-feature-overlay {
        background:
            linear-gradient(0deg,
                rgba(7, 21, 34, 0.9) 0%,
                rgba(7, 21, 34, 0.25) 75%);
    }

    .industry-feature-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
        gap: 15px;
    }

    .industry-feature-content h3 {
        font-size: 2.7rem;
    }

    .industry-feature-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    .industry-feature-arrow {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 17px;
    }

    .industry-carousel-arrow {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .industry-prev {
        left: 12px;
    }

    .industry-next {
        right: 12px;
    }

    .industry-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .industry-nav button {
        min-height: 52px;
        padding: 10px 8px;
        font-size: 12px;
    }
}

.project-section {
    padding: var(--section-space) 0;
    background: #071522;
}

.project-highlight {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 520px;
    overflow: hidden;
    border-radius: 24px;
    background: #0B1F33;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.project-video {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #050d15;
}

.project-video-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.project-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(5, 13, 21, 0.02) 45%,
            rgba(5, 13, 21, 0.35) 100%);
    pointer-events: none;
}

.project-video-control {
    position: absolute;
    left: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(7, 21, 34, 0.65);
    color: var(--white);
    font-size: 19px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.project-video-control:hover {
    transform: scale(1.08);
    background: var(--gold);
    color: var(--navy);
}

.project-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px 50px;
    overflow: hidden;
}

.project-content::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -210px;
    bottom: -190px;
    border-radius: 50%;
    background: rgba(58, 143, 199, 0.08);
    pointer-events: none;
}

.project-content h2 {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(2.7rem, 4vw, 4.4rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.project-content h2 span {
    display: block;
    color: var(--blue-light);
}

.project-content>p {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 24px 0 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
}

.project-specs {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 28px;
}

.project-spec {
    min-height: 88px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

.project-spec:hover {
    transform: translateY(-4px);
    border-color: rgba(242, 169, 0, 0.35);
    background: rgba(255, 255, 255, 0.075);
}

.project-spec strong {
    order: 1;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.project-spec span {
    order: 2;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.project-btn {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 23px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.project-btn i {
    font-size: 17px;
    transition: transform 0.3s ease;
}

.project-btn:hover {
    color: var(--navy);
    transform: translateY(-3px);
    background: var(--gold-light);
    box-shadow: 0 12px 30px rgba(242, 169, 0, 0.2);
}

.project-btn:hover i {
    transform: translate(3px, -3px);
}

@media (max-width: 991.98px) {
    .project-highlight {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .project-video {
        min-height: 400px;
    }

    .project-content {
        padding: 50px 45px 55px;
    }

    .project-content h2 {
        max-width: 650px;
    }

    .project-content>p {
        max-width: 650px;
    }
}

@media (max-width: 767.98px) {
    .project-section {
        padding: 65px 0;
    }

    .project-highlight {
        border-radius: 18px;
    }

    .project-video {
        min-height: 300px;
    }

    .project-video-control {
        left: 18px;
        bottom: 18px;
        width: 46px;
        height: 46px;
        font-size: 17px;
    }

    .project-content {
        padding: 40px 25px 45px;
    }

    .project-content h2 {
        font-size: clamp(2.6rem, 12vw, 3.8rem);
    }

    .project-content>p {
        margin: 20px 0 26px;
        font-size: 15px;
        line-height: 1.65;
    }

    .project-specs {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 26px;
    }

    .project-spec {
        min-height: 70px;
        padding: 14px;
    }

    .project-spec strong {
        font-size: 14px;
    }

    .project-spec span {
        margin-top: 4px;
        font-size: 10px;
    }

    .project-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .project-video-media {
        display: none;
    }
}

.why-section {
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

.why-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: -120px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(19, 99, 165, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.why-heading {
    position: relative;
    z-index: 1;
}

.why-heading .section-lead {
    max-width: 390px;
    margin-left: auto;
}

.why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 70px;
}

.why-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    border-top-width: 3px;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(19, 99, 165, 0.08);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(19, 99, 165, 0.28);
    box-shadow: 0 22px 50px rgba(7, 21, 34, 0.09);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover::after {
    transform: scale(1.5);
}

.why-card-top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 58px;
}

.why-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(19, 99, 165, 0.12);
    border-radius: 15px;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 22px;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.why-card:hover .why-icon {
    background: var(--blue);
    color: var(--white);
    transform: rotate(-4deg) scale(1.05);
}

.why-number {
    position: relative;
    z-index: 2;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.why-card-content {
    position: relative;
    z-index: 2;
}

.why-label {
    display: block;
    margin-bottom: 11px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.why-card h3 {
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.2;
}

.why-card p {
    max-width: 270px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.why-arrow {
    position: absolute;
    right: 28px;
    bottom: 27px;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--muted);
    font-size: 13px;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.why-card:hover .why-arrow {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
    transform: translate(3px, -3px);
}

@media (max-width: 1199px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .why-heading .section-lead {
        margin-left: 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 45px;
    }

    .why-card {
        min-height: 330px;
        padding: 26px;
    }

    .why-card-top {
        margin-bottom: 45px;
    }

    .why-card h3 {
        font-size: 21px;
    }

    .why-section::before {
        right: -220px;
    }
}

.cta-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1E6FA8, #3A8FC7);
    isolation: isolate;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -260px;
    left: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow:
        0 0 0 45px rgba(255, 255, 255, 0.025),
        0 0 0 90px rgba(255, 255, 255, 0.018);
    pointer-events: none;
}

.cta-section::after {
    content: "";
    position: absolute;
    right: -170px;
    bottom: -230px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(242, 169, 0, 0.2);
    border-radius: 50%;
    box-shadow:
        0 0 80px rgba(242, 169, 0, 0.08),
        0 0 0 55px rgba(242, 169, 0, 0.025);
    pointer-events: none;
}

.cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent);
    pointer-events: none;
}

.cta-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.cta-orbit-one {
    top: 20%;
    right: 13%;
    width: 90px;
    height: 90px;
}

.cta-orbit-two {
    bottom: 18%;
    left: 12%;
    width: 35px;
    height: 35px;
    border-color: rgba(242, 169, 0, 0.35);
}

.cta-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-section .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--gold-light);
}

.cta-section .section-kicker::before,
.cta-section .section-kicker::after {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}

.cta-section h2 {
    margin-bottom: 26px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.cta-section h2 span {
    display: block;
    color: var(--gold-light);
    font-style: italic;
}

.cta-section p {
    max-width: 680px;
    margin: 0 auto 38px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-primary,
.cta-secondary {
    min-height: 56px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-secondary:hover {
    transform: translateY(-4px);
}

.cta-primary i {
    transition: transform 0.3s ease;
}

.cta-primary:hover i {
    transform: translate(3px, -3px);
}

.cta-secondary i {
    transition: transform 0.3s ease;
}

.cta-secondary:hover i {
    transform: rotate(-8deg);
}

.cta-background-text {
    position: absolute;
    left: 50%;
    bottom: -30px;
    z-index: 1;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.035);
    font-family: var(--heading-font);
    font-size: clamp(7rem, 18vw, 18rem);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.07em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 767px) {
    .cta-section {
        padding: 90px 0;
    }

    .cta-section h2 {
        font-size: clamp(2.7rem, 12vw, 4rem);
    }

    .cta-section p {
        font-size: 15px;
        line-height: 1.7;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
    }

    .cta-background-text {
        bottom: -15px;
        font-size: 27vw;
    }

    .cta-orbit-one {
        right: -30px;
    }

    .cta-orbit-two {
        left: -10px;
    }
}

.site-footer {
    position: relative;
    padding: 70px 0 0;
    overflow: hidden;
    background: #071522;
    color: rgba(255, 255, 255, 0.7);
}

.footer-map {
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #101d29;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: grayscale(0.2);
}

.footer-main {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.6fr) minmax(130px, 0.65fr) minmax(150px, 0.8fr) minmax(240px, 1.15fr);
    gap: 65px;
    padding: 75px 0 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* BRAND */
.footer-brand {
    max-width: 410px;
}

.footer-logo {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden;
}

.footer-logo img {
    width: 150%;
    height: 150%;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand h3 {
    margin: 0 0 18px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 31px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.footer-brand h3 span {
    display: block;
    color: rgba(255, 255, 255, 0.58);
}

.footer-brand p {
    max-width: 360px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.75;
}

/* SOCIAL */
.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 17px;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-4px);
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

/* COLUMNS */
.footer-column h4,
.footer-contact h4 {
    margin: 0 0 25px;
    color: var(--white);
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 700;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin-bottom: 14px;
}

.footer-column li a {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.52);
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-column li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* CONTACT */
.footer-contact {
    max-width: 330px;
}

.footer-contact-link,
.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link i,
.footer-address i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--gold-light);
    font-size: 17px;
    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--white);
}

.footer-contact-link:hover i {
    background: rgba(242, 169, 0, 0.1);
    border-color: rgba(242, 169, 0, 0.35);
}

.footer-bottom {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 12px;
    line-height: 1.5;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold-light);
}

@media (max-width: 991.98px) {
    .site-footer {
        padding-top: 60px;
    }

    .footer-map {
        height: 320px;
    }

    .footer-main {
        grid-template-columns: 1.4fr 0.8fr 0.8fr;
        gap: 55px 40px;
    }

    .footer-contact {
        grid-column: 1 / -1;
        max-width: 500px;
    }
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 50px;
    }

    .footer-map {
        height: 300px;
        border-radius: 18px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
        padding: 60px 0;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 600px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        padding-top: 40px;
    }

    .footer-map {
        height: 260px;
        border-radius: 16px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

    .footer-brand h3 {
        font-size: 28px;
    }

    .footer-bottom {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 25px 0 30px;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 12px 20px;
    }
}

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 900;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    cursor: pointer;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-4px);
}

@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 45px 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 600px;
    }

    .footer-bottom {
        grid-template-columns: 1fr auto;
    }

    .footer-status {
        display: none;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 70px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px 25px;
    }

    .footer-brand,
    .footer-contact-column {
        grid-column: 1 / -1;
    }

    .footer-brand h3 {
        font-size: 27px;
    }

    .footer-contact-card {
        padding: 20px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-top: 50px;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .back-to-top {
        right: 18px;
        bottom: 18px;
        width: 44px;
        height: 44px;
    }
}

[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

@media (max-width: 1199.98px) {
    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding-inline: 9px !important;
        font-size: 13px;
    }

    .hero-content h1 {
        font-size: clamp(3.2rem, 5.8vw, 5.4rem);
    }

    .hero-visual {
        min-height: 530px;
    }

    .hero-floating-card {
        min-width: 185px;
    }

    .solution-row {
        grid-template-columns: 145px 45px 1fr 55px;
        gap: 18px;
    }
}

@media (max-width: 991.98px) {
    .top-bar {
        display: none;
    }

    .navbar {
        min-height: 76px;
    }

    .navbar-collapse {
        margin-top: 15px;
        padding: 15px;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: var(--white);
        box-shadow: var(--shadow-sm);
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .nav-link {
        padding: 12px 10px !important;
    }

    .nav-link::after {
        left: 10px;
        right: auto;
        width: 25px;
    }

    .navbar-cta {
        margin: 12px 0 0;
    }

    .navbar-cta .btn {
        width: 100%;
    }

    .dropdown-menu {
        margin-top: 0 !important;
        border: 0;
        box-shadow: none;
    }

    .hero-section {
        min-height: auto;
        padding: 80px 0 100px;
    }

    .hero-content {
        max-width: 850px;
    }

    .hero-content h1 {
        max-width: 800px;
    }

    .hero-visual {
        min-height: 600px;
        margin-top: 20px;
    }

    .hero-image-card {
        inset: 15px 30px 30px 30px;
    }

    .brands-section {
        padding: 65px 0;
    }

    .about-visual {
        min-height: 520px;
    }

    .about-visual>img {
        height: 470px;
    }

    .solution-row {
        grid-template-columns: 130px 40px 1fr 50px;
    }

    .project-highlight {
        grid-template-columns: 1fr;
    }

    .project-image {
        min-height: 450px;
    }

    .project-content {
        min-height: 600px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand-text strong {
        font-size: 19px;
    }

    .brand-text span {
        max-width: 150px;
        font-size: 7px;
    }

    .hero-section {
        padding: 65px 0 80px;
    }

    .hero-content h1 {
        font-size: clamp(3rem, 13vw, 4.6rem);
        letter-spacing: -0.04em;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-highlights {
        gap: 13px;
        margin-top: 38px;
    }

    .hero-highlight strong {
        font-size: 13px;
    }

    .hero-highlight span {
        font-size: 10px;
    }

    .hero-highlight-divider {
        height: 30px;
    }

    .hero-visual {
        min-height: 470px;
    }

    .hero-image-card {
        inset: 20px 10px 20px 10px;
        border-radius: 25px;
    }

    .hero-floating-card {
        min-width: 165px;
        padding: 11px 12px;
    }

    .hero-floating-card-one {
        top: 10px;
        left: -5px;
    }

    .hero-floating-card-two {
        right: -5px;
        bottom: 65px;
    }

    .floating-card-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .hero-floating-card strong {
        font-size: 11px;
    }

    .hero-floating-card span {
        font-size: 8px;
    }

    .hero-image-accent {
        width: 80px;
        height: 80px;
        right: 5px;
        top: 5px;
    }

    .hero-image-accent span {
        font-size: 6px;
    }

    .hero-image-accent strong {
        font-size: 11px;
    }

    .hero-bottom-note {
        display: none;
    }

    .brands-section {
        padding: 55px 0;
    }

    .brand-item {
        min-height: 80px;
    }

    .brand-item img {
        max-width: 105px;
        max-height: 40px;
    }

    .display-heading {
        font-size: clamp(2.45rem, 11vw, 3.7rem);
    }

    .section-lead {
        font-size: 15px;
    }

    .service-card {
        min-height: 300px;
    }

    .product-image {
        height: 270px;
    }

    .product-content {
        min-height: 175px;
        padding: 21px;
    }

    .product-content h3 {
        font-size: 23px;
    }

    .product-content p {
        font-size: 13px;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-visual {
        min-height: 420px;
    }

    .about-visual>img {
        width: calc(100% - 20px);
        height: 380px;
        margin-left: 20px;
        border-radius: 25px;
    }

    .about-image-card {
        left: 0;
        bottom: 15px;
        width: 180px;
        padding: 17px;
    }

    .about-image-card strong {
        font-size: 16px;
    }

    .about-image-number {
        top: 15px;
        right: 0;
        padding: 13px 15px;
    }

    .about-image-number strong {
        font-size: 13px;
    }

    .about-lead {
        font-size: 17px;
    }

    .solution-row,
    .solution-row-featured {
        grid-template-columns: 80px 1fr 45px;
        grid-template-areas:
            "image content arrow"
            "number content arrow";
        min-height: 170px;
        gap: 12px;
    }

    .solution-image,
    .solution-row-featured .solution-image {
        grid-area: image;
        height: 90px;
    }

    .solution-number {
        grid-area: number;
        align-self: start;
        padding-left: 5px;
    }

    .solution-content {
        grid-area: content;
    }

    .solution-arrow {
        grid-area: arrow;
    }

    .solution-content h3 {
        font-size: 21px;
    }

    .solution-content p {
        display: none;
    }

    .solution-content>span {
        font-size: 8px;
    }

    .industry-card {
        height: 330px;
    }

    .project-highlight {
        border-radius: 25px;
    }

    .project-image {
        min-height: 350px;
    }

    .project-content {
        min-height: auto;
        padding: 45px 28px;
    }

    .project-specs {
        grid-template-columns: 1fr;
    }

    .project-specs>div {
        padding: 13px;
    }

    .why-card {
        min-height: 260px;
    }

    .why-icon {
        margin-bottom: 40px;
    }

    .cta-section {
        padding: 90px 0;
    }

    .cta-section h2 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .cta-section p {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .site-footer {
        padding-top: 65px;
    }

    .footer-bottom {
        margin-top: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar .container-fluid {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .brand-text span {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.95rem;
    }

    .hero-visual {
        min-height: 400px;
    }

    .hero-floating-card {
        min-width: 145px;
    }

    .hero-floating-card-two {
        right: -8px;
        bottom: 45px;
    }

    .hero-image-caption {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .hero-image-caption strong {
        font-size: 19px;
    }

    .hero-image-caption>i {
        width: 38px;
        height: 38px;
    }

    .service-card {
        min-height: 280px;
        padding: 23px;
    }

    .product-image {
        height: 240px;
    }

    .product-content {
        gap: 10px;
    }

    .product-arrow {
        width: 38px;
        height: 38px;
    }

    .industry-card {
        height: 300px;
    }

    .solution-row,
    .solution-row-featured {
        grid-template-columns: 65px 1fr 38px;
    }

    .solution-arrow {
        width: 38px;
        height: 38px;
    }

    .solution-content h3 {
        font-size: 18px;
    }

    .about-visual {
        min-height: 350px;
    }

    .about-visual>img {
        height: 320px;
    }

    .about-image-card {
        width: 155px;
    }

    .about-image-number {
        padding: 10px 12px;
    }

    .about-image-number strong {
        font-size: 11px;
    }

    .project-image {
        min-height: 280px;
    }

    .project-content {
        padding: 40px 22px;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 8px;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
}

.navbar-cta .btn:hover {
    box-shadow: 0 12px 25px rgba(30, 111, 168, 0.18);
}

.hero-content h1 em::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 8px;
    bottom: -5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-light);
    transform: rotate(-1deg);
    opacity: 0.75;
}

.about-section .display-heading {
    font-size: clamp(2.8rem, 4.8vw, 4.6rem);
}

.solution-row:hover {
    border-color: rgba(58, 143, 199, 0.35);
    background: #F8FBFD;
}

.solution-row-accent:hover {
    background: linear-gradient(90deg, #FFF8E8, #FFFFFF);
}

.why-card:nth-child(1) {
    border-top-color: var(--blue);
}

.why-card:nth-child(2) {
    border-top-color: var(--gold);
}

.why-card:nth-child(3) {
    border-top-color: var(--blue-light);
}

.why-card:nth-child(4) {
    border-top-color: var(--navy);
}

.section-decoration {
    position: relative;
}

.section-decoration::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 22px;
    border-radius: 50%;
    background: var(--gold);
    transform: rotate(-2deg);
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(242, 169, 0, 0.45);
    outline-offset: 3px;
}

@media (max-width: 767.98px) {
    .hero-section {
        background: linear-gradient(145deg, #F7F9FB, #FFFFFF);
    }

    .hero-content h1 em::after {
        bottom: -2px;
        height: 3px;
    }

    .intro-section .display-heading,
    .about-section .display-heading {
        font-size: 2.7rem;
    }

    .brands-heading {
        text-align: left;
    }

    .service-card h3,
    .product-content h3,
    .industry-content h3 {
        font-size: 24px;
    }

    .why-card h3 {
        font-size: 23px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ABOUT PAGE */
.about-page-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 25%,
            rgba(58, 143, 199, 0.12),
            transparent 28%),
        linear-gradient(120deg,
            #F7F9FB 0%,
            #FFFFFF 62%,
            #EAF4FA 100%);
}

.about-page-hero::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -150px;
    top: -180px;
    border: 1px solid rgba(30, 111, 168, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 35px rgba(30, 111, 168, 0.025),
        0 0 0 70px rgba(30, 111, 168, 0.018);
}

.about-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        linear-gradient(rgba(11, 31, 51, 0.12) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(11, 31, 51, 0.12) 1px,
            transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to right,
            transparent,
            black 25%,
            black 70%,
            transparent);
}

.about-hero-glow {
    position: absolute;
    right: 18%;
    bottom: -150px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(242, 169, 0, 0.08);
    filter: blur(20px);
}

.about-page-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 850px;
    padding: 75px 0 65px;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 12px;
}

.about-breadcrumb a {
    color: var(--blue);
    font-weight: 600;
}

.about-breadcrumb i {
    color: var(--gold);
    font-size: 9px;
}

.about-hero-content h1 {
    max-width: 800px;
    margin: 18px 0 20px;
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: clamp(3.2rem, 5.5vw, 5.2rem);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.about-hero-content h1 em {
    position: relative;
    display: inline-block;
    color: var(--blue);
    font-style: normal;
}

.about-hero-content h1 em::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 8px;
    bottom: -5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-light);
    transform: rotate(-1deg);
}

.about-hero-content>p {
    max-width: 650px;
    margin: 0;
    color: #52616C;
    font-size: 16px;
    line-height: 1.75;
}

.about-page-section {
    background: linear-gradient(120deg,
            #EAF4FA 0%,
            #F7F9FB 100%);
}

.about-page-section .about-visual {
    min-height: 480px;
}

.about-page-section .about-visual>img {
    width: calc(100% - 30px);
    height: 430px;
    margin-left: 30px;
    object-fit: cover;
    border-radius: 28px;
}

.about-page-section .about-image-card {
    left: 0;
    bottom: 20px;
}

.about-page-section .about-image-number {
    top: 20px;
    right: 0;
}

.about-page-section .about-lead {
    max-width: 620px;
}

.about-page-section p:not(.about-lead) {
    max-width: 620px;
}

.about-why-section {
    background: var(--white);
}

.about-why-section .section-lead {
    max-width: 360px;
    margin-left: auto;
}

.about-why-section .row.g-4.mt-4 {
    margin-top: 30px !important;
}

@media (max-width: 991.98px) {
    .about-page-hero {
        min-height: 390px;
    }

    .about-hero-content {
        padding: 65px 0 55px;
    }

    .about-page-section .about-visual {
        min-height: 500px;
    }

    .about-page-section .about-visual>img {
        height: 450px;
    }

    .about-why-section .section-lead {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .about-page-hero {
        min-height: auto;
    }

    .about-hero-content {
        padding: 55px 0 50px;
    }

    .about-breadcrumb {
        margin-bottom: 22px;
    }

    .about-hero-content h1 {
        margin: 15px 0 18px;
        font-size: clamp(2.7rem, 11vw, 4rem);
    }

    .about-hero-content h1 em::after {
        bottom: -3px;
        height: 3px;
    }

    .about-hero-content>p {
        font-size: 15px;
    }

    .about-page-section .about-visual {
        min-height: 400px;
    }

    .about-page-section .about-visual>img {
        width: calc(100% - 20px);
        height: 365px;
        margin-left: 20px;
        border-radius: 24px;
    }

    .about-page-section .about-image-card {
        bottom: 10px;
    }

    .about-page-section .about-image-number {
        top: 10px;
    }

    .about-why-section .row.g-4.mt-4 {
        margin-top: 20px !important;
    }
}

@media (max-width: 480px) {
    .about-hero-content {
        padding: 48px 0 45px;
    }

    .about-page-section .about-visual {
        min-height: 350px;
    }

    .about-page-section .about-visual>img {
        height: 315px;
    }
}

/* CONTACT PAGE */
.contact-page-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 25%,
            rgba(58, 143, 199, 0.12),
            transparent 28%),
        linear-gradient(120deg,
            #F7F9FB 0%,
            #FFFFFF 62%,
            #EAF4FA 100%);
}

.contact-page-hero::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -150px;
    top: -180px;
    border: 1px solid rgba(30, 111, 168, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 35px rgba(30, 111, 168, 0.025),
        0 0 0 70px rgba(30, 111, 168, 0.018);
}

.contact-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        linear-gradient(rgba(11, 31, 51, 0.12) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(11, 31, 51, 0.12) 1px,
            transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to right,
            transparent,
            black 25%,
            black 70%,
            transparent);
}

.contact-hero-glow {
    position: absolute;
    right: 18%;
    bottom: -150px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(242, 169, 0, 0.08);
    filter: blur(20px);
}

.contact-page-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    max-width: 850px;
    padding: 75px 0 65px;
}

.contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 12px;
}

.contact-breadcrumb a {
    color: var(--blue);
    font-weight: 600;
}

.contact-breadcrumb i {
    color: var(--gold);
    font-size: 9px;
}

.contact-hero-content h1 {
    max-width: 800px;
    margin: 18px 0 20px;
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: clamp(3.2rem, 5.5vw, 5.2rem);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.contact-hero-content h1 em {
    position: relative;
    display: inline-block;
    color: var(--blue);
    font-style: normal;
}

.contact-hero-content h1 em::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 8px;
    bottom: -5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-light);
    transform: rotate(-1deg);
}

.contact-hero-content>p {
    max-width: 650px;
    margin: 0;
    color: #52616C;
    font-size: 16px;
    line-height: 1.75;
}

.contact-section {
    background: var(--white);
}

.contact-info {
    height: 100%;
    padding: 15px 20px 15px 0;
}

.contact-info h2 {
    max-width: 520px;
    margin: 18px 0 20px;
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.contact-intro {
    max-width: 520px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.contact-detail {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    transition:
        padding var(--transition),
        background var(--transition);
}

.contact-detail:hover {
    padding-left: 7px;
    color: var(--text);
}

.contact-detail-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 17px;
    transition:
        background var(--transition),
        color var(--transition);
}

.contact-detail:hover .contact-detail-icon {
    background: var(--blue);
    color: var(--white);
}

.contact-detail>span:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detail small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.contact-detail strong {
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
}

.contact-detail-arrow {
    margin-left: auto;
    color: var(--muted);
    font-size: 13px;
    transition:
        color var(--transition),
        transform var(--transition);
}

.contact-detail:hover .contact-detail-arrow {
    color: var(--blue);
    transform: translate(2px, -2px);
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 25px;
    padding: 17px;
    border: 1px solid rgba(242, 169, 0, 0.25);
    border-radius: 15px;
    background: #FFFDF7;
}

.contact-note-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--gold);
    color: var(--navy);
    font-size: 15px;
}

.contact-note strong {
    display: block;
    margin-bottom: 3px;
    color: var(--navy);
    font-size: 13px;
}

.contact-note p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.contact-form-card {
    height: 100%;
    padding: 38px;
    border: 1px solid #E5EBEF;
    border-radius: 24px;
    background: #F8FAFB;
    box-shadow: 0 18px 50px rgba(11, 31, 51, 0.055);
}

.contact-form-header {
    margin-bottom: 25px;
}

.contact-form-header>span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.contact-form-header h2 {
    margin: 8px 0 7px;
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.contact-form-header p {
    max-width: 540px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.contact-form-card label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    border: 1px solid #DCE4E9;
    border-radius: 11px;
    outline: 0;
    background: var(--white);
    color: var(--navy);
    font-family: var(--body-font);
    font-size: 13px;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.contact-form-card input,
.contact-form-card select {
    height: 48px;
    padding: 0 14px;
}

.contact-form-card textarea {
    min-height: 135px;
    padding: 13px 14px;
    resize: vertical;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: #9AA7AF;
}

.contact-form-card select {
    color: #687780;
    cursor: pointer;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    border-color: rgba(30, 111, 168, 0.55);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(30, 111, 168, 0.08);
}

.contact-submit {
    min-height: 50px;
    padding-inline: 24px;
}

.contact-strip {
    position: relative;
    overflow: hidden;
    padding: 55px 0;
    background: var(--navy);
}

.contact-strip::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -230px;
    right: -100px;
    border-radius: 50%;
    background: rgba(58, 143, 199, 0.12);
}

.contact-strip-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.contact-strip .section-kicker {
    color: var(--gold-light);
}

.contact-strip h2 {
    margin: 7px 0 0;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 500;
}

.contact-strip-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .contact-page-hero {
        min-height: 390px;
    }

    .contact-hero-content {
        padding: 65px 0 55px;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-form-card {
        padding: 30px;
    }

    .contact-strip-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .contact-page-hero {
        min-height: auto;
    }

    .contact-hero-content {
        padding: 55px 0 50px;
    }

    .contact-breadcrumb {
        margin-bottom: 22px;
    }

    .contact-hero-content h1 {
        margin: 15px 0 18px;
        font-size: clamp(2.7rem, 11vw, 4rem);
    }

    .contact-hero-content h1 em::after {
        bottom: -3px;
        height: 3px;
    }

    .contact-hero-content>p {
        font-size: 15px;
    }

    .contact-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .contact-info h2 {
        font-size: 2.7rem;
    }

    .contact-form-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .contact-form-header h2 {
        font-size: 27px;
    }

    .contact-strip {
        padding: 45px 0;
    }

    .contact-strip-inner {
        gap: 25px;
    }

    .contact-strip-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .contact-strip-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-hero-content {
        padding: 48px 0 45px;
    }

    .contact-detail strong {
        font-size: 13px;
    }

    .contact-note {
        padding: 14px;
    }

    .contact-form-card {
        padding: 22px 16px;
    }
}

/* PAGE HERO */
.products-page-hero {
    min-height: 520px;
}

.products-page-hero .about-hero-content {
    max-width: 820px;
}

.products-page-hero .about-hero-content p {
    max-width: 680px;
}

/* PRODUCTS / BRANDS SECTION */
.products-brands-section {
    background: var(--soft-gray);
}

.products-brands-section .section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.products-brands-section .section-heading-row .section-lead {
    max-width: 430px;
    margin: 0;
}

/* BRAND CARDS */
.brand-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    color: var(--navy);
    text-decoration: none;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.brand-product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.brand-product-card:hover {
    color: var(--navy);
    transform: translateY(-6px);
    border-color: rgba(11, 111, 184, 0.35);
    box-shadow: 0 20px 45px rgba(5, 25, 45, 0.1);
}

.brand-product-card:hover::before {
    transform: scaleX(1);
}

/* CARD NUMBER */
.brand-card-number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: var(--muted-light);
    font-size: 12px;
    font-weight: 700;
}

/* BRAND LOGO */
.brand-logo-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    padding: 35px;
}

.brand-logo-box img {
    display: block;
    width: auto;
    height: auto;
    max-width: 190px;
    max-height: 90px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.brand-product-card:hover .brand-logo-box img {
    transform: scale(1.06);
}

/* CARD FOOTER */
.brand-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.brand-card-bottom h3 {
    margin: 0;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.brand-card-bottom span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.brand-card-bottom i {
    transition: transform 0.25s ease;
}

.brand-product-card:hover .brand-card-bottom i {
    transform: translate(3px, -3px);
}

/* CTA */
.product-cta {
    background: var(--white);
}

.product-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px;
    border-radius: 18px;
    background: var(--navy);
}

.product-cta-content {
    max-width: 760px;
}

.product-cta h2 {
    max-width: 700px;
    margin: 12px 0;
    color: var(--white);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
}

.product-cta p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.product-cta .btn {
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .page-hero {
        padding: 160px 0 80px;
    }

    .products-hero {
        min-height: 460px;
    }

    .products-brands-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .brands-list {
        justify-content: flex-start;
    }

    .products-brands-section .section-heading-row {
        display: block;
    }

    .products-brands-section .section-heading-row .section-lead {
        margin-top: 20px;
    }

    .product-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 40px 30px;
    }

    .product-cta .btn {
        width: auto;
    }
}

@media (max-width: 767.98px) {
    .page-hero h1 {
        font-size: clamp(40px, 9vw, 56px);
    }

    .page-hero p {
        font-size: 16px;
    }

    .brand-product-card {
        min-height: 320px;
    }

    .brand-logo-box {
        min-height: 195px;
    }

    .brand-logo-box img {
        max-width: 175px;
        max-height: 85px;
    }
}

@media (max-width: 575.98px) {
    .page-hero {
        padding: 135px 0 70px;
    }

    .products-hero {
        min-height: 420px;
    }

    .page-hero h1 {
        letter-spacing: -1px;
    }

    .page-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .brands-list {
        gap: 12px 20px;
    }

    .brand-product-card {
        min-height: 300px;
        padding: 22px;
        border-radius: 14px;
    }

    .brand-card-number {
        top: 20px;
        right: 22px;
    }

    .brand-logo-box {
        min-height: 180px;
        padding: 25px;
    }

    .brand-logo-box img {
        max-width: 160px;
        max-height: 75px;
    }

    .brand-card-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding-top: 17px;
    }

    .brand-card-bottom h3 {
        font-size: 19px;
    }

    .product-cta-inner {
        padding: 30px 24px;
        border-radius: 14px;
    }

    .product-cta h2 {
        font-size: 30px;
    }

    .product-cta p {
        font-size: 14px;
    }

    .product-cta .btn {
        width: 100%;
    }
}

.blog-page-hero {
    min-height: 500px;
}

.blog-page-hero .about-hero-content {
    max-width: 800px;
}

.blog-page-hero .about-hero-content p {
    max-width: 680px;
}

/* BLOG SECTION */
.blog-section {
    background: var(--soft-gray);
}

/* BLOG CARD */
.blog-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 111, 184, 0.3);
    box-shadow: 0 18px 40px rgba(5, 25, 45, 0.1);
}

/* IMAGE */
.blog-card-image {
    display: block;
    height: 220px;
    overflow: hidden;
    background: var(--soft-gray);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

/* CONTENT */
.blog-card-content {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

/* META */
.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 13px;
}

.blog-meta span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.blog-meta span:first-child {
    color: var(--blue);
}

/* TITLE */
.blog-card-content h2 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
}

/* DESCRIPTION */
.blog-card-content p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* READ MORE */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 7px;
    margin-top: auto;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.blog-read-more:hover {
    color: var(--navy);
}

.blog-read-more i {
    transition: transform 0.25s ease;
}

.blog-read-more:hover i {
    transform: translate(3px, -3px);
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .blog-page-hero {
        min-height: 460px;
    }

    .blog-card-image {
        height: 210px;
    }
}

@media (max-width: 767.98px) {
    .blog-page-hero {
        min-height: 430px;
    }

    .blog-card-image {
        height: 230px;
    }

    .blog-card-content {
        padding: 22px;
    }
}

@media (max-width: 575.98px) {
    .blog-page-hero {
        min-height: 410px;
    }

    .blog-card-image {
        height: 220px;
    }

    .blog-card-content h2 {
        font-size: 20px;
    }
}

/* ============================================================
   BLOG DETAIL PAGE
============================================================ */
.blog-detail-hero {
    padding: 145px 0 55px;
    background: var(--soft-gray);
    border-bottom: 1px solid var(--border);
}

.blog-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 55px;
    color: var(--muted);
    font-size: 12px;
}

.blog-detail-breadcrumb a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.blog-detail-breadcrumb i {
    color: var(--muted-light);
    font-size: 9px;
}

.blog-detail-top {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blog-detail-category {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.blog-detail-top h1 {
    margin: 0 auto 22px;
    color: var(--navy);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.blog-detail-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 25px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.blog-detail-info span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.blog-detail-info i {
    color: var(--blue);
}

/* FEATURED IMAGE */
.blog-featured {
    padding: 50px 0 65px;
    background: var(--soft-gray);
}

.blog-featured-image {
    max-width: 1050px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    background: var(--soft-gray);
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ARTICLE */
.blog-content-section {
    padding: 20px 0 90px;
    background: var(--white);
}

.blog-article {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.blog-article p {
    margin: 0 0 24px;
}

.blog-article .article-introduction {
    color: var(--navy);
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}

.blog-article h2 {
    margin: 55px 0 18px;
    color: var(--navy);
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
}

.blog-article h3 {
    margin: 34px 0 12px;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-article ul {
    margin: 25px 0 30px;
    padding-left: 22px;
}

.blog-article li {
    margin-bottom: 10px;
    padding-left: 6px;
}

.blog-article strong {
    color: var(--navy);
}

/* ECSS NOTE */
.article-note {
    display: flex;
    gap: 18px;
    margin: 40px 0;
    padding: 24px;
    border-left: 3px solid var(--blue);
    background: var(--blue-pale);
}

.article-note-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: var(--white);
    background: var(--navy);
}

.article-note span {
    display: block;
    margin-bottom: 7px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.article-note p {
    margin: 0;
    color: var(--navy);
    font-size: 14px;
    line-height: 1.7;
}

/* FAQ */
.blog-faq {
    margin-top: 30px;
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border: 0;
    background: transparent;
    color: var(--navy);
    text-align: left;
    font-size: 15px;
    font-weight: 700;
}

.faq-question i {
    flex: 0 0 auto;
    color: var(--blue);
    font-size: 18px;
    transition: transform 0.25s ease;
}

.faq-question:not(.collapsed) i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 35px 20px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

/* RECENT BLOGS */
.recent-blogs {
    background: var(--soft-gray);
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    float: right;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.section-link:hover {
    color: var(--navy);
}

.section-link i {
    transition: transform 0.25s ease;
}

.section-link:hover i {
    transform: translate(3px, -3px);
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .blog-detail-hero {
        padding: 130px 0 50px;
    }

    .blog-detail-breadcrumb {
        margin-bottom: 40px;
    }

    .blog-detail-top h1 {
        font-size: 44px;
    }

    .blog-featured {
        padding: 40px 0 55px;
    }

    .blog-featured-image {
        height: 420px;
    }
}

@media (max-width: 767.98px) {
    .blog-detail-hero {
        padding: 115px 0 40px;
    }

    .blog-detail-top h1 {
        font-size: 35px;
        letter-spacing: -0.7px;
    }

    .blog-featured {
        padding: 30px 0 45px;
    }

    .blog-featured-image {
        height: 300px;
        border-radius: 12px;
    }

    .blog-content-section {
        padding-bottom: 65px;
    }

    .blog-article {
        font-size: 15px;
        line-height: 1.8;
    }

    .blog-article .article-introduction {
        font-size: 17px;
    }

    .blog-article h2 {
        margin-top: 42px;
        font-size: 26px;
    }

    .blog-article h3 {
        font-size: 19px;
    }

    .article-note {
        padding: 20px;
    }

    .section-link {
        float: none;
    }
}

@media (max-width: 575.98px) {
    .blog-detail-hero {
        padding: 100px 0 35px;
    }

    .blog-detail-breadcrumb {
        margin-bottom: 32px;
        font-size: 11px;
    }

    .blog-detail-top h1 {
        font-size: 30px;
    }

    .blog-detail-info {
        gap: 8px 16px;
    }

    .blog-featured {
        padding-top: 25px;
    }

    .blog-featured-image {
        height: 225px;
        border-radius: 10px;
    }

    .blog-article h2 {
        font-size: 24px;
    }

    .article-note {
        flex-direction: column;
    }

    .faq-question {
        font-size: 14px;
    }
}

/* ============================================================
   BRAND PAGE
============================================================ */

.brand-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -180px;
    top: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
    background: rgba(11, 111, 184, .22);
    filter: blur(15px);
    pointer-events: none;
}

.brand-breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 55px;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
}

.brand-breadcrumb a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    transition: color .25s ease;
}

.brand-breadcrumb a:hover {
    color: var(--white);
}

.brand-breadcrumb i {
    color: rgba(255, 255, 255, .28);
    font-size: 9px;
}

.brand-hero-content {
    position: relative;
    z-index: 2;
}

.brand-hero .section-kicker {
    color: var(--blue-light);
}

.brand-hero h1 {
    max-width: 720px;
    margin: 12px 0 23px;
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: clamp(3.3rem, 6vw, 5.4rem);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.04em;
}

.brand-hero h1 span {
    display: block;
    color: var(--blue-light);
}

.brand-hero-content>p {
    max-width: 620px;
    margin: 0;
    color: var(--navy-dark);
    font-size: 15px;
    line-height: 1.85;
}

.brand-intro-lead {
    color: var(--navy);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 500;
}

/* ============================================================
   HERO LOGO
============================================================ */
.brand-hero-visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-visual-frame {
    position: relative;
    z-index: 3;
    width: 330px;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(14px);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* inner frame */
.brand-visual-frame::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.brand-frame-line {
    position: absolute;
    top: 0;
    right: 0;
    width: 75px;
    height: 3px;
    background: var(--gold);
}

/* logo panel */
.brand-logo-panel {
    position: relative;
    z-index: 2;
    width: 220px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.brand-logo-panel img {
    width: 100%;
    max-width: 170px;
    max-height: 90px;
    object-fit: contain;
}

/* label */
.brand-visual-label {
    position: absolute;
    left: 25px;
    bottom: 20px;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.20em;
    color: rgba(255, 255, 255, 0.48);
}

/* decorative circles */
.brand-visual-orbit {
    position: absolute;
    border: 1px solid rgba(114, 197, 240, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    width: 410px;
    height: 410px;
}

.orbit-two {
    width: 510px;
    height: 510px;
    border-color: rgba(255, 255, 255, 0.06);
}

/* grid */
.brand-page-hero .about-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.20;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.055) 1px,
            transparent 1px);
    background-size: 55px 55px;
}

.brand-page-hero .about-hero-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    right: -180px;
    top: 50%;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(63, 169, 232, 0.18) 0%,
            rgba(63, 169, 232, 0.06) 38%,
            transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.brand-page-hero::after {
    content: "";
    position: absolute;
    right: 9%;
    bottom: 0;
    width: 90px;
    height: 3px;
    border-radius: 10px 10px 0 0;
    background: var(--gold);
}

/* ============================================================
   BRAND PRODUCTS
============================================================ */
.brand-products {
    background: var(--soft-gray);
}

.brand-product-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.brand-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 111, 184, .3);
    box-shadow: 0 20px 45px rgba(11, 31, 51, .1);
}

.brand-product-image {
    position: relative;
    height: 245px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
    background: #f8fafb;
    border-bottom: 1px solid var(--border);
}

.brand-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform .45s ease;
}

.brand-product-card:hover .brand-product-image img {
    transform: scale(1.05);
}

.brand-product-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: var(--muted-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}

.brand-product-content {
    display: flex;
    flex-direction: column;
    min-height: 215px;
    padding: 24px;
}

.brand-product-content h3 {
    margin: 0 0 11px;
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.15;
}

.brand-product-content p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.brand-product-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    margin-top: auto;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: .02em;
}

.brand-product-link:hover {
    color: var(--navy);
}

.brand-product-link i {
    transition: transform .25s ease;
}

.brand-product-link:hover i {
    transform: translate(3px, -3px);
}

/* ============================================================
   OTHER BRANDS
============================================================ */
.brand-switcher {
    overflow: hidden;
    background: var(--white);
}

.brand-carousel {
    display: flex;
    gap: 15px;
    margin-top: 42px;
    padding-bottom: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.brand-carousel::-webkit-scrollbar {
    height: 5px;
}

.brand-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.brand-carousel::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

.brand-switch-card {
    position: relative;
    flex: 0 0 205px;
    height: 165px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 19px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
    color: var(--navy);
    text-decoration: none;
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.brand-switch-card:hover {
    color: var(--navy);
    transform: translateY(-5px);
    border-color: rgba(11, 111, 184, .32);
    box-shadow: 0 15px 35px rgba(11, 31, 51, .08);
}

.brand-switch-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.brand-switch-card:hover::before {
    transform: scaleX(1);
}

.brand-switch-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.brand-switch-logo img {
    display: block;
    width: auto;
    max-width: 145px;
    max-height: 62px;
    object-fit: contain;
    transition: transform .3s ease;
}

.brand-switch-card:hover .brand-switch-logo img {
    transform: scale(1.05);
}

.brand-switch-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.brand-switch-bottom span {
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
}

.brand-switch-bottom i {
    color: var(--blue);
    font-size: 13px;
    transition: transform .25s ease;
}

.brand-switch-card:hover .brand-switch-bottom i {
    transform: translate(3px, -3px);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991.98px) {
    .brand-hero {
        min-height: auto;
        padding: 75px 0 70px;
    }

    .brand-breadcrumb {
        margin-bottom: 45px;
    }

    .brand-hero-logo {
        max-width: 100%;
        margin: 15px 0 0;
    }

    .brand-logo-frame {
        min-height: 215px;
    }

    .brand-intro-logo {
        min-height: 230px;
    }

    .brand-carousel {
        margin-right: -15px;
    }
}

@media (max-width: 767.98px) {
    .brand-hero {
        padding: 60px 0;
    }

    .brand-breadcrumb {
        margin-bottom: 35px;
        font-size: 11px;
    }

    .brand-hero h1 {
        font-size: 3.3rem;
    }

    .brand-hero-content>p {
        font-size: 14px;
    }

    .brand-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .brand-btn {
        width: 100%;
    }

    .brand-logo-frame {
        min-height: 190px;
        padding: 35px;
    }

    .brand-intro-logo {
        min-height: 210px;
    }

    .brand-intro-content .brand-intro-lead {
        font-size: 15px;
    }

    .brand-product-image {
        height: 220px;
    }

    .brand-product-content {
        min-height: auto;
    }

    .brand-switch-card {
        flex-basis: 190px;
        height: 155px;
    }
}

@media (max-width: 575.98px) {
    .brand-hero {
        padding: 50px 0 55px;
    }

    .brand-hero h1 {
        font-size: 2.8rem;
    }

    .brand-logo-frame {
        min-height: 175px;
    }

    .brand-logo-frame img {
        max-width: 190px;
        max-height: 85px;
    }

    .brand-intro-logo {
        padding: 30px;
    }

    .brand-product-image {
        height: 205px;
    }

    .brand-switch-card {
        flex-basis: 175px;
    }
}

/* ============================================================
   PRODUCT DETAIL PAGE
============================================================ */
.product-detail-section {
    padding: 70px 0 85px;
    background: var(--white);
}

.product-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 45px;
    color: var(--muted);
    font-size: 12px;
}

.product-detail-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s ease;
}

.product-detail-breadcrumb a:hover {
    color: var(--blue);
}

.product-detail-breadcrumb i {
    font-size: 9px;
}

.product-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 440px;
    padding: 35px;
    border: 1px solid var(--border);
    background: #f8fafb;
}

.product-detail-image img {
    display: block;
    width: 100%;
    max-width: 470px;
    height: 390px;
    object-fit: contain;
}

.product-detail-content {
    max-width: 580px;
}

.product-detail-content h1 {
    margin: 12px 0 22px;
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.product-detail-content h1 span {
    color: var(--blue);
}

.product-detail-intro {
    margin-bottom: 18px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.75;
}

.product-detail-content p:not(.product-detail-intro) {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.product-information-section {
    padding: 75px 0;
    background: #f8fafb;
}

.product-information-section .display-heading {
    max-width: 850px;
    margin-top: 12px;
    margin-bottom: 22px;
}

.product-information-text {
    max-width: 850px;
    margin-bottom: 15px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.product-specification-list {
    max-width: 850px;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.product-specification-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
}

.product-specification-row:last-child {
    border-bottom: 0;
}

.product-specification-row span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-specification-row strong {
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.related-products-section {
    padding: 80px 0;
    background: var(--white);
}

.related-products-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.related-product-card {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    color: inherit;
    text-decoration: none;
}

.related-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 230px;
    padding: 25px;
    background: #f8fafb;
    border-bottom: 1px solid var(--border);
}

.related-product-image img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: contain;
}

.related-product-content {
    position: relative;
    padding: 22px;
}

.related-product-content>span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
}

.related-product-content h3 {
    margin: 0;
    padding-right: 35px;
    color: var(--navy);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

.related-product-content i {
    position: absolute;
    top: 24px;
    right: 22px;
    color: var(--blue);
    font-size: 17px;
}

.related-products-controls {
    display: flex;
    gap: 8px;
    margin-top: 30px;
}

.related-products-controls button {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
    opacity: 1;
}

.related-products-controls button:hover {
    background: var(--navy);
    color: var(--white);
}

.related-products-controls button i {
    font-size: 15px;
}

@media (max-width: 991.98px) {
    .product-detail-section {
        padding: 55px 0 65px;
    }

    .product-detail-breadcrumb {
        margin-bottom: 30px;
    }

    .product-detail-image {
        min-height: 370px;
    }

    .product-detail-image img {
        height: 330px;
    }

    .product-detail-content {
        max-width: none;
    }

    .product-information-section {
        padding: 65px 0;
    }

    .related-products-section {
        padding: 65px 0;
    }
}

@media (max-width: 767.98px) {
    .product-detail-image {
        min-height: 320px;
        padding: 25px;
    }

    .product-detail-image img {
        height: 280px;
    }

    .product-detail-content h1 {
        font-size: 2.6rem;
    }

    .product-specification-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .product-specification-row strong {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .product-detail-section {
        padding: 45px 0 55px;
    }

    .product-detail-image {
        min-height: 270px;
        padding: 20px;
    }

    .product-detail-image img {
        height: 235px;
    }

    .product-detail-content h1 {
        font-size: 2.25rem;
    }

    .product-detail-intro {
        font-size: 16px;
    }

    .product-information-section,
    .related-products-section {
        padding: 55px 0;
    }

    .related-products-heading {
        margin-bottom: 30px;
    }
}