@import url('https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --outfit: "Outfit", sans-serif;
    --montserrat: "Montserrat", sans-serif;
    --plusjakarta: "Plus Jakarta Sans", sans-serif;
    --inter: "Inter", sans-serif;
    --geist: "Geist", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #050b13;
    background: #ffffff;
    line-height: 1.45;
}

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

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

input,
textarea,
label,
select {
    font-family: var(--outfit);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    height: 66px;
    border-bottom: 1px solid #edf1f5;
    background: #ffffff;
    font-family: var(--outfit);
}

.site-header .container {
    max-width: 1520px;
}

body.is-loaded .site-header {
    animation: headerDrop .55s ease both;
}

.header-inner {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-width: 250px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 12px;
    font-weight: 600;
    color: #111827;
}

.main-nav a {
    font-size: 15px;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: #0BB9FE;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .28s ease;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn {
    min-height: 44px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

.btn i {
    margin-left: 10px;
}

.btn-outline {
    color: #0BB9FE;
    border: 1px solid #0BB9FE;
    background: #ffffff;
}

.btn-dark {
    color: #ffffff;
    background: #0C2A49;
    border: 1px solid #0C2A49;
}

.btn-light {
    color: #07121e;
    background: #ffffff;
    border: 1px solid #dfe5eb;
}

.hero-section {
    padding: 46px 0 46px;
    background: #ffffff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    height: 23px;
    padding: 0 13px;
    margin-bottom: 20px;
    border-radius: 20px;
    background: #eaf7ff;
    color: #169bd5;
    font-size: 10px;
    font-family: var(--inter);
    font-weight: bold;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hero-content h1 {
    margin-bottom: 18px;
    color: #050505;
    font-size: 52px;
    font-family: var(--plusjakarta);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: #19b7ea;
}

.hero-content p {
    max-width: 365px;
    margin-bottom: 28px;
    color: #626b75;
    font-size: 18px;
    line-height: 1.75;
    font-family: var(--inter);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-buttons .btn {
    border-radius: 10px;
    padding: 15px 28px;
    font-size: 16px;
    font-family: var(--inter);
    font-weight: bold;
}

.hero-image {
    height: auto;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-strip {
    padding: 56px 0 70px;
    background: #0C2A49;
    overflow: hidden;
    margin-bottom: -1px;
}

.brand-title {
    margin-bottom: 42px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--outfit);
    letter-spacing: 4px;
    text-align: center;
}

.brand-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brand-marquee::before,
.brand-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #0C2A49 0%, rgba(12, 42, 73, 0) 100%);
}

.brand-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #0C2A49 0%, rgba(12, 42, 73, 0) 100%);
}

.brand-track {
    width: max-content;
    display: flex;
    align-items: center;
    animation: brandFlow 28s linear infinite;
    will-change: transform;
}

.brand-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 66px;
    padding-right: 66px;
    flex: 0 0 auto;
}

.brand-group img {
    max-width: 118px;
    max-height: 34px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 66px;
}

.brand-list img {
    max-width: 118px;
    max-height: 34px;
    object-fit: contain;
}

.stats-section {
    padding: 44px 0 60px;
    background: #ffffff;
}

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

.stat-card {
    position: relative;
    min-height: 175px;
    padding: 30px 24px 20px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    background: #f4f6f8;
    border-bottom: 4px solid #00C0FE;
    transition: transform .3s ease, box-shadow .3s ease;
}

.stat-card span {
    display: block;
    margin-bottom: 58px;
    color: #344050;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--montserrat);
    letter-spacing: -0.16px;
    opacity: .70;
}

.stat-card strong {
    display: block;
    color: #000000;
    font-size: 55.6px;
    line-height: 1;
    font-family: var(--geist);
    letter-spacing: -3.78px;
    font-weight: 400;
}

.stat-card img {
    position: absolute;
    right: 38px;
    top: 30px;
    width: 100px;
    opacity: 0.62;
    transition: transform .35s ease, opacity .35s ease;
}

.about-short-section {
    padding: 12px 0 105px;
    background: #ffffff;
}

.about-short-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    align-items: center;
    gap: 95px;
}

.about-symbol {
    display: flex;
    justify-content: center;
}

.about-symbol img {
    width: 385px;
    height: auto;
}

.about-short-text p {
    max-width: 610px;
    color: #323843;
    font-size: 26px;
    line-height: 1.32;
    font-weight: 300;
    font-family: var(--montserrat);
    letter-spacing: -0.8px;
}

.presentation-section {
    position: relative;
    height: 720px;
    overflow: hidden;
    background: #04182b;
}

.presentation-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 120%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.presentation-overlay-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
}

.presentation-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 95px;
    color: #ffffff;
}

.presentation-text {
    font-weight: 500;
    font-family: var(--montserrat);
}

.presentation-text strong,
.presentation-text span,
.presentation-text em {
    display: block;
    font-style: normal;
}

.presentation-text strong {
    font-size: 36px;
    line-height: 1;
}

.presentation-text span {
    font-size: 35px;
    line-height: 1.08;
}

.presentation-text em {
    font-size: 39px;
    line-height: 1.1;
}

.presentation-logo {
    display: flex;
    align-items: center;
    gap: 34px;
}

.presentation-logo img {
    width: 300px;
}

.presentation-logo span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    letter-spacing: 7px;
}

.services-section {
    padding: 78px 0 68px;
    background: #ffffff;
}

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

.section-heading-row h2 {
    margin-bottom: 6px;
    color: #07121e;
    font-size: 42px;
    font-family: var(--plusjakarta);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.7px;
}

.section-heading-row p {
    max-width: 610px;
    color: #697482;
    font-size: 16px;
    font-family: var(--inter);
    line-height: 1.6;
}

.section-heading-row>a {
    color: #004F7F;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--inter);
}

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

.service-card {
    overflow: hidden;
    border-radius: 8px;
    background: #f0f1f4;
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
}

.service-image {
    height: 185px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    cursor: pointer;
}

.service-body {
    padding: 30px 31px 34px;
}

.service-icon {
    width: 43px;
    height: 43px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #d8e1e9;
    transition: transform .3s ease, background-color .3s ease;
}

.service-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.service-card h3 {
    margin-bottom: 16px;
    color: #132131;
    font-size: 22.68px;
    line-height: 1.2;
    font-weight: 400;
    font-family: var(--plusjakarta);
    cursor: pointer;
}

.service-card p {
    margin-bottom: 24px;
    color: #506071;
    font-size: 16px;
    line-height: 1.62;
    font-family: var(--inter);
}

.service-card ul {
    list-style: none;
}

.service-card li {
    position: relative;
    margin-bottom: 11px;
    color: #617080;
    font-size: 12px;
    font-family: var(--inter);
}

.service-card li i {
    margin-right: 4px;
    color: #00C0FE;
}

.reference-cta {
    position: relative;
    min-height: 575px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 3px 3px 0 0;
}

.reference-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.reference-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(229, 235, 241, 0.95) 0%, rgba(237, 242, 246, 0.72) 42%, rgba(235, 240, 246, 0.26) 100%);
}

.reference-content {
    position: relative;
    z-index: 2;
}

.reference-content span {
    display: block;
    width: 62px;
    height: 3px;
    margin-bottom: 40px;
    background: #0C2A49;
}

.reference-content h2 {
    margin-bottom: 26px;
    color: #05070a;
    font-size: 43px;
    line-height: 1.05;
    font-weight: 900;
    font-family: var(--plusjakarta);
    letter-spacing: -1px;
}

.reference-content p {
    max-width: 380px;
    margin-bottom: 32px;
    color: #4f5b67;
    font-size: 17px;
    line-height: 1.7;
    font-family: var(--inter);
}

.reference-content .btn {
    height: 54px;
    padding: 0 30px;
    border-radius: 14px;
    font-size: 14px;
    letter-spacing: 0.2px;
    font-family: var(--inter);
    font-weight: 500;
}

.contact-band {
    padding: 42px 0;
    background: #ffffff;
    font-family: var(--outfit);
}

.contact-band-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 160px;
}

.contact-band h2 {
    color: #07121e;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.6px;
    max-width: 50%;
}

.phone-box {
    display: flex;
    align-items: center;
    gap: 18px;
}

.phone-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0C2A49;
    transition: transform .3s ease, box-shadow .3s ease;
}

.phone-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.phone-box span {
    display: block;
    margin-bottom: 4px;
    color: #6b7280;
    font-size: 15px;
    font-weight: 700;
}

.phone-box strong {
    color: #05070a;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.site-footer {
    background: #0C2A49;
    color: #ffffff;
}

.footer-grid {
    padding: 65px 24px 60px;
    display: grid;
    grid-template-columns: 1.65fr 1fr 1fr 1.25fr;
    gap: 72px;
    font-family: var(--outfit);
}

.footer-col h4 {
    margin-bottom: 23px;
    font-size: 21px;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    display: block;
    margin-bottom: 11px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.55;
}

.footer-col strong {
    display: block;
    margin-bottom: 28px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.55;
}

.footer-col a span {
    display: inline-flex;
    height: 19px;
    padding: 0 6px;
    margin-left: 4px;
    align-items: center;
    border-radius: 10px;
    background: #00C0FE;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
}

.footer-newsletter p {
    max-width: 230px;
}

.footer-newsletter>a {
    margin: 16px 0 18px;
    color: #fff;
}

.footer-newsletter>a>i {
    margin-right: 5px;
    color: #00C0FE;
}

.footer-newsletter form {
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.10);
}

.footer-newsletter input {
    width: 100%;
    height: 100%;
    padding: 0 25px;
    border: none;
    outline: none;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
}

.footer-newsletter input::placeholder {
    color: #fff;
}

.footer-newsletter button {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border: none;
    border-radius: 50%;
    background: #1f6e99;
    color: #ffffff;
    cursor: pointer;
    margin-right: 4px;
    transition: transform .25s ease, background-color .25s ease;
}

.footer-bottom {
    background: #1D4062;
    font-family: var(--outfit);
}

.footer-bottom-inner {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    width: 200px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-links a {
    color: #ffffff;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 35px;
    width: 35px;
    border-radius: 50%;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}

.mobile-menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e8ef;
    border-radius: 50%;
    background: #ffffff;
    color: #0C2A49;
    font-size: 19px;
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(5, 18, 32, 0.56);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.mobile-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    width: 390px;
    max-width: calc(100% - 28px);
    height: 100vh;
    padding: 24px;
    background: #ffffff;
    transform: translateX(105%);
    transition: .32s ease;
    overflow-y: auto;
    font-family: var(--outfit);
}

.mobile-offcanvas-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid #edf1f5;
}

.mobile-logo img {
    max-width: 180px;
    height: auto;
}

.mobile-menu-close {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e8ef;
    border-radius: 50%;
    background: #ffffff;
    color: #0C2A49;
    font-size: 19px;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #edf1f5;
    color: #111827;
    font-size: 17px;
    font-weight: 600;
}

.mobile-nav a i {
    color: #0BB9FE;
    font-size: 12px;
}

.mobile-offcanvas-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 28px;
}

.mobile-offcanvas-actions .btn {
    width: 100%;
}

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

body.mobile-menu-open .mobile-offcanvas {
    transform: translateX(0);
}

body.animations-ready .js-reveal {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: .72s;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--delay, 0ms);
    will-change: opacity, transform;
}

body.animations-ready .js-reveal[data-reveal="up"] {
    transform: translate3d(0, 28px, 0);
}

body.animations-ready .js-reveal[data-reveal="left"] {
    transform: translate3d(-32px, 0, 0);
}

body.animations-ready .js-reveal[data-reveal="right"] {
    transform: translate3d(32px, 0, 0);
}

body.animations-ready .js-reveal[data-reveal="fade"] {
    transform: translate3d(0, 0, 0);
}

body.animations-ready .js-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@keyframes brandFlow {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes headerDrop {
    0% {
        opacity: 0;
        transform: translateY(-12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (hover: hover) {
    .main-nav a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(12, 42, 73, 0.13);
    }

    .brand-marquee:hover .brand-track {
        animation-play-state: paused;
    }

    .stat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 42px rgba(12, 42, 73, 0.10);
    }

    .stat-card:hover img {
        transform: translateY(-4px) scale(1.03);
        opacity: 0.72;
    }

    .service-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 20px 44px rgba(12, 42, 73, 0.12);
    }

    .service-card:hover .service-image img {
        transform: scale(1.045);
    }

    .service-card:hover .service-icon {
        transform: translateY(-3px);
        background: #cfe8f6;
    }

    .reference-cta:hover .reference-bg {
        transform: scale(1.035);
    }

    .phone-box:hover .phone-icon {
        transform: rotate(-5deg) scale(1.04);
        box-shadow: 0 14px 28px rgba(12, 42, 73, 0.18);
    }

    .footer-col a:hover {
        color: #ffffff;
    }

    .footer-newsletter button:hover {
        transform: scale(1.04);
        background: #00C0FE;
    }

    .social-links a:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, 0.45);
        background: rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1080px;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .logo img {
        max-width: 180px;
    }

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

    .hero-content h1 {
        font-size: 56px;
    }

    .brand-list {
        gap: 44px;
    }

    .brand-group {
        gap: 44px;
        padding-right: 44px;
    }

    .footer-grid {
        gap: 45px;
    }
}

