
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Light.woff2') format('woff2'),
         url('fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.woff2') format('woff2'),
         url('fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Bold.woff2') format('woff2'),
         url('fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BebasNeuePro-Regular';
    src: url('fonts/BebasNeuePro-Regular.woff2') format('woff2'),
         url('fonts/BebasNeuePro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'NotoSansArrows';
    src: url('fonts/NotoSansSymbols-Regular.woff2') format('woff2'),
         url('fonts/NotoSansSymbols-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


* { box-sizing: border-box; }

html {
    width: 100%;
    overflow-x: hidden; 
    scroll-behavior: smooth;
}
body {

    opacity: 0;
    transition: opacity 0.8s ease-in-out; 
}

body.loaded {
    opacity: 1;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #050505;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    overflow-x: hidden; 
    position: relative;
    -webkit-font-smoothing: antialiased;
}



body.no-scroll {
    overflow: hidden;
    height: 100vh;

    position: fixed; 
    width: 100%;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #050505;
    padding: 10px;
    height: 70px;
    padding-top: 30px;
}

.logo-container {
    margin-top: 10px;
    margin-left: 10px;
    width: 165px;
    height: 53px;
    display: flex;
    justify-content: left;
    align-items: center;
}

.logo {
    max-width: 100%;
    max-height: 100%;
}

.navigation {
    display: flex;
    gap: 10px;
}

.nav-link {
    color: #eae7e2;
    font-family: 'BebasNeuePro-Regular', sans-serif;
    font-weight: 400;
    font-size: 30px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ddd;
}

.main-cover {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    position: relative;
}

.cover-container {
    border-radius: 0px;
    overflow: hidden;
    border: none;
    width: 100%;
    max-width: 800px;
    margin: 0px;
    display: flex;
    position: relative;
}

.cover-image-mobile {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

.cover-image-pc {
    display: block;
    width: 100%;
    height: none;
    pointer-events: none;
}

.join-btn {
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    bottom: 100px;
    padding: 15px 30px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem; 
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5); 
    color: #fff; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 400;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); 
    animation: pulse-glow 3s infinite ease-in-out;
}

.join-btn:hover {
    background: rgba(255, 255, 255, 0.2); 
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.lesson {
    bottom: 45px;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translateX(-50%) scale(1) rotate(0.01deg);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: translateX(-50%) scale(1.0) rotate(0.01deg);
        box-shadow: 0 0 35px rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.25);
    }
}

.courses-title {
     font-weight: 700; 
     font-size: 2.0rem; 
     text-transform: uppercase; 
     line-height: 1; 
     text-align: center;
     margin-top: 3rem;
     margin-bottom: 0px;
}

.courses-title2 {
     font-weight: 700; 
     font-size: 2.0rem; 
     text-transform: uppercase; 
     line-height: 1; 
     text-align: center;
     margin-top: 0rem;
     margin-bottom: 0px;
}

.products-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 3.5rem; 
}

.card-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0; 
}


.product-card {
    position: relative;
    z-index: 1;
    border-radius: 2rem;
    transition: transform 0.4s ease;
    width: 85vw; 
    max-width: 360px; 
    aspect-ratio: auto; 
    min-height: 520px; 
    height: auto;      
    display: flex;     
    flex-direction: column;
    transform: translateZ(0);
    will-change: transform;
}

.product-card:hover {     transform: scale(1.03); }

.product-card::before {
    content: '';
    position: absolute;
    inset: -20px; 
    z-index: -1;
    filter: blur(25px);
    opacity: 0.7;
    border-radius: 4rem;
    pointer-events: none;
    height: 100%; 
    width: 100%;
}

.card-style-1::before { background: radial-gradient(circle, rgba(126, 79, 179, 0.7), transparent 70%); }
.card-style-2::before { background: radial-gradient(circle, rgba(79, 107, 179, 0.7), transparent 70%); }


.card-inner {
    position: relative;
    width: 100%;
    flex-grow: 1; 
    height: auto; 
    min-height: 100%;
    border-radius: 2rem;
    padding: 1.5rem 1.8rem 2.5rem 1.8rem; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden; 
    box-sizing: border-box;
    z-index: 2;
    background-clip: padding-box; 
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}


.bg-1 { background-image: url('images/1card.webp'); }
.bg-2 { background-image: url('images/2card.webp'); }
.bg-3 { background-image: url('images/3card.webp'); }
.bg-4 { background-image: url('images/4card.webp'); }
.bg-5 { background-image: url('images/5card.webp'); }
.bg-6 { background-image: url('images/6card.webp'); }
.bg-7 { background-image: url('images/7card.webp'); }

