/* ---------------------------------------- */
/* Predefinidos */
@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;

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

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

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: none;
}

::-webkit-scrollbar-thumb {
    background: var(--orange-action);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange-action);
}

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


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

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



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

html {
    scroll-behavior: smooth;
}

body {
    background: #eef2f7;
    overflow-x: hidden;
    position: relative;
    font-family: "Poppins", sans-serif;
}

a {
    color: inherit;
}

figure {
    margin: 0;
}

p:empty {
    display: none;
}


/* Antialiasing */
body,
input,
textarea,
select,
button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Apariencia por defecto de campos de formulario */
input,
textarea,
button {
    appearance: none;
    background: none;
    outline: none;
    border: none;
}

/* Barra de WordPress */
#wpadminbar {
    top: auto;
    bottom: 0;
    opacity: 0.5;
    transition: 0.5s;
}

#wpadminbar:hover {
    opacity: 1;
}


/* ---------------------------------- */
/* Scroll */

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











/* 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 */










/*. HERO  */

.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: clamp(100px, 8vw, 140px) clamp(160px, 18vw, 320px) clamp(40px, 5vw, 80px);
    background: #eef2f7;
    align-items: center;
    gap: 60px 0;
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 3vw, 40px);
    grid-column: 1;
    font-family: 'Poppins' sans-serif;
    grid-row: 1;
}

.hero-text-box {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 2vw, 20px);
}

.hero-text-box h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-blue);
    font-style: italic;
    font-weight: 1000;
}

.hero-text-box h2 {
    font-size: clamp(1.3rem, 2.3vw, 1.5rem);
    color: var(--primary-blue);
    font-style: italic;
    font-weight: 7000;
}

.hero-text-box p {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    max-width: 380px;
    line-height: 1.6;
    color: #444;
}

.hero-text-buttons-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-text-buttons-box button:first-child {
    background: var(--orange-action);
    color: white;
    padding: clamp(10px, 1.2vw, 14px) clamp(20px, 2vw, 30px);
    border-radius: 25px;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-text-buttons-box button:first-child:hover {
    opacity: 0.85;
    transform: scale(1.03);
}

.hero-text-buttons-box button:last-child {
    background: transparent;
    color: var(--primary-blue);
    padding: clamp(10px, 1.2vw, 14px) clamp(20px, 2vw, 30px);
    border-radius: 25px;
    border: 1.5px solid var(--primary-blue);
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-text-buttons-box button:last-child:hover {
    background: var(--primary-blue);
    color: white;
}

.hero-image-container {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}



.hero-image-container::before {
    content: '';
    background-image: url(../img/airtraqplus.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: 1;
    left: 18%;
    top: -15%;
    filter: drop-shadow(0px 0px 3px var(--primary-blue));
}

.hero-image-container img {
    width: 100%;
    object-fit: contain;
    transform: scale(1.2);
}

.hero-pros-container {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-top: clamp(20px, 3vw, 40px);
    gap: 20px;
}

.hero-pros-container div {
    padding: 0 20px;
    padding-top: 20px;
    font-weight: 1000;
    border-top: 1px solid var(--primary-blue);
}

.hero-pros-container div:first-child {
    padding-left: 0;
}

.hero-pros-container div:last-child {
    border-right: none;
}

.hero-pros-container h3 {
    font-size: clamp(0.85rem, 1.2vw, 1.1rem);
    color: var(--primary-blue);
    font-weight: 500;
}





.hexa {
    position: absolute;
}

.hexa.left {
    left: 0;
}

.hexa.right {
    right: 0;
    transform: scaleX(-1) scale(1.3);
}


.product-section {
    position: relative;
}

.product-section-container {
    padding: clamp(100px, 8vw, 140px) clamp(160px, 18vw, 320px) clamp(40px, 5vw, 80px);
}

.product-box-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #eef2f7;
    justify-content: center;
}



.prod-box-head {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
    gap: 20px;
}

.prod-box-head img {
    width: 250px;
    transform: translateY(-5px);
}

.prod-box-head h2 {
    color: var(--primary-blue);
    font-style: italic;
    font-size: 2.5rem;
    font-weight: 200;
}



.prod-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: white;
    margin-top: 30px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.135);
    flex-wrap: wrap;
}