@media (max-width: 991px) {
    .site-header {
        height: 76px;
    }

    .header-inner {
        height: 76px;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .logo img {
        max-width: 175px;
    }

    .hero-section {
        padding: 54px 0 44px;
    }

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

    .hero-content {
        max-width: 720px;
    }

    .hero-content h1 {
        font-size: 52px;
        line-height: 1.08;
    }

    .hero-content p {
        max-width: 560px;
    }

    .hero-image img {
        width: 100%;
        height: auto;
    }

    .brand-strip {
        padding: 46px 0 56px;
    }

    .brand-list {
        flex-wrap: wrap;
        gap: 34px 48px;
    }

    .brand-group {
        gap: 48px;
        padding-right: 48px;
    }

    .stats-section {
        padding: 36px 0 48px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-card {
        min-height: 150px;
        padding: 24px 20px 18px;
    }

    .stat-card span {
        margin-bottom: 42px;
        font-size: 13px;
    }

    .stat-card strong {
        font-size: 46px;
    }

    .stat-card img {
        width: 78px;
        right: 20px;
        top: 24px;
    }

    .about-short-section {
        padding: 10px 0 72px;
    }

    .about-short-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-symbol {
        justify-content: flex-start;
    }

    .about-symbol img {
        width: 320px;
    }

    .about-short-text p {
        max-width: 100%;
    }

    .presentation-section {
        height: 440px;
    }

    .presentation-content {
        padding: 0 24px;
        gap: 52px;
    }

    .services-section {
        padding: 62px 0 58px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

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

    .reference-cta {
        min-height: 500px;
    }

    .reference-content h2 {
        font-size: 38px;
    }

    .contact-band-inner {
        justify-content: space-between;
        gap: 40px;
    }

    .contact-band h2 {
        font-size: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px;
    }

    .footer-bottom-inner {
        gap: 24px;
    }
}

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

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    .stat-card {
        min-height: 145px;
    }

    .about-symbol {
        justify-content: center;
    }

    .about-symbol img {
        width: 280px;
    }

    .about-short-text p {
        font-size: 23px;
        line-height: 1.38;
    }

    .presentation-section {
        height: 390px;
    }

    .presentation-content {
        align-items: flex-start;
        justify-content: center;
        text-align: left;
    }

    .presentation-text strong {
        font-size: 28px;
    }

    .presentation-text span {
        font-size: 27px;
    }

    .presentation-text em {
        font-size: 31px;
    }

    .section-heading-row h2 {
        font-size: 34px;
    }

    .section-heading-row p {
        font-size: 15px;
    }

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

    .service-image {
        height: 210px;
    }

    .reference-cta {
        min-height: 470px;
    }

    .reference-layer {
        background: linear-gradient(90deg, rgba(229, 235, 241, 0.96) 0%, rgba(237, 242, 246, 0.84) 58%, rgba(235, 240, 246, 0.46) 100%);
    }

    .reference-content h2 {
        font-size: 34px;
    }

    .reference-content p {
        font-size: 15px;
    }

    .contact-band-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 26px;
    }

    .contact-band h2 {
        font-size: 28px;
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }

    .footer-bottom-inner {
        height: auto;
        padding-top: 24px;
        padding-bottom: 24px;
        flex-direction: column;
        text-align: center;
    }

    .footer-logo img {
        width: 180px;
    }
}

@media (max-width: 575px) {

    .site-header,
    .header-inner {
        height: 68px;
    }

    .logo img {
        max-width: 150px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .mobile-offcanvas {
        width: 340px;
        padding: 20px;
    }

    .mobile-logo img {
        max-width: 155px;
    }

    .mobile-nav a {
        min-height: 52px;
        font-size: 16px;
    }

    .hero-section {
        padding: 42px 0 36px;
    }

    .section-label {
        font-size: 9px;
        letter-spacing: .8px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-buttons .btn {
        min-height: 48px;
        padding: 13px 18px;
        font-size: 14px;
    }

    .brand-title {
        font-size: 11px;
        letter-spacing: 2.4px;
    }

    .brand-list {
        gap: 28px 34px;
    }

    .brand-group {
        gap: 34px;
        padding-right: 34px;
    }

    .brand-group img {
        max-width: 102px;
    }

    .brand-marquee::before,
    .brand-marquee::after {
        width: 42px;
    }

    .stat-card strong {
        font-size: 42px;
    }

    .about-short-section {
        padding-bottom: 54px;
    }

    .about-short-text p {
        font-size: 20px;
    }

    .presentation-section {
        height: 340px;
    }

    .services-section {
        padding: 48px 0 50px;
    }

    .section-heading-row h2 {
        font-size: 30px;
    }

    .section-heading-row>a {
        font-size: 14px;
    }

    .service-image {
        height: 190px;
    }

    .service-body {
        padding: 26px 24px 30px;
    }

    .service-card h3 {
        font-size: 21px;
    }

    .service-card p {
        font-size: 15px;
    }

    .reference-cta {
        min-height: 440px;
    }

    .reference-content h2 {
        font-size: 30px;
    }

    .reference-content .btn {
        width: 100%;
        height: 50px;
        padding: 0 18px;
        font-size: 12px;
    }

    .phone-icon {
        width: 56px;
        height: 56px;
    }

    .phone-icon img {
        width: 24px;
        height: 24px;
    }

    .phone-box strong {
        font-size: 18px;
    }

    .footer-col h4 {
        font-size: 19px;
    }

    .footer-col p,
    .footer-col a {
        font-size: 15px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .brand-track {
        animation: none !important;
        transform: none !important;
    }

    body.animations-ready .js-reveal {
        opacity: 1;
        transform: none;
    }
}












.inner-hero {
    position: relative;
    padding: 82px 0 76px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 22%, rgba(0, 192, 254, 0.16) 0%, rgba(0, 192, 254, 0) 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 52%, #eef7fc 100%);
    border-bottom: 1px solid #edf1f5;
}

.inner-hero::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 54px solid rgba(12, 42, 73, 0.045);
    pointer-events: none;
}

.inner-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    align-items: center;
    gap: 70px;
}

.inner-hero-content h1 {
    margin-bottom: 16px;
    color: #050505;
    font-size: 52px;
    line-height: 1.08;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -1.4px;
}

.inner-hero-content p {
    max-width: 610px;
    margin-bottom: 26px;
    color: #5f6c7b;
    font-size: 17px;
    line-height: 1.7;
    font-family: var(--inter);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6d7785;
    font-size: 14px;
    font-family: var(--inter);
    font-weight: 600;
}

.breadcrumb a {
    color: #0C2A49;
}

.breadcrumb i {
    color: #0BB9FE;
    font-size: 11px;
}

.breadcrumb span {
    color: #7b8794;
}

.inner-hero-note {
    padding: 34px 34px 32px;
    border: 1px solid #dcebf4;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 55px rgba(12, 42, 73, 0.08);
    backdrop-filter: blur(12px);
}

.inner-hero-note strong {
    display: block;
    margin-bottom: 14px;
    color: #0C2A49;
    font-size: 24px;
    line-height: 1.25;
    font-family: var(--plusjakarta);
    font-weight: 800;
    letter-spacing: -0.4px;
}

.inner-hero-note span {
    display: block;
    color: #667483;
    font-size: 15px;
    line-height: 1.65;
    font-family: var(--inter);
}

.contact-info-section {
    padding: 68px 0 32px;
    background: #ffffff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.contact-info-card {
    min-height: 245px;
    padding: 34px 30px 30px;
    border: 1px solid #edf1f5;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(12, 42, 73, 0.055);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.contact-info-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #eaf7ff;
    color: #0BB9FE;
    font-size: 22px;
}

.contact-info-card span {
    display: block;
    margin-bottom: 7px;
    color: #7a8795;
    font-size: 13px;
    font-family: var(--inter);
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.contact-info-card strong {
    display: block;
    margin-bottom: 14px;
    color: #0C2A49;
    font-size: 22px;
    line-height: 1.2;
    font-family: var(--plusjakarta);
    font-weight: 800;
}

.contact-info-card p {
    color: #667483;
    font-size: 15px;
    line-height: 1.65;
    font-family: var(--inter);
}

.contact-main-section {
    padding: 38px 0 70px;
    background: #ffffff;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 28px;
    align-items: stretch;
}

.contact-form-box {
    padding: 42px;
    border-radius: 20px;
    background: #f4f6f8;
}

.contact-form-heading {
    margin-bottom: 30px;
}

.contact-form-heading span,
.contact-side-content>span,
.inner-contact-cta span {
    display: block;
    margin-bottom: 10px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.6px;
}

.contact-form-heading h2 {
    margin-bottom: 10px;
    color: #07121e;
    font-size: 36px;
    line-height: 1.1;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.8px;
}

.contact-form-heading p {
    max-width: 560px;
    color: #667483;
    font-size: 16px;
    line-height: 1.65;
    font-family: var(--inter);
}

.contact-form {
    display: grid;
    gap: 18px;
}

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

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    color: #1a2736;
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 54px;
    padding: 0 18px;
    border: 1px solid #dfe7ee;
    border-radius: 12px;
    outline: none;
    background: #ffffff;
    color: #0d1722;
    font-size: 15px;
    font-family: var(--inter);
    transition: border-color .25s ease, box-shadow .25s ease;
}

.form-group textarea {
    height: 138px;
    padding-top: 17px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa5b1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0BB9FE;
    box-shadow: 0 0 0 4px rgba(11, 185, 254, 0.10);
}

.contact-form .btn {
    width: fit-content;
    height: 54px;
    padding: 0 30px;
    border-radius: 10px;
    cursor: pointer;
}

.contact-side-box {
    position: relative;
    padding: 42px 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 20px;
    background:
        radial-gradient(circle at 90% 0%, rgba(0, 192, 254, 0.22) 0%, rgba(0, 192, 254, 0) 36%),
        #0C2A49;
    color: #ffffff;
}

.contact-side-box::before {
    content: "";
    position: absolute;
    right: -95px;
    bottom: -95px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.055);
}

.contact-side-content {
    position: relative;
    z-index: 2;
}

.contact-side-content h3 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 31px;
    line-height: 1.16;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.7px;
}

.contact-side-content p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.7;
    font-family: var(--inter);
}

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

.contact-side-list div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-side-list i {
    color: #00C0FE;
}

.contact-side-list strong {
    color: #ffffff;
    font-size: 15px;
    font-family: var(--inter);
    font-weight: 700;
}

.contact-working-card {
    position: relative;
    z-index: 2;
    margin-top: 44px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
}

.contact-working-card span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    font-family: var(--inter);
    font-weight: 600;
}

.contact-working-card strong {
    color: #ffffff;
    font-size: 17px;
    font-family: var(--outfit);
    font-weight: 700;
}

.contact-working-card i {
    color: #00C0FE;
    font-size: 28px;
}

.map-section {
    padding: 0 0 72px;
    background: #ffffff;
}

.map-box {
    height: 420px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #edf1f5;
    background: #f4f6f8;
    box-shadow: 0 18px 46px rgba(12, 42, 73, 0.07);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: grayscale(.08);
}

.inner-contact-cta {
    padding: 0 0 76px;
    background: #ffffff;
}

.inner-contact-cta-inner {
    padding: 38px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    border-radius: 20px;
    background: #0C2A49;
    color: #ffffff;
}

.inner-contact-cta h2 {
    max-width: 680px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.18;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.6px;
}

.inner-contact-cta .btn-light {
    border-color: rgba(255, 255, 255, 0.2);
}

@media (hover: hover) {
    .contact-info-card:hover {
        transform: translateY(-7px);
        border-color: rgba(11, 185, 254, 0.28);
        box-shadow: 0 24px 56px rgba(12, 42, 73, 0.10);
    }
}