.card-title { font-weight: 700; font-size: 2.0rem; margin: 0 0 0.4rem 0; text-transform: uppercase; line-height: 1; }
.card-description { font-weight: 300; font-size: 0.85rem; line-height: 1.3; margin-bottom: 1rem; opacity: 0.9; }

.card-price { display: flex; align-items: baseline; gap: 0.8rem; font-weight: 700; margin-bottom: 1rem; }
.old-price { font-size: 2.8rem; color: rgba(255, 255, 255, 0.3); text-decoration: line-through; font-weight: 300; }
.current-price { font-size: 2.8rem; color: #fff; }

.card-features { list-style: none; padding: 0; margin: 0 0 1.5rem 0; font-weight: 300; font-size: 0.95rem; line-height: 1.5; flex-grow: 1; }


.card-actions { display: flex; flex-direction: column; gap: 0.8rem; }

.btn { 
    text-align: center; text-decoration: none; padding: 0.9rem; 
    border-radius: 50px; font-size: 1rem; text-transform: uppercase; 
    transition: 0.3s ease; font-weight: 400;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
}

.btn-details { 
    background: rgba(0, 0, 0, 0.6); 
    color: #fff; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
}

.btn-buy { 
    background: rgba(255, 255, 255, 0.6); 
    color: #000; 
    border: 1px solid rgba(255, 255, 255, 0.3); 
}
.btn-details:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: #fff;
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.btn-buy:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
    transform: scale(1.03);
}


.premium-card {
    animation: white-glow 4s infinite ease-in-out;
}

.premium-card .card-inner {
    border: 2px solid rgba(255, 255, 255, 0.7); 
}

.premium-card .card-title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4); 
}

.premium-card .current-price {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6); 
}

.premium-card .btn-details {
    background: rgba(20, 20, 20, 0.7); 
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.premium-card .btn-details:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: #fff;
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.premium-card .btn-buy {
    background: rgba(255, 255, 255, 0.85); 
    color: #000;
    border: 1px solid #fff;
    font-weight: 400; 
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); 
}

.premium-card .btn-buy:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    transform: scale(1.03);
}

.premium-card .card-inner::after {
    content: ""; position: absolute; top: -150%; left: -150%; width: 300%; height: 300%;
    background: linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, 0.4) 50%, transparent 55%);
    animation: shine-diagonal 5s infinite ease-in-out;
    pointer-events: none; z-index: 3;
}

@keyframes white-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.15); }
    50% { box-shadow: 0 0 35px rgba(255, 255, 255, 0.5); }
}

@keyframes shine-diagonal {
    0% { transform: translate(0, 0); }
    20%, 100% { transform: translate(50%, 50%); }
}


.special {
    animation: white-glow 4s infinite ease-in-out;
}

.special .card-inner {
    border: 2px solid rgba(255, 255, 255, 0.7); 
}

.special .card-title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4); 
    font-size: 1.65rem;
    text-align: center;
}

.special .current-price {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6); 
    font-size: 2.55rem;
}
.special .card-description {
    text-align: center;
}

.special .old-price {
    font-size: 2.55rem;
}

.special .btn-details {
    background: rgba(20, 20, 20, 0.7); 
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.special .btn-details:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: #fff;
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.special .btn-buy {
    background: rgba(255, 255, 255, 0.85); 
    color: #000;
    border: 1px solid #fff;
    font-weight: 400; 
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); 
}

.special .btn-buy:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    transform: scale(1.03);
}

.special .card-inner::after {
    content: ""; position: absolute; top: -150%; left: -150%; width: 300%; height: 300%;
    background: linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, 0.4) 50%, transparent 55%);
    animation: shine-diagonal 5s infinite ease-in-out;
    pointer-events: none; z-index: 3;
}

@keyframes white-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.15); }
    50% { box-shadow: 0 0 35px rgba(255, 255, 255, 0.5); }
}

@keyframes shine-diagonal {
    0% { transform: translate(0, 0); }
    20%, 100% { transform: translate(50%, 50%); }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(8px);    
    display: none;               
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 5px;
}


.popup-content {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 2rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: popupFadeIn 0.3s ease-out;
}


.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.close-popup:hover {
    color: #fff;
}


@keyframes popupFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}