.prod {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.prod:hover {
    transform: scale(1.1);
    filter: contrast(120%);
}

.prod img {
    width: auto;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.prod.screen img {
    height: 400px;
}

.prod span {
    font-weight: bold;
    font-size: 1.1rem;
}


.prod-foot {
    background: white;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    align-items: center;
    gap: clamp(0.4rem, 2rem, 3rem);
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.135);
    flex-wrap: wrap;
}

.prod-foot img {
    width: 110px;
}

.prod-foot span {
    font-weight: bold;
    font-size: clamp(0.7rem, 1.3rem, 2rem);
}

.prod-foot strong {
    color: rgb(67, 173, 131);
}

.iscc-logo {
    width: 220px !important;
}









.blade-type-section {
    background: white;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    margin-top: 90px;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    padding: clamp(100px, 8vw, 100px) clamp(160px, 18vw, 320px) clamp(40px, 5vw, 80px);
}


.blade-type-title {
    position: relative;
    color: var(--primary-blue);
    font-size: 1.8rem;
}

.blade-type-title h2 {
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
}


.blade-type-button-box {
    display: flex;
    width: 70%;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.071) inset;
    padding: 5px;
    border-radius: 20px;
    gap: 5em;
}

.type-button {
    height: 45px;
    cursor: pointer;
    border-radius: 20px;
    color: black;
    font-size: clamp(18px, 18px, 30px);
    width: 200px;
    transition: 0.3s ease;
}

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



.type-card-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-auto-columns: 1fr;
}

.type-card-box#hyperangulated {
    display: flex;
    justify-content: center;
    align-items: center;
}

.type-card-box#channeled {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-auto-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}




.type-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    height: 320px;
}

.type-card-img-box {
    position: relative;
}

.plus-btn {
    background: #000FDC;
    position: absolute;
    height: 33px;
    color: white;
    font-size: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 1000;
    width: 35px;
    transition: 0.3s;
    z-index: 1;
    right: 0;
    border-radius: 50%;
}

.plus-btn:hover {
    transform: scale(1.2);
}

.plus-btn:hover::before {
    animation: none;
}

.type-cod-box {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.type-cod {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 35px;
}

.type-cod img {
    height: 25px;
    width: auto;
    object-fit: contain;
}

.type-cod img.iconL {
    height: 35px;
}

.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}




@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.plus-btn::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 33px;
    border-radius: 50%;
    z-index: 0;
    cursor: pointer;
    animation: pulse 0.8s linear infinite;
    background: #000fdc32;
}

.type-cod {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.circle {
    width: 18px;
    border-radius: 50%;
    height: 16.5px;
    background: black;
}

.a6m4 {
    background: var(--blade-A6M4);
}

.a6m3 {
    background: var(--blade-A6M3);
}

.a6m2 {
    background: var(--blade-A6M2);
}

.a6m1 {
    background: var(--blade-A6M1);
}

.a6ha {
    background: var(--orange-action);
}

.a6c3 {
    background: var(--blade-A6C3);
}

.a6c2 {
    background: var(--blade-A6C2);
}

.a6c1 {
    background: var(--blade-A6C1);
}







.video-section {
    position: relative;
    padding-top: 50px;
    background: white;
}

.video-section-container {
    display: flex;
    flex-direction: column;
    padding: clamp(100px, 8vw, 100px) clamp(160px, 18vw, 320px) clamp(40px, 5vw, 80px);
}

.video-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary-blue);
    gap: 20px;
}

.video-title h2 {
    font-size: 2.5rem;
    font-weight: 500;
}

.video-title span {
    font-size: 1.4rem;
    font-weight: 300;
}

.video-title strong {
    font-weight: 600;
}

.video-container {
    position: relative;
    height: 600px;
    width: 100%; 
    overflow: hidden; 
    display: flex;
    align-items: center;
}

