:root {
    --gradient: linear-gradient(180deg, #076653 0%, #0C342C 50.48%, #06231D 100%);
    --cta: #E0ED3D;
    --greendark: #06231E;
    --gray: rgba(137, 137, 137, 0.20);
    --gray-border: 1px solid rgba(255, 255, 255, 0.10);
    --black: #000;
    --white: #fff;
    --bieg: #FFDFBE;
    --gray-text: #C0C0C0;
    --greenl: #076653;
    --greenm: #0C342C;
    --heder-b: rgba(255, 255, 255, 0.15);
    --hdr-br: rgba(255, 255, 255, 0.2);
    --glass: rgba(137, 137, 137, 0.20);
    --glass-br: rgba(255, 255, 255, 0.10);
    --bar: rgba(137, 137, 137, 0.2);
    --sh: rgba(224, 237, 61, 0.25);
    --sh1: rgba(224, 237, 61, 0.6);
    --c4: #98bdb5;
    --c2: #333333;
    --c7: #000733;
    --c5: #860000;
    --c8: #FFAE00;
     --bar:rgba(255, 255, 255, 0.2);
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 12px;
}


::-webkit-scrollbar-track {
    background-color: var(--greendark);
}


::-webkit-scrollbar-thumb {
    background-color: var(--cta);
    border-radius: 10px;
    border: 2px solid var(--black);
}


::-webkit-scrollbar-thumb:hover {
    background-color: var(--cta);
}

html {
    scroll-behavior: smooth;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader img {
    width: 300px;
    height: auto;
}

body {
    position: relative;
    width: 100%;
    height: auto;
    overflow-x: hidden;
    background-color: var(--greendark);

}

a,
li {
    list-style-type: none;
    text-decoration: none;
}
.header {
    width: 100%;
    height: 150px;
    position: fixed;
    top: 0;
    z-index: 999;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 400px;
    background: var(--heder-bk);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}



.nav-link {
    color: var(--cta);
    font-family: Jost;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;

    position: relative;
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--cta);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cta);
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.logo {
    width: 80px;
    height: auto;
}

.logoo {
    display: none;
}

.image {
    display: none;
    width: 42px;
}

.mobile-menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 998;

    display: none;
    justify-content: center;
    align-items: center;

    transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    bottom: 0;
}


.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.mobile-link {
    color: var(--cta);
    font-family: Jost;
    font-size: 32px;
    font-weight: 500;
    text-decoration: none;
}




.mobile-link {
    position: relative;
    padding: 8px 0;
}

.mobile-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--cta);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--cta);
    transform: translateY(-2px);
}

.mobile-link:hover::before,
.mobile-link.active::before {
    width: 100%;
}


.card .model-frame model-viewer {
    pointer-events: none;
}

.section1 {
    width: 100%;
    height: 1309px;
    background-image: url("img/MacBook Air - 2.png");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 160px 100px;
}

.section1-title {
    color: var(--bieg);
    font-family: Jost;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    opacity: 0.9;
}

.hero-3d-div {
    width: 100%;
    overflow: hidden;
    height: 700px;
    position: relative;
    top: 250px;

}

.hero-3d {
    width: 100%;
    height: 100%;
}

.section2 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    padding: 0 100px;
}

.section2-inner {
    width: 1520px;
    display: flex;
    gap: 60px;
    align-items: center;
}


.section2-div {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.title {
    color: var(--bieg);
    font-family: Jost;
    font-size: 50px;
    font-weight: 600;
    line-height: 133.5%;
    text-transform: capitalize;
}

.title1 {
    color: var(--cta);
    font-family: Jost;
    font-size: 32px;
    font-weight: 600;
    line-height: 133.5%;
    text-transform: capitalize;
}

.text {
    color: var(--gray-text);
    font-family: Jost;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.36px;
}

.text1 {
    color: var(--bieg);
    font-family: Jost;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.36px;
}

.cta-text {
    width: 93px;
    height: 60px;
    color: var(--white);
    font-family: Jost;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 27.775px;
    letter-spacing: -0.4px;
    background-color: var(--glass);
}



.section2-div1 {
    width: 60%;
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    border-radius: 14.618px;
    border: 0.365px solid var(--glass-br);
    background: var(--glass);
    backdrop-filter: blur(27px);
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 99%;
}

.subtext {
    color: var(--gray-text);
    font-family: Jost;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.263px;
    text-transform: capitalize;
    width: auto;
}

.section2-icon {
    width: 16.231px;
    height: auto;
}

.section2-bar {
    width: 80%;
    height: 3.655px;
    background: var(--bar);
    border-radius: 2px;
}

.section2-bar1 {
    height: 100%;
    background: var(--cta);
    display: flex;
    border-radius: 2px;
    transition: width 0.8s ease;
}

.section2-div3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-number {
    color: var(--bieg);
    font-family: Jost;
    font-size: 16px;
    font-weight: 400;
    width: auto;
}


.section2-div2 {
    width: 20%;
    display: flex;
    gap: 65px;
    flex-direction: column;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.subtitle {
    color: var(--bieg);
    font-family: Jost;
    font-size: 32.161px;
    font-weight: 500;
    letter-spacing: -0.965px;
}

.section2-div2-icon {
    width: 23.068px;
    height: auto;
}

.section3 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 200px 190px 0;
    background: var(--dark-bg);
    min-height: 120px;
    margin: 0;
    font-family: 'Jost', sans-serif;
}



.cta-div {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta {
    width: 175px;
    height: 60px;
    border-radius: 15px;
    background: var(--cta);
    color: var(--black);
    font-family: Jost, sans-serif;
    font-size: 20px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
    box-shadow: 0 0 0 rgba(198, 244, 50, 0);
}

.cta:hover {
    top: -5px;
    box-shadow: 0 0 30px rgba(198, 244, 50, 0.6);
}

.ctaa {
    width: auto;
    height: 60px;
    padding: 0 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--bieg);
    font-family: Jost, sans-serif;
    font-size: 20px;
    font-weight: 600;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
}

.ctaa:hover {

    color: var(--cta);
    top: -5px;
}

.ctaa:hover .cta-arrow {
    transform: translate(3px, -3px) rotate(-45deg);
}

.cta-arrow {
    width: 19.294px;
    height: 19.294px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    display: inline-block;
    font-size: 20px;
    font-weight: 800;
    font-family: Jost, sans-serif;
    line-height: 1;
}

.slider-section {
    width: 100%;
    padding: 30px 100px 100px;
    overflow: hidden;
    font-family: Jost;
    padding: 50px 100px 100px;

}

.slider-viewport {
    width: 100%;
    max-width: 1538px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-radius: 40px;
}



.slider-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.slider-track {

    transform: none !important;
    scroll-behavior: smooth;
    display: flex;
    gap: 56px;
    padding: 40px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
}



.slider-viewport::-webkit-scrollbar {
    display: none;
}

.card {
    width: 430px;
    height: 500px;
    padding: 24px;
    border-radius: 40px;
    background: rgba(137, 137, 137, 0.2);
    backdrop-filter: blur(30px);
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    flex-shrink: 0;
    height: auto;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 70px var(--sh);
    border-radius: 40px;
}

.card-top {
    display: flex;
    justify-content: space-between;
}

.circles {
    display: flex;
    gap: 20px;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--sh1);
border: 1px solid var(--black) ;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.circle:hover {
  transform: scale(1.1);
}

.circle.active {
  box-shadow: 0 0 0 3px var(--cta);
  transform: scale(1.15);
}

.cta-btn {
    width: 54px;
    height: 50px;
    border-radius: 16px;
    background: var(--cta);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 42px;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
    font-weight: 600;
}

.cta-btn:hover {
    transform: scale(1.1);
}

.c1 {
    background: var(--white);
}

.c2 {
    background: var(--c2);
}

.c3 {
    background: var(--greenl);
}

.c4 {
    background: var(--c4);
}

.c5 {
    background: var(--c5);
}

.c6 {
    background: var(--gray-text);
}

.c7 {
    background: var(--c7);
}

.c8 {
    background: var(--c8);
}

.c9 {
    background: var(--cta);
}

.c10 {
    background: var(--black);
}

.card-bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}