body.no-scroll {
    overflow: hidden;
}


.popup-scroll-container {
    max-height: 80vh;
    overflow-y: auto;
    padding: 0 10px;
}


.about-me-section {
    padding: 20px 0;
    margin-bottom: 40px;
}

.about-me-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-me-image {
    width: 100%;
    max-width: 300px;
    border-radius: 30px;
}

.about-me-text {
    text-align: center;
    color: #fff;
}

.about-me-title, .popup-title-bold {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-me-text p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 15px;
}


.popup-scroll-container {
    max-height: 85vh;
    overflow-y: auto;
    padding: 0 10px;
}


.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.feedback-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth;     
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none;       
}

.feedback-container::-webkit-scrollbar { display: none; }


.feedback-image {
    width: 280px;
    border-radius: 20px;
    flex-shrink: 0;
    scroll-snap-align: start; 
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-btn.prev { left: -10px; }
.slider-btn.next { right: -10px; }

    .special-section {
        display: flex;         
        justify-content: center; 
        align-items: center;     
        width: 100%;            
        margin-top: 40px;       
        margin-bottom: 40px;    
        perspective: 1200px; 
}

.product-card.special {
    width: 350px;
    height: 500px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d; 
    
    animation: floating3d 6s infinite ease-in-out;
}

.card-inner.bg-7 {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    border-radius: 30px;
}

.card-content-3d {
    transform: translateZ(50px); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    pointer-events: none; 
}

.card-content-3d .join-btn {
    pointer-events: auto;
    transform: translateZ(30px); 
}

@keyframes floating3d {
    0%, 100% {
        transform: rotateY(-6deg) rotateX(4deg) translateY(0);
    }
    50% {
        transform: rotateY(6deg) rotateX(-4deg) translateY(-10px);
    }
}

.product-card.special:hover {
    animation-play-state: paused; 
    transform: rotateY(15deg) rotateX(10deg) scale(1.05);
}

.product-card.special .card-inner::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0) 40%, 
        rgba(255, 255, 255, 0.15) 50%, 
        rgba(255, 255, 255, 0) 60%
    );
    transform: translateZ(1px); 
    animation: shine-3d 6s infinite ease-in-out;
    pointer-events: none;
}

@keyframes shine-3d {
    0%, 100% {
        transform: translateX(-10%) translateY(-10%) rotate(25deg);
    }
    50% {
        transform: translateX(10%) translateY(10%) rotate(25deg);
    }
}

.section-title8 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    text-align: left;
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase; 
    line-height: 1; 
}

.faq-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0px;
    box-sizing: border-box;
    background-color: #050505;
}
.accordion {
    width: calc(100% - 30px);
    max-width: 800px;
    margin: auto;
    user-select: none; 
}

.accordion-item {
    border-radius: 30px;
    margin-bottom: 10px;
    overflow: hidden;
    background-color: #7D7D7D1A;
    user-select: none; 
}

.accordion-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #FFFFFF;
    user-select: none;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'NotoSansArrows', sans-serif;
    font-size: 20px;
    transition: transform 0.15s;
    background-color: #202020;
    border-radius: 32px;
    color: #FFFFFF;
    user-select: none;
    

    transform-origin: center center;
}

.accordion-icon span {
    display: inline-block;
    transform: translate(1px, 2px);
}


.accordion-content {
    display: none;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;

}

.accordion-content.show {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    display: block;
    color: #a0a0a0;
    padding: 17px;
}

.accordion-icon.rotate {
    transform: rotate(45deg);
}

.highlight {
    color: #a0a0a0;
}

.contacts-section {
    background-color: #050505;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contacts-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.contacts-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.contact-link {
    text-decoration: none;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: none;
    display: block;
    text-decoration: none;
    border-radius: 13px;
    opacity: 0.8;
    transition: 0.3s;
}
.social-icon:hover {
    transform: scale(1.06);
}

.contact-link:hover .social-icon {
    opacity: 0.8;
}

.footer {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    text-align: center;
    font-weight: 300;
    margin-top: 1rem;
}



/* DESKTOP ================================================================================================================================================= */
/* DESKTOP ================================================================================================================================================= */
/* DESKTOP ================================================================================================================================================= */


