:root {
    --primary-blue: #007BFF;
    --primary-blue-dark: #0056b3;
    --primary-glow: rgba(0, 123, 255, 0.4);
    --soft-glow: rgba(0, 123, 255, 0.15);
    
    --background-dark: #0A192F;
    --background-light: #112240;
    --background-blue-tint: rgba(0, 123, 255, 0.05);

    --text-white: #E6F1FF;
    --text-light: #ccd6f6;
    --text-secondary: #8892b0;

    --border-color: rgba(0, 123, 255, 0.2);
    --shadow: rgba(2, 12, 27, 0.7) 0px 10px 30px -15px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

/* --- GLOBAL STYLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

html {
    width: 100%;
    overflow-x: hidden;
}

body { 
    font-family: 'Inter', sans-serif; 
    line-height: 1.6; 
    color: var(--text-light); 
    background-color: var(--background-dark); 
    overflow-x: hidden; 
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.section-title { 
    text-align: center; 
    font-size: 2.8rem; 
    color: var(--text-white); 
    margin-bottom: 20px; /* Уменьшаем отступ для подзаголовка */
    font-weight: 800;
}

/* Стиль для нового подзаголовка */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

p {
    margin-bottom: 1rem;
    max-width: 65ch;
}

.btn { padding: 14px 32px; border: 2px solid var(--primary-blue); border-radius: var(--border-radius); color: var(--primary-blue); text-decoration: none; font-weight: 600; transition: all 0.3s ease; display: inline-block; cursor: pointer; }
.btn:hover { background-color: var(--primary-blue); color: var(--text-white); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2); }
.highlight { color: var(--primary-blue); }

/* --- SIDEBAR NAVIGATION --- */
header { position: fixed; left: 0; top: 0; height: 100vh; width: 230px; background: rgba(10, 25, 47, 0.8); backdrop-filter: blur(10px); border-right: 1px solid var(--border-color); z-index: 1000; display: flex; flex-direction: column; padding: 30px 0; transition: transform 0.3s ease; box-shadow: 3px 0 15px rgba(0, 0, 0, 0.2); }
header .container { display: flex; flex-direction: column; height: 100%; padding: 0 20px; width: 100%; }
.logo-container { text-align: center; margin-bottom: 50px; padding: 0 15px; }
.logo { height: 80px; width: 80px; margin: 0 auto 15px; transition: transform 0.4s ease; filter: drop-shadow(0 0 15px var(--primary-glow)); }
.logo:hover { transform: rotate(10deg) scale(1.1); }
.logo-text { color: var(--text-white); font-weight: 800; font-size: 1.5rem; letter-spacing: 1px; }
.logo-text span { color: var(--primary-blue); font-weight: 900; }
.main-nav { flex-grow: 1; display: flex; flex-direction: column; }
.nav-links { display: flex; flex-direction: column; gap: 8px; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-weight: 600; font-size: 1rem; padding: 15px 20px; border-radius: var(--border-radius); transition: all 0.3s ease; display: flex; align-items: center; gap: 15px; }
.nav-links a:hover { color: var(--text-white); background: var(--background-blue-tint); transform: translateX(5px); }
.nav-links a.active { color: var(--text-white); background: var(--primary-blue); box-shadow: 0 5px 20px var(--primary-glow); transform: translateX(5px); }
.nav-links a i { font-size: 1.2rem; width: 24px; text-align: center; transition: transform 0.3s ease; }
.nav-links a:hover i { transform: scale(1.1); }
.nav-cta { margin-top: auto; padding: 20px 0 0; border-top: 1px solid var(--border-color); }
.btn-header { background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark)); color: var(--text-white); padding: 15px 25px; border-radius: var(--border-radius-lg); border: none; font-weight: 700; font-size: 1rem; transition: all 0.3s ease; box-shadow: 0 5px 20px var(--primary-glow); width: 100%; text-align: center; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-header:hover { transform: translateY(-3px); box-shadow: 0 8px 25px var(--primary-glow); background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue)); }
.mobile-menu-btn { display: none; }
main { margin-left: 230px; width: calc(100% - 230px); }