@media (max-width: 991px) {
    .inner-hero {
        padding: 66px 0 62px;
    }

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

    .inner-hero-content h1 {
        font-size: 44px;
    }

    .inner-hero-note {
        max-width: 620px;
    }

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

    .contact-info-card {
        min-height: auto;
    }

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

    .contact-side-box {
        min-height: 430px;
    }

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

@media (max-width: 768px) {
    .inner-hero {
        padding: 54px 0 52px;
    }

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

    .inner-hero-content p {
        font-size: 15px;
    }

    .inner-hero-note {
        padding: 28px 24px;
    }

    .inner-hero-note strong {
        font-size: 22px;
    }

    .contact-info-section {
        padding: 52px 0 24px;
    }

    .contact-main-section {
        padding: 28px 0 56px;
    }

    .contact-form-box {
        padding: 30px 24px;
    }

    .contact-form-heading h2 {
        font-size: 30px;
    }

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

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

    .contact-side-box {
        min-height: auto;
        padding: 34px 24px;
    }

    .contact-side-content h3 {
        font-size: 27px;
    }

    .map-section {
        padding-bottom: 58px;
    }

    .map-box {
        height: 340px;
        border-radius: 16px;
    }

    .inner-contact-cta {
        padding-bottom: 58px;
    }

    .inner-contact-cta-inner {
        padding: 32px 24px;
    }

    .inner-contact-cta h2 {
        font-size: 27px;
    }
}

@media (max-width: 575px) {
    .inner-hero-content h1 {
        font-size: 34px;
    }

    .breadcrumb {
        flex-wrap: wrap;
        font-size: 13px;
    }

    .contact-info-card {
        padding: 28px 24px;
        border-radius: 14px;
    }

    .contact-info-card strong {
        font-size: 20px;
    }

    .contact-side-content h3 {
        font-size: 24px;
    }

    .contact-working-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .map-box {
        height: 300px;
    }

    .inner-contact-cta h2 {
        font-size: 24px;
    }

    .inner-contact-cta .btn {
        width: 100%;
    }
}





















.blog-featured-section {
    padding: 72px 0 34px;
    background: #ffffff;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    overflow: hidden;
    border-radius: 22px;
    background: #f4f6f8;
    box-shadow: 0 22px 56px rgba(12, 42, 73, 0.08);
}

.blog-featured-image {
    min-height: 430px;
    overflow: hidden;
    background: #dfe7ee;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.blog-featured-content {
    padding: 54px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-meta {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    font-family: var(--inter);
}

.blog-card-meta span {
    display: inline-flex;
    min-height: 25px;
    padding: 0 12px;
    align-items: center;
    border-radius: 20px;
    background: #eaf7ff;
    color: #0BB9FE;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.blog-card-meta em {
    color: #7a8795;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}

.blog-featured-content h2 {
    margin-bottom: 18px;
    color: #07121e;
    font-size: 38px;
    line-height: 1.14;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.9px;
}

.blog-featured-content p {
    margin-bottom: 26px;
    color: #667483;
    font-size: 16px;
    line-height: 1.72;
    font-family: var(--inter);
}

.blog-read-more {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0C2A49;
    font-size: 14px;
    font-family: var(--inter);
    font-weight: 800;
    transition: color .25s ease, gap .25s ease;
}

.blog-read-more i {
    color: #0BB9FE;
    font-size: 13px;
}

.blog-list-section {
    padding: 42px 0 76px;
    background: #ffffff;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
    align-items: start;
}

.blog-section-head {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 34px;
}

.blog-section-head span {
    display: block;
    margin-bottom: 9px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.6px;
}

.blog-section-head h2 {
    color: #07121e;
    font-size: 38px;
    line-height: 1.1;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.8px;
}

.blog-section-head p {
    max-width: 430px;
    color: #667483;
    font-size: 15px;
    line-height: 1.65;
    font-family: var(--inter);
}

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

.blog-card {
    overflow: hidden;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(12, 42, 73, 0.055);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.blog-card-image {
    height: 235px;
    display: block;
    overflow: hidden;
    background: #f4f6f8;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.blog-card-body {
    padding: 26px 26px 28px;
}

.blog-card h3 {
    margin-bottom: 14px;
    color: #132131;
    font-size: 22px;
    line-height: 1.28;
    font-family: var(--plusjakarta);
    font-weight: 800;
    letter-spacing: -0.35px;
}

.blog-card p {
    margin-bottom: 22px;
    color: #667483;
    font-size: 15px;
    line-height: 1.65;
    font-family: var(--inter);
}

.blog-sidebar {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 20px;
}

.blog-sidebar-card {
    padding: 28px;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(12, 42, 73, 0.055);
}

.blog-sidebar-card h3 {
    margin-bottom: 20px;
    color: #07121e;
    font-size: 21px;
    line-height: 1.2;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.3px;
}

.blog-search-form {
    height: 52px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #dfe7ee;
    border-radius: 14px;
    background: #f8fafc;
}

.blog-search-form input {
    width: 100%;
    height: 100%;
    padding: 0 17px;
    border: none;
    outline: none;
    background: transparent;
    color: #07121e;
    font-size: 14px;
    font-family: var(--inter);
}

.blog-search-form button {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border: none;
    background: #0C2A49;
    color: #ffffff;
    cursor: pointer;
}

.blog-category-list {
    display: grid;
    gap: 10px;
}

.blog-category-list a {
    min-height: 46px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 12px;
    background: #f4f6f8;
    color: #344050;
    font-family: var(--inter);
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.blog-category-list span {
    font-size: 14px;
    font-weight: 700;
}

.blog-category-list em {
    min-width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #0BB9FE;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.small-post-list {
    display: grid;
    gap: 16px;
}

.small-post {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 14px;
    align-items: center;
}

.small-post img {
    width: 76px;
    height: 76px;
    border-radius: 14px;
    object-fit: cover;
    background: #f4f6f8;
}

.small-post span {
    display: block;
    margin-bottom: 6px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 700;
}

.small-post strong {
    display: block;
    color: #132131;
    font-size: 14px;
    line-height: 1.35;
    font-family: var(--inter);
    font-weight: 800;
    transition: color .25s ease;
}

.blog-sidebar-cta {
    padding: 30px 28px;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 0%, rgba(0, 192, 254, 0.23) 0%, rgba(0, 192, 254, 0) 40%),
        #0C2A49;
    color: #ffffff;
}

.blog-sidebar-cta::before {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -72px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 32px solid rgba(255, 255, 255, 0.06);
}

.blog-sidebar-cta span {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 12px;
    color: #00C0FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.5px;
}

.blog-sidebar-cta h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.22;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.4px;
}

.blog-sidebar-cta .btn {
    position: relative;
    z-index: 2;
    width: 100%;
    border-color: rgba(255, 255, 255, 0.2);
}

.blog-pagination {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-pagination a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfe7ee;
    border-radius: 50%;
    background: #ffffff;
    color: #0C2A49;
    font-size: 14px;
    font-family: var(--inter);
    font-weight: 800;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.blog-pagination a.is-active {
    border-color: #0C2A49;
    background: #0C2A49;
    color: #ffffff;
}

@media (hover: hover) {

    .blog-featured-card:hover .blog-featured-image img,
    .blog-card:hover .blog-card-image img {
        transform: scale(1.045);
    }

    .blog-read-more:hover {
        gap: 13px;
        color: #0BB9FE;
    }

    .blog-card:hover {
        transform: translateY(-7px);
        border-color: rgba(11, 185, 254, 0.28);
        box-shadow: 0 24px 56px rgba(12, 42, 73, 0.10);
    }

    .blog-category-list a:hover {
        transform: translateX(4px);
        background: #eaf7ff;
        color: #0C2A49;
    }

    .small-post:hover strong {
        color: #0BB9FE;
    }

    .blog-pagination a:hover {
        transform: translateY(-2px);
        border-color: #0BB9FE;
        background: #eaf7ff;
        color: #0C2A49;
    }
}

@media (max-width: 1200px) {
    .blog-featured-card {
        grid-template-columns: minmax(0, 1fr) 390px;
    }

    .blog-featured-content {
        padding: 44px 38px;
    }

    .blog-featured-content h2 {
        font-size: 34px;
    }

    .blog-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 28px;
    }
}

@media (max-width: 991px) {
    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-featured-image {
        min-height: 340px;
    }

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

    .blog-sidebar {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-sidebar-cta {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .blog-featured-section {
        padding: 54px 0 28px;
    }

    .blog-featured-image {
        min-height: 280px;
    }

    .blog-featured-content {
        padding: 32px 24px;
    }

    .blog-featured-content h2 {
        font-size: 29px;
    }

    .blog-list-section {
        padding: 34px 0 58px;
    }

    .blog-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .blog-section-head h2 {
        font-size: 31px;
    }

    .blog-section-head p {
        max-width: 100%;
    }

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

    .blog-card-image {
        height: 220px;
    }

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

    .blog-sidebar-cta {
        grid-column: auto;
    }
}

@media (max-width: 575px) {
    .blog-featured-content h2 {
        font-size: 26px;
    }

    .blog-card-body {
        padding: 24px 22px 26px;
    }

    .blog-card h3 {
        font-size: 20px;
    }

    .blog-sidebar-card,
    .blog-sidebar-cta {
        padding: 24px 22px;
        border-radius: 16px;
    }

    .small-post {
        grid-template-columns: 68px 1fr;
    }

    .small-post img {
        width: 68px;
        height: 68px;
    }

    .blog-pagination {
        justify-content: center;
    }
}













.blog-detail-hero .inner-hero-content h1 {
    max-width: 760px;
    font-size: 48px;
}

.blog-detail-section {
    padding: 72px 0 54px;
    background: #ffffff;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 38px;
    align-items: start;
}

.blog-detail-article {
    overflow: hidden;
    border: 1px solid #edf1f5;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(12, 42, 73, 0.07);
}

.blog-detail-cover {
    height: 475px;
    overflow: hidden;
    background: #f4f6f8;
}

.blog-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-meta {
    padding: 28px 42px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: var(--inter);
}

.blog-detail-meta>div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.blog-detail-meta span {
    display: inline-flex;
    min-height: 25px;
    padding: 0 12px;
    align-items: center;
    border-radius: 20px;
    background: #eaf7ff;
    color: #0BB9FE;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.blog-detail-meta em {
    color: #7a8795;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}

.blog-detail-meta i {
    color: #0BB9FE;
    font-size: 15px;
}

.blog-detail-meta strong {
    color: #6c7785;
    font-size: 13px;
    font-weight: 700;
}

.blog-detail-content {
    padding: 34px 42px 36px;
}

.blog-detail-content .lead-text {
    margin-bottom: 30px;
    color: #334155;
    font-size: 20px;
    line-height: 1.75;
    font-family: var(--inter);
    font-weight: 500;
}

.blog-detail-content h2 {
    margin: 34px 0 16px;
    color: #07121e;
    font-size: 31px;
    line-height: 1.18;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.6px;
}

.blog-detail-content h3 {
    margin-bottom: 8px;
    color: #07121e;
    font-size: 22px;
    line-height: 1.2;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.blog-detail-content p {
    margin-bottom: 18px;
    color: #5f6c7b;
    font-size: 16px;
    line-height: 1.82;
    font-family: var(--inter);
}

.blog-detail-content blockquote {
    margin: 34px 0;
    padding: 34px 36px;
    border-left: 5px solid #00C0FE;
    border-radius: 16px;
    background: #f4f6f8;
}

.blog-detail-content blockquote p {
    margin: 0;
    color: #0C2A49;
    font-size: 22px;
    line-height: 1.55;
    font-family: var(--plusjakarta);
    font-weight: 800;
    letter-spacing: -0.3px;
}

.blog-detail-image {
    margin: 34px 0;
    overflow: hidden;
    border-radius: 18px;
    background: #f4f6f8;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
}

.blog-detail-highlight {
    margin: 34px 0;
    padding: 28px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: flex-start;
    border-radius: 18px;
    background:
        radial-gradient(circle at 92% 10%, rgba(0, 192, 254, 0.16) 0%, rgba(0, 192, 254, 0) 34%),
        #0C2A49;
    color: #ffffff;
}

.blog-detail-highlight-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    color: #00C0FE;
    font-size: 22px;
}

.blog-detail-highlight h3 {
    color: #ffffff;
}

.blog-detail-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.72;
}

.blog-detail-content ul {
    margin: 22px 0 30px;
    padding: 0;
    display: grid;
    gap: 13px;
    list-style: none;
}

.blog-detail-content li {
    position: relative;
    padding-left: 28px;
    color: #5f6c7b;
    font-size: 16px;
    line-height: 1.65;
    font-family: var(--inter);
}

.blog-detail-content li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 2px;
    color: #00C0FE;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.blog-detail-tags {
    padding: 28px 42px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid #edf1f5;
}

.blog-detail-tags>span,
.blog-detail-share>span {
    color: #07121e;
    font-size: 15px;
    font-family: var(--inter);
    font-weight: 800;
}

.blog-detail-tags div {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px;
}

.blog-detail-tags a {
    min-height: 34px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    border-radius: 20px;
    background: #f4f6f8;
    color: #516070;
    font-size: 13px;
    font-family: var(--inter);
    font-weight: 700;
    transition: background-color .25s ease, color .25s ease;
}

.blog-detail-share {
    padding: 0 42px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.blog-detail-share div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-detail-share a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0C2A49;
    color: #ffffff;
    font-size: 14px;
    transition: transform .25s ease, background-color .25s ease;
}

.blog-author-box {
    margin: 0 42px 34px;
    padding: 26px;
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 20px;
    border-radius: 18px;
    background: #f4f6f8;
}

.blog-author-avatar {
    width: 82px;
    height: 82px;
    overflow: hidden;
    border-radius: 50%;
    background: #dfe7ee;
}

.blog-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author-box span {
    display: block;
    margin-bottom: 5px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-author-box h3 {
    margin-bottom: 8px;
    color: #07121e;
    font-size: 22px;
    line-height: 1.2;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.blog-author-box p {
    color: #667483;
    font-size: 15px;
    line-height: 1.65;
    font-family: var(--inter);
}

.blog-post-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #edf1f5;
}

.blog-post-navigation a {
    min-height: 116px;
    padding: 28px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    transition: background-color .25s ease;
}

.blog-post-navigation a+a {
    border-left: 1px solid #edf1f5;
    text-align: right;
    align-items: flex-end;
}

.blog-post-navigation span {
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-post-navigation strong {
    max-width: 280px;
    color: #07121e;
    font-size: 18px;
    line-height: 1.35;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.related-post-section {
    padding: 18px 0 76px;
    background: #ffffff;
}

.related-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (hover: hover) {
    .blog-detail-tags a:hover {
        background: #eaf7ff;
        color: #0C2A49;
    }

    .blog-detail-share a:hover {
        transform: translateY(-3px);
        background: #0BB9FE;
    }

    .blog-post-navigation a:hover {
        background: #f8fafc;
    }
}

@media (max-width: 1200px) {
    .blog-detail-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 28px;
    }

    .blog-detail-hero .inner-hero-content h1 {
        font-size: 42px;
    }

    .blog-detail-cover {
        height: 420px;
    }
}

@media (max-width: 991px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-detail-sidebar {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-detail-sidebar .blog-sidebar-cta {
        grid-column: span 2;
    }

    .related-post-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-detail-section {
        padding: 54px 0 42px;
    }

    .blog-detail-hero .inner-hero-content h1 {
        font-size: 34px;
    }

    .blog-detail-cover {
        height: 300px;
    }

    .blog-detail-meta {
        padding: 24px 24px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-detail-content {
        padding: 28px 24px 30px;
    }

    .blog-detail-content .lead-text {
        font-size: 18px;
    }

    .blog-detail-content h2 {
        font-size: 27px;
    }

    .blog-detail-content blockquote {
        padding: 28px 24px;
    }

    .blog-detail-content blockquote p {
        font-size: 19px;
    }

    .blog-detail-highlight {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .blog-detail-tags {
        padding: 26px 24px;
        flex-direction: column;
    }

    .blog-detail-tags div {
        justify-content: flex-start;
    }

    .blog-detail-share {
        padding: 0 24px 28px;
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-author-box {
        margin: 0 24px 30px;
        grid-template-columns: 1fr;
    }

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

    .blog-post-navigation a+a {
        border-left: none;
        border-top: 1px solid #edf1f5;
        text-align: left;
        align-items: flex-start;
    }

    .related-post-section {
        padding: 12px 0 58px;
    }
}

@media (max-width: 575px) {
    .blog-detail-cover {
        height: 240px;
    }

    .blog-detail-content h2 {
        font-size: 24px;
    }

    .blog-detail-content p,
    .blog-detail-content li {
        font-size: 15px;
    }

    .blog-author-avatar {
        width: 74px;
        height: 74px;
    }

    .blog-post-navigation a {
        padding: 24px;
    }

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

    .blog-detail-sidebar .blog-sidebar-cta {
        grid-column: auto;
    }
}













.service-list-intro-section {
    padding: 72px 0 34px;
    background: #ffffff;
}

.service-list-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 54px;
    align-items: center;
}

.service-list-intro-text span,
.service-process-heading span,
.service-brand-inner>span {
    display: block;
    margin-bottom: 10px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.6px;
}

.service-list-intro-text h2,
.service-process-heading h2,
.service-brand-inner h2 {
    margin-bottom: 18px;
    color: #07121e;
    font-size: 38px;
    line-height: 1.12;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.8px;
}

.service-list-intro-text p,
.service-process-heading p {
    max-width: 690px;
    color: #667483;
    font-size: 16px;
    line-height: 1.72;
    font-family: var(--inter);
}

.service-list-intro-card {
    padding: 34px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 88% 6%, rgba(0, 192, 254, 0.20) 0%, rgba(0, 192, 254, 0) 38%),
        #0C2A49;
    color: #ffffff;
    box-shadow: 0 22px 56px rgba(12, 42, 73, 0.13);
}

.service-list-intro-card div {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.09);
}

.service-list-intro-card strong {
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
    font-family: var(--geist);
    font-weight: 500;
    letter-spacing: -1.4px;
}

.service-list-intro-card span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.35;
    font-family: var(--inter);
    font-weight: 700;
    text-align: right;
}

.service-list-section {
    padding: 42px 0 76px;
    background: #ffffff;
}

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

.service-list-card {
    overflow: hidden;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(12, 42, 73, 0.055);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-list-image {
    height: 225px;
    display: block;
    overflow: hidden;
    background: #f4f6f8;
}

.service-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.service-list-body {
    position: relative;
    padding: 30px 28px 32px;
}

.service-list-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eaf7ff;
}

.service-list-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.service-list-body>span {
    position: absolute;
    right: 28px;
    top: 28px;
    color: rgba(12, 42, 73, 0.09);
    font-size: 54px;
    line-height: 1;
    font-family: var(--geist);
    font-weight: 800;
    letter-spacing: -2px;
}

.service-list-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 14px;
    color: #132131;
    font-size: 23px;
    line-height: 1.24;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.4px;
}

.service-list-card p {
    margin-bottom: 22px;
    color: #667483;
    font-size: 15px;
    line-height: 1.66;
    font-family: var(--inter);
}

.service-list-card ul {
    margin-bottom: 24px;
    display: grid;
    gap: 10px;
    list-style: none;
}

.service-list-card li {
    color: #516070;
    font-size: 13px;
    line-height: 1.45;
    font-family: var(--inter);
    font-weight: 700;
}

.service-list-card li i {
    margin-right: 6px;
    color: #00C0FE;
}

.service-process-section {
    padding: 0 0 76px;
    background: #ffffff;
}

.service-process-box {
    padding: 48px;
    overflow: hidden;
    position: relative;
    border-radius: 22px;
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 192, 254, 0.18) 0%, rgba(0, 192, 254, 0) 34%),
        #f4f6f8;
}

.service-process-box::before {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 42px solid rgba(12, 42, 73, 0.045);
}

.service-process-heading {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-bottom: 36px;
}

.service-process-list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-process-item {
    min-height: 210px;
    padding: 28px 24px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(12, 42, 73, 0.055);
}

.service-process-item span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0C2A49;
    color: #ffffff;
    font-size: 13px;
    font-family: var(--inter);
    font-weight: 800;
}

.service-process-item h3 {
    margin-bottom: 10px;
    color: #07121e;
    font-size: 21px;
    line-height: 1.2;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.service-process-item p {
    color: #667483;
    font-size: 14px;
    line-height: 1.62;
    font-family: var(--inter);
}

.service-brand-section {
    padding: 0 0 76px;
    background: #ffffff;
}

.service-brand-inner {
    padding: 42px;
    border-radius: 22px;
    background: #0C2A49;
    color: #ffffff;
    text-align: center;
}

.service-brand-inner h2 {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.service-brand-list {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 46px;
}

.service-brand-list img {
    max-width: 126px;
    max-height: 38px;
    object-fit: contain;
}

@media (hover: hover) {
    .service-list-card:hover {
        transform: translateY(-7px);
        border-color: rgba(11, 185, 254, 0.28);
        box-shadow: 0 24px 56px rgba(12, 42, 73, 0.10);
    }

    .service-list-card:hover .service-list-image img {
        transform: scale(1.045);
    }
}

@media (max-width: 1200px) {
    .service-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 991px) {
    .service-list-intro-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .service-list-intro-card {
        max-width: 560px;
    }

    .service-list-intro-text h2,
    .service-process-heading h2,
    .service-brand-inner h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .service-list-intro-section {
        padding: 54px 0 28px;
    }

    .service-list-section {
        padding: 34px 0 58px;
    }

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

    .service-list-image {
        height: 220px;
    }

    .service-process-section,
    .service-brand-section {
        padding-bottom: 58px;
    }

    .service-process-box {
        padding: 34px 24px;
    }

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

    .service-brand-inner {
        padding: 34px 24px;
    }

    .service-brand-list {
        gap: 30px;
    }
}

@media (max-width: 575px) {

    .service-list-intro-text h2,
    .service-process-heading h2,
    .service-brand-inner h2 {
        font-size: 28px;
    }

    .service-list-intro-card {
        padding: 24px;
    }

    .service-list-intro-card div {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-list-intro-card span {
        text-align: left;
    }

    .service-list-body {
        padding: 28px 22px 30px;
    }

    .service-list-card h3 {
        font-size: 21px;
    }

    .service-brand-list img {
        max-width: 108px;
    }
}











.service-detail-hero .inner-hero-content h1 {
    max-width: 720px;
}

.service-detail-section {
    padding: 72px 0 58px;
    background: #ffffff;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 38px;
    align-items: start;
}

.service-detail-main {
    overflow: hidden;
    border: 1px solid #edf1f5;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(12, 42, 73, 0.07);
}

.service-detail-cover {
    height: 465px;
    overflow: hidden;
    background: #f4f6f8;
}

.service-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 42px;
}

.service-detail-title-row {
    margin-bottom: 26px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.service-detail-title-row span {
    display: block;
    margin-bottom: 10px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.6px;
}

.service-detail-title-row h2,
.service-detail-content h2 {
    color: #07121e;
    font-size: 34px;
    line-height: 1.14;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.7px;
}

.service-detail-icon {
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #eaf7ff;
}

.service-detail-icon img {
    width: 31px;
    height: 31px;
    object-fit: contain;
}

.service-detail-content .lead-text {
    color: #334155;
    font-size: 19px;
    line-height: 1.76;
    font-family: var(--inter);
    font-weight: 500;
}

.service-detail-content p {
    margin-bottom: 18px;
    color: #5f6c7b;
    font-size: 16px;
    line-height: 1.82;
    font-family: var(--inter);
}

.service-detail-content h2 {
    margin: 16px 0 16px;
    font-size: 31px;
}

.service-detail-content h3 {
    color: #07121e;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.service-detail-content h4 {
    color: #07121e;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.service-detail-feature-grid {
    margin: 36px 0 38px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-detail-feature {
    min-height: 205px;
    padding: 28px 24px;
    border-radius: 18px;
    background: #f4f6f8;
    transition: transform .3s ease, box-shadow .3s ease;
}

.service-detail-feature i {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #0C2A49;
    color: #00C0FE;
    font-size: 21px;
}

.service-detail-feature h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.25;
}

.service-detail-feature p {
    margin: 0;
    color: #667483;
    font-size: 14px;
    line-height: 1.62;
}

.service-detail-image-row {
    margin: 34px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-detail-image-row div {
    height: 255px;
    overflow: hidden;
    border-radius: 18px;
    background: #f4f6f8;
}

.service-detail-image-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-check-list {
    margin: 28px 0 36px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.service-detail-check-list div {
    min-height: 62px;
    padding: 17px 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-radius: 14px;
    background: #f4f6f8;
}

.service-detail-check-list i {
    color: #00C0FE;
    font-size: 17px;
}

.service-detail-check-list span {
    color: #344050;
    font-size: 14px;
    line-height: 1.45;
    font-family: var(--inter);
    font-weight: 700;
}

.service-detail-highlight {
    margin: 38px 0;
    padding: 32px;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 20px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 192, 254, 0.18) 0%, rgba(0, 192, 254, 0) 34%),
        #0C2A49;
    color: #ffffff;
}

.service-detail-highlight-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    color: #00C0FE;
    font-size: 24px;
}

.service-detail-highlight h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.25;
}

.service-detail-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.72;
}

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

.service-detail-process div {
    padding: 24px 20px;
    border: 1px solid #edf1f5;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(12, 42, 73, 0.05);
}

.service-detail-process span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf7ff;
    color: #0BB9FE;
    font-size: 13px;
    font-family: var(--inter);
    font-weight: 900;
}

.service-detail-process h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.service-detail-process p {
    margin: 0;
    color: #667483;
    font-size: 13px;
    line-height: 1.58;
}

.service-detail-sidebar {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 20px;
}

.service-sidebar-card {
    padding: 28px;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(12, 42, 73, 0.055);
}

.service-sidebar-card h3 {
    margin-bottom: 20px;
    color: #07121e;
    font-size: 21px;
    line-height: 1.2;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.3px;
}

.service-sidebar-list {
    display: grid;
    gap: 10px;
}

.service-sidebar-list a {
    min-height: 54px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 13px;
    background: #f4f6f8;
    color: #344050;
    font-family: var(--inter);
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.service-sidebar-list a span {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

.service-sidebar-list a i {
    color: #0BB9FE;
    font-size: 13px;
}

.service-sidebar-list a.is-active {
    background: #0C2A49;
    color: #ffffff;
}

.service-info-list {
    display: grid;
    gap: 15px;
}

.service-info-list div {
    padding-bottom: 15px;
    border-bottom: 1px solid #edf1f5;
}

.service-info-list div:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.service-info-list span {
    display: block;
    margin-bottom: 5px;
    color: #7a8795;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.service-info-list strong {
    display: block;
    color: #07121e;
    font-size: 15px;
    line-height: 1.45;
    font-family: var(--inter);
    font-weight: 800;
}

.service-sidebar-cta {
    padding: 30px 28px;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 0%, rgba(0, 192, 254, 0.23) 0%, rgba(0, 192, 254, 0) 40%),
        #0C2A49;
    color: #ffffff;
}

.service-sidebar-cta::before {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -72px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 32px solid rgba(255, 255, 255, 0.06);
}

.service-sidebar-cta span,
.service-sidebar-cta h3,
.service-sidebar-cta p,
.service-sidebar-cta a {
    position: relative;
    z-index: 2;
}

.service-sidebar-cta span {
    display: block;
    margin-bottom: 12px;
    color: #00C0FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.5px;
}

.service-sidebar-cta h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.22;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.4px;
}

.service-sidebar-cta p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.65;
    font-family: var(--inter);
}