@media (min-width: 992px) {
    .logo-container {
        margin-top: 10px;
        margin-left: 10px;
        width: 250px;
    }

    .nav-link {
        color: #eae7e2;
        font-family: 'BebasNeuePro-Regular', sans-serif;
        font-weight: 400;
        font-size: 2.5rem;
    }

    .products-container { 
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 3rem;
        padding: 3rem 1rem;
    }

    .product-card { 
        width: 100%; 
        max-width: none; 
        aspect-ratio: 5 / 7; 
        min-height: unset;
        height: auto;
        display: block;    
    }
        .cover-image-mobile {
        display: none;
    }
    
    .cover-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    position: relative;
    max-width: 1200px;
    }
    
    .cover-image-pc {
        border-radius: 50px;
        margin-top: 50px;
        display: block;
        width: 1168px;
    }

    .join-btn {
        width: 600px;
        padding: 15px 50px;
        font-size: 32px;
        bottom: 30px;
    }

        .about-me-container {
        flex-direction: row;
        text-align: left;
    }
    .about-me-text { text-align: left; }

    .popup-content {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 2rem;
    max-width: 1000px;
    width: 100%;
    position: relative;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: popupFadeIn 0.3s ease-out;
}
    .popup-title-bold {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 2rem;
        margin-bottom: 40px;
        margin-top: 40px;
    }

    .popup-scroll-container::-webkit-scrollbar {
        width: 6px;
    }

    .popup-scroll-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05); 
        border-radius: 10px;
        margin: 10px; 
    }

    .popup-scroll-container::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2); 
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1); 
        transition: background 0.3s;
    }

    .popup-scroll-container::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.4);
    }

    .popup-scroll-container {
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05); 
    }


.particles-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 0 150px; 
    box-sizing: border-box;
    min-height: 500px; 
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, #fff, rgba(255,255,255,0.2));
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0;
    z-index: 1;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s;
    pointer-events: none;
}

@keyframes float-side {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(15px, -20px); opacity: 0.7; }
}

.p1 { left: 10%; top: 20%; animation: float-side 8s infinite; }
.p2 { left: 15%; bottom: 25%; animation: float-side 12s infinite; }
.p3 { right: 10%; top: 30%; animation: float-side 10s infinite; }
.p4 { right: 12%; bottom: 20%; animation: float-side 15s infinite; }
.p5 { left: 5%; bottom: 50%; animation: float-side 9s infinite; }
.p6 { right: 5%; top: 50%; animation: float-side 11s infinite; }
.p7 { right: 15%; top: 10%; animation: float-side 11s infinite; }
.p8 { left: 10%; bottom: 40%; animation: float-side 9s infinite; }


.particles-container:hover .particle {
    opacity: 1;
    filter: blur(0px);
    box-shadow: 0 0 15px #fff;
    animation: none; 
}



.particles-container:hover .p1 { top: 40%; left: 45%; transform: scale(1.5); transition-delay: 0s; }
.particles-container:hover .p2 { bottom: 40%; left: 47%; transform: scale(1.2); transition-delay: 0.1s; }
.particles-container:hover .p3 { top: 45%; right: 45%; transform: scale(1.8); transition-delay: 0.05s; }
.particles-container:hover .p4 { bottom: 45%; right: 47%; transform: scale(1.3); transition-delay: 0.15s; }
.particles-container:hover .p5 { top: 50%; left: 42%; transform: scale(1.1); transition-delay: 0.2s; }
.particles-container:hover .p6 { top: 50%; right: 42%; transform: scale(1.4); transition-delay: 0.1s; }
.particles-container:hover .p7 { top: 40%; right: 42%; transform: scale(1.1); transition-delay: 0.2s; }
.particles-container:hover .p8 { top: 50%; left: 42%; transform: scale(1.4); transition-delay: 0.1s; }


.particle {

    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
    .section-title8 {
        text-align: center;
        font-size: 2rem;
    }

        .accordion {
        width: 100%;
        max-width: 900px;
        margin: 40px auto 0;
        padding: 0;
    }
    
    .accordion-item {
        margin-bottom: 20px;
        border-radius: 30px;
    }
    
    .accordion-title {
        font-size: 20px;
        padding: 25px 35px;
    }
    
    .accordion-icon {
        width: 50px;
        height: 50px;
        font-family: 'NotoSansArrows', sans-serif;
        font-size: 2rem;
    }
    
    .accordion-content.show {
        font-size: 18px;
        padding: 0 35px 25px;
        line-height: 1.6;
    }

}


.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: 
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}


.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card.reveal {
    transition-delay: var(--delay, 0s);
}

.product-card.special.reveal.visible {
    transform: scale(1.05);
}