/* --- HERO SECTION --- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 80px 0; }
.hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.map-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; animation: fadeInMap 2s ease forwards; animation-delay: 0.5s; }
@keyframes fadeInMap { to { opacity: 0.3; } }
.map-container svg { width: 100%; height: 100%; }
.map-container svg #countries path { fill: var(--primary-blue-dark); stroke: rgba(0, 123, 255, 0.5); stroke-width: 1; transition: fill 0.3s ease; }
.uzbekistan-highlight { fill: rgba(0, 221, 255, 0.5) !important; stroke: var(--primary-blue) !important; stroke-width: 3px !important; animation: pulse-glow 2s infinite ease-in-out; }
@keyframes pulse-glow { 0% { filter: drop-shadow(0 0 8px var(--primary-blue)); } 50% { filter: drop-shadow(0 0 25px var(--primary-blue)); } 100% { filter: drop-shadow(0 0 8px var(--primary-blue)); } }
#particles-js { position: absolute; width: 100%; height: 100%; top: 0; left: 0; }
.gradient-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10, 25, 47, 0.8) 0%, rgba(10, 25, 47, 0.4) 50%, rgba(10, 25, 47, 0.8) 100%); }
.hero-content { position: relative; z-index: 3; }
.hero-text { max-width: 750px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: 4rem; font-weight: 800; color: var(--text-white); margin-bottom: 24px; line-height: 1.2; }
.hero h1 .typed-text::after { content: "|"; animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero p { font-size: 1.2rem; margin: 0 auto 40px auto; max-width: 600px; color: var(--text-light); }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-hero { font-size: 1rem; padding: 15px 40px; background-color: var(--primary-blue); color: var(--text-white); border: 2px solid var(--primary-blue); }
.btn-hero-outline { font-size: 1rem; padding: 15px 40px; background-color: transparent; color: var(--text-light); border-color: var(--border-color); }
.btn-hero-outline:hover { background-color: var(--background-blue-tint); color: var(--text-white); border-color: var(--primary-blue); }
.hero-stats { display: flex; gap: 30px; padding: 30px; background: rgba(17, 34, 64, 0.5); backdrop-filter: blur(10px); border-radius: var(--border-radius-lg); border: 1px solid var(--border-color); margin-top: 60px; justify-content: space-around; max-width: 700px; margin-left: auto; margin-right: auto; }
.stat-item { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary-blue); margin-bottom: 5px; }
.stat-label { font-size: 0.9rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }

/* --- AUTHOR INTRO --- */
.author-intro-section { padding: 120px 0; }
.author-grid { display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: center; }
.author-photo { text-align: center; }
.author-img { width: 100%; max-width: 280px; border-radius: 50%; border: 5px solid var(--background-light); box-shadow: 0 0 30px var(--primary-glow); }
.author-bio h3 { font-size: 2.2rem; color: var(--text-white); margin-bottom: 20px; }
.author-bio p { font-size: 1.1rem; color: var(--text-light); }

/* --- TIMELINE --- */
.about-section { padding: 120px 0; }
.timeline-new { display: flex; flex-direction: column; gap: 20px; position: relative; max-width: 700px; margin: auto; }
.timeline-new::before { 
    content: ''; 
    position: absolute; 
    left: 24px; 
    top: 20px; 
    bottom: 20px; 
    width: 3px; 
    background: var(--border-color); 
    border-radius: 2px; 
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.5s ease-out;
}
.timeline-new.visible::before {
    transform: scaleY(1);
}
.timeline-item-new { display: flex; gap: 30px; align-items: flex-start; }
.timeline-icon { width: 52px; height: 52px; background: var(--background-light); color: var(--primary-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; z-index: 2; border: 3px solid var(--border-color); }
.timeline-content-new { background: var(--background-dark); padding: 25px; border-radius: var(--border-radius-lg); border: 1px solid var(--border-color); width: 100%; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.timeline-content-new:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--primary-blue); }
.timeline-content-new h4 { color: var(--text-white); font-size: 1.2rem; }
.timeline-content-new .timeline-date { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 10px; display: block; }
.timeline-content-new p { margin: 0; color: var(--text-light); }