.video-container svg {
    position: absolute;
    width: 100px;
    left: 50%;
    top: 15%;
    transform: translate(-50% -50%);
    color: var(--primary-blue);
    transition: 0.3s ease;
    z-index: 22;
    clip-path: circle(100%);
}

.video-container svg:hover {
    transform: scale(1.1);
    cursor: pointer;

}

.videoModelImage {
    position: absolute;
    width: 350px; 
    height: auto;
    transition: all 0.5s ease;
}


.videoModelImage:nth-child(2){
    left: 0;
    top: 10%;
}

.videoModelImage:nth-child(3) {
    left: 53%;
    transform: translateX(-50%);
    z-index: 2; 
    top: 40%;
}

.videoModelImage:nth-child(4) {
    right: 0;
    top: 15%;
}


.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal {
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: black;
    transform: translateY(100vh); 
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.video-modal iframe {
    width: 100%;
    height: 100%;
}

.video-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.video-overlay.open .video-modal {
    transform: translateY(0);
}

.video-container svg {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-container svg:hover {
    transform: scale(1.1);
}







.benefits-section {
    background: white;
    overflow: hidden;
    position: relative;
}


.benefits-section-container {
    display: flex;
    flex-direction: column;
    gap: 110px;
    padding: clamp(100px, 8vw, 100px) clamp(160px, 18vw, 320px) clamp(40px, 5vw, 80px);
}

.benefits-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    color: var(--primary-blue);
    gap: 10px;
}

.benefits-title h2 {
    font-size: 2.5rem;
    font-weight: 500;
}

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

.benefits-box-grid {
    display: grid;
    align-items: start;        /* ← change from place-items: center */
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 80px;
    overflow: hidden;
    max-height: 700px;
    transition: max-height 0.7s ease;
}

.benefits-box-grid.open {
    max-height: 1600px;
}

.benefit-card {
    cursor: default;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
    justify-content: flex-start;  
    min-height: unset;             
    transition: 0.5s ease;
    padding: 20px;
    border-radius: 25px;
    color: black;
    align-self: start;            
}



.benefit-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 800;
}

.benefit-card img {
    width: 65px;
    height: 65px;
}

.benefit-show-btn-box {
    align-self: center;
    gap: 10px;
    display: flex;
    align-items: center;
    color: var(--orange-action);
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
}











.guide-section {
    position: relative;
    background: linear-gradient(to bottom, white, #eef2f7, #eef2f7);
    overflow: hidden;
}

.guide-section-container {
    padding: clamp(100px, 8vw, 100px) clamp(160px, 18vw, 320px) clamp(40px, 5vw, 80px);
}

.guide-box-head {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
    gap: 20px;
}

.guide-box-head img{
    width: 250px;
    transform: translateY(-5px);
}


.guide-box-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.guide-box-title h2 {
color: var(--primary-blue);
    font-style: italic;
    font-size: 2.7rem;
    font-weight: 700;
}

.guide-box-title span {
    color: var(--primary-blue);
    font-size: 1.8em;
    font-style: italic;
    font-weight: 300;
}


.guide-options-box {
    display: grid;
    margin-top: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
}

.guide-box {
    background: white;
    border-radius: 30px;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    display: flex;
    cursor: default;
    gap: 5px;
    height: 460px;
    text-align: center;
}


.guide-box h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 400;
}

.guide-box p {
    color: rgba(0, 0, 0, 0.629);
}

.guide-box button {
    padding: 10px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    background: var(--orange-action);
    border-radius: 30px;
}

.guide-box button:hover {
    transform: scale(1.1);
}



.guide-airtraxview {
    transform: scale(1.4);
}



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: 1440px) {
    .benefits-section-container {
        padding: 80px 5% 40px 5%; 
    }

    .benefits-box-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 30px;
        max-height: 300px;
    }

    .benefits-box-grid.open {
        max-height: 1600px;
    }

    .benefit-card {
        height: auto;
        min-height: unset; 
        padding: 30px;
        align-items: center;
        text-align: center;
    }
}




