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

html{
    scroll-behavior:smooth;
}



body{
    font-family:'Manrope',sans-serif;
    background:#ffffff;
}


.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{

    position:sticky;

    top:0;

    z-index:1000;

    background:white;

    box-shadow:
    0 5px 20px rgba(0,0,0,.05);
}

header {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.85);
}

.nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:80px;
}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;
}

.logo img{

    width:55px;

    height:55px;

    border-radius:50%;

    object-fit:cover;
}

.logo span{

    font-size:22px;

    font-weight:700;

    color:#7c3aed;
}

nav{

    display:flex;

    gap:25px;
}

nav a{

    text-decoration:none;

    color:#334155;

    font-weight:600;

    transition:.3s;
}

nav a:hover{

    color:#7c3aed;
}


.hero{
    background:
    linear-gradient(
    135deg,
    #4c1d95,
    #6d28d9,
    #8b5cf6
    );

    color:white;
    padding:90px 0;
}

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

.badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.15);
    margin-bottom:25px;
}

.hero h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    opacity:.9;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

@media(max-width:768px){

.hero{
    min-height:auto;
    padding:120px 20px 60px;
}

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

}



.btn{
    display:inline-block;
    padding:15px 30px;
    background:white;
    color:#6d28d9;
    text-decoration:none;
    border-radius:14px;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.btn-outline{
    background:transparent;
    border:2px solid white;
    color:white;
}


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

.stat-card{
    text-align:center;
    padding:30px;
    background:#f8fafc;
    border-radius:20px;
}

.stat-card h3{
    font-size:42px;
    color:#7c3aed;
}

.stat-card p{
    color:#64748b;
}

.program-card:hover,
.feature:hover,
.stat:hover {
    box-shadow: 0 20px 50px rgba(124,58,237,0.25);
}

@media(max-width:768px){

.stats{

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

}

.section{
    padding:100px 0;
}

.section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:20px;
}

.feature{
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    padding:40px 30px;
    border-radius:26px;

    box-shadow: 0 10px 30px rgba(0,0,0,.06);

    transition: all .35s ease;
    position: relative;
    overflow:hidden;

    border: 1px solid rgba(124,58,237,0.08);
}

.feature::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background: linear-gradient(90deg,#7c3aed,#ec4899,#60a5fa);
    opacity:0.9;
}

.feature i{
    font-size:34px;
    margin-bottom:16px;
    display:block;

    background: linear-gradient(135deg,#7c3aed,#a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    filter: drop-shadow(0 6px 10px rgba(124,58,237,.25));

    transition: .35s ease;
}

.feature:hover{
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 22px 55px rgba(124,58,237,.18);
}

.feature:hover i{
    transform: scale(1.2) rotate(-6deg);
    filter: drop-shadow(0 10px 18px rgba(124,58,237,.35));
}

.feature h3{
    font-size:20px;
    font-weight:800;
    margin-bottom:12px;
    color:#1f2937;
}

.feature p{
    font-size:16px;
    color:#475569;
    line-height:1.6;
}

body.dark .feature{
    background: rgba(30,41,59,0.6);
    border: 1px solid rgba(124,58,237,0.15);
}

body.dark .feature h3{
    color:#f8fafc;
}

body.dark .feature p{
    color:#cbd5e1;
}

@media(max-width:768px){
    .features{
        grid-template-columns:1fr;
    }

    .feature{
        padding:28px;
    }
}

@media(max-width:768px){

.feature,
.program-card,
.stat,
.diagnostic-card{

    backdrop-filter:none;
    -webkit-backdrop-filter:none;

    background:rgba(255,255,255,.92);
}

body.dark .feature,
body.dark .program-card,
body.dark .stat,
body.dark .diagnostic-card{

    background:#1e293b;
}

@media (hover:none){

    .feature:hover{
        transform:none;
        box-shadow:0 10px 30px rgba(0,0,0,.06);
    }

    .feature:hover i{
        transform:none;
        filter:none;
    }

    .feature i{
        transition:none;
    }

}

}

.programs{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-top:40px;
}

.program-card{
background:white;
padding:35px;
border-radius:30px;

box-shadow:
0 20px 50px rgba(124,58,237,.12);

transition:.4s;
position:relative;
overflow:hidden;
}

.program-card{
    padding:25px;
    border-radius:25px;
}

.program-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:6px;

background:linear-gradient(
90deg,
#7c3aed,
#ec4899
);
}

.program-card:hover{
transform:
translateY(-10px)
scale(1.02);
}

.program-card h3{
    color:#7c3aed;
    font-size:30px;
    margin-bottom:20px;
}

.program-btn{
    display:block;

    width:100%;

    margin-top:25px;

    padding:16px;

    text-align:center;

    text-decoration:none;

    font-size:17px;
    font-weight:700;

    color:white;

    background:linear-gradient(
        135deg,
        #7c3aed,
        #9333ea
    );

    border-radius:16px;

    box-shadow:
    0 10px 25px rgba(124,58,237,.35);

    transition:.3s;
}

.program-btn:hover{
    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(124,58,237,.45);

    background:linear-gradient(
        135deg,
        #6d28d9,
        #7e22ce
    );
}

@media(max-width:768px){

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

}

.teacher{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.teacher img{
    width:100%;
    border-radius:25px;
}

.teacher-content p{
    margin-bottom:20px;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery img{
    width:100%;
    border-radius:18px;
    transition:.3s;
}

.gallery img{
height:300px;
object-fit:cover;
cursor:pointer;
}

.gallery img:hover{
    transform:scale(1.05);
}

.gallery-toggle{

    display:block;

    margin:35px auto 0;

    padding:14px 28px;

    border:none;

    border-radius:16px;

    cursor:pointer;

    font-size:15px;
    font-weight:700;

    color:white;

    background:
    linear-gradient(
        135deg,
        #7c3aed,
        #a855f7
    );

    transition:.25s;
}

.gallery-toggle:hover{

    transform:translateY(-3px);

    box-shadow:
    0 12px 25px rgba(124,58,237,.25);
}

@media(max-width:768px){

.gallery{
    display:flex;
    overflow-x:auto;
    gap:15px;
    scrollbar-width:none;
}

.gallery::-webkit-scrollbar{
    display:none;
}

.gallery img{
    flex:0 0 auto;
    width:220px;
}

}

@media(max-width:768px){

.gallery img{

    width:260px;
    height:380px;

}

}

.cta{
    background:
    linear-gradient(
    135deg,
    #5b21b6,
    #7c3aed
    );

    color:white;
    text-align:center;
    padding:100px 0;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    margin-bottom:40px;
}

.cta-card{

    max-width:700px;

    margin:0 auto 20px;

    background:white;

    color:#111827;

    border-radius:40px;

    padding:60px;

    box-shadow:
    0 25px 60px rgba(124,58,237,.15);
}

@media(max-width:768px){

.cta-card{

    padding:30px 20px;
}

.cta-card h2{

    font-size:38px;

    line-height:1.2;
}

.cta-buttons{
    flex-direction:column;
}

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

.cta-contacts{
    margin-top:30px;
    color:#64748b;
    font-size:16px;
    line-height:1.8;
}

form{
    max-width:650px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

input{
    padding:18px;
    border:none;
    border-radius:14px;
    font-size:16px;
}

button{
    padding:18px;
    border:none;
    border-radius:14px;
    background:white;
    color:#6d28d9;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    transform:translateY(-3px);
}

.footer{
    width:100%;
    margin-top:120px;

    padding:80px 0 30px;

    background:linear-gradient(180deg,#111827,#0f172a);

    color:white;

    position:relative;

    display:block;

    overflow:hidden;
}

.footer-content{

    max-width:1200px;
    margin:0 auto;

    padding:0 40px;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;
}

.footer-column{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:25px;

    transition:.3s ease;
}

.footer-column:hover{

    transform:translateY(-4px);

    background:rgba(255,255,255,.06);
}

.footer-bottom{

    margin-top:60px;

    padding-top:20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    color:#94a3b8;
}

.footer h3,
.footer h4{
    margin-bottom:15px;
}

.footer p{
    opacity:.8;
    margin-bottom:10px;
}

.footer a{
    color:#cbd5e1;
    text-decoration:none;
    display:block;
    margin-bottom:8px;
    transition:.2s;
}

.footer a:hover{
    color:white;
}

@media(max-width:768px){

    .footer{
        padding:50px 20px;
    }

    .footer-content{

        display:flex;
        flex-direction:column;

        text-align:center;

        padding:0;
        gap:25px;
    }

    .footer-column{
        padding:20px;
    }
}


@media(max-width:768px){

.container{
    width:95%;
}

.hero-grid,
.teacher{
    grid-template-columns:1fr;
    gap:30px;
}

.hero{
    padding:40px 0;
}

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

.hero p{
    font-size:18px;
}

.section{
    padding:60px 0;
}

.section h2{
    font-size:30px;
    margin-bottom:30px;
}

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

.program-card{
    padding:20px;
}

.program-card h3{
    font-size:26px;
}

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

.stat{
    padding:20px;
}

.stat strong{
    font-size:34px;
}

.course-pricing{
    grid-template-columns:1fr;
}

.price-column{
    border-right:none;
    border-bottom:1px solid #e5e7eb;
}

.price-column:last-child{
    border-bottom:none;
}

.cta-card{
    padding:35px 20px;
}

.cta-card h2{
    font-size:34px;
}

.cta-card p{
    font-size:17px;
}

.cta-buttons{
    flex-direction:column;
}

.cta-btn{
    width:100%;
}

.footer-content{
    grid-template-columns:1fr;
    text-align:center;
}

}

.price-box{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin-top:20px;
}

.price-box div{
background:#f8fafc;
padding:15px;
border-radius:12px;
text-align:center;
}

.price-box strong{
display:block;
margin-bottom:8px;
color:#6d28d9;
}

.map-box{
    margin-top:30px;

    overflow:hidden;

    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);
}

.map-box iframe{
    display:block;
    width:100%;
    border:none;
}

.address{
    text-align:center;

    font-size:20px;

    color:#475569;

    margin-bottom:25px;
}

.course-pricing{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    margin-top:25px;
    margin-bottom:25px;

    border:1px solid #e5e7eb;
    border-radius:18px;

    overflow:hidden;
}

.price-column{
    text-align:center;
    padding:18px 12px;
    background:#fafafa;

    border-right:1px solid #e5e7eb;
}

.price-column:last-child{
    border-right:none;
}

.price-column span{
    display:block;
    font-size:13px;
    color:#64748b;
    min-height:40px;
}

.price-column strong{
    display:block;
    margin-top:10px;

    font-size:22px;
    color:#7c3aed;
    font-weight:800;
}

html{
    scroll-behavior:smooth;
}

.cta-section{
    padding:100px 20px;
}

.cta-card{

    background:
    linear-gradient(
        135deg,
        #7c3aed,
        #9333ea
    );

    color:white;

    text-align:center;

    padding:70px 40px;

    border-radius:40px;

    box-shadow:
    0 25px 60px rgba(124,58,237,.35);
}

.cta-card h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-card p{
    max-width:700px;
    margin:0 auto 40px;
    font-size:20px;
    line-height:1.6;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-btn{

    padding:18px 35px;

    border-radius:18px;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    transition:.3s;
}

.telegram{
    background:#25D366;
    color:white;
}

.max{
    background:white;
    color:#7c3aed;
}

.cta-btn:hover{
    transform:translateY(-4px);
}

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

.stat{
    background:white;

    padding:30px;

    text-align:center;

    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

.stat strong{
    display:block;

    font-size:42px;

    color:#7c3aed;
}

.stat span{
    color:#64748b;
}

.modal{

    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.9);

    z-index:9999;

    justify-content:center;
    align-items:center;
}

.modal img{

    max-width:90%;
    max-height:90%;

    border-radius:15px;

    animation:zoom .25s ease;
}

@keyframes zoom{

from{
    transform:scale(.8);
    opacity:0;
}

to{
    transform:scale(1);
    opacity:1;
}

}

.close-modal{

    position:absolute;

    top:20px;
    right:30px;

    color:white;

    font-size:40px;

    cursor:pointer;

    
}

.footer{

    margin-top:80px;

    background:#111827;

    color:white;

    padding:60px 20px 30px;
}

.footer-content{

    display:grid;

    grid-template-columns:
    2fr
    1fr
    1fr;

    gap:40px;
}

.footer h3,
.footer h4{

    margin-bottom:20px;
}

.footer p{

    color:#cbd5e1;

    line-height:1.8;
}

.footer a{

    display:block;

    color:#cbd5e1;

    text-decoration:none;

    margin-bottom:10px;
}

.footer a:hover{

    color:white;
}

.footer-bottom{

    border-top:
    1px solid rgba(255,255,255,.15);

    margin-top:40px;

    padding-top:20px;

    text-align:center;

    color:#94a3b8;
}

@media(max-width:768px){

.footer-content{

    grid-template-columns:1fr;

    text-align:center;
}

}

.contact-float{

    position:fixed;

    right:20px;

    bottom:20px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#7c3aed;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    text-decoration:none;

    z-index:999;
}

.nav{
    position:relative;
}

.burger{
    display:none;
    background:none;
    border:none;
    font-size:32px;
    color:#7c3aed;
    cursor:pointer;
}

@media(max-width:768px){

    .burger{
        display:block;
    }

    nav{

        display:none;

        position:absolute;

        top:100%;
        left:0;

        width:100%;

        padding:20px;

        flex-direction:column;

        gap:15px;

        border-radius:0 0 20px 20px;

        background:rgba(255,255,255,.9);

        backdrop-filter:blur(15px);

        -webkit-backdrop-filter:blur(15px);

        box-shadow:
        0 10px 30px rgba(0,0,0,.12);
    }

    body.dark nav{

    background:rgba(15,23,42,.95);

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    }


    nav.active{
        display:flex;
    }

    nav a{
        text-align:center;
        font-size:16px;
    }

    .logo{
        flex:1;
    }

}

@media(max-width:768px){

.features{
    display:grid;
    grid-template-columns:1fr;
    gap:15px;
}

.feature{
    padding:25px;
}

}

.stats{
    padding:70px 0;
}

@media(max-width:768px){

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

    .stat{
        padding:20px;
    }

    .stat strong{
        font-size:32px;
    }

}

.teacher-content ul{
    padding-left:25px;
    margin:15px 0;
}

.teacher-content li{
    margin-bottom:8px;
    list-style:disc;
}

.diagnostic{

    padding:80px 0;
}

.diagnostic-card{

    max-width:900px;

    margin:auto;

    background:white;

    padding:50px;

    border-radius:35px;

    box-shadow:
    0 20px 50px rgba(124,58,237,.12);

    border:3px solid #ede9fe;
}

.diagnostic-card h2{

    color:#7c3aed;

    font-size:34px;

    line-height:1.3;

    margin-bottom:25px;
}

.diagnostic-card p{

    font-size:18px;

    color:#475569;

    margin-bottom:20px;
}

.diagnostic-card ul{

    padding-left:25px;

    margin:25px 0;
}

.diagnostic-card li{

    margin-bottom:16px;

    color:#334155;

    line-height:1.7;
}

.diagnostic-result{

    font-weight:600;

    color:#7c3aed;

    margin-top:25px;
}

.diagnostic-btn{

    display:inline-block;

    margin-top:30px;
    
    padding:18px 30px;

    background:linear-gradient(
        135deg,
        #7c3aed,
        #9333ea

    );

    color:white;

    text-decoration:none;

    font-weight:700;

    border-radius:18px;

    transition:.3s;
}

.diagnostic-btn:hover{

    transform:translateY(-3px);
}

@media(max-width:768px){

    .diagnostic-card{

        padding:30px 20px;
    }

    .diagnostic-card h2{

        font-size:26px;
    }

}

.tabs{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-bottom:30px;
}

.tab-btn {
    padding: 12px 18px;
    border: none;
    background: #f1f5f9;
    color: #334155;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    gap: 8px;
    align-items: center;
}

.tab-btn:hover {
    background: #e2e8f0;
}

.tab-btn.active {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: white;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
}

.tab-content {
    opacity: 0;
    transform: scale(.98);
    transition: .25s ease;
    display: none;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.reviews-box{

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,.1);
}

.course-icon{

width:55px;
height:55px;

display:flex;

align-items:center;
justify-content:center;

font-size:30px;

background:#ede9fe;

border-radius:18px;

margin-bottom:20px;

}

.benefit i{

font-size:35px;

color:#7c3aed;

margin-bottom:10px;

}

.course-icon{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    background:linear-gradient(135deg,#ede9fe,#f5f3ff);
    border-radius:16px;
    margin-bottom:18px;
    color:#7c3aed;
    box-shadow:0 10px 20px rgba(124,58,237,.15);
}

.typing {
    font-size: 48px;
        line-height:1.0;
    font-weight: 800;
    
}

#typing-text {
    font-size: 18px;
    line-height:1.1;
}

#typing-text::after {
    content: "|";
    animation: blink 0.8s infinite;
    margin-left: 5px;
}


@media(max-width:768px){
    #typing-text {
    font-size: 13px;
    line-height:0.2;
}
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.floating-icons {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-icons i {
    position: absolute;
    font-size: 24px;
    color: rgba(124, 58, 237, 0.15);
    animation: floatUp 18s linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}

.floating-icons i:nth-child(1) { left: 10%; animation-duration: 20s; }
.floating-icons i:nth-child(2) { left: 25%; animation-duration: 15s; font-size: 30px; }
.floating-icons i:nth-child(3) { left: 40%; animation-duration: 22s; }
.floating-icons i:nth-child(4) { left: 60%; animation-duration: 18s; font-size: 28px; }
.floating-icons i:nth-child(5) { left: 75%; animation-duration: 25s; }
.floating-icons i:nth-child(6) { left: 90%; animation-duration: 17s; }

body {
    position: relative;
}

section, header, footer {
    position: relative;
    z-index: 1;
}

.contact-float {
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.25);
}

.contact-float:hover {
    transform: scale(1.15) translateY(-5px);
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
}

.floating-icons {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-icons i {
    position: absolute;
    color: rgba(59,130,246,.22);
    animation: floatUp linear infinite;
}

body.dark .floating-icons i{
    color: rgba(167,139,250,.25);
}

.floating-icons i{

    text-shadow:
        0 0 10px rgba(59,130,246,.25),
        0 0 20px rgba(59,130,246,.15);
}

body.dark .floating-icons i{

    text-shadow:
        0 0 15px rgba(167,139,250,.35),
        0 0 30px rgba(167,139,250,.2);
}

.floating-icons i:nth-child(1) {
    left: 5%;
    font-size: 20px;
    animation-duration: 18s;
}

.floating-icons i:nth-child(2) {
    left: 15%;
    font-size: 30px;
    animation-duration: 24s;
}

.floating-icons i:nth-child(3) {
    left: 25%;
    font-size: 22px;
    animation-duration: 20s;
}

.floating-icons i:nth-child(4) {
    left: 35%;
    font-size: 36px;
    animation-duration: 28s;
}

.floating-icons i:nth-child(5) {
    left: 45%;
    font-size: 18px;
    animation-duration: 17s;
}

.floating-icons i:nth-child(6) {
    left: 55%;
    font-size: 32px;
    animation-duration: 25s;
}

.floating-icons i:nth-child(7) {
    left: 65%;
    font-size: 24px;
    animation-duration: 19s;
}

.floating-icons i:nth-child(8) {
    left: 75%;
    font-size: 38px;
    animation-duration: 30s;
}

.floating-icons i:nth-child(9) {
    left: 85%;
    font-size: 26px;
    animation-duration: 21s;
}

.floating-icons i:nth-child(10) {
    left: 95%;
    font-size: 20px;
    animation-duration: 23s;
}

@keyframes floatUp {
    0% {
        transform: translateY(110vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateY(-20vh) rotate(360deg);
        opacity: 0;
    }
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.contact-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;

    transition: all 0.3s ease;

    box-shadow:
        0 10px 25px rgba(124, 58, 237, 0.25);
}

.contact-float:hover {
    transform: scale(1.15) translateY(-5px);

    background: linear-gradient(
        135deg,
        #9333ea,
        #7c3aed
    );

    box-shadow:
        0 20px 40px rgba(124, 58, 237, 0.4);
}

body.dark{
    background:#0f172a;
    color:#f8fafc;
}

body.dark-theme {
    background:#0f172a;
    color:white;
}

body.dark .program-card,
body.dark .feature,
body.dark .stat,
body.dark .diagnostic-card,
body.dark .cta-card,
body.dark .footer,
body.dark .reviews-box,
body.dark .map-box{
    background:#1e293b;
    color:white;
}

body.dark nav a{
    color:#e2e8f0;
}

body.dark header{
    background:rgba(15,23,42,.85);
}

body.dark .price-column{
    background:#334155;
}

body.dark p,
body.dark li,
body.dark span{
    color:#cbd5e1;
}

@media (min-width: 769px){

    .theme-toggle{

        position: fixed;

        top: 20px;
        left: 20px;

        width: 45px;
        height: 45px;

        border-radius: 50%;

        z-index: 99999;

        display:flex;
        align-items:center;
        justify-content:center;

        background: rgba(255,255,255,.8);
        backdrop-filter: blur(12px);

        box-shadow:
        0 10px 25px rgba(0,0,0,.15);
    }

}

.section-title{

    font-size:42px;
    text-align:center;

    margin-bottom:40px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    font-weight:800;

    color:#111827;
}

.section-title i{
    color:#7c3aed;
    font-size:34px;
}

.subtitle-block{
    text-align:center;
    max-width:800px;
    margin:0 auto;
}

.section-subtitle{
    font-size:20px;
    color:#475569;
    line-height:1.7;
}

.section-subtitle.highlight{

    font-size:22px;

    font-weight:700;

    color:#7c3aed;

    margin-bottom:8px;
}

body.dark .section-title{
    color:#f8fafc;
}

body.dark .section-subtitle{
    color:#cbd5e1;
}

.about-text{
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text .lead{
    font-size: 22px;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 20px;
}

.about-text p{
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 14px;
}

body.dark .about-text p{
    color: #cbd5e1;
}

.program-card,
.feature{
    position: relative;
}

.badge{
    position:absolute;
    top:15px;
    right:15px;

    padding:6px 12px;
    border-radius:999px;

    font-size:12px;
    font-weight:700;
    color:white;

    background: linear-gradient(135deg,#7c3aed,#ec4899);
    box-shadow: 0 10px 20px rgba(124,58,237,.25);

    pointer-events:none;

    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge{
    0%{
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(124,58,237,.25);
    }
    50%{
        transform: scale(1.08);
        box-shadow: 0 15px 30px rgba(124,58,237,.35);
    }
    100%{
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(124,58,237,.25);
    }
}

.program-card.popular{
    border:1px solid rgba(124,58,237,.25);
    box-shadow: 0 15px 35px rgba(124,58,237,.10);
}


#scrollBar{
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg,#7c3aed,#ec4899);
    z-index: 9999;
}


.trust{
    text-align:center;
}

.trust-toggle{
    margin-top:20px;
    padding:12px 20px;
    border:none;
    border-radius:999px;

    background: linear-gradient(135deg,#7c3aed,#ec4899);
    color:white;

    font-weight:600;
    cursor:pointer;

    transition:.3s ease;
}

.trust-toggle:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124,58,237,.25);
}

.trust-gallery{
    margin-top:25px;

    max-height:0;
    opacity:0;
    overflow:hidden;

    transition: all .5s ease;
    position:relative;
}

.trust-gallery.active{
    max-height:500px;
    opacity:1;
}

.trust-track{
    display:flex;
    transition: transform .5s ease;
}

.trust-track{
    display:flex;
    align-items:center;
    transition:transform .5s ease;
}

.trust-track img{
    width:100%;
    height:450px;

    object-fit:contain;

    flex-shrink:0;

    border-radius:20px;

    background:#f8fafc;
}

body.dark .trust-track img{
    background:#1e293b;
}

.trust-btn{

    position:absolute;

    top:50%;
    transform:translateY(-50%);

    width:56px;
    height:56px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.72);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    color:#7c3aed;

    font-size:22px;
    font-weight:700;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.25s ease;

    box-shadow:
        0 10px 25px rgba(0,0,0,.12);

    z-index:20;
}

.trust-btn.prev{

    left:18px;

}

.trust-btn.next{

    right:18px;

}

.trust-btn:hover{

    transform:
        translateY(-50%)
        scale(1.08);

    background:#7c3aed;

    color:white;

    box-shadow:
        0 15px 35px rgba(124,58,237,.28);

}

.trust-btn:active{

    transform:
        translateY(-50%)
        scale(.95);

}

body.dark .trust-btn{

    background:rgba(30,41,59,.72);

    color:white;

}

body.dark .trust-btn:hover{

    background:#8b5cf6;

}

@media(max-width:768px){

.trust-btn{

    width:46px;
    height:46px;

    font-size:18px;

}

.trust-btn.prev{

    left:8px;

}

.trust-btn.next{

    right:8px;

}

}

.photo-viewer{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.9);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.3s ease;

    z-index:99999;
}

.photo-viewer.active{
    opacity:1;
    visibility:visible;
}

.photo-viewer img{

    max-width:92vw;
    max-height:92vh;

    border-radius:20px;

    box-shadow:0 25px 60px rgba(0,0,0,.45);

    animation:photoZoom .25s ease;
}

@keyframes photoZoom{

    from{
        transform:scale(.85);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }

}

.photo-viewer::after{

    content:"✕";

    position:absolute;

    top:25px;
    right:35px;

    color:white;

    font-size:42px;

    cursor:pointer;

    transition:.2s;
}

.photo-viewer:hover::after{

    transform:scale(1.1);

}

.program-card,
.feature{
    transition: transform 0.2s ease;
    will-change: transform;
}

@media(max-width:768px){
    .program-card,
    .feature{
        transform: none !important;
    }
}

.map-box{

    opacity:0;
    transform:translateY(30px);

    transition:.8s ease;
}

.map-box.visible{

    opacity:1;
    transform:translateY(0);
}