/* --- PROGRAM (ACCORDION) --- */
.program-section { padding: 120px 0; }
.accordion { max-width: 800px; margin: 0 auto; }
.module { 
    background: var(--background-light); 
    border-radius: var(--border-radius-lg); 
    margin-bottom: 15px; 
    border: 1px solid var(--border-color); 
    transition: all 0.3s ease; 
    overflow: hidden;
    /* --- NEW: Performance hint for the browser --- */
    will-change: transform;
    transform-style: preserve-3d; /* For the tilt effect */
}
.module:hover { border-color: var(--primary-blue); }
.module-header { padding: 25px 30px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transform: translateZ(20px); /* Makes header pop out a bit in 3D space */ }
.module-header h3 { color: var(--text-white); font-size: 1.4rem; font-weight: 600; }
.module-header h3 span { color: var(--primary-blue); margin-right: 15px; font-weight: 700; }
.module-header .icon { font-size: 1.5rem; color: var(--primary-blue); transition: transform 0.3s ease; }
.module.active .icon { transform: rotate(45deg); }
.module-content { max-height: 0; transition: max-height 0.4s ease-out; }
.module-content p { padding: 0 30px 25px 30px; margin-bottom: 0; color: var(--text-light); }


/* --- НОВЫЕ СТИЛИ ДЛЯ ФИНАЛЬНОЙ СЕКЦИИ КУРСА --- */
.course-details-section { padding: 120px 0; }

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: -40px auto 60px auto; /* Поднимаем ближе к заголовку */
}