.service-sidebar-cta .btn {
    width: 100%;
    border-color: rgba(255, 255, 255, 0.2);
}

.service-detail-faq-section {
    padding: 18px 0 76px;
    background: #ffffff;
}

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

.service-faq-item {
    padding: 30px 28px;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(12, 42, 73, 0.055);
}

.service-faq-item h3 {
    margin-bottom: 12px;
    color: #07121e;
    font-size: 21px;
    line-height: 1.25;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.service-faq-item p {
    color: #667483;
    font-size: 15px;
    line-height: 1.65;
    font-family: var(--inter);
}

.related-service-section {
    padding: 0 0 76px;
    background: #ffffff;
}

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

@media (hover: hover) {
    .service-detail-feature:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(12, 42, 73, 0.08);
    }

    .service-sidebar-list a:hover {
        transform: translateX(4px);
        background: #eaf7ff;
        color: #0C2A49;
    }

    .service-sidebar-list a.is-active:hover {
        background: #0C2A49;
        color: #ffffff;
    }
}

@media (max-width: 1200px) {
    .service-detail-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 28px;
    }

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

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

@media (max-width: 991px) {
    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-sidebar {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }

    .service-sidebar-cta {
        grid-column: span 2;
    }

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

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

@media (max-width: 768px) {
    .service-detail-section {
        padding: 54px 0 44px;
    }

    .service-detail-cover {
        height: 310px;
    }

    .service-detail-content {
        padding: 30px 24px;
    }

    .service-detail-title-row {
        flex-direction: column-reverse;
    }

    .service-detail-title-row h2,
    .service-detail-content h2 {
        font-size: 27px;
    }

    .service-detail-content .lead-text {
        font-size: 18px;
    }

    .service-detail-image-row,
    .service-detail-check-list {
        grid-template-columns: 1fr;
    }

    .service-detail-image-row div {
        height: 230px;
    }

    .service-detail-highlight {
        grid-template-columns: 1fr;
        padding: 26px 24px;
    }

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

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

    .service-sidebar-cta {
        grid-column: auto;
    }

    .service-detail-faq-section,
    .related-service-section {
        padding-bottom: 58px;
    }
}

@media (max-width: 575px) {
    .service-detail-cover {
        height: 245px;
    }

    .service-detail-content p {
        font-size: 15px;
    }

    .service-detail-feature,
    .service-sidebar-card,
    .service-sidebar-cta,
    .service-faq-item {
        padding: 24px 22px;
        border-radius: 16px;
    }

    .service-detail-highlight h3 {
        font-size: 21px;
    }
}





















.about-overview-section {
    padding: 72px 0 48px;
    background: #ffffff;
}

.about-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
    gap: 58px;
    align-items: center;
}

.about-overview-image {
    overflow: hidden;
    border-radius: 22px;
    background: #f4f6f8;
    box-shadow: 0 22px 56px rgba(12, 42, 73, 0.08);
}

.about-overview-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.about-overview-content>span,
.about-process-content>span,
.about-image-text-content>span {
    display: block;
    margin-bottom: 10px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.6px;
}

.about-overview-content h2,
.about-process-content h2,
.about-image-text-content h2 {
    margin-bottom: 18px;
    color: #07121e;
    font-size: 38px;
    line-height: 1.13;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.8px;
}

.about-overview-content p,
.about-process-content p,
.about-image-text-content p {
    margin-bottom: 18px;
    color: #667483;
    font-size: 16px;
    line-height: 1.76;
    font-family: var(--inter);
}

.about-overview-list {
    margin-top: 28px;
    display: grid;
    gap: 12px;
}

.about-overview-list div {
    min-height: 54px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-radius: 14px;
    background: #f4f6f8;
}

.about-overview-list i {
    color: #00C0FE;
    font-size: 17px;
}

.about-overview-list strong {
    color: #344050;
    font-size: 14px;
    line-height: 1.45;
    font-family: var(--inter);
    font-weight: 800;
}

.about-stats-section {
    padding: 22px 0 72px;
    background: #ffffff;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.about-stat-card {
    min-height: 245px;
    padding: 34px 30px 30px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 192, 254, 0.12) 0%, rgba(0, 192, 254, 0) 36%),
        #f4f6f8;
    border-bottom: 4px solid #00C0FE;
    transition: transform .3s ease, box-shadow .3s ease;
}

.about-stat-card strong {
    display: block;
    margin-bottom: 22px;
    color: #0C2A49;
    font-size: 56px;
    line-height: 1;
    font-family: var(--geist);
    font-weight: 500;
    letter-spacing: -2px;
}

.about-stat-card span {
    display: block;
    margin-bottom: 12px;
    color: #07121e;
    font-size: 20px;
    line-height: 1.25;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.about-stat-card p {
    color: #667483;
    font-size: 15px;
    line-height: 1.65;
    font-family: var(--inter);
}

.about-mission-section {
    padding: 0 0 72px;
    background: #ffffff;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-mission-card {
    min-height: 430px;
    padding: 42px;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #f4f6f8;
}

.about-mission-card::before {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 38px solid rgba(12, 42, 73, 0.045);
}

.about-mission-card-dark {
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 192, 254, 0.18) 0%, rgba(0, 192, 254, 0) 36%),
        #0C2A49;
    color: #ffffff;
}

.about-mission-card-dark::before {
    border-color: rgba(255, 255, 255, 0.055);
}

.about-mission-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #ffffff;
    color: #0BB9FE;
    font-size: 24px;
}

.about-mission-card-dark .about-mission-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #00C0FE;
}

.about-mission-card span {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 12px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.6px;
}

.about-mission-card h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 18px;
    color: #07121e;
    font-size: 34px;
    line-height: 1.14;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.7px;
}

.about-mission-card p {
    position: relative;
    z-index: 2;
    color: #667483;
    font-size: 16px;
    line-height: 1.74;
    font-family: var(--inter);
}

.about-mission-card-dark h2,
.about-mission-card-dark p {
    color: #ffffff;
}

.about-mission-card-dark p {
    color: rgba(255, 255, 255, 0.74);
}

.about-values-section {
    padding: 0 0 76px;
    background: #ffffff;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-value-card {
    min-height: 285px;
    padding: 30px 26px;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(12, 42, 73, 0.055);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.about-value-card i {
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #eaf7ff;
    color: #0BB9FE;
    font-size: 22px;
}

.about-value-card h3 {
    margin-bottom: 12px;
    color: #07121e;
    font-size: 21px;
    line-height: 1.24;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.about-value-card p {
    color: #667483;
    font-size: 15px;
    line-height: 1.65;
    font-family: var(--inter);
}

.about-process-section {
    padding: 0 0 76px;
    background: #ffffff;
}

.about-process-box {
    padding: 48px;
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 44px;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-radius: 22px;
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 192, 254, 0.18) 0%, rgba(0, 192, 254, 0) 34%),
        #0C2A49;
    color: #ffffff;
}

.about-process-box::before {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 42px solid rgba(255, 255, 255, 0.055);
}

.about-process-content {
    position: relative;
    z-index: 2;
}

.about-process-content h2 {
    color: #ffffff;
}

.about-process-content p {
    color: rgba(255, 255, 255, 0.72);
}