.model-frame {
    width: 330px;
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.model-frame model-viewer {
    width: 100%;
    height: 100%;
    display: block;
}


.slider-text {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    text-align: center;
    color: var(--bieg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-text);

    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.dot:hover {
    background: var(--sh1);
}

.dot.active {
    background: var(--cta);
    transform: scale(1.5);
}


.section4 {
    width: 100%;
    padding: 100px 200px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.section4-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}


.section4-card {
    width: 100%;
    height: 326px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px;
    border-radius: 16px;
    border: 1px solid var(--glass-br);
    background: var(--glass);
    text-align: left;
}


.section4-icon {
    width: 48px;
    height: auto;
}

.section5 {
    width: 100%;
    padding: 100px 200px;
    display: flex;
    gap: 190px;
}


.section5-left,
.section5-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.section5-icon {
    width: 44.012px;
    height: auto;
}

.section5-text-row {
    display: flex;

    gap: 20px;
}

.section5-right {
    align-items: center;
    justify-content: center;

}

.section5-cards {
    display: flex;
    gap: 30px;
}


.section5-card {
    width: 340px;
    height: 200px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 14px;
    border: 0.7px solid var(--glass-br);
    background: var(--glass);
    backdrop-filter: blur(26px);


}


.section5-big-card {
    width: 100%;
    height: 637px;
    padding: 60px 0;
    border-radius: 18px;
    border: 0.7px solid var(--glass-br);
    background: var(--glass);
    backdrop-filter: blur(26px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;

}


.section5-model-frame {
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
}

.section5-3d {
    width: 179%;
    height: 100%;
    position: absolute;
    left: 70%;
    transform: translateX(-50%);
    transition: transform 0.6s ease;
    pointer-events: none;
}



.section5-cta-row {
    display: flex;
    gap: 15px;
}

.cta-text {
    padding: 10px 20px;
    border-radius: 12px;
    background: var(--glass);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.cta-text:hover,
.cta-text.active {
    background: var(--cta);
    color: var(--black);
}


.fqa-section {
    width: 100%;
    padding: 100px 120px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px
}



.fqa-box {
    width: 100%;
    border-radius: 15.631px;
    border: 0.391px solid var(--glass-br);
    background: var(--glass);
    backdrop-filter: blur(28.9px);
    margin-bottom: 16px;
    cursor: pointer;
    overflow: hidden;
}

.fqa-question {
    height: 100px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#faqContainer {
    width: 89%;
}

.arrow {
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--cta);
    border-bottom: 2px solid var(--cta);
    transform: rotate(45deg);
    transition: transform 0.4s ease;
}

.fqa-box.active .arrow {
    transform: rotate(-135deg);
}

.fqa-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.fqa-box.active .fqa-answer {
    max-height: 600px;
    padding-bottom: 54px;
}

.footer {
    width: 100%;
    height: 552px;
    border-radius: 40px 40px 0 0;
    border-top: 0.333px solid var(--glass-br);
    background: var(--glass);
    backdrop-filter: blur(24.666667938232422px);
    padding: 30px 100px;
}

.footer-wrapper {
    width: 90%;
    height: 100%;
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-block {
    display: flex;
}


.footer-brand {
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 67.226px;
    height: 78px;
    display: block;
}

.title1 {
    color: var(--cta);
    font-family: Jost;
    font-size: 32px;
    font-weight: 600;
    line-height: 133.5%;
    text-transform: capitalize;
}


.footer-center {
    justify-content: space-between;
    margin-top: 50px;
}

.footer-links-wrapper {
    display: flex;
    gap: 80px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-link {
    color: var(--gray-text);
    font-family: Jost;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--cta);
}


.footer-subscribe {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-itlic {
    color: var(--bieg);
    font-family: Jost;
    font-size: 32px;
    font-style: italic;
    font-weight: 400;
    line-height: 123.5%;
    text-transform: uppercase;
}

.footer-input-wrapper {
    position: relative;
    width: 509.333px;
}

.input {
    width: 100%;
    height: 66px;
    border-radius: 13.333px;
    border: 0.333px solid var(--glass);
    background: transparent;
    padding-left: 20px;
    font-family: Jost;
}

.input::placeholder {
    color: var(--gray-text);
    font-family: Jost;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.333px;
    letter-spacing: -0.32px;
    opacity: 0.8;
}

.footer-cta {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 157.333px;
    height: 50px;
    border-radius: 13.333px;
    background: var(--cta);
    color: var(--black);
    font-family: Jost;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.footer-cta-arrow {
    font-size: 20px;
    font-weight: 800;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.footer-cta:hover .footer-cta-arrow {
    transform: rotate(0deg);
}



.footer-bottom {
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
}

.copy-right {
    color: var(--bieg);
    font-family: Jost;
    font-size: 12px;
    font-weight: 400;
    line-height: 13.333px;
    letter-spacing: 0.48px;
}

.footer-img {
    width: 106px;
    height: auto;
    cursor: pointer;
}



/* page 2 */

.P2-section1 {
    width: 100%;
    padding: 157px 100px 100px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    height: 100vh;
    background-image: url("img/MacBook\ Air.png");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;

}

.P2-section1-hero-card {
    width: 100%;
    max-width: calc(110% - 200px);
    padding: 40px 20px;
    border-radius: 18px;
    border: 0.7px solid var(--glass-br);
    background: var(--glass);
    backdrop-filter: blur(26px);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    box-sizing: border-box;
}

.P2-back-arrow {

    margin-right: 111px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.P2-back-arrow:hover {
    color: var(--cta);
}

.P2-section1-model-frame {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.model-framep2 {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.model-framep2 model-viewer {
    width: 100%;
    height: 100%;
    display: block;
}

.P2-section1-3d {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.P2-section1-cta-row {
    display: flex;
    gap: 15px;
}

.p2-section2 {
    width: 100%;
    padding: 100px 200px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.p2-section2-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
}


.p2-section2-middle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.p2-section2-middle .text {
    width: 80%;
}

.p2-section2-div2 {
    width: auto;
    display: flex;
    gap: 25px;
    flex-direction: column;
}



.section5-leftp2,
.section5-rightp2 {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.section5-icon {
    width: 44.012px;
    height: auto;
}



.p2-section5-cards {
    display: flex;
    gap: 30px;
}


.p2-section5-card {
    width: 340px;
    height: 200px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 14px;
    border: 0.7px solid var(--glass-br);
    background: var(--glass);
    backdrop-filter: blur(26px);


}


.p2-section5-big-card {
    width: 100%;
    height: 637px;
    padding: 60px 0;
    border-radius: 18px;
    border: 0.7px solid var(--glass-br);
    background: var(--glass);
    backdrop-filter: blur(26px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;

}


.p2-section5-model-frame {
    width: 100%;
    height: 620px;
    overflow: hidden;
    position: relative;
}

.p2-section5-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s ease;
    pointer-events: auto;
}

.p2-section6 {
    width: 100%;

    display: flex;
    padding: 0 0 100px;
    align-items: center;
    box-sizing: border-box;
    height: auto;
    gap: 30px;
    flex-direction: column;
}

.p2-card {
    width: 25%;
    height: 450px;
    border-radius: 18.434px;
    border: 1.536px solid var(--glass-br);
    background: var(--glass);
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.p2-card:hover {
    transform: translateY(-10px);
    border-color: var(--cta);
}

.p2-section6-div {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.wheel3d {
    width: 325.604px;
    height: 422px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.wheel3d model-viewer {
    width: 100%;
    height: 100%;
}

.p2-section7 {
    width: 100%;
    padding: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;

    gap: 30px;
    flex-direction: column;
}

.p2-card-section7 {
    width: 1500px;
    height: 848px;
    border-radius: 25.816px;
    border: 2.151px solid var(--glass-br);
    background: var(--glass);
    position: relative;
    overflow: hidden;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 70px;
}

.p2-card-section7 model-viewer {
    width: 100%;
    height: 100%;
}

.hotspot {
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
}

.hotspot-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hotspot-top .hotspot-wrapper,
.hotspot-bottom .hotspot-wrapper {
    flex-direction: row-reverse;
}

.hotspot-dot {
    width: 30px;
    height: 30px;
    background: var(--cta);
    border-radius: 50%;
    border: 3px solid var(--bieg);
    position: relative;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.hotspot-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--cta);
    animation: sonar 2s infinite;
}

.section8 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 190px;
    background: var(--dark-bg);
    min-height: 100vh;
    margin: 0;
    font-family: 'Jost', sans-serif;
    gap: 50px;
}

.section8-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section8-middle {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section8-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.section8-bottom-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section8-bottom-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.section8-model {
    width: 720px;
    height: 770px;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    transform: translateY(120px);

}

.section8-model model-viewer {
    width: 100%;
    height: 100%;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes sonar {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.5);
    }
}

.hotspot-label {
    background: var(--glass);
    border-radius: 15px;
    border: 2px solid var(--cta);
    padding: 15px 20px;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.hotspot-label .text1 {
    margin: 0 0 10px 0;
    color: var(--cta);
}

.hotspot-label .text {
    margin: 0;
    line-height: 1.5;
}

.hotspot-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 0 !important;
}

.hotspot.active .hotspot-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px !important;
}

.P2-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 30px;
    position: relative;

    z-index: 10;
}

.P2-title {
    color: var(--bieg);
    font-family: Jost;
    font-size: 50px;
    font-weight: 600;
    line-height: 133.5%;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    flex: 1;
}



@media (max-width: 1440px) {
    .header {
        padding: 0 120px;
        height: 120px;
    }

    .logo {
        width: 65px;
    }

    .nav-link {
        font-size: 17px;
    }

    .section1 {
        height: 1000px;
        padding: 160px 60px;
    }

    .section1-title {
        font-size: 17px;
    }

    .hero-3d-div {
        height: 550px;
        top: 180px;
    }

    .section2 {
        padding: 0 60px;
    }

    .section2-inner {
        width: 100%;
        max-width: 1200px;
        gap: 40px;
    }

    .section2-div {
        width: 35%;
        gap: 28px;
    }

    .title {
        font-size: 40px;
    }

    .title1 {
        font-size: 26px;
    }

    .text {
        font-size: 20px;
    }

    .text1 {
        font-size: 20px;
    }

    .section2-div1 {
        width: 58%;
        padding: 45px 35px;
        gap: 40px;
    }

    .section2-div2 {
        width: 22%;
        gap: 50px;
    }

    .subtitle {
        font-size: 26px;
    }

    .subtext {
        font-size: 14px;
    }

    .stat-number {
        font-size: 14px;
    }

    .section3 {
        padding: 160px 120px 0;
    }

    .cta {
        width: 155px;
        height: 52px;
        font-size: 17px;
    }

    .ctaa {
        height: 52px;
        font-size: 17px;
    }

    .slider-section {
        padding: 35px 60px 80px;
    }

    .slider-viewport {
        max-width: 1300px;
    }

    .slider-track {
        gap: 45px;
        padding: 32px;
    }

    .card {
        width: 380px;
        height: 460px;
        padding: 20px;
    }

    .model-frame {
        width: 290px;
        height: 270px;
    }

    .slider-text {
        font-size: 18px;
    }

    .circle {
        width: 44px;
        height: 44px;
    }

    .cta-btn {
        width: 48px;
        height: 44px;
        font-size: 36px;
    }

    .section4 {
        padding: 80px 120px;
        gap: 50px;
    }

    .section4-grid {
        gap: 32px;
    }

    .section4-card {
        height: 290px;
        padding: 45px;
        gap: 26px;
    }

    .section4-icon {
        width: 42px;
    }

    .section5 {
        padding: 80px 120px;
        gap: 100px;
    }

    .section5-left,
    .section5-right {
        gap: 65px;
    }

    .section5-text-row {
        gap: 16px;
    }

    .section5-cards {
        gap: 25px;
    }

    .section5-card {
        width: 300px;
        height: 180px;
        padding: 20px;
        gap: 12px;
    }

    .section5-big-card {
        height: 570px;
        padding: 50px 0;
        gap: 25px;
    }

    .section5-model-frame {
        height: 380px;
    }

    .section5-icon {
        width: 38px;
    }

    .cta-text {
        font-size: 17px;
        padding: 8px 16px;
    }

    .fqa-section {
        padding: 80px 90px;
        gap: 42px;
    }

    #faqContainer {
        width: 90%;
    }

    .fqa-question {
        height: 85px;
        padding: 0 28px;
    }

    .fqa-answer {
        padding: 0 28px;
    }

    .fqa-box.active .fqa-answer {
        padding-bottom: 45px;
    }

    .footer {
        height: 500px;
        padding: 26px 60px;
    }

    .footer-wrapper {
        width: 90%;
        padding: 70px 80px;
    }

    .footer-logo {
        width: 60px;
        height: 70px;
    }

    .footer-links-wrapper {
        gap: 65px;
    }

    .footer-links-col {
        gap: 28px;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-itlic {
        font-size: 28px;
    }

    .footer-input-wrapper {
        width: 460px;
    }

    .input {
        height: 60px;
        font-size: 14px;
    }

    .footer-cta {
        width: 145px;
        height: 46px;
        font-size: 14px;
    }

    .footer-bottom {
        margin-top: 85px;
    }

    .footer-img {
        width: 95px;
    }


    .P2-section1 {
        padding: 135px 60px 80px;
    }

    .P2-section1-hero-card {
        max-width: calc(100% - 120px);
        padding: 35px 16px;
        gap: 35px;
    }

    .P2-title {
        font-size: 40px;
    }

    .P2-section1-model-frame {
        height: 450px;
    }

    .model-framep2 {
        height: 450px;
    }

    .P2-section1-cta-row {
        gap: 12px;
    }

    .P2-back-arrow img {
        width: 36px;
    }

    .p2-section2 {
        padding: 80px 120px;
        gap: 60px;
    }

    .p2-section2-middle .text {
        width: 80%;
    }

    .p2-section2-div2 {
        gap: 20px;
    }

    .section5-leftp2,
    .section5-rightp2 {
        gap: 65px;
    }

    .p2-section5-cards {
        gap: 25px;
    }

    .p2-section5-card {
        width: 300px;
        height: 180px;
        padding: 20px;
        gap: 12px;
    }

    .p2-section5-big-card {
        height: 570px;
        padding: 50px 0;
        gap: 25px;
    }

    .p2-section5-model-frame {
        height: 560px;
    }

    .p2-section6 {
        padding: 0 0 80px;
        gap: 25px;
    }

    .p2-section6-div {
        gap: 35px;
    }

    .p2-card {
        width: 29%;
        height: 410px;
        padding: 45px;
        gap: 18px;
    }

    .wheel3d {
        width: 290px;
        height: 380px;
    }

    .p2-section7 {
        padding: 80px 60px;
        gap: 25px;
    }

    .p2-card-section7 {
        width: 100%;
        max-width: 1300px;
        height: 760px;
        padding: 45px;
        gap: 60px;
    }

    .hotspot-label {
        max-width: 270px;
        padding: 13px 18px;
    }

    .hotspot-dot {
        width: 26px;
        height: 26px;
    }

    .section8 {
        padding: 80px 120px;
        gap: 45px;
    }

    .section8-middle {
        gap: 18px;
    }

    .section8-bottom {
        gap: 50px;
    }

    .section8-bottom-left {
        gap: 18px;
    }

    .section8-model {
        width: 640px;
        height: 690px;
        transform: translateY(100px);
    }
}

@media (min-width: 900px) and (max-width: 1280px) {
    .header {
        padding: 0 100px;
    }

    .section1 {
        padding: 200px 0;
    }

    .section2 {
        padding: 0 100px;
    }

    .section2-inner {
        width: 100%;
        gap: 40px;
    }

    .section3 {
        padding: 200px 100px 0;
    }

    .slider-section {
        padding: 30px 100px;
    }

    .section4 {
        padding: 100px 100px;
    }

    .section5 {
        padding: 100px 100px;
        gap: 100px;
    }

    .section5-card {
        width: 100%;
    }

    .fqa-section {
        padding: 100px 80px;
    }

    .footer {
        padding: 30px 50px;
    }

    .footer-wrapper {
        padding: 80px 50px;
    }

    .P2-section1 {
        padding: 157px 50px 100px;
    }

    .P2-section1-hero-card {
        max-width: calc(100% - 100px);
    }

    .p2-section2 {
        padding: 100px 100px;
    }

    .p2-section6 {
        padding: 0 0 80px;
    }

    .p2-section6-div {
        gap: 30px;
        padding: 0 66px;

    }

    .p2-card {
        width: 28%;
    }

    .p2-section7 {
        padding: 80px;
    }

    .p2-card-section7 {
        width: 100%;
        max-width: 1300px;
    }

    .section8 {
        padding: 100px 50px;
    }

    .section8-model {
        width: 100%;
        height: auto;
        position: relative;
        transform: none;
    }
}



@media (min-width: 501px) and (max-width: 900px) {

    .nav-link {
        display: none;
        width: 0;
    }


    .image {
        display: block;
        width: 40px;

    }

    .mobile-menu {

        display: flex;
    }

    .header {
        padding: 0 40px;
        height: 100px;
        gap: 50px;
        justify-content: space-between;
    }

    .logo {
        display: none;
    }

    .logoo {
        display: block;
        width: 60px;

    }

    .section1 {
        height: auto;
        padding: 110px 0 100px;
    }

    .section1-title {
        font-size: 18px;
        text-align: center;
    }

    .hero-3d-div {
        height: 500px;
        top: 150px;
    }


    .section2 {
        padding: 80px 40px;
    }

    .section2-inner {
        width: 100%;
        flex-direction: column;
        gap: 40px;
    }

    .section2-div {
        width: 100%;
        gap: 25px;
    }

    .title {
        font-size: 36px;
    }

    .text {
        font-size: 18px;
    }

    .section2-div1 {
        width: 100%;
        padding: 40px 30px;
        gap: 35px;
    }

    .section2-div2 {
        width: 100%;
        flex-direction: row;
        gap: 30px;
        justify-content: space-between;
    }

    .p2-section2-div2 {
        width: 100%;
        flex-direction: row;
        gap: 30px;
        justify-content: space-between;
    }

    .mini-stat {
        flex: 1;
    }

    .subtitle {
        font-size: 24px;
    }


    .section3 {
        padding: 100px 40px 0;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .cta-div {
        justify-content: center;
    }


    .slider-section {
        padding: 30px 40px 80px;
    }

    .card {
        width: 350px;
        height: 450px;
    }

    .model-frame {
        width: 280px;
        height: 260px;
    }

    .slider-text {
        font-size: 18px;
    }


    .section4 {
        padding: 80px 40px;
        gap: 40px;
    }

    .section4-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section4-card {
        height: auto;
        padding: 40px;
    }


    .section5 {
        padding: 80px 40px;
        flex-direction: column;
        gap: 60px;
    }

    .section5-left,
    .section5-right {
        width: 100%;
        gap: 50px;
    }

    .section5-text-row {
        flex-direction: column;
    }

    .section5-cards {
        flex-direction: column;
    }

    .section5-card {
        width: 100%;
        height: auto;
    }

    .section5-big-card {
        height: 500px;
        padding: 40px 0;
    }

    .section5-model-frame {
        height: 350px;
    }


    .fqa-section {
        padding: 80px 40px;
    }

    #faqContainer {
        width: 100%;
    }

    .fqa-question {
        height: 80px;
        padding: 0 20px;
    }


    .footer {
        height: auto;
        padding: 30px 40px;
    }

    .footer-wrapper {
        width: 100%;
        padding: 60px 40px;
    }

    .footer-center {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links-wrapper {
        gap: 40px;
    }

    .footer-input-wrapper {
        width: 100%;
    }

    .footer-brand {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
        margin-top: 60px;

    }

    .slider-section {
        padding: 30px 40px 80px;
    }

    .slider-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .slider-track {
        display: flex;
        gap: 30px;
        padding: 0 40px;
        transform: none !important;
    }

    .card {
        width: calc((97vw - 80px - 30px) / 2);
        height: auto;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .card:hover {
        transform: none;
    }

    .slider-viewport::-webkit-scrollbar {
        display: none;
    }

    .P2-section1 {
        padding: 120px 40px 80px;
        height: auto;
    }

    .P2-section1-hero-card {
        max-width: 100%;
        padding: 30px 20px;
        gap: 30px;
    }

    .P2-top-header {
        padding: 0 20px;
    }

    .P2-title {
        font-size: 36px;
    }

    .P2-section1-model-frame {
        height: 400px;
    }

    .model-framep2 {
        height: 400px;
    }

    .P2-section1-cta-row {
        gap: 12px;
    }

    .p2-section2 {
        padding: 80px 40px;
        gap: 50px;
    }

    .p2-section2-top {
        flex-direction: column;
        gap: 30px;
    }

    .p2-section2-middle {
        flex-direction: column;
        gap: 30px;
    }

    .p2-section2-middle .text {
        width: 100%;
    }

    .section5-leftp2,
    .section5-rightp2 {
        width: 100%;
        gap: 50px;
    }

    .p2-section5-cards {
        flex-direction: column;
    }

    .p2-section5-card {
        width: 100%;
        height: auto;
    }

    .p2-section5-big-card {
        height: 500px;
        padding: 40px 0;
    }

    .p2-section5-model-frame {
        height: 400px;
    }

    .p2-section6 {
        padding: 0 0 80px;
    }

    .p2-section6-div {
        flex-direction: column;
        gap: 30px;
        padding: 0 44px;
    }

    .p2-card {
        width: 100%;
        height: auto;
        padding: 40px;
    }

    .wheel3d {
        width: 100%;
        height: 350px;
    }

    .p2-section7 {
        padding: 80px 40px;
    }

    .p2-card-section7 {
        width: 100%;
        height: auto;
        min-height: 500px;
        padding: 40px 20px;
        gap: 50px;
    }

    .p2-card-section7 model-viewer {
        height: 400px;
        width: 100%;
    }

    .hotspot-label {
        max-width: 250px;
        padding: 12px 16px;
    }

    .section8 {
        padding: 80px 40px;
    }

    .section8-top {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;

    }

    .section8-bottom {
        flex-direction: column;
        gap: 40px;
    }

    .section8-bottom-left {
        width: 100%;
    }

    .section8-bottom-right {
        width: 100%;
    }

    .section8-model {
        width: 100%;
        height: 500px;
        position: relative;
        transform: translateY(0);
    }
}





@media (max-width: 500px) {

    .nav-link {
        display: none;
    }


    .image {
        display: block;
        width: 30px;

    }

    .mobile-menu {

        display: flex;
    }

    .header {
        padding: 0 20px;
        height: 80px;
        justify-content: space-between;
    }

    .logo {
        display: none;
    }

    .logoo {
        width: 50px;
        display: block;
    }

    .section1 {
        height: auto;
        padding: 80px 0 80px;
    }

    .section1-title {
        font-size: 16px;
        text-align: center;
    }

    .hero-3d-div {
        height: 400px;
        top: 180px;
    }

    .hero-3d {
        height: 60%;
    }

    .section2 {
        padding: 60px 20px;
    }

    .section2-inner {
        width: 100%;
        flex-direction: column;
        gap: 30px;
    }

    .section2-div {
        width: 100%;
        gap: 20px;
    }

    .title {
        font-size: 28px;
        line-height: 120%;
    }

    .title1 {
        font-size: 24px;
    }

    .text {
        font-size: 16px;
    }

    .text1 {
        font-size: 16px;
    }

    .cta {
        width: 150px;
        height: 50px;
        font-size: 18px;
    }

    .ctaa {
        height: 50px;
        font-size: 18px;
    }

    .section2-div1 {
        width: 100%;
        padding: 30px 20px;
        gap: 30px;
    }

    .subtext {
        font-size: 14px;
    }

    .stat-number {
        font-size: 14px;
    }

    .section2-icon {
        width: 14px;
    }

    .section2-div2 {
        width: 100%;
        gap: 25px;
        flex-direction: row;
    }

    .p2-section2-div2 {
        width: 100%;
flex-direction: row;
        gap: 25px;
    }

    .mini-stat {
        width: 100%;
    }

    .subtitle {
        font-size: 20px;
    }

    .section2-div2-icon {
        width: 18px;
    }


    .section3 {
        padding: 80px 20px 0;
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .cta-div {
        flex-direction: column;
        width: 100%;
    }

    .cta,
    .ctaa {
        width: 100%;
    }


    .slider-section {
        padding: 30px 20px 60px;
    }

    .slider-viewport {
        max-width: 100%;
    }

    .slider-track {
        gap: 20px;
        padding: 20px 0;
    }

    .card {
        width: 280px;
        height: 400px;
        padding: 18px;
    }

    .circle {
        width: 40px;
        height: 40px;
    }

    .cta-btn {
        width: 44px;
        height: 40px;
        font-size: 32px;
    }

    .model-frame {
        width: 240px;
        height: 230px;
    }

    .slider-text {
        font-size: 16px;
    }

    .dots {
        gap: 8px;
        margin-top: 30px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }


    .section4 {
        padding: 60px 20px;
        gap: 30px;
    }

    .section4-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section4-card {
        height: auto;
        padding: 30px 20px;
        gap: 20px;
    }

    .section4-icon {
        width: 36px;
    }


    .section5 {
        padding: 60px 20px;
        flex-direction: column;
        gap: 40px;
    }

    .section5-left,
    .section5-right {
        width: 100%;
        gap: 40px;
    }

    .section5-text-row {
        flex-direction: column;
        gap: 15px;
    }

    .section5-cards {
        flex-direction: column;
        gap: 20px;
    }

    .section5-card {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .section5-icon {
        width: 36px;
    }

    .section5-big-card {
        height: 450px;
        padding: 30px 0;
    }

    .section5-model-frame {
        height: 300px;
    }

    .section5-cta-row {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 20px;
    }

    .cta-text {
        font-size: 16px;
        padding: 8px 15px;
    }

    .fqa-section {
        padding: 60px 20px;
        gap: 40px;
    }

    #faqContainer {
        width: 100%;
    }

    .fqa-question {
        height: 70px;
        padding: 0 16px;
    }

    .fqa-answer {
        padding: 0 16px;
    }

    .fqa-box.active .fqa-answer {
        padding-bottom: 30px;
    }


    .footer {
        height: auto;
        padding: 20px;
        border-radius: 30px 30px 0 0;
    }

    .footer-wrapper {
        width: 100%;
        padding: 40px 20px;
    }

    .footer-brand {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        width: 50px;
        height: auto;
    }

    .footer-center {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .footer-links-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links-col {
        gap: 20px;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-subscribe {
        gap: 20px;
    }

    .footer-itlic {
        font-size: 24px;
    }

    .footer-input-wrapper {
        width: 100%;
    }

    .input {
        height: 56px;
        font-size: 14px;
    }

    .footer-cta {
        width: 130px;
        height: 40px;
        font-size: 14px;
    }

    .footer-brand {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
        text-align: center;
    }

    .copy-right {
        font-size: 11px;
    }

    .footer-img {
        width: 80px;
    }

    .slider-section {
        padding: 24px 20px 70px;
    }

    .slider-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .slider-track {
        display: flex;
        gap: 24px;
        padding: 0 20px;
        transform: none !important;
    }

    .card {
        width: calc(97vw - 40px);
        height: auto;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .card:hover {
        transform: none;
    }

    .slider-viewport::-webkit-scrollbar {
        display: none;
    }

    .P2-section1 {
        padding: 90px 30px 60px;
        height: auto;
    }

    .P2-section1-hero-card {
        max-width: 100%;
        padding: 25px 15px;
        gap: 25px;
    }

    .P2-top-header {
        padding: 0 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .P2-back-arrow img {
        width: 30px;
    }

    .P2-title {
        font-size: 24px;
        text-align: center;
    }

    .circles {
        gap: 8px;
    }

    .P2-section1-model-frame {
        height: 300px;
    }

    .model-framep2 {
        height: 300px;
    }

    .P2-section1-cta-row {
        gap: 10px;
        flex-wrap: wrap;
    }

    .p2-section2 {
        padding: 0 40px 109px;

        gap: 40px;
    }

    .p2-section2-top {
        flex-direction: column;
        gap: 25px;
    }

    .p2-section2-middle {
        flex-direction: column;
        gap: 25px;
    }

    .p2-section2-middle .text {
        width: 100%;
    }

    .section5-leftp2,
    .section5-rightp2 {
        width: 100%;
        gap: 20px;
        padding: 0 20px 0;
    }

    .section5-rightp2 {
        order: 2;
    }


    .p2-section5-cards {
        flex-direction: column;
        gap: 20px;
    }

    .p2-section5-card {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .p2-section5-big-card {
        height: 400px;
        padding: 30px 0;
    }

    .p2-section5-model-frame {
        height: 300px;
    }

    .p2-section6 {
        padding: 20px 40px 100px;

    }

    .p2-section6-div {
        flex-direction: column;
        gap: 20px;
    }

    .p2-card {
        width: 100%;
        height: auto;
        padding: 30px 20px;
    }

    .wheel3d {
        width: 100%;
        height: 300px;
    }

    .p2-section7 {
        padding: 60px 40px;
    }

    .p2-card-section7 {
        width: 100%;
        height: auto;
        min-height: 500px;
        padding: 30px 15px;
        gap: 40px;
    }

    .p2-card-section7 model-viewer {
        height: 400px;
        width: 100%;
    }

    .hotspot-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .hotspot-top .hotspot-wrapper,
    .hotspot-bottom .hotspot-wrapper {
        flex-direction: column;
    }

    .hotspot-label {
        max-width: 200px;
        padding: 10px 14px;
    }

    .hotspot-dot {
        width: 25px;
        height: 25px;
    }

    .section8 {
        padding: 60px 20px;
        gap: 40px;
    }

    .section8-top {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .section8-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .section8-bottom-left {
        width: 100%;
    }

    .section8-bottom-right {
        width: 100%;
    }

    .section8-model {
        width: 100%;
        height: 400px;
        position: relative;
        transform: translateY(0);
    }
}


@media (max-width: 380px) {
    .header {
        padding: 0 15px;
        height: 70px;
        justify-content: space-between;
    }

    .logo {
        display: none;
    }

    .logoo {
        width: 45px;
        display: block;
    }

    .mobile-menu {

        display: flex;
    }


    .section1 {
        padding: 70px 0 60px;
    }

    .section1-title {
        font-size: 14px;
    }

    .hero-3d-div {
        height: 350px;
        top: 140px;
    }

    .hero-3d {
        height: 55%;
    }

    .section2 {
        padding: 50px 15px;
    }

    .title {
        font-size: 24px;
    }

    .title1 {
        font-size: 20px;
    }

    .text,
    .text1 {
        font-size: 14px;
    }

    .section2-div1 {
        padding: 25px 15px;
    }

    .section3 {
        padding: 60px 15px 0;
    }

    .cta {
        width: 100%;
        height: 48px;
        font-size: 16px;
    }

    .slider-section {
        padding: 20px 15px 50px;
    }

    .card {
        width: 250px;
        height: 380px;
        padding: 15px;
    }

    .model-frame {
        width: 220px;
        height: 210px;
    }

    .slider-text {
        font-size: 14px;
    }

    .section4 {
        padding: 50px 15px;
    }

    .section4-card {
        padding: 25px 15px;
    }

    .section5 {
        padding: 50px 15px;
    }

    .section5-card {
        padding: 18px;
    }

    .section5-big-card {
        height: 400px;
        padding: 25px 0;
    }

    .section5-model-frame {
        height: 270px;
    }

    .fqa-section {
        padding: 50px 15px;
    }

    .fqa-question {
        height: 60px;
        padding: 0 12px;
    }

    .footer {
        padding: 15px;
    }

    .footer-wrapper {
        padding: 30px 15px;
    }

    .footer-itlic {
        font-size: 20px;
    }

    .footer-input-wrapper {
        width: 100%;
    }

    .input {
        height: 50px;
        padding-left: 15px;
    }

    .footer-cta {
        width: 110px;
        height: 36px;
        font-size: 13px;
        top: 7px;
        right: 7px;
    }

    .footer-brand {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .footer-bottom {
        align-items: flex-start;
    }

    .slider-section {
        padding: 20px 16px 60px;
    }

    .slider-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .slider-track {
        display: flex;
        gap: 20px;
        padding: 0 16px;
        transform: none !important;
    }

    .card {
        width: calc(97vw - 32px);
        height: auto;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .card:hover {
        transform: none;
    }

    .slider-viewport::-webkit-scrollbar {
        display: none;
    }

    .P2-section1 {
        padding: 80px 15px 50px;
    }

    .P2-section1-hero-card {
        padding: 20px 12px;
        gap: 20px;
    }

    .P2-title {
        font-size: 20px;
    }

    .P2-section1-model-frame {
        height: 250px;
    }

    .model-framep2 {
        height: 250px;
    }

    .p2-section2 {
        padding: 50px 15px;
    }

    .p2-section5-big-card {
        height: 350px;
        padding: 25px 0;
    }

    .p2-section5-model-frame {
        height: 250px;
    }

    .p2-card {
        padding: 25px 15px;
    }

    .wheel3d {
        height: 250px;
    }

    .p2-section7 {
        padding: 20px 40px;
    }

    .p2-card-section7 {
        min-height: 450px;
        padding: 25px 12px;
        gap: 35px;
    }

    .p2-card-section7 model-viewer {
        height: 400px;
        width: 100%;
    }

    .section8 {
        padding: 50px 15px;
    }

    .section8-model {
        height: 350px;
    }
}

.aboutSection {
    padding-top: 130px;
    width: 100%;
    height: auto;
 background-image: url("img/MacBook Airr.png");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-model {
    width: 650px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-model model-viewer {
    width: 100%;
    height: 100%;
}

.contact-section {
    width: 100%;
    padding: 0 100px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px;
    border-radius: 18px;
    border: 1px solid var(--glass-br);
    background: var(--glass);
    backdrop-filter: blur(26px);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.form-label {
    color: var(--cta);
    font-family: Jost;
    font-size: 18px;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-br);
    background: var(--glass);
    color: var(--bieg);
    font-family: Jost;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--cta);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--cta);
}

.checkbox-label {
    color: var(--gray-text);
    font-family: Jost;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.form-success {
    display: none;
    padding: 40px;
    border-radius: 18px;
    border: 2px solid var(--cta);
    background: var(--glass);
    backdrop-filter: blur(26px);
    text-align: center;
}

@media (max-width: 1440px) {
    .aboutSection {
        margin-top: 110px;
    }

    .about-model {
        width: 400px;
        height: 450px;
    }

    .contact-section {
        padding: 80px 120px;
    }

    .contact-form {
        padding: 50px;
        gap: 25px;
    }
}

@media (min-width: 900px) and (max-width: 1280px) {
    .aboutSection {
        margin-top: 100px;
    }

    .about-model {
        width: 100%;
        height: 400px;
    }

    .contact-section {
        padding: 80px 100px;
    }

    .contact-form {
        padding: 45px;
    }
}

@media (min-width: 501px) and (max-width: 900px) {
    .aboutSection {
        margin-top: 90px;
    }

    .about-model {
        width: 100%;
        height: 350px;
    }

    .contact-section {
        padding: 60px 40px;
    }

    .contact-form {
        padding: 40px 30px;
        gap: 20px;
    }

    .form-label {
        font-size: 16px;
    }

    .form-input,
    .form-textarea {
        padding: 14px 18px;
        font-size: 15px;
    }
}

@media (max-width: 500px) {
    .aboutSection {
        margin-top: 70px;
    }

    .about-model {
        width: 100%;
        height: 300px;
    }

    .contact-section {
        padding: 50px 20px;
    }

    .contact-form {
        padding: 30px 20px;
        gap: 20px;
    }

    .form-label {
        font-size: 15px;
    }

    .form-input,
    .form-textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .form-checkbox {
        gap: 10px;
    }

    .checkbox-label {
        font-size: 14px;
    }

    .form-submit {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .aboutSection {
        margin-top: 60px;
    }

    .about-model {
        width: 100%;
        height: 250px;
    }

    .contact-section {
        padding: 40px 15px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .form-input,
    .form-textarea {
        padding: 10px 14px;
        font-size: 13px;
    }
}


.progress-bar {
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--bar);
  border-radius: 2px;
  overflow: hidden;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 400px;
}

.progress-bar.hide {
  display: none;
}

.update-bar {
  background-color: var(--cta);
  width: 0%;
  height: 100%;
  border-radius: 2px;
  transition: width 0.3s ease;
}.gallerySection {
    padding-top: 130px;
    width: 100%;
    height: auto;
    background-image: url("img/MacBook Airr.png");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-header {
    width: 100%;
    padding: 100px 190px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    align-items: center;
}

.gallery-slider-section {
    width: 100%;
    padding: 50px 40px 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.stage-gallery,
.ring-gallery,
.img-gallery {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    user-select: none;
}

.stage-gallery {
    width: 100%;
    height: 800px;
    position: relative;
}

.stage-gallery .container-gallery {
    position: absolute;
}

.container-gallery {
    perspective: 2400px;
    width: 520px;
    height: 680px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ring-gallery {
    position: absolute;
    width: 100%;
    height: 100%;
}

.img-gallery {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    border: 2px solid var(--glass-br);
    transition: opacity 0.3s ease;
}

@media (max-width: 1440px) {
    .gallerySection {
        padding-top: 110px;
    }

    .gallery-header {
        padding: 80px 120px 60px;
        gap: 25px;
    }

    .gallery-slider-section {
        padding: 40px 60px 150px;
    }

    .stage-gallery {
        height: 720px;
    }

    .container-gallery {
        width: 480px;
        height: 640px;
    }
}

@media (min-width: 900px) and (max-width: 1280px) {
    .gallerySection {
        padding-top: 100px;
    }

    .gallery-header {
        padding: 80px 100px 50px;
    }

    .gallery-slider-section {
        padding: 40px 50px 140px;
    }

    .stage-gallery {
        height: 680px;
    }

    .container-gallery {
        width: 440px;
        height: 600px;
    }
}

@media (min-width: 501px) and (max-width: 900px) {
    .gallerySection {
        padding-top: 90px;
    }

    .gallery-header {
        padding: 60px 40px 40px;
        gap: 20px;
    }

    .gallery-slider-section {
        padding: 30px 40px 120px;
    }

    .stage-gallery {
        height: 600px;
    }

    .container-gallery {
        width: 380px;
        height: 540px;
    }
}

@media (max-width: 500px) {
    .gallerySection {
        padding-top: 70px;
    }

    .gallery-header {
        padding: 50px 20px 30px;
        gap: 15px;
    }

    .gallery-slider-section {
        padding: 20px 20px 100px;
    }

    .stage-gallery {
        height: 520px;
    }

    .container-gallery {
        width: 320px;
        height: 480px;
    }
}

@media (max-width: 380px) {
    .gallerySection {
        padding-top: 60px;
    }

    .gallery-header {
        padding: 40px 15px 25px;
    }

    .gallery-slider-section {
        padding: 20px 15px 90px;
    }

    .stage-gallery {
        height: 480px;
    }

    .container-gallery {
        width: 300px;
        height: 440px;
    }
}