.course-feature-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.course-image-wrapper {
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.course-image {
    width: 100%;
    height: 100%;
    /* Вот наше атмосферное изображение */
    background-image: url('https://images.pexels.com/photos/1267338/pexels-photo-1267338.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.course-image-wrapper:hover .course-image {
    transform: scale(1.05); 
}

.course-enroll-card-new {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 40px;
}

.course-enroll-card-new .card-header { padding: 0 0 20px 0; text-align: left; border-bottom: 1px solid var(--border-color); }
.course-enroll-card-new h4 { font-size: 1.8rem; color: var(--text-white); margin-bottom: 0; }
.card-tabs { display: flex; margin-top: 20px;}
.tab-link { flex: 1; padding: 15px; background: transparent; border: none; color: var(--text-secondary); font-weight: 600; cursor: pointer; transition: all 0.3s ease; border-bottom: 3px solid transparent; font-size: 1rem; text-align: center;}
.tab-link:hover { color: var(--text-white); }
.tab-link.active { color: var(--text-white); border-bottom-color: var(--primary-blue); }
.tab-content { display: none; padding: 30px 0 0 0; animation: fadeIn 0.5s; }
.tab-content.active { display: block; }
.features-list { list-style: none; padding: 0; margin: 0; }
.features-list li { margin-bottom: 18px; display: flex; align-items: center; gap: 15px; font-size: 1rem; color: var(--text-light); }
.features-list li:last-child { margin-bottom: 0; }
.features-list li i { color: var(--primary-blue); font-size: 1.2rem; width: 20px; }
.course-enroll-card-new .card-footer { padding: 30px 0 0 0; border-top: 1px solid var(--border-color); margin-top: 30px;}
.btn-enroll { width: 100%; padding: 15px; font-size: 1.1rem; background: var(--primary-blue); color: var(--text-white); border: none; border-radius: var(--border-radius); font-weight: 700; animation: pulse-glow-button 2s infinite ease-in-out; }
@keyframes pulse-glow-button { 0% { box-shadow: 0 0 15px var(--soft-glow); } 50% { box-shadow: 0 0 30px var(--primary-glow); } 100% { box-shadow: 0 0 15px var(--soft-glow); } }
.btn-enroll:hover { background-color: var(--primary-blue-dark); transform: translateY(-2px); box-shadow: 0 4px 15px var(--primary-glow); }

@media (max-width: 992px) {
    .course-feature-layout { grid-template-columns: 1fr; }
    .course-image-wrapper { display: none; }
    .course-enroll-card-new { padding: 30px; }
    .course-enroll-card-new .card-header { text-align: center; }
}
@media (max-width: 992px) {
    .course-feature-layout { grid-template-columns: 1fr; }
    .course-image-wrapper {
        min-height: 300px;
    }
    .course-enroll-card-new { padding: 30px; }
    .course-enroll-card-new .card-header { text-align: center; }
}

/* --- FOOTER --- */
footer { padding: 80px 0 30px; border-top: 1px solid var(--border-color); margin-top: 120px; margin-left: 230px; width: calc(100% - 230px); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.footer-logo img { height: 60px; width: 60px; }
.footer-logo-text { color: var(--text-white); font-size: 1.8rem; font-weight: 800; }
.footer-logo-text span { color: var(--primary-blue); }
.footer-description { color: var(--text-secondary); line-height: 1.6; max-width: 350px; }
.social-links { display: flex; gap: 15px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: transparent; border: 2px solid var(--border-color); border-radius: 50%; color: var(--text-secondary); text-decoration: none; transition: all 0.3s ease; font-size: 1.2rem; }
.social-links a:hover { background: var(--primary-blue); color: var(--text-white); transform: translateY(-3px); box-shadow: 0 5px 15px var(--primary-glow); border-color: var(--primary-blue); }
.footer-section h4 { color: var(--text-white); font-size: 1.3rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-section h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary-blue); border-radius: 2px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.footer-links li a { color: var(--text-secondary); text-decoration: none; transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; }
.footer-links li a:hover { color: var(--primary-blue); transform: translateX(5px); }
.footer-links li a i { font-size: 0.8rem; color: var(--primary-blue); }
.contact-info { display: flex; flex-direction: column; gap: 15px; }
.contact-item-footer { display: flex; align-items: flex-start; gap: 12px; color: var(--text-secondary); }
.contact-item-footer i { color: var(--primary-blue); font-size: 1.1rem; min-width: 20px; margin-top: 4px; }
.contact-item-footer a, .contact-item-footer span { color: var(--text-secondary); text-decoration: none; transition: color 0.3s ease; }
.contact-item-footer a:hover { color: var(--primary-blue); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 30px; text-align: center; }
.copyright { color: var(--text-secondary); font-size: 0.9rem; }

/* --- HTMX MODAL --- */
.modal-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(10, 25, 47, 0.8); backdrop-filter: blur(10px); z-index: 2000; display: flex; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease; }
.modal-backdrop.show { opacity: 1; }
.modal-content { background: var(--background-light); padding: 40px; border-radius: var(--border-radius-lg); border: 1px solid var(--border-color); width: 90%; max-width: 500px; position: relative; box-shadow: var(--shadow); transform: translateY(20px); transition: transform 0.3s ease; }
.modal-backdrop.show .modal-content { transform: translateY(0); }
.modal-close-btn { position: absolute; top: 15px; right: 15px; background: none; border: none; color: var(--text-secondary); font-size: 1.8rem; cursor: pointer; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.modal-close-btn:hover { color: var(--primary-blue); background: var(--background-blue-tint); transform: rotate(90deg); }
.modal-content h3 { color: var(--text-white); text-align: center; font-size: 1.8rem; margin-bottom: 30px; font-weight: 700; }
.modal-content form { display: flex; flex-direction: column; gap: 20px; }
.modal-content form p { margin: 0; }
.modal-content form label { display: block; margin-bottom: 8px; color: var(--text-light); font-weight: 600; font-size: 0.9rem; }
.modal-content form input { width: 100%; padding: 15px; background: var(--background-dark); border: 1px solid var(--border-color); border-radius: var(--border-radius); color: var(--text-white); font-family: 'Inter', sans-serif; transition: all 0.3s ease; font-size: 1rem; }
.modal-content form input:focus { outline: none; border-color: var(--primary-blue); box-shadow: 0 0 0 3px var(--soft-glow); }
.modal-content form button[type="submit"] { background: var(--primary-blue); color: var(--text-white); border: none; padding: 15px; border-radius: var(--border-radius); font-weight: 600; font-size: 1.1rem; cursor: pointer; transition: all 0.3s ease; margin-top: 10px; }
.modal-content form button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--primary-glow); background-color: var(--primary-blue-dark); }
.modal-content .success-message { text-align: center; padding: 40px 20px; }
.modal-content .success-message h3 { color: var(--primary-blue); margin-bottom: 15px; }
.modal-content .success-message p { color: var(--text-light); line-height: 1.6; }

/* --- ANIMATIONS & MAP STYLES --- */
.route-line-new { fill: none; stroke: var(--primary-blue); stroke-width: 2; stroke-dasharray: 1000; stroke-dashoffset: 1000; filter: drop-shadow(0 0 12px var(--primary-blue)); animation: draw-line-new 1.5s 0.2s forwards ease-in-out; }
@keyframes draw-line-new { to { stroke-dashoffset: 0; } }
.hub-start { fill: var(--text-white); opacity: 0; animation: fadeInAnimation 0.5s forwards; animation-delay: 0.1s; }
.route-label { font-family: 'Inter', sans-serif; font-size: 14px; fill: var(--text-white); font-weight: 600; text-anchor: middle; paint-order: stroke; stroke: var(--background-dark); stroke-width: 3px; opacity: 0; animation: fadeInAnimation 0.5s forwards; animation-delay: 0.1s; pointer-events: none; }
.fade-out { animation: fade-out-route 1s forwards; animation-delay: 0.5s; }
@keyframes fade-out-route { to { opacity: 0; } }
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeInAnimation 0.8s ease-out forwards; }
.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }
@keyframes fadeInAnimation { to { opacity: 1; transform: translateY(0); } }
.scroll-fade { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.scroll-fade.visible { opacity: 1; transform: translateY(0); }
.timeline-item-new { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.timeline-item-new.visible { opacity: 1; transform: translateX(0); }
/* --- NEW: STAGGERED DELAYS FOR TIMELINE ITEMS --- */
.timeline-item-new:nth-child(1) { transition-delay: 0.4s; }
.timeline-item-new:nth-child(2) { transition-delay: 0.6s; }
.timeline-item-new:nth-child(3) { transition-delay: 0.8s; }
.timeline-item-new:nth-child(4) { transition-delay: 1.0s; }
.timeline-item-new:nth-child(5) { transition-delay: 1.2s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1200px) {
    main, footer { margin-left: 0; width: 100%; }
    header { transform: translateX(-100%); width: 280px; }
    header.mobile-open { transform: translateX(0); }
    .mobile-menu-btn { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 15px; position: fixed; top: 20px; left: 20px; z-index: 1001; background: rgba(17, 34, 64, 0.8); border-radius: var(--border-radius); backdrop-filter: blur(10px); }
    .mobile-menu-btn span { width: 25px; height: 3px; background: var(--primary-blue); border-radius: 2px; transition: all 0.3s ease; }
    .mobile-overlay { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
    .mobile-overlay.active { opacity: 1; visibility: visible; }
}

@media (max-width: 992px) {
    .section-title { font-size: 2.4rem; }
    .hero h1 { font-size: 3rem; }
    .author-grid { grid-template-columns: 1fr; text-align: center; }
    .author-photo { margin: 0 auto 30px auto; }
    .author-bio h3 { text-align: center; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { align-items: center; }
    .footer-section h4::after { left: 50%; transform: translateX(-50%); }
    .map-container { display: none; }
    .course-feature-layout { grid-template-columns: 1fr; }
    .course-image-wrapper { display: none;}
    .course-enroll-card-new { padding: 30px; }
    .course-enroll-card-new .card-header { text-align: center; }
}

@media (max-width: 768px) {
    .hero { align-items: center; text-align: center; }
    .hero-content { flex-direction: column; }
    .hero-stats { margin-top: 50px; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .hero-stats { flex-direction: column; gap: 40px; }
    .timeline-new { margin-left: -10px; }
    .modal-content { padding: 30px 20px; margin: 20px; width: calc(100% - 40px); }
}

@media (max-width: 480px) {
    body { line-height: 1.5; }
    .section-title { font-size: 2rem; margin-bottom: 40px; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .stat-number { font-size: 2rem; }
}