@media (max-width: 1024px) {
    .hero-section {
        padding: clamp(100px, 8vw, 140px) clamp(60px, 8vw, 120px) clamp(40px, 5vw, 80px);
    }

    .product-section-container {
        padding: clamp(80px, 8vw, 120px) 5% clamp(40px, 5vw, 60px);
    }

    .prod.screen img {
        height: 300px;
    }

    .prod-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px;
    }

    .prod img {
        height: 150px;
    }

    .type-card-img-box {
        margin: 0 50px;
    }

    .plus-btn {
        top: 35%;
        left: 75%;
    }



    .video-section-container {
        padding: 80px 40px; 
    }

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

    .video-container {
        height: 500px; 
    }

    .videoModelImage {
        width: 280px; 
    }

    .videoModelImage:nth-child(2) {
        left: 5%;
        top: 5%;
    }

    .videoModelImage:nth-child(3) {
        left: 50%;
        top: 35%;
    }

    .videoModelImage:nth-child(4) {
        right: 5%;
        top: 10%;
    }



    .benefits-section-container {
        padding: 30px;
    }

    .benefit-card {
        justify-content: center;
        align-items: center;
        padding: 0px 10%;
        height: 380px;
        width: 100%;
    }

    .benefits-box-grid {
        grid-template-columns: repeat(2, 1fr);
        max-height: 850px;
    }

    .benefits-box-grid.open {
        max-height: 2000px;
    }



    .guide-section-container {
        padding: 80px 40px;
    }

    .guide-box-head {
        flex-direction: column;
        text-align: center;
    }

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

    .guide-box-title span {
        font-size: 1.4rem;
    }

    .guide-box {
        height: auto;
        padding: 30px;
    }



    .footer-container {
        padding: 60px 40px;
        flex-direction: column;
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 120px 30px 60px;
        gap: 40px 0;
    }

    .hero-text-container {
        grid-column: 1;
        grid-row: 1;
    }

    .hero-image-container {
        grid-column: 1;
        grid-row: 2;
    }

    .hero-image-container img {
        transform: scale(1);
        max-width: 400px;
    }

    .hero-pros-container {
        grid-column: 1;
        grid-row: 3;
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text-box p {
        max-width: 100%;
    }

    .hero-image-container::before {
        width: 100px;
        height: 100px;
        top: -10%;
        left: 80%;
    }

    .prod-box-head {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .prod-box-head h2 {
        font-size: 1.8rem;
    }

    .prod-box-head img {
        width: 180px;
    }

    .prod-images {
        display: grid;
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 20px;
    }

    .prod img {
        max-width: 150px;
        height: auto;
    }

    .prod.screen {
        width: 100%;
    }

    .prod.screen img {
        height: 250px;
    }

    .prod-foot {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .prod-foot span {
        font-size: 1.1rem;
    }

    .hexa {
        width: 100px;
        opacity: 0.5;
    }

    .type-card-img-box {
        margin: 0;
    }

    .plus-btn {
        top: 35%;
        left: 75%;
    }

    .video-section-container {
        padding: 50px 20px;
        gap: 1rem;
    }

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

    .video-container {
        height: 350px;
    }

    .video-container svg {
        width: 70px;
        top: 15%;
    }

    .videoModelImage {
        width: 30%; 
    }

    .videoModelImage:nth-child(2) {
        left: 0;
        top: 5%;
        opacity: 0.4; 
    }

    .videoModelImage:nth-child(3) {
        left: 50%;
        top: 20%;
        width: 40%; 
        z-index: 5;
    }

    .videoModelImage:nth-child(4) {
        right: 0;
        top: 10%;
        opacity: 0.4;
    }

    .video-modal {
        width: 95%; 
    }

    .benefits-section-container {
        padding: 10px;
    }

    .benefit-card {
        justify-content: center;
        align-items: center;
        padding: 0px 10%;
        width: 100%;
        height: 380px;
    }

    .benefits-box-grid {
        grid-template-columns: 1fr;
        gap: 0px;
        max-height: 1250px;
    }

    .benefits-box-grid.open {
        max-height: 4000px;
    }

    .guide-section-container {
        padding: 60px 20px;
    }

    .guide-options-box {
        grid-template-columns: 1fr;
    }

    .guide-box-title h2 {
        font-size: 1.7rem;
    }

    .guide-box-title span {
        font-size: 1.2rem;
    }

    .guide-airtraxview {
        transform: scale(1.1);
    }



    .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: 480px) {
    .hero-pros-container {
        grid-template-columns: 1fr;
    }

    .hero-text-buttons-box {
        flex-direction: column;
        align-items: flex-start;
    }
 
    .hero-image-container::before {
        width: 90px;
        height: 60px;
        left: 25%;
    }

    .product-section-container {
        padding: 60px 15px 40px;
    }

    .prod-box-head h2 {
        font-size: 1.5rem;
    }

    .prod img {
        height: 120px;
    }

    .prod.screen img {
        height: 200px;
    }

    .iscc-logo {
        width: 160px !important;
    }

    .hexa {
        display: none;
    }
}







@media (max-width: 1200px) {
    .blade-type-section {
        padding: 80px 40px;
    }

    .blade-type-button-box {
        width: 100%;
        gap: 10px;
    }

 

    .type-button {
        width: 100%;
        font-size: 16px;
    }

    .type-card-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
    }

        
    .type-card-box#channeled {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
        grid-auto-columns: 1fr;
        gap: 40px 10px;
    }   

}