.about-process-list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-process-item {
    min-height: 210px;
    padding: 28px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
}

.about-process-item span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #0C2A49;
    font-size: 13px;
    font-family: var(--inter);
    font-weight: 900;
}

.about-process-item h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.2;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.about-process-item p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.62;
    font-family: var(--inter);
}

.about-image-text-section {
    padding: 0 0 76px;
    background: #ffffff;
}

.about-image-text-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 54px;
    align-items: center;
}

.about-brand-mini-list {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-brand-mini-list img {
    max-width: 112px;
    max-height: 34px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(15%) sepia(28%) saturate(1392%) hue-rotate(169deg) brightness(91%) contrast(95%);
    opacity: 0.85;
}

.about-image-text-image {
    overflow: hidden;
    border-radius: 22px;
}

.about-image-text-image img {
    width: 100%;
    height: 430px;
    object-fit: contain;
}

@media (hover: hover) {

    .about-stat-card:hover,
    .about-value-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 24px 56px rgba(12, 42, 73, 0.10);
    }

    .about-value-card:hover {
        border-color: rgba(11, 185, 254, 0.28);
    }
}

@media (max-width: 1200px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-process-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {

    .about-overview-grid,
    .about-mission-grid,
    .about-image-text-grid {
        grid-template-columns: 1fr;
    }

    .about-overview-image img,
    .about-image-text-image img {
        height: auto;
    }

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

    .about-mission-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .about-overview-section {
        padding: 54px 0 40px;
    }

    .about-overview-content h2,
    .about-process-content h2,
    .about-image-text-content h2 {
        font-size: 31px;
    }

    .about-stats-section {
        padding: 12px 0 58px;
    }

    .about-mission-section,
    .about-values-section,
    .about-process-section,
    .about-image-text-section {
        padding-bottom: 58px;
    }

    .about-mission-card {
        padding: 32px 24px;
    }

    .about-mission-card h2 {
        font-size: 28px;
    }

    .about-values-grid,
    .about-process-list {
        grid-template-columns: 1fr;
    }

    .about-process-box {
        padding: 34px 24px;
    }

    .about-brand-mini-list {
        gap: 24px;
    }
}

@media (max-width: 575px) {

    .about-overview-content h2,
    .about-process-content h2,
    .about-image-text-content h2 {
        font-size: 27px;
    }

    .about-stat-card,
    .about-value-card {
        padding: 26px 22px;
        border-radius: 16px;
    }

    .about-stat-card strong {
        font-size: 46px;
    }

    .about-mission-card h2 {
        font-size: 25px;
    }

    .about-process-item {
        padding: 24px 22px;
    }

    .about-brand-mini-list img {
        max-width: 104px;
    }
}












.brands-intro-section {
    padding: 72px 0 34px;
    background: #ffffff;
}

.brands-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 54px;
    align-items: center;
}

.brands-intro-content>span,
.brand-hierarchy-content>span {
    display: block;
    margin-bottom: 10px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.6px;
}

.brands-intro-content h2,
.brand-hierarchy-content h2 {
    margin-bottom: 18px;
    color: #07121e;
    font-size: 38px;
    line-height: 1.13;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.8px;
}

.brands-intro-content p,
.brand-hierarchy-content p {
    color: #667483;
    font-size: 16px;
    line-height: 1.76;
    font-family: var(--inter);
}

.brands-intro-card {
    padding: 34px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 88% 6%, rgba(0, 192, 254, 0.20) 0%, rgba(0, 192, 254, 0) 38%),
        #0C2A49;
    color: #ffffff;
    box-shadow: 0 22px 56px rgba(12, 42, 73, 0.13);
}

.brands-intro-card div {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.09);
}

.brands-intro-card strong {
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
    font-family: var(--geist);
    font-weight: 500;
    letter-spacing: -1.4px;
}

.brands-intro-card span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.35;
    font-family: var(--inter);
    font-weight: 700;
    text-align: right;
}

.brands-list-section {
    padding: 42px 0 76px;
    background: #ffffff;
}

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

.brand-card {
    overflow: hidden;
    border: 1px solid #edf1f5;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(12, 42, 73, 0.055);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.brand-card-top {
    min-height: 210px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 34px;
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 192, 254, 0.18) 0%, rgba(0, 192, 254, 0) 36%),
        #0C2A49;
}

.brand-logo-box {
    width: 100%;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-box img {
    max-width: 250px;
    object-fit: contain;
}

.brand-logo-text strong {
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -1px;
}

.brand-card-top>span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.45;
    font-family: var(--inter);
    font-weight: 700;
}

.brand-card-body {
    padding: 30px 28px 32px;
}

.brand-card-body h3 {
    margin-bottom: 14px;
    color: #07121e;
    font-size: 25px;
    line-height: 1.2;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.45px;
}

.brand-card-body p {
    margin-bottom: 24px;
    color: #667483;
    font-size: 15px;
    line-height: 1.66;
    font-family: var(--inter);
}

.brand-card-meta {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.brand-card-meta div {
    padding: 16px;
    border-radius: 14px;
    background: #f4f6f8;
}

.brand-card-meta strong {
    display: block;
    margin-bottom: 4px;
    color: #0C2A49;
    font-size: 26px;
    line-height: 1;
    font-family: var(--geist);
    font-weight: 600;
    letter-spacing: -0.7px;
}

.brand-card-meta span {
    color: #667483;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.brand-detail-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0C2A49;
    font-size: 14px;
    font-family: var(--inter);
    font-weight: 800;
    transition: color .25s ease, gap .25s ease;
}

.brand-detail-link i {
    color: #0BB9FE;
    font-size: 13px;
}

.brand-hierarchy-section {
    padding: 0 0 76px;
    background: #ffffff;
}

.brand-hierarchy-box {
    padding: 44px;
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-radius: 22px;
    background: #f4f6f8;
}

.brand-hierarchy-box::before {
    content: "";
    position: absolute;
    right: -105px;
    bottom: -105px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 42px solid rgba(12, 42, 73, 0.045);
}

.brand-hierarchy-content,
.brand-hierarchy-steps {
    position: relative;
    z-index: 2;
}

.brand-hierarchy-steps {
    display: grid;
    grid-template-columns: 1fr 22px 1fr 22px 1fr 22px 1fr;
    gap: 14px;
    align-items: center;
}

.brand-hierarchy-steps>div {
    min-height: 138px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(12, 42, 73, 0.05);
}

.brand-hierarchy-steps>div span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf7ff;
    color: #0BB9FE;
    font-size: 13px;
    font-family: var(--inter);
    font-weight: 900;
}

.brand-hierarchy-steps>div strong {
    color: #07121e;
    font-size: 16px;
    line-height: 1.35;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.brand-hierarchy-steps>i {
    color: #0BB9FE;
    font-size: 18px;
}

@media (hover: hover) {
    .brand-card:hover {
        transform: translateY(-7px);
        border-color: rgba(11, 185, 254, 0.28);
        box-shadow: 0 24px 56px rgba(12, 42, 73, 0.10);
    }

    .brand-detail-link:hover {
        gap: 13px;
        color: #0BB9FE;
    }
}

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

    .brand-hierarchy-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .brands-intro-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .brands-intro-card {
        max-width: 560px;
    }

    .brand-hierarchy-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-hierarchy-steps>i {
        display: none;
    }
}

@media (max-width: 768px) {
    .brands-intro-section {
        padding: 54px 0 28px;
    }

    .brands-intro-content h2,
    .brand-hierarchy-content h2 {
        font-size: 31px;
    }

    .brands-list-section {
        padding: 34px 0 58px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-card-top {
        min-height: 185px;
    }

    .brand-hierarchy-section {
        padding-bottom: 58px;
    }

    .brand-hierarchy-box {
        padding: 34px 24px;
    }
}

@media (max-width: 575px) {

    .brands-intro-content h2,
    .brand-hierarchy-content h2 {
        font-size: 27px;
    }

    .brands-intro-card {
        padding: 24px;
    }

    .brands-intro-card div {
        align-items: flex-start;
        flex-direction: column;
    }

    .brands-intro-card span {
        text-align: left;
    }

    .brand-card-top {
        padding: 30px 24px;
    }

    .brand-card-body {
        padding: 28px 22px 30px;
    }

    .brand-card-meta {
        grid-template-columns: 1fr;
    }

    .brand-hierarchy-steps {
        grid-template-columns: 1fr;
    }
}





















.brand-detail-hero .inner-hero-content h1 {
    max-width: 720px;
}

.brand-hero-card {
    padding: 34px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 88% 6%, rgba(0, 192, 254, 0.18) 0%, rgba(0, 192, 254, 0) 38%),
        #0C2A49;
    color: #ffffff;
    box-shadow: 0 22px 56px rgba(12, 42, 73, 0.13);
}

.brand-hero-logo {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-hero-logo img {
    max-width: 190px;
    max-height: 58px;
    object-fit: contain;
}

.brand-hero-info {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.brand-hero-info div {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
    text-align: center;
}

.brand-hero-info strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
    font-family: var(--geist);
    font-weight: 500;
}

.brand-hero-info span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.brand-detail-overview-section {
    padding: 72px 0 58px;
    background: #ffffff;
}

.brand-detail-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 58px;
    align-items: center;
}

.brand-detail-overview-content>span,
.brand-solution-content>span {
    display: block;
    margin-bottom: 10px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.6px;
}

.brand-detail-overview-content h2,
.brand-solution-content h2 {
    margin-bottom: 18px;
    color: #07121e;
    font-size: 38px;
    line-height: 1.13;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.8px;
}

.brand-detail-overview-content p,
.brand-solution-content p {
    margin-bottom: 18px;
    color: #667483;
    font-size: 16px;
    line-height: 1.76;
    font-family: var(--inter);
}

.brand-detail-check-list {
    margin-top: 28px;
    display: grid;
    gap: 12px;
}

.brand-detail-check-list div {
    min-height: 54px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-radius: 14px;
    background: #f4f6f8;
}

.brand-detail-check-list i {
    color: #00C0FE;
    font-size: 17px;
}

.brand-detail-check-list span {
    color: #344050;
    font-size: 14px;
    line-height: 1.45;
    font-family: var(--inter);
    font-weight: 800;
}

.brand-detail-overview-image {
    overflow: hidden;
    border-radius: 22px;
    background: #f4f6f8;
    box-shadow: 0 22px 56px rgba(12, 42, 73, 0.08);
}

.brand-detail-overview-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.brand-category-section {
    margin-top: 50px;
    padding: 0 0 76px;
    background: #ffffff;
}

