@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* VARIABLES */
:root {
    --breakpoint-xxs: 320px;
    --breakpoint-xs: 570px;
    --breakpoint-s: 1040px;
    --breakpoint-m: 1170px;
    --breakpoint-l: 1500px;

    --section-pad: clamp(100px, 8vw, 140px) clamp(160px, 18vw, 320px) clamp(40px, 5vw, 80px);

    --primary-blue: #002856;
    --secondary-blue: #3F5488;
    --tertirary-blue: #9CAAC7;
    --orange-action: #D86F3B;

    --blade-A6M4: #4E9BD9;
    --blade-A6M3: #6FB86D;
    --blade-A6M2: #E788C6;
    --blade-A6M1: #BDBDBD;
}

@font-face {
    font-family: 'Material Symbols Outlined';
    src: url('../fonts/materialsymbolsoutlined.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}





html, body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Poppins", sans-serif !important;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    letter-spacing: normal !important;
}

.mobile-nav:not(.open) {
    pointer-events: none;
}

.mobile-nav-overlay:not(.open) {
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}

body {
    background: #eef2f7;
    overflow-x: hidden;
    position: relative;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

figure {
    margin: 0;
}

p:empty {
    display: none;
}

h1,h2,h3,h4,h5,p,span,strong {
    cursor: default;
}

input,
textarea,
select,
button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    appearance: none;
    background: none;
    outline: none;
    border: none;
}

#wpadminbar {
    top: auto;
    bottom: 0;
    opacity: 0.5;
    transition: 0.5s;
}

#wpadminbar:hover {
    opacity: 1;
}

/* SHARED */
.btn {
    padding: 15px 20px;
    background: var(--orange-action);
    color: white;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn:hover {
    opacity: 0.85;
    transform: scale(1.03);
}

/* HEADER */
header {
    position: relative;
}

header svg {
    width: 25px;
}

.header-container {
    padding: clamp(15px, 2.5vw, 25px) clamp(20px, 4vw, 40px);
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.717);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    z-index: 55;
}

.header-logo {
    transition: 0.3s ease;
    cursor: pointer;
}

.header-logo:hover {
    transform: scale(1.1);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-nav-links {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 3.5vw, 4.7rem);
}

.header-nav-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    color: var(--primary-blue);
    font-size: clamp(0.75rem, 1.1vw, 1rem);
    white-space: nowrap;
}


.header-nav-links a:hover {
    color: var(--orange-action);
    transition: 0.2s ease;
}



.header-searchLang {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-blue);
    flex-direction: column;
    gap: 5px;
}

.header-line-h {
    width: 100%;
    background: var(--primary-blue);
    height: 1px;
    opacity: 0.3;
}

.nav-button {
    background: var(--orange-action);
    padding: clamp(7px, 1vw, 10px) clamp(14px, 1.5vw, 20px);
    border-radius: 20px;
    color: white !important;
    font-size: clamp(0.75rem, 1.1vw, 1rem);
    transition: 0.2s ease;
    white-space: nowrap;
}

.nav-button:hover {
    opacity: 0.85;
    transform: scale(1.03);
}


@media (max-width: 1050px) and (min-width: 769px) {
    .header-nav-links {
        gap: clamp(0.5rem, 1.5vw, 2rem);
    }

    .header-nav-links a {
        font-size: clamp(0.65rem, 0.9vw, 0.85rem);
    }
}


/* MOBILE HEADER */

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 60;
}

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-blue) !important;
    transition: 0.3s ease;
    border-radius: 2px;
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 56;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 57;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 10px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav a {
    color: var(--primary-blue);
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s ease;
}

.mobile-nav a:hover {
    color: var(--orange-action);
    padding-left: 5px;
}

.mobile-nav .nav-button {
    margin-top: 10px;
    text-align: center;
    justify-content: center;
    border-bottom: none;
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
        margin-left: auto;
    }

    .mobile-nav-overlay {
        display: block;
        pointer-events: none;
    }

    .mobile-nav-overlay.open {
        pointer-events: auto;
    }

    .header-container {
        justify-content: space-between;
        align-items: center;
    }
}


/* MOBILE HEADER */





.features-section {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    background: linear-gradient(to bottom, #F1F3FB, #F1F3FB, white);
}

.features-section-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100dvh;
    position: relative;
    z-index: 1;
    justify-content: center;
    align-items: center;
}