@media (max-width: 1200px) {
    .plus-btn {
        left: 70%;
        top: 25%;
    }
}

@media (max-width: 650px) {
    .blade-type-section {
        padding: 60px 0px;
        gap: 2rem;
    }

    .blade-type-title {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .blade-type-title h2{
        font-size: 1.8rem;
    }

    .blade-type-button-box {
        width: 90%;
        gap: 5px;
        border-radius: 20px;
    }

    .type-button {
        height: 35px;
        font-size: 14px;
        border-radius: 20px;
    }

    

    .type-card-box,
    .type-card-box#hyperangulated,
    .type-card-box#channeled {
        display: flex !important;       
        flex-direction: row;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        overflow-x: auto;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        gap: 10px;
        align-items: center;
        padding: 0 10%;
        width: 100%;
        height: 400px !important;
        -webkit-overflow-scrolling: touch;
    }





  
    .type-card-box::-webkit-scrollbar,
    .type-card-box#hyperangulated::-webkit-scrollbar,
    .type-card-box#channeled::-webkit-scrollbar {
        display: none;
        
    }

    .type-cod-box {
        gap: 0;
    }

    .type-card {
        scroll-snap-align: top;
        border-radius: 15px;
        display: flex;
        gap: 0 !important;
        justify-content: start !important;
        padding: 0;
        margin-top: -75px;
        transform: scale(0.9) !important;
    }
}



.blade-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.blade-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.blade-modal {
    background: white;
    border-radius: 20px;
    padding: 50px 60px 50px 100px;
    max-width: 1100px;
    width: 95%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.blade-modal-overlay.open .blade-modal {
    transform: translateY(0);
}

.blade-modal-close {
    align-self: flex-end;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-blue);
    line-height: 1;
    transition: 0.2s ease;
}

.blade-modal-close:hover {
    opacity: 0.6;
    transform: scale(1.1);
}

.blade-modal-title {
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0px 20px 20px 0px;
    font-weight: 600;
    width: 90px;
    height: 100%;
    display: flex;
    justify-content: center;
    letter-spacing: 2px;
    text-shadow: 0px 0px 5px black;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}


.blade-modal-images {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

.blade-modal-images div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.blade-modal-images img {
    height: 420px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.blade-modal-images span {
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .blade-modal {
        padding: 30px 20px;
        gap: 25px;
    }

    .blade-modal-images {
        flex-direction: column;
        align-items: center;
        transform: translateX(40px);
        gap: 40px;
    }

    .blade-modal-images img {
        height: 280px;
        gap: 30px;
    }
}