.brand-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.brand-category-card {
    min-height: 310px;
    padding: 30px 26px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(12, 42, 73, 0.055);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.brand-category-card::before {
    content: "";
    position: absolute;
    right: -55px;
    top: -55px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    border: 24px solid rgba(12, 42, 73, 0.045);
}

.brand-category-icon {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #eaf7ff;
    color: #0BB9FE;
    font-size: 22px;
}

.brand-category-card div {
    position: relative;
    z-index: 2;
}

.brand-category-card div span {
    display: block;
    margin-bottom: 10px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 900;
    letter-spacing: 1px;
}

.brand-category-card h3 {
    margin-bottom: 12px;
    color: #07121e;
    font-size: 21px;
    line-height: 1.24;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.brand-category-card p {
    color: #667483;
    font-size: 15px;
    line-height: 1.62;
    font-family: var(--inter);
}

.brand-category-card>i {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    color: #0BB9FE;
    font-size: 16px;
}

.brand-products-section {
    padding: 0 0 76px;
    background: #ffffff;
}

.brand-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.brand-product-card {
    overflow: hidden;
    border: 1px solid #edf1f5;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(12, 42, 73, 0.055);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.brand-product-image {
    height: 265px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f8;
}

.brand-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .45s ease;
}

.brand-product-body {
    position: relative;
    padding: 30px 28px 32px;
}

.brand-product-brand {
    width: 86px;
    height: 32px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.brand-product-brand img {
    max-width: 86px;
    max-height: 28px;
    object-fit: contain;
    filter: brightness(0);
    opacity: .72;
}

.brand-product-body>span {
    display: inline-flex;
    min-height: 25px;
    margin-bottom: 13px;
    padding: 0 12px;
    align-items: center;
    border-radius: 20px;
    background: #eaf7ff;
    color: #0BB9FE;
    font-size: 11px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.brand-product-body h3 {
    margin-bottom: 12px;
    color: #07121e;
    font-size: 23px;
    line-height: 1.22;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.35px;
}

.brand-product-body p {
    margin-bottom: 22px;
    color: #667483;
    font-size: 15px;
    line-height: 1.64;
    font-family: var(--inter);
}

.brand-product-specs {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.brand-product-specs div {
    padding: 14px;
    border-radius: 14px;
    background: #f4f6f8;
}

.brand-product-specs strong {
    display: block;
    margin-bottom: 4px;
    color: #0C2A49;
    font-size: 20px;
    line-height: 1;
    font-family: var(--geist);
    font-weight: 700;
}

.brand-product-specs em {
    color: #667483;
    font-size: 12px;
    font-style: normal;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.brand-product-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0C2A49;
    font-size: 14px;
    font-family: var(--inter);
    font-weight: 800;
    transition: color .25s ease, gap .25s ease;
}

.brand-product-link i {
    color: #0BB9FE;
    font-size: 13px;
}

.brand-products-bottom {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.brand-products-bottom .btn {
    height: 54px;
    padding: 0 30px;
    border-radius: 10px;
}

.brand-solution-section {
    padding: 0 0 76px;
    background: #ffffff;
}

.brand-solution-box {
    padding: 44px;
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-radius: 22px;
    background: #f4f6f8;
}

.brand-solution-box::before {
    content: "";
    position: absolute;
    right: -105px;
    bottom: -105px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 42px solid rgba(12, 42, 73, 0.045);
}

.brand-solution-content,
.brand-solution-flow {
    position: relative;
    z-index: 2;
}

.brand-solution-flow {
    display: grid;
    grid-template-columns: 1fr 22px 1fr 22px 1fr 22px 1fr;
    gap: 14px;
    align-items: center;
}

.brand-solution-flow>div {
    min-height: 138px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(12, 42, 73, 0.05);
}

.brand-solution-flow>div span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf7ff;
    color: #0BB9FE;
    font-size: 13px;
    font-family: var(--inter);
    font-weight: 900;
}

.brand-solution-flow>div strong {
    color: #07121e;
    font-size: 16px;
    line-height: 1.35;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.brand-solution-flow>i {
    color: #0BB9FE;
    font-size: 18px;
}

@media (hover: hover) {

    .brand-category-card:hover,
    .brand-product-card:hover {
        transform: translateY(-7px);
        border-color: rgba(11, 185, 254, 0.28);
        box-shadow: 0 24px 56px rgba(12, 42, 73, 0.10);
    }

    .brand-product-card:hover .brand-product-image img {
        transform: scale(1.045);
    }

    .brand-product-link:hover {
        gap: 13px;
        color: #0BB9FE;
    }
}

@media (max-width: 1200px) {
    .brand-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-solution-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .brand-detail-overview-grid {
        grid-template-columns: 1fr;
    }

    .brand-detail-overview-image img {
        height: auto;
    }

    .brand-product-grid {
        grid-template-columns: 1fr;
    }

    .brand-product-image {
        height: 300px;
    }

    .brand-solution-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-solution-flow>i {
        display: none;
    }
}

@media (max-width: 768px) {
    .brand-detail-overview-section {
        padding: 54px 0 46px;
    }

    .brand-detail-overview-content h2,
    .brand-solution-content h2 {
        font-size: 31px;
    }

    .brand-category-section,
    .brand-products-section,
    .brand-solution-section {
        padding-bottom: 58px;
    }

    .brand-category-grid {
        grid-template-columns: 1fr;
    }

    .brand-product-image {
        height: 260px;
    }

    .brand-solution-box {
        padding: 34px 24px;
    }
}

@media (max-width: 575px) {
    .brand-hero-card {
        padding: 28px 22px;
    }

    .brand-hero-logo img {
        max-width: 160px;
    }

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

    .brand-detail-overview-content h2,
    .brand-solution-content h2 {
        font-size: 27px;
    }

    .brand-category-card,
    .brand-product-body {
        padding: 26px 22px;
    }

    .brand-product-specs {
        grid-template-columns: 1fr;
    }

    .brand-solution-flow {
        grid-template-columns: 1fr;
    }

    .brand-products-bottom .btn {
        width: 100%;
    }
}













.product-list-hero .inner-hero-content h1 {
    max-width: 720px;
}

.product-list-hero-card {
    padding: 34px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 88% 6%, rgba(0, 192, 254, 0.18) 0%, rgba(0, 192, 254, 0) 38%),
        #0C2A49;
    color: #ffffff;
    box-shadow: 0 22px 56px rgba(12, 42, 73, 0.13);
}

.product-list-hero-logo {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-list-hero-logo img {
    max-width: 190px;
    max-height: 58px;
    object-fit: contain;
}

.product-list-hero-info {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.product-list-hero-info div {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
    text-align: center;
}

.product-list-hero-info strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
    font-family: var(--geist);
    font-weight: 500;
}

.product-list-hero-info span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.product-list-section {
    padding: 72px 0 76px;
    background: #ffffff;
}

.product-list-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.product-filter-sidebar {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 20px;
}

.product-filter-card {
    padding: 28px;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(12, 42, 73, 0.055);
}

.product-filter-card h3 {
    margin-bottom: 20px;
    color: #07121e;
    font-size: 21px;
    line-height: 1.2;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.3px;
}

.product-search-form {
    height: 52px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #dfe7ee;
    border-radius: 14px;
    background: #f8fafc;
}

.product-search-form input {
    width: 100%;
    height: 100%;
    padding: 0 17px;
    border: none;
    outline: none;
    background: transparent;
    color: #07121e;
    font-size: 14px;
    font-family: var(--inter);
}

.product-search-form button {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border: none;
    background: #0C2A49;
    color: #ffffff;
    cursor: pointer;
}

.product-filter-list {
    display: grid;
    gap: 10px;
}

.product-filter-list a {
    min-height: 46px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 12px;
    background: #f4f6f8;
    color: #344050;
    font-family: var(--inter);
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.product-filter-list a.is-active {
    background: #0C2A49;
    color: #ffffff;
}

.product-filter-list span {
    font-size: 14px;
    font-weight: 800;
}

.product-filter-list em {
    min-width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #0BB9FE;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.product-check-filter {
    display: grid;
    gap: 13px;
}

.product-check-filter label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #344050;
    font-size: 14px;
    font-family: var(--inter);
    font-weight: 700;
    cursor: pointer;
}

.product-check-filter input {
    width: 17px;
    height: 17px;
    accent-color: #0C2A49;
}

.product-filter-cta {
    padding: 30px 28px;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 0%, rgba(0, 192, 254, 0.23) 0%, rgba(0, 192, 254, 0) 40%),
        #0C2A49;
    color: #ffffff;
}

.product-filter-cta::before {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -72px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 32px solid rgba(255, 255, 255, 0.06);
}

.product-filter-cta span,
.product-filter-cta h3,
.product-filter-cta p,
.product-filter-cta a {
    position: relative;
    z-index: 2;
}

.product-filter-cta span {
    display: block;
    margin-bottom: 12px;
    color: #00C0FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.5px;
}

.product-filter-cta h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.22;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.4px;
}

.product-filter-cta p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.65;
    font-family: var(--inter);
}

.product-filter-cta .btn {
    width: 100%;
    border-color: rgba(255, 255, 255, 0.2);
}

.product-list-topbar {
    margin-bottom: 28px;
    padding: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(12, 42, 73, 0.055);
}

.product-list-topbar span {
    display: block;
    margin-bottom: 9px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.6px;
}

.product-list-topbar h2 {
    color: #07121e;
    font-size: 34px;
    line-height: 1.1;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.8px;
}

.product-sort-box {
    display: grid;
    gap: 8px;
    min-width: 210px;
}

.product-sort-box label {
    color: #667483;
    font-size: 13px;
    font-family: var(--inter);
    font-weight: 800;
}

.product-sort-box select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #dfe7ee;
    border-radius: 12px;
    outline: none;
    background: #f8fafc;
    color: #07121e;
    font-size: 14px;
    font-family: var(--inter);
    font-weight: 700;
}

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

.product-list-card {
    overflow: hidden;
    border: 1px solid #edf1f5;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(12, 42, 73, 0.055);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.product-list-image {
    height: 250px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f8;
}

.product-list-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .45s ease;
}

.product-list-body {
    padding: 28px 24px 30px;
}

.product-list-brand {
    width: 86px;
    height: 32px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.product-list-brand img {
    max-width: 86px;
    max-height: 28px;
    object-fit: contain;
    filter: brightness(0);
    opacity: .72;
}

.product-list-body>span {
    display: inline-flex;
    min-height: 25px;
    margin-bottom: 13px;
    padding: 0 12px;
    align-items: center;
    border-radius: 20px;
    background: #eaf7ff;
    color: #0BB9FE;
    font-size: 11px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.product-list-body h3 {
    margin-bottom: 12px;
    color: #07121e;
    font-size: 22px;
    line-height: 1.22;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.35px;
}

.product-list-body p {
    margin-bottom: 22px;
    color: #667483;
    font-size: 15px;
    line-height: 1.64;
    font-family: var(--inter);
}

.product-list-specs {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.product-list-specs div {
    padding: 14px;
    border-radius: 14px;
    background: #f4f6f8;
}

.product-list-specs strong {
    display: block;
    margin-bottom: 4px;
    color: #0C2A49;
    font-size: 20px;
    line-height: 1;
    font-family: var(--geist);
    font-weight: 700;
}

.product-list-specs em {
    color: #667483;
    font-size: 12px;
    font-style: normal;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.product-list-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0C2A49;
    font-size: 14px;
    font-family: var(--inter);
    font-weight: 800;
    transition: color .25s ease, gap .25s ease;
}

.product-list-link i {
    color: #0BB9FE;
    font-size: 13px;
}

.product-pagination {
    margin-top: 34px;
}

.product-list-info-section {
    padding: 0 0 76px;
    background: #ffffff;
}

.product-list-info-box {
    padding: 44px;
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-radius: 22px;
    background: #f4f6f8;
}

.product-list-info-box::before {
    content: "";
    position: absolute;
    right: -105px;
    bottom: -105px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 42px solid rgba(12, 42, 73, 0.045);
}

.product-list-info-box>div {
    position: relative;
    z-index: 2;
}

.product-list-info-box>div>span {
    display: block;
    margin-bottom: 10px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.6px;
}

.product-list-info-box h2 {
    margin-bottom: 18px;
    color: #07121e;
    font-size: 38px;
    line-height: 1.13;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.8px;
}

.product-list-info-box p {
    color: #667483;
    font-size: 16px;
    line-height: 1.76;
    font-family: var(--inter);
}

.product-list-info-steps {
    display: grid;
    grid-template-columns: 1fr 22px 1fr 22px 1fr;
    gap: 14px;
    align-items: center;
}

.product-list-info-steps>div {
    min-height: 138px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(12, 42, 73, 0.05);
}

.product-list-info-steps>div span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf7ff;
    color: #0BB9FE;
    font-size: 13px;
    font-family: var(--inter);
    font-weight: 900;
}

.product-list-info-steps>div strong {
    color: #07121e;
    font-size: 16px;
    line-height: 1.35;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.product-list-info-steps>i {
    color: #0BB9FE;
    font-size: 18px;
}

@media (hover: hover) {
    .product-filter-list a:hover {
        transform: translateX(4px);
        background: #eaf7ff;
        color: #0C2A49;
    }

    .product-filter-list a.is-active:hover {
        background: #0C2A49;
        color: #ffffff;
    }

    .product-list-card:hover {
        transform: translateY(-7px);
        border-color: rgba(11, 185, 254, 0.28);
        box-shadow: 0 24px 56px rgba(12, 42, 73, 0.10);
    }

    .product-list-card:hover .product-list-image img {
        transform: scale(1.045);
    }

    .product-list-link:hover {
        gap: 13px;
        color: #0BB9FE;
    }
}

@media (max-width: 1200px) {
    .product-list-layout {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 28px;
    }

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

    .product-list-info-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .product-list-layout {
        grid-template-columns: 1fr;
    }

    .product-filter-sidebar {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }

    .product-filter-cta {
        grid-column: span 2;
    }

    .product-list-info-steps {
        grid-template-columns: 1fr;
    }

    .product-list-info-steps>i {
        display: none;
    }
}

@media (max-width: 768px) {
    .product-list-section {
        padding: 54px 0 58px;
    }

    .product-filter-sidebar {
        grid-template-columns: 1fr;
    }

    .product-filter-cta {
        grid-column: auto;
    }

    .product-list-topbar {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px;
    }

    .product-list-topbar h2 {
        font-size: 30px;
    }

    .product-sort-box {
        width: 100%;
    }

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

    .product-list-image {
        height: 260px;
    }

    .product-list-info-section {
        padding-bottom: 58px;
    }

    .product-list-info-box {
        padding: 34px 24px;
    }

    .product-list-info-box h2 {
        font-size: 31px;
    }
}

@media (max-width: 575px) {
    .product-list-hero-card {
        padding: 28px 22px;
    }

    .product-list-hero-logo img {
        max-width: 160px;
    }

    .product-list-hero-info {
        grid-template-columns: 1fr;
    }

    .product-filter-card,
    .product-filter-cta,
    .product-list-body {
        padding: 24px 22px;
        border-radius: 16px;
    }

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

    .product-list-info-box h2 {
        font-size: 27px;
    }
}





















.product-detail-hero .inner-hero-content h1 {
    max-width: 760px;
}

.product-detail-hero-card {
    padding: 34px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 88% 6%, rgba(0, 192, 254, 0.18) 0%, rgba(0, 192, 254, 0) 38%),
        #0C2A49;
    color: #ffffff;
    box-shadow: 0 22px 56px rgba(12, 42, 73, 0.13);
}

.product-detail-hero-logo {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-hero-logo img {
    max-width: 190px;
    max-height: 58px;
    object-fit: contain;
}

.product-detail-hero-info {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.product-detail-hero-info div {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
    text-align: center;
}

.product-detail-hero-info strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
    font-family: var(--geist);
    font-weight: 500;
}

.product-detail-hero-info span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.product-detail-main-section {
    padding: 72px 0 58px;
    background: #ffffff;
}

.product-detail-main-grid {
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(410px, .72fr);
    gap: 34px;
    align-items: start;
}

.product-gallery {
    overflow: hidden;
    border: 1px solid #edf1f5;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(12, 42, 73, 0.07);
}

.product-gallery-main {
    min-height: 520px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f8;
}

.product-gallery-main img {
    max-width: 100%;
    max-height: 430px;
    object-fit: contain;
}

.product-gallery-thumbs {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    background: #ffffff;
}

.product-gallery-thumbs button {
    height: 104px;
    padding: 12px;
    border: 1px solid #edf1f5;
    border-radius: 14px;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color .25s ease, background-color .25s ease, transform .25s ease;
}

.product-gallery-thumbs button.is-active {
    border-color: #0BB9FE;
    background: #eaf7ff;
}

.product-gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail-summary {
    padding: 34px;
    border: 1px solid #edf1f5;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(12, 42, 73, 0.07);
}

.product-detail-brand-row {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.product-detail-brand-logo {
    width: 100px;
    height: 36px;
    display: flex;
    align-items: center;
}

.product-detail-brand-logo img {
    max-width: 100px;
    max-height: 30px;
    object-fit: contain;
    filter: brightness(0);
    opacity: .72;
}

.product-detail-brand-row>span {
    min-height: 28px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    border-radius: 20px;
    background: #eaf7ff;
    color: #0BB9FE;
    font-size: 11px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.product-detail-summary h2 {
    margin-bottom: 16px;
    color: #07121e;
    font-size: 38px;
    line-height: 1.12;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.9px;
}

.product-detail-summary p {
    margin-bottom: 28px;
    color: #667483;
    font-size: 16px;
    line-height: 1.72;
    font-family: var(--inter);
}

.product-detail-summary-specs {
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.product-detail-summary-specs div {
    padding: 18px;
    border-radius: 16px;
    background: #f4f6f8;
}

.product-detail-summary-specs strong {
    display: block;
    margin-bottom: 7px;
    color: #0C2A49;
    font-size: 28px;
    line-height: 1;
    font-family: var(--geist);
    font-weight: 700;
}

.product-detail-summary-specs span {
    color: #667483;
    font-size: 12px;
    line-height: 1.35;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.product-detail-actions {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-detail-actions .btn {
    height: 52px;
    padding: 0 24px;
    border-radius: 10px;
}

.product-detail-mini-info {
    padding-top: 24px;
    display: grid;
    gap: 13px;
    border-top: 1px solid #edf1f5;
}

.product-detail-mini-info div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-detail-mini-info i {
    color: #00C0FE;
    font-size: 16px;
}

.product-detail-mini-info span {
    color: #344050;
    font-size: 14px;
    line-height: 1.45;
    font-family: var(--inter);
    font-weight: 700;
}

.product-detail-content-section {
    padding: 0 0 76px;
    background: #ffffff;
}

.product-detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 38px;
    align-items: start;
}

.product-detail-content {
    overflow: hidden;
    border: 1px solid #edf1f5;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(12, 42, 73, 0.07);
}

.product-detail-block {
    padding: 38px 42px;
    border-bottom: 1px solid #edf1f5;
}

.product-detail-block:last-child {
    border-bottom: none;
}

.product-detail-block>span {
    display: block;
    margin-bottom: 10px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.6px;
}

.product-detail-block h2 {
    margin-bottom: 16px;
    color: #07121e;
    font-size: 31px;
    line-height: 1.18;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.6px;
}

.product-detail-block p {
    margin-bottom: 18px;
    color: #5f6c7b;
    font-size: 16px;
    line-height: 1.82;
    font-family: var(--inter);
}

.product-detail-block p:last-child {
    margin-bottom: 0;
}

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

.product-feature-grid div {
    min-height: 220px;
    padding: 28px 24px;
    border-radius: 18px;
    background: #f4f6f8;
    transition: transform .3s ease, box-shadow .3s ease;
}

.product-feature-grid i {
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #0C2A49;
    color: #00C0FE;
    font-size: 22px;
}

.product-feature-grid h3 {
    margin-bottom: 10px;
    color: #07121e;
    font-size: 21px;
    line-height: 1.24;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.product-feature-grid p {
    margin: 0;
    color: #667483;
    font-size: 15px;
    line-height: 1.62;
}

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

.product-use-list div {
    min-height: 74px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 14px;
    background: #f4f6f8;
}

.product-use-list i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf7ff;
    color: #0BB9FE;
    font-size: 15px;
}

.product-use-list strong {
    color: #344050;
    font-size: 14px;
    line-height: 1.45;
    font-family: var(--inter);
    font-weight: 800;
}

.product-spec-table {
    overflow: hidden;
    border: 1px solid #edf1f5;
    border-radius: 18px;
}

.product-spec-table div {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    border-bottom: 1px solid #edf1f5;
}

.product-spec-table div:last-child {
    border-bottom: none;
}

.product-spec-table span,
.product-spec-table strong {
    padding: 17px 20px;
    font-size: 14px;
    line-height: 1.45;
    font-family: var(--inter);
}

.product-spec-table span {
    background: #f4f6f8;
    color: #344050;
    font-weight: 800;
}

.product-spec-table strong {
    color: #667483;
    font-weight: 700;
}

.product-detail-highlight {
    margin: 0 42px 42px;
    padding: 32px;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 20px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 192, 254, 0.18) 0%, rgba(0, 192, 254, 0) 34%),
        #0C2A49;
    color: #ffffff;
}

.product-detail-highlight-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    color: #00C0FE;
    font-size: 24px;
}

.product-detail-highlight h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.25;
    font-family: var(--plusjakarta);
    font-weight: 900;
}

.product-detail-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.72;
    font-family: var(--inter);
}

.product-detail-sidebar {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 20px;
}

.product-detail-sidebar-card {
    padding: 28px;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(12, 42, 73, 0.055);
}

.product-detail-sidebar-card h3 {
    margin-bottom: 20px;
    color: #07121e;
    font-size: 21px;
    line-height: 1.2;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.3px;
}

.product-info-list {
    display: grid;
    gap: 15px;
}

.product-info-list div {
    padding-bottom: 15px;
    border-bottom: 1px solid #edf1f5;
}

.product-info-list div:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.product-info-list span {
    display: block;
    margin-bottom: 5px;
    color: #7a8795;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.product-info-list strong {
    display: block;
    color: #07121e;
    font-size: 15px;
    line-height: 1.45;
    font-family: var(--inter);
    font-weight: 800;
}

.product-group-list {
    display: grid;
    gap: 10px;
}

.product-group-list a {
    min-height: 54px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 13px;
    background: #f4f6f8;
    color: #344050;
    font-family: var(--inter);
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.product-group-list a.is-active {
    background: #0C2A49;
    color: #ffffff;
}

.product-group-list a span {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

.product-group-list a i {
    color: #0BB9FE;
    font-size: 13px;
}

.product-detail-sidebar-cta {
    padding: 30px 28px;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 0%, rgba(0, 192, 254, 0.23) 0%, rgba(0, 192, 254, 0) 40%),
        #0C2A49;
    color: #ffffff;
}

.product-detail-sidebar-cta::before {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -72px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 32px solid rgba(255, 255, 255, 0.06);
}

.product-detail-sidebar-cta span,
.product-detail-sidebar-cta h3,
.product-detail-sidebar-cta p,
.product-detail-sidebar-cta a {
    position: relative;
    z-index: 2;
}

.product-detail-sidebar-cta span {
    display: block;
    margin-bottom: 12px;
    color: #00C0FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.5px;
}

.product-detail-sidebar-cta h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.22;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.4px;
}

.product-detail-sidebar-cta p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.65;
    font-family: var(--inter);
}

.product-detail-sidebar-cta .btn {
    width: 100%;
    border-color: rgba(255, 255, 255, 0.2);
}

.product-detail-related-section {
    padding: 0 0 76px;
    background: #ffffff;
}

.product-detail-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (hover: hover) {
    .product-gallery-thumbs button:hover {
        transform: translateY(-3px);
        border-color: #0BB9FE;
    }

    .product-feature-grid div:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(12, 42, 73, 0.08);
    }

    .product-group-list a:hover {
        transform: translateX(4px);
        background: #eaf7ff;
        color: #0C2A49;
    }

    .product-group-list a.is-active:hover {
        background: #0C2A49;
        color: #ffffff;
    }
}