.features-nav-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 30px;
    text-align: center;
}

.features-title-box {
    padding-top: 0px;
}

.features-title-box img {
    width: 100px;
    transform: translateY(10px);
}

.features-title-box span {
    color: var(--orange-action);
    font-size: 1.2rem;
    font-weight: 500;
}

.type-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.065) inset;
    border-radius: 20px;
    padding: 5px;
    position: relative;
    z-index: 1;
    gap: 50px;
}

.type-btn {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.625);
    padding: 10px 70px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    transition: 0.2s ease;
}

.type-btn.selected {
    color: white;
    background: var(--orange-action);
}

.type-display-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: visible;
    padding: 0 20px;
    height: 560px;       
    position: relative;
}


@media (max-width: 1040px) {
    .type-display-box {
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    .type-display-box {
        min-height: 340px;
    }
}


.type-image-box {
    position: absolute;  
    width: clamp(320px, 40vw, 520px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.type-image-box img {
    width: 100%;
    height: auto;
    display: block;
    z-index: 0;
    position: relative;
    mix-blend-mode: multiply;
}


/* Por temas de tamaño de imagen original tuve que hacerlo asi para este tipo */
.type-image-box img.video_laryn{
    width: 300px;
    left: 55%;
    transform: translateX(-50%);
    position: relative;
}

/* Por temas de tamaño original que era peque, tuve que hacerlo asi de nuevo */
.type-image-box img.hyper{
    width: 550px;
    left: 55%;
    transform: translate(-50%, 0);
    position: relative;
}



@media (max-width: 425px) {
    .type-image-box img.hyper{
        width: 400px;
        transform: translate(-51%, -10%);
    }
}

.btn-info {
    background: #000FDC;
    color: white;
    border: 2.5px solid white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    position: absolute;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 10 !important;
    transform: translate(-50%, -50%);
}

.btn-info * {
    pointer-events: none;
}

.btn-info:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.btn-info.active {
    background: var(--orange-action);
    transform: translate(-50%, -50%) scale(1.15);
}

.btn-info .label {
    position: absolute;
    color: var(--primary-blue);
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    font-style: italic;
    white-space: normal;
    width: 200px;
    text-align: left;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    padding: 5px 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 2px solid var(--orange-action);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50%) translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    right: calc(100% + 14px);
    top: 50%;
    z-index: 10;
    line-height: 1.35;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.btn-info.active .label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}



.btn-info.label-right .label {
    left: calc(100% + 14px);
    right: auto;
    transform: translateY(-50%) translateX(6px);
}

.btn-info.label-right.active .label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* 5 Buttons MACINTOSH */
.btn-info.top_top     { top: 12%; left: 39%; }
.btn-info.top_mid     { top: 23%; left: 39%; }
.btn-info.mid_left    { top: 50%; left: 27%; }
.btn-info.bot_mid     { top: 80%; left: 50%; }
.btn-info.bot_right   { top: 73%; left: 71%; }
.btn-info.bot_right_far { top: 80%; left: 85%; }


/* 4 Buttons CHANNELED */
.btn-info.top_top#channeled {top: 23.5%; left: 41.5%;}
.btn-info.top_mid#channeled{top: 49%; left: 38%;}
.btn-info.mid_left#channeled{top: 84%; left: 46%;}
.btn-info.bot_mid#channeled{top: 79%; left: 57%;}
.btn-info.bot_right#channeled{top: 85%; left: 65%;}


/* 7 Buttons VIDEO LARYNGOSCOPE */
.btn-info.top_top#video_laryn{top: 5%; left: 37%;}
.btn-info.top_mid#video_laryn{top: 26%; left: 43%;}
.btn-info.mid_left#video_laryn{top: 52%; left: 49%;}
.btn-info.bot_mid#video_laryn{top: 13%; left: 70%;}
.btn-info.top_mid_right#video_laryn{top: 29%; left: 75%;}
.btn-info.bot_right#video_laryn{top: 58%; left: 58%;}
.btn-info.bot_right_far#video_laryn{top: 82%; left: 55.7%;}



/* 5 Buttons HYPER ANGULATED */
.type-image-box img.hyper {
    display: block;
    margin: 0 auto;
    position: static;
    transform: none;
}

.btn-info.top_top#hyper{top: 51%; left: 31.5%;}
.btn-info.top_mid#hyper{top: 81%; left: 35%;}
.btn-info.mid_left#hyper{top: 84%; left: 66%;}
.btn-info.bot_mid#hyper{top: 72.5%; left: 88.8%;}
.btn-info.top_mid_right#hyper{top: 63%; left: 93%;}


@media (max-width: 770px) and (min-width: 426px) {

.type-image-box img.hyper {
    display: block;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translate(-50%, -15%);
}
.btn-info.top_top#hyper{top: 36%; left: 20.5%;}
.btn-info.top_mid#hyper{top: 65%; left: 25%;}
.btn-info.mid_left#hyper{top: 70%; left: 60%;}
.btn-info.bot_mid#hyper{top: 55.5%; left: 93.8%;}
.btn-info.top_mid_right#hyper{top: 49%; left: 99%;}
}




.hexa {
    position: absolute;
    translate: -50% -50%;
    z-index: 0;
    opacity: 0.5;
    transition:
        transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
        left 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
        top 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.5s ease;
}

.hexa.mid-left  { left: 35%; top: 60%; }
.hexa.mid       { left: 45%; top: 80%; }
.hexa.top-right { transform: scale(2); left: 60%; top: 50%; }

.features-section.state-1 .hexa.mid-left  { transform: scale(1.15) rotate(30deg);  left: 20%; top: 40%; opacity: 0.7;  }
.features-section.state-1 .hexa.mid       { transform: scale(0.9)  rotate(-20deg); left: 30%; top: 90%; opacity: 0.4;  }
.features-section.state-1 .hexa.top-right { transform: scale(2.3)  rotate(15deg);  left: 72%; top: 38%; opacity: 0.65; }

.features-section.state-2 .hexa.mid-left  { transform: scale(0.8)  rotate(-15deg); left: 25%; top: 55%; opacity: 0.5; }
.features-section.state-2 .hexa.mid       { transform: scale(1.2)  rotate(10deg);  left: 50%; top: 95%; opacity: 0.6; }
.features-section.state-2 .hexa.top-right { transform: scale(2.6)  rotate(-10deg); left: 68%; top: 44%; opacity: 0.7; }

.features-section.state-3 .hexa.mid-left  { transform: scale(1.4)  rotate(45deg);  left: 15%; top: 65%; opacity: 0.75; }
.features-section.state-3 .hexa.mid       { transform: scale(1.0)  rotate(25deg);  left: 40%; top: 88%; opacity: 0.5;  }
.features-section.state-3 .hexa.top-right { transform: scale(1.8)  rotate(20deg);  left: 75%; top: 55%; opacity: 0.55; }

.features-section.state-4 .hexa.mid-left  { transform: scale(1.0)  rotate(-30deg); left: 28%; top: 72%; opacity: 0.6; }
.features-section.state-4 .hexa.mid       { transform: scale(1.3)  rotate(-15deg); left: 55%; top: 92%; opacity: 0.7; }
.features-section.state-4 .hexa.top-right { transform: scale(2.1)  rotate(-25deg); left: 65%; top: 42%; opacity: 0.6; }

.features-section.state-5 .hexa.mid-left  { transform: scale(0.9)  rotate(20deg);  left: 18%; top: 50%; opacity: 0.45; }
.features-section.state-5 .hexa.mid       { transform: scale(0.8)  rotate(-40deg); left: 35%; top: 85%; opacity: 0.4;  }
.features-section.state-5 .hexa.top-right { transform: scale(2.5)  rotate(30deg);  left: 78%; top: 48%; opacity: 0.7;  }

.features-section.state-6 .hexa.mid-left  { transform: scale(1.2)  rotate(-10deg); left: 22%; top: 62%; opacity: 0.65; }
.features-section.state-6 .hexa.mid       { transform: scale(1.1)  rotate(35deg);  left: 60%; top: 93%; opacity: 0.55; }
.features-section.state-6 .hexa.top-right { transform: scale(2.0)  rotate(-18deg); left: 80%; top: 52%; opacity: 0.6;  }

@media (max-width: 1040px) {
    .features-section-container {
        min-height: 100dvh;
        padding: 120px 40px 60px;
        gap: 20px;
    }

    .features-title-box {
        padding-top: 20px;
    }

    .type-menu {
        gap: 10px;
    }

    .type-btn {
        padding: 8px 30px;
        font-size: 0.95rem;
    }

    .type-image-box {
        width: clamp(380px, 70vw, 520px);
    }

    .btn-info .label {
        font-size: 0.72rem;
        width: 130px;
        padding: 5px 10px;
    }

    .hexa {
        display: none;
    }
}

@media (max-width: 768px) {
    .features-section-container {
        min-height: 100dvh;
        padding:  0px 20px 60px !important;
        gap: 25px;
    }

    .features-title-box {
        padding-top: 0;
    }

    .type-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        width: 100%;
        padding: 6px;
        border-radius: 16px;
    }

    .type-btn {
        padding: 10px 8px;
        font-size: 0.95rem;
        text-align: center;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
        white-space: normal;
        flex-shrink: unset;
    }

    .type-image-box {
        width: clamp(280px, 90vw, 420px);
    }

    .btn-info {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .btn-info .label {
        font-size: 0.72rem;
        width: 130px;
        padding: 5px 9px;
    }

    .hexa {
        display: none;
    }
}






/* SPECFIICATION SECTION */

.specs-section {
    background: white;
    position: relative;
}

.specs-section-container {
    padding: var(--section-pad);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.specs-title-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.specs-title-box {
    color: var(--primary-blue);
    padding-bottom: 15px;
}

.specs-title-box h2 {
    font-size: 2rem;
}

.specs-title-box span {
    color: var(--orange-action);
    font-size: 1.2rem;
}

.specs-table-box {
    display: flex;
    justify-content: space-between
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.specs-table tr:nth-child(even) {
    background: rgba(217, 217, 242, 0.501);
}

.specs-table td, 
.specs-table th {
    padding: clamp(5px, 2vw, 20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.specs-table th {
    color: var(--primary-blue);
}


.specs-table td {
    font-style: italic;
    font-weight: 300;
}

.prod-image-specs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-20px);
}

.prod-image-specs img{
    width: 280px;
    transform: scaleX(-1);
}

@media (max-width: 1024px) {
    .specs-section-container {
        padding: 50px 10px;
    }

    .specs-title-box h2 {
        font-size: 1.75rem;
    }

    .specs-title-box span {
        font-size: 1.1rem;
    }

    .prod-image-specs img {
        width: 220px;
    }
}

@media (max-width: 767px) {
    .specs-table-box {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .prod-image-specs {
        transform: translateY(0);       
        order: -1;                      
    }

    .prod-image-specs img {
        width: 200px;
    }

    .specs-title-box h2 {
        font-size: 1.5rem;
    }

    .specs-title-box span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .specs-section-container {
        gap: 14px;
    }

    .specs-title-box {
        padding-bottom: 10px;
    }

    .specs-title-box h2 {
        font-size: 1.25rem;
    }

    .specs-title-box span {
        font-size: 0.9rem;
    }

    .specs-table table {
        font-size: 0.85rem;
    }

    .specs-table td,
    .specs-table th {
        padding: 8px 6px;
    }

    .prod-image-specs img {
        width: 160px;
    }
}








/* DISPLAY OPTIONS SECTION */

.display-options {
    position: relative;
}

.display-options__container {
    padding: var(--section-pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.display-options__header {
    text-align: center;
    color: var(--primary-blue);
    margin-top: -30px;
}

.display-options__header h2{
    font-weight: 1000;
    font-size: 1.8rem;
}

.display-options__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    align-items: center; 
    place-items: center;
    width: 100%;
}

.display-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px; 
    text-align: center;
}

.display-column h3 { color: var(--primary-blue); }

.display-column__image-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: contrast(110%) saturate(110%);
}

.display-devices {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.display-device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.display-options-footer {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: -40px;
    align-items: center;
    justify-content: space-around;
}

.display-options-footer img {
    width: 100px;
    object-fit: contain;
}


@media (max-width: 1024px) {
    .display-options__container {
        padding: 50px 10px;
        gap: 60px;
    }

    .display-options__header {
        margin-top: 30px;
    }

    .display-options__grid {
        gap: 40px;
    }

    .display-options-footer img {
        width: 80px;
    }
}

@media (max-width: 767px) {
    .display-options__container {
        padding: 50px 10px;
        gap: 40px;
    }

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

    .display-column {
        width: 100%;
        max-width: 340px;
    }

    .display-options__header {
        margin-top: 10px;
    }

    .display-options-footer {
        flex-direction: column;
        gap: 20px;
        margin-top: 0;
    }

    .display-options-footer img {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .display-options__container {
        gap: 30px;
    }

    .display-options__header h2 {
        font-size: 1.25rem;
    }

    .display-column h3 {
        font-size: 0.95rem;
    }

    .display-options-footer img {
        width: 65px;
    }
}












/* OTHER PRODUCTS SECtION */


.others-section {
    background: linear-gradient(to bottom, white, white, white, transparent);
    position: relative;
}

.others-section-container {
    padding: var(--section-pad);
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    align-items: center;
    gap: 40px;
    cursor: default;
}

.others-header {
    color: var(--orange-action);
    text-align: center;
    word-spacing: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.others-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px 20px;
}

.other-card {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.048) inset;
    transition: 0.4s ease;
}

.other-card:hover {
    box-shadow: 0px 0px 200px rgba(0, 0, 0, 0.081) inset;
}

.other-image-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80%;
}

.other-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    flex-grow: 1;
    align-items: center;
    gap: 10px;
}

.other-card span {
    font-size: 1rem;
}

.other-card strong {
    color: var(--primary-blue);
}

@media (max-width: 1440px) {
   .features-section-container {
    padding: 50px 0px;
    transform: scale(0.9);
   }

    .others-section-container {
        padding: 100px 0px;
        box-sizing: border-box;
        margin: 0;
    }
}



@media (max-width: 1280px) {
    .others-section-container {
        padding: 50px 10px;
    }

    .others-card-grid {
        gap: 0px 12px;
        width: 100%;
    }

    .other-card {
        padding: 15px;
        aspect-ratio: unset;       
        height: 100%;             
    }

    .other-image-box {
        height: 200px;
    }

    .other-image-box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

@media (max-width: 1024px) {
    .others-section-container {
        padding: 50px 10px;
        gap: 30px;
    }

    .others-card-grid {
        gap: 12px;
        width: 100%;
        align-items: stretch;      
    }

    .other-card {
        aspect-ratio: unset;
        height: 100%;
        padding: 15px;
    }

    .other-image-box {
        height: 160px;
    }

    .other-image-box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .other-card span {
        font-size: 0.875rem;
    }
}


@media (max-width: 767px) {
    .others-section-container {
        padding: 50px 10px;
        gap: 24px;
    }

    .others-card-grid {
        grid-template-columns: 1fr;   
        gap: 16px 0px;
        width: 100%;
        max-width: 340px;
    }

    .other-card {
        aspect-ratio: unset;          
        display: flex;
        flex-direction: row;          
        align-items: center;
        gap: 16px;
        padding: 16px;
    }

    .other-image-box {
        height: auto;
        width: 90px;
        flex-shrink: 0;
    }

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

    .other-text-box {
        align-items: flex-start;     
        text-align: left;
    }
}

@media (max-width: 480px) {
    .others-header h3 {
        font-size: 1rem;
        word-spacing: 2px;
    }

    .other-card {
        padding: 12px;
        gap: 12px;
    }

    .other-image-box {
        width: 70px;
    }

    .other-card span {
        font-size: 0.875rem;
    }
}
















footer {
    background: var(--primary-blue);
    color: white;
    margin-top: 150px;
}

.footer-container {
    padding: clamp(60px, 6vw, 80px) clamp(160px, 18vw, 320px);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 320px;
}

.footer-logo {
    width: 130px;
    filter: brightness(0) invert(1);
}

.footer-left p {
    font-size: 0.8rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-icex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icex img {
    height: 30px;
    width: auto;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 60px;
    align-items: start;
}

.footer-nav a {
    color: white;
    font-size: 0.9rem;
    opacity: 0.85;
    white-space: nowrap;
    transition: 0.2s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--orange-action);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px clamp(160px, 18vw, 320px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    opacity: 0.6;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: white;
    font-size: 0.78rem;
    opacity: 0.6;
    transition: 0.2s ease;
    text-decoration: underline;
}

.footer-bottom-links a:hover {
    opacity: 1;
}


@media (max-width: 1024px) {
    .footer-container {
        padding: 60px 40px;
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        padding: 20px 40px;
    }

    .footer-nav {
        gap: 15px 40px;
    }
}

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

    .footer-bottom {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .footer-left {
        max-width: 100%;
    }
}


@media (max-width: 490px) {
    .type-image-box[data-type="channeled"] img {
        max-height: 300px !important;
        width: auto !important;
        margin: 0 auto;
        display: block;
    }

    .type-image-box[data-type="channeled"] {
        width: auto !important;
    }
}