@media (max-width: 1200px) {
    .product-detail-main-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery-main {
        min-height: 440px;
    }

    .product-detail-content-grid {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 28px;
    }
}

@media (max-width: 991px) {
    .product-detail-content-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-sidebar {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail-sidebar-cta {
        grid-column: span 2;
    }

    .product-detail-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-detail-main-section {
        padding: 54px 0 44px;
    }

    .product-gallery-main {
        min-height: 330px;
        padding: 30px;
    }

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

    .product-detail-summary {
        padding: 28px 24px;
    }

    .product-detail-summary h2 {
        font-size: 31px;
    }

    .product-detail-summary-specs,
    .product-feature-grid,
    .product-use-list {
        grid-template-columns: 1fr;
    }

    .product-detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .product-detail-actions .btn {
        width: 100%;
    }

    .product-detail-content-section {
        padding-bottom: 58px;
    }

    .product-detail-block {
        padding: 30px 24px;
    }

    .product-detail-block h2 {
        font-size: 27px;
    }

    .product-spec-table div {
        grid-template-columns: 1fr;
    }

    .product-detail-highlight {
        margin: 0 24px 30px;
        grid-template-columns: 1fr;
        padding: 26px 24px;
    }

    .product-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .product-detail-sidebar-cta {
        grid-column: auto;
    }

    .product-detail-related-section {
        padding-bottom: 58px;
    }
}

@media (max-width: 575px) {
    .product-detail-hero-card {
        padding: 28px 22px;
    }

    .product-detail-hero-logo img {
        max-width: 160px;
    }

    .product-detail-hero-info,
    .product-detail-summary-specs {
        grid-template-columns: 1fr;
    }

    .product-gallery-main {
        min-height: 270px;
        padding: 24px;
    }

    .product-gallery-thumbs button {
        height: 92px;
    }

    .product-detail-brand-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-detail-summary h2 {
        font-size: 28px;
    }

    .product-feature-grid div,
    .product-detail-sidebar-card,
    .product-detail-sidebar-cta {
        padding: 24px 22px;
        border-radius: 16px;
    }

    .product-detail-highlight h3 {
        font-size: 21px;
    }
}


.product-gallery-main img {
    transition: opacity .2s ease, transform .25s ease;
}

.product-gallery-main img.is-changing {
    opacity: 0;
    transform: scale(.985);
}












.policies-section {
    padding: 72px 0 76px;
    background: #ffffff;
}

.policies-layout {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.policies-sidebar {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 20px;
}

.policies-sidebar-card {
    padding: 28px;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(12, 42, 73, 0.055);
}

.policies-sidebar-card h3 {
    margin-bottom: 20px;
    color: #07121e;
    font-size: 22px;
    line-height: 1.2;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.3px;
}

.policies-nav {
    display: grid;
    gap: 10px;
}

.policies-nav a {
    min-height: 54px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 13px;
    background: #f4f6f8;
    color: #344050;
    font-family: var(--inter);
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.policies-nav a span {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

.policies-nav a i {
    color: #0BB9FE;
    font-size: 13px;
}

.policies-nav a.is-active {
    background: #0C2A49;
    color: #ffffff;
}

.policies-sidebar-cta {
    padding: 30px 28px;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 0%, rgba(0, 192, 254, 0.23) 0%, rgba(0, 192, 254, 0) 40%),
        #0C2A49;
    color: #ffffff;
}

.policies-sidebar-cta::before {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -72px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 32px solid rgba(255, 255, 255, 0.06);
}

.policies-sidebar-cta span,
.policies-sidebar-cta h3,
.policies-sidebar-cta p,
.policies-sidebar-cta a {
    position: relative;
    z-index: 2;
}

.policies-sidebar-cta span {
    display: block;
    margin-bottom: 12px;
    color: #00C0FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.5px;
}

.policies-sidebar-cta h3 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.22;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.4px;
}

.policies-sidebar-cta p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.65;
    font-family: var(--inter);
}

.policies-sidebar-cta .btn {
    width: 100%;
    border-color: rgba(255, 255, 255, 0.2);
}

.policy-content {
    overflow: hidden;
    border: 1px solid #edf1f5;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(12, 42, 73, 0.07);
}

.policy-content-head {
    padding: 42px 42px 34px;
    border-bottom: 1px solid #edf1f5;
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 192, 254, 0.12) 0%, rgba(0, 192, 254, 0) 34%),
        #f4f6f8;
}

.policy-content-head span {
    display: block;
    margin-bottom: 10px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1.6px;
}

.policy-content-head h2 {
    margin-bottom: 12px;
    color: #07121e;
    font-size: 38px;
    line-height: 1.13;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.8px;
}

.policy-content-head p {
    color: #667483;
    font-size: 14px;
    line-height: 1.65;
    font-family: var(--inter);
    font-weight: 700;
}

.policy-alert {
    margin: 34px 42px 0;
    padding: 20px 22px;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: flex-start;
    border-radius: 16px;
    background: #eaf7ff;
}

.policy-alert i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0C2A49;
    color: #00C0FE;
    font-size: 16px;
}

.policy-alert p {
    color: #344050;
    font-size: 14px;
    line-height: 1.65;
    font-family: var(--inter);
    font-weight: 700;
}

.policy-text {
    padding: 34px 42px 42px;
}

.policy-text h3 {
    margin: 34px 0 14px;
    color: #07121e;
    font-size: 25px;
    line-height: 1.2;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.4px;
}

.policy-text h3:first-child {
    margin-top: 0;
}

.policy-text p {
    margin-bottom: 18px;
    color: #5f6c7b;
    font-size: 16px;
    line-height: 1.82;
    font-family: var(--inter);
}

.policy-text ul {
    margin: 20px 0 30px;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.policy-text li {
    position: relative;
    padding-left: 28px;
    color: #5f6c7b;
    font-size: 16px;
    line-height: 1.65;
    font-family: var(--inter);
}

.policy-text li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 2px;
    color: #00C0FE;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.policy-contact-box {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.policy-contact-box div {
    padding: 22px;
    border-radius: 16px;
    background: #f4f6f8;
}

.policy-contact-box span {
    display: block;
    margin-bottom: 7px;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.policy-contact-box strong {
    color: #07121e;
    font-size: 15px;
    line-height: 1.45;
    font-family: var(--inter);
    font-weight: 800;
}

@media (hover: hover) {
    .policies-nav a:hover {
        transform: translateX(4px);
        background: #eaf7ff;
        color: #0C2A49;
    }

    .policies-nav a.is-active:hover {
        background: #0C2A49;
        color: #ffffff;
    }
}

@media (max-width: 991px) {
    .policies-layout {
        grid-template-columns: 1fr;
    }

    .policies-sidebar {
        position: static;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .policies-section {
        padding: 54px 0 58px;
    }

    .policy-content-head,
    .policy-text {
        padding-left: 24px;
        padding-right: 24px;
    }

    .policy-content-head h2 {
        font-size: 31px;
    }

    .policy-alert {
        margin-left: 24px;
        margin-right: 24px;
        grid-template-columns: 1fr;
    }

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

@media (max-width: 575px) {

    .policies-sidebar-card,
    .policies-sidebar-cta {
        padding: 24px 22px;
        border-radius: 16px;
    }

    .policy-content-head h2 {
        font-size: 27px;
    }

    .policy-text h3 {
        font-size: 22px;
    }

    .policy-text p,
    .policy-text li {
        font-size: 15px;
    }
}








.simple-404-section {
    min-height: calc(100vh - 66px);
    padding: 110px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    text-align: center;
    background:
        radial-gradient(circle at 50% 28%, rgba(0, 192, 254, 0.14) 0%, rgba(0, 192, 254, 0) 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 52%, #eef7fc 100%);
}

.simple-404-section::before {
    content: "";
    position: absolute;
    right: -140px;
    top: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 58px solid rgba(12, 42, 73, 0.045);
}

.simple-404-section::after {
    content: "";
    position: absolute;
    left: -160px;
    bottom: -190px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 192, 254, 0.075);
}

.simple-404-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.simple-404-label {
    min-height: 34px;
    margin-bottom: 22px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eaf7ff;
    color: #0BB9FE;
    font-size: 12px;
    font-family: var(--inter);
    font-weight: 900;
    letter-spacing: 1.8px;
}

.simple-404-inner h1 {
    margin-bottom: 12px;
    color: #0C2A49;
    font-size: 190px;
    line-height: .86;
    font-family: var(--geist);
    font-weight: 700;
    letter-spacing: -10px;
}

.simple-404-inner h2 {
    margin-bottom: 16px;
    color: #07121e;
    font-size: 38px;
    line-height: 1.16;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.9px;
}

.simple-404-inner p {
    max-width: 560px;
    margin: 0 auto 34px;
    color: #667483;
    font-size: 17px;
    line-height: 1.72;
    font-family: var(--inter);
}

.simple-404-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.simple-404-actions .btn {
    height: 54px;
    padding: 0 28px;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .simple-404-section {
        min-height: auto;
        padding: 84px 0;
    }

    .simple-404-inner h1 {
        font-size: 150px;
    }

    .simple-404-inner h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .simple-404-section {
        padding: 70px 0;
    }

    .simple-404-inner h1 {
        font-size: 120px;
        letter-spacing: -6px;
    }

    .simple-404-inner h2 {
        font-size: 28px;
    }

    .simple-404-inner p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .simple-404-inner h1 {
        font-size: 96px;
        letter-spacing: -4px;
    }

    .simple-404-inner h2 {
        font-size: 24px;
    }

    .simple-404-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .simple-404-actions .btn {
        width: 100%;
    }
}




.site-header,
.site-header .container,
.header-inner {
    overflow: visible;
}

.site-header {
    position: relative;
    z-index: 999;
}

.main-nav {
    overflow: visible;
}

.main-nav .nav-item {
    position: relative;
    height: 66px;
    display: flex;
    align-items: center;
}

.main-nav .nav-item>a {
    height: 66px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: inherit;
    position: relative;
}

.main-nav .nav-item>a i {
    font-size: 10px;
    color: #7a8795;
    margin-top: 1px;
    transition: transform .25s ease, color .25s ease;
}

.main-nav>a::after,
.main-nav>.nav-item>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: #0BB9FE;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .28s ease;
}

.nav-dropdown a::after {
    display: none;
}

.nav-dropdown {
    position: absolute;
    left: 50%;
    top: 100%;
    width: 310px;
    padding: 12px;
    display: grid;
    gap: 4px;
    border: 1px solid #edf1f5;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(12, 42, 73, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    z-index: 9999;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    top: -14px;
    width: 100%;
    height: 14px;
}

.nav-dropdown a {
    min-height: 42px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 10px;
    color: #111827;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.3;
    white-space: nowrap;
    transition: background-color .22s ease, color .22s ease, padding-left .22s ease;
}

.nav-dropdown a i {
    font-size: 11px;
    color: #0BB9FE;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .22s ease, transform .22s ease;
}

.nav-dropdown-brands {
    width: 240px;
}

.main-nav .has-dropdown:hover .nav-dropdown,
.main-nav .has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.main-nav .has-dropdown:hover>a,
.main-nav .has-dropdown:focus-within>a {
    color: #0BB9FE;
}

.main-nav .has-dropdown:hover>a i,
.main-nav .has-dropdown:focus-within>a i {
    color: #0BB9FE;
    transform: rotate(180deg);
}

.main-nav>a:hover::after,
.main-nav>.nav-item:hover>a::after,
.main-nav>.nav-item:focus-within>a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-dropdown a:hover {
    background: #eaf7ff;
    color: #0C2A49;
    padding-left: 16px;
}

.nav-dropdown a:hover i {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 991px) {

    .main-nav,
    .header-actions {
        display: none;
    }
}










.mobile-nav-dropdown {
    border-bottom: 1px solid #edf1f5;
}

.mobile-nav-parent {
    width: 100%;
    min-height: 54px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: none;
    background: transparent;
    color: #111827;
    font-family: inherit;
    font-size: 17px;
    cursor: pointer;
    font-weight: 600;
}

.mobile-nav-parent span {
    font-family: inherit;
}

.mobile-nav-parent i {
    color: #0BB9FE;
    font-size: 12px;
    transition: transform .25s ease;
}

.mobile-subnav {
    max-height: 0;
    overflow: hidden;
    display: grid;
    gap: 7px;
    padding: 0 0 0 14px;
    transition: max-height .3s ease, padding-bottom .3s ease;
}

.mobile-subnav a {
    min-height: 42px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: none;
    border-radius: 10px;
    background: #f4f6f8;
    color: #344050;
    font-family: inherit;
    font-size: 15px;
}

.mobile-subnav a::after {
    display: none;
}

.mobile-nav-dropdown.is-open .mobile-subnav {
    max-height: 420px;
    padding-bottom: 14px;
}

.mobile-nav-dropdown.is-open .mobile-nav-parent i {
    transform: rotate(180deg);
}

@media (max-width: 575px) {
    .mobile-nav-parent {
        min-height: 52px;
        font-size: 16px;
    }

    .mobile-subnav a {
        min-height: 40px;
        font-size: 14px;
    }
}










.about-page .about-short-section {
    padding: 72px 0 82px;
    background: #ffffff;
}

.about-page .about-short-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: center;
}

.about-page .about-symbol {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-page .about-symbol img {
    width: 100%;
    max-width: 720px;
    height: auto;
    max-height: 430px;
    object-fit: contain;
    border-radius: 22px;
}

.about-page .about-short-text {
    max-width: 920px;
    margin: 0 auto;
}

.about-page .about-short-text h4,
.about-page .about-short-text h5 {
    color: #07121e;
    font-family: var(--plusjakarta);
    font-weight: 900;
    letter-spacing: -0.5px;
}

.about-page .about-short-text h4 {
    margin: 34px 0 16px;
    font-size: 34px;
    line-height: 1.15;
}

.about-page .about-short-text h4:first-child {
    margin-top: 0;
}

.about-page .about-short-text h5 {
    margin: 26px 0 12px;
    font-size: 24px;
    line-height: 1.2;
}

.about-page .about-short-text p {
    max-width: 100%;
    margin-bottom: 18px;
    color: #5f6c7b;
    font-size: 17px;
    line-height: 1.82;
    font-weight: 400;
    font-family: var(--inter);
    letter-spacing: 0;
}

.about-page .about-short-text ul,
.about-page .about-short-text ol {
    margin: 20px 0 26px;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.about-page .about-short-text li {
    position: relative;
    padding-left: 28px;
    color: #5f6c7b;
    font-size: 16px;
    line-height: 1.7;
    font-family: var(--inter);
}

.about-page .about-short-text li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 2px;
    color: #00C0FE;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 15px;
}

.about-page .about-short-text strong {
    color: #0C2A49;
    font-weight: 800;
}

.about-page .about-short-text a {
    color: #0BB9FE;
    font-weight: 700;
}

@media (max-width: 991px) {
    .about-page .about-short-section {
        padding: 58px 0 68px;
    }

    .about-page .about-symbol img {
        max-width: 620px;
        max-height: 380px;
    }

    .about-page .about-short-text h4 {
        font-size: 30px;
    }

    .about-page .about-short-text h5 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .about-page .about-short-section {
        padding: 48px 0 58px;
    }

    .about-page .about-short-grid {
        gap: 28px;
    }

    .about-page .about-symbol img {
        max-width: 100%;
        max-height: 320px;
        border-radius: 18px;
    }

    .about-page .about-short-text h4 {
        margin: 28px 0 14px;
        font-size: 27px;
    }

    .about-page .about-short-text h5 {
        font-size: 20px;
    }

    .about-page .about-short-text p {
        font-size: 16px;
        line-height: 1.75;
    }
}

@media (max-width: 575px) {
    .about-page .about-short-section {
        padding: 42px 0 50px;
    }

    .about-page .about-symbol img {
        max-height: 280px;
        border-radius: 16px;
    }

    .about-page .about-short-text h4 {
        font-size: 24px;
    }

    .about-page .about-short-text h5 {
        font-size: 19px;
    }

    .about-page .about-short-text p,
    .about-page .about-short-text li {
        font-size: 15px;
    }
}









.header-language {
    position: relative;
    font-family: var(--outfit);
}

.header-language-current {
    height: 44px;
    min-width: 66px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid #dfe7ee;
    border-radius: 30px;
    background: #ffffff;
    color: #0C2A49;
    font-family: var(--outfit);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.header-language-current i {
    color: #0BB9FE;
    font-size: 10px;
    transition: transform .25s ease;
}

.header-language-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 100;
    width: 180px;
    padding: 8px;
    border: 1px solid #e5ebf1;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(12, 42, 73, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .22s ease;
}

.header-language-dropdown a {
    min-height: 44px;
    padding: 0 12px;
    display: grid;
    grid-template-columns: 30px 1fr 14px;
    align-items: center;
    gap: 8px;
    border-radius: 9px;
    color: #536171;
    font-family: var(--outfit);
    font-size: 13px;
}

.header-language-dropdown a::after {
    display: none;
}

.header-language-dropdown a span {
    color: #0BB9FE;
    font-size: 12px;
    font-weight: 800;
}

.header-language-dropdown a strong {
    color: inherit;
    font-weight: 600;
}

.header-language-dropdown a i {
    color: #0BB9FE;
    font-size: 11px;
}

.header-language-dropdown a.is-active {
    background: #eaf7ff;
    color: #0C2A49;
}

.header-language:hover .header-language-dropdown,
.header-language:focus-within .header-language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-language:hover .header-language-current i,
.header-language:focus-within .header-language-current i {
    transform: rotate(180deg);
}

.mobile-language-switcher {
    padding: 24px 0 4px;
    font-family: var(--outfit);
}

.mobile-language-switcher>span {
    display: block;
    margin-bottom: 11px;
    color: #7a8795;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobile-language-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mobile-language-options a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfe7ee;
    border-radius: 10px;
    background: #ffffff;
    color: #0C2A49;
    font-family: var(--outfit);
    font-size: 14px;
    font-weight: 700;
}

.mobile-language-options a.is-active {
    border-color: #0C2A49;
    background: #0C2A49;
    color: #ffffff;
}

@media (hover: hover) {
    .header-language-dropdown a:hover {
        background: #eaf7ff;
        color: #0C2A49;
    }

    .mobile-language-options a:hover {
        border-color: #0BB9FE;
    }
}



.presentation-section {
    position: relative;
    width: 100%;
    height: clamp(520px, 50vw, 720px);
    min-height: 520px;
    overflow: hidden;
    background: #04182b;
}

.presentation-video {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -50%) scale(1.15);
    pointer-events: none;
}

.presentation-overlay-img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.presentation-content {
    position: relative;
    z-index: 3;
    width: min(100% - 48px, 1240px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(48px, 7vw, 95px);
    color: #ffffff;
}

.presentation-text {
    flex: 0 1 auto;
    min-width: 0;
    font-family: var(--montserrat);
    font-weight: 500;
}

.presentation-text strong,
.presentation-text span,
.presentation-text em {
    display: block;
    font-style: normal;
    white-space: nowrap;
}

.presentation-text strong {
    font-size: clamp(30px, 3vw, 36px);
    line-height: 1;
}

.presentation-text span {
    font-size: clamp(29px, 2.9vw, 35px);
    line-height: 1.08;
}

.presentation-text em {
    font-size: clamp(32px, 3.2vw, 39px);
    line-height: 1.1;
}

.presentation-logo {
    flex: 0 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 34px;
}

.presentation-logo img {
    width: clamp(220px, 25vw, 300px);
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.presentation-logo span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    letter-spacing: 7px;
}

@media (max-width: 1200px) {
    .presentation-section {
        height: 600px;
        min-height: 600px;
    }

    .presentation-content {
        width: min(100% - 40px, 1080px);
        gap: 64px;
    }

    .presentation-video {
        transform: translate(-50%, -50%) scale(1.30);
    }

    .presentation-logo img {
        width: 260px;
    }
}

@media (max-width: 991px) {
    .presentation-section {
        height: 520px;
        min-height: 520px;
    }

    .presentation-content {
        width: min(100% - 40px, 760px);
        gap: 42px;
    }

    .presentation-video {
        transform: translate(-50%, -50%) scale(1.30);
    }

    .presentation-text strong {
        font-size: 30px;
    }

    .presentation-text span {
        font-size: 29px;
    }

    .presentation-text em {
        font-size: 33px;
    }

    .presentation-logo img {
        width: 230px;
    }
}

@media (max-width: 768px) {
    .presentation-section {
        height: auto;
        min-height: 500px;
    }

    .presentation-video {
        transform: translate(-50%, -50%) scale(1.30);
    }

    .presentation-content {
        width: 100%;
        min-height: 500px;
        padding: 60px 24px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 34px;
        text-align: center;
    }

    .presentation-text {
        width: 100%;
    }

    .presentation-text strong,
    .presentation-text span,
    .presentation-text em {
        white-space: normal;
    }

    .presentation-text strong {
        font-size: 29px;
        line-height: 1.05;
    }

    .presentation-text span {
        font-size: 28px;
        line-height: 1.1;
    }

    .presentation-text em {
        font-size: 32px;
        line-height: 1.1;
    }

    .presentation-logo {
        width: 100%;
        justify-content: center;
    }

    .presentation-logo img {
        width: min(260px, 75vw);
    }
}

@media (max-width: 575px) {
    .presentation-section {
        min-height: 430px;
    }

    .presentation-video {
        transform: translate(-50%, -50%) scale(1.40);
    }

    .presentation-overlay-img {
        object-position: center;
    }

    .presentation-content {
        min-height: 430px;
        padding: 46px 20px;
        gap: 28px;
    }

    .presentation-text strong {
        font-size: 25px;
    }

    .presentation-text span {
        font-size: 24px;
    }

    .presentation-text em {
        font-size: 28px;
    }

    .presentation-logo img {
        width: min(220px, 72vw);
    }
}

@media (max-width: 390px) {
    .presentation-section {
        min-height: 400px;
    }

    .presentation-content {
        min-height: 400px;
        padding: 40px 18px;
        gap: 24px;
    }

    .presentation-text strong {
        font-size: 22px;
    }

    .presentation-text span {
        font-size: 21px;
    }

    .presentation-text em {
        font-size: 25px;
    }

    .presentation-logo img {
        width: min(190px, 70vw);
    }
}









body .swal2-container {
    z-index: 999999 !important;
    font-family: var(--outfit);
}

body .swal2-container .swal2-popup {
    width: 520px !important;
    max-width: calc(100vw - 32px) !important;
    padding: 28px 32px !important;
    font-size: 16px !important;
    border-radius: 18px !important;
}

body .swal2-container .swal2-title {
    font-size: 24px !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
}

body .swal2-container .swal2-html-container {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin: 12px 0 0 !important;
}

body .swal2-container .swal2-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 24px auto 12px !important;
}

body .swal2-container .swal2-icon-content {
    font-size: 56px !important;
}

body .swal2-container .swal2-actions {
    margin-top: 24px !important;
    gap: 10px !important;
}

body .swal2-container .swal2-confirm,
body .swal2-container .swal2-cancel,
body .swal2-container .swal2-deny {
    font-size: 15px !important;
    padding: 12px 26px !important;
    border-radius: 8px !important;
    font-family: var(--outfit);

}

@media (max-width: 575px) {
    body .swal2-container .swal2-popup {
        width: calc(100vw - 24px) !important;
        padding: 24px 20px !important;
    }

    body .swal2-container .swal2-title {
        font-size: 21px !important;
    }

    body .swal2-container .swal2-html-container {
        font-size: 15px !important;
    }
}

body .swal2-container .swal2-confirm {
    background-color: #158AFB !important;
    border-color: #158AFB !important;
    color: #fff !important;
    box-shadow: none !important;
}

body .swal2-container .swal2-confirm:hover {
    background-color: #158AFB !important;
    border-color: #158AFB !important;
    color: #fff !important;
}










@media (max-width: 991px) {
    .contact-info-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-main-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 767px) {
    .contact-info-section,
    .contact-main-section {
        overflow-x: hidden;
    }

    .contact-info-grid,
    .contact-main-grid {
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-info-card {
        width: 100%;
        padding: 28px 22px;
    }

    .contact-info-card strong {
        font-size: 19px;
        line-height: 1.4;
    }

    .contact-form-box,
    .contact-side-box {
        width: 100%;
        padding-left: 22px;
        padding-right: 22px;
    }

    .form-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-direct-list a {
        align-items: flex-start;
    }

    .contact-working-card {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .contact-info-grid,
    .contact-main-grid {
        padding-left: 16px;
        padding-right: 16px;
    }

    .contact-info-card {
        padding: 25px 20px;
    }

    .contact-info-card strong {
        font-size: 18px;
    }

    .contact-form-box,
    .contact-side-box {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .contact-side-content h3 {
        font-size: 24px;
    }

    .contact-direct-list a {
        font-size: 13px;
    }

    .contact-working-card {
        padding: 18px;
    }
}
