.promotions-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.promo-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.promo-title { color: var(--primary-purple); font-size: 2rem; margin-bottom: 1rem; }
.promo-price { color: var(--gold); font-size: 2.6rem; font-weight: 800; margin-bottom: 1.5rem; }
.promo-features { list-style: none; padding: 0; margin: 0 0 1.5rem 0; }
.promo-features li { margin: 0.6rem 0; }
.promo-card .popular-badge { position: absolute; transform: translateY(-50%); background: var(--accent-red); color: #fff; padding: 6px 10px; border-radius: 8px; font-size: 0.8rem; }

@media (max-width: 992px) {
    .promotions-list { grid-template-columns: 1fr; }
}
/* ===== VARIABLES ===== */
:root {
    --primary-purple: #00BCD4;
    --gold: #D4AF37;
    --light-beige: #F5F3EF;
    --ivory: #FFFFF0;
    --accent-red: #DC143C;
    --dark-text: #2C2C2C;
    --light-text: #666666;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-beige);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

/* ===== STICKY NAVIGATION ===== */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 188, 212, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1001;
    transition: transform 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.footer-logo .site-logo-img {
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-symbol {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: bold;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Caveat', cursive;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

#priceListBtn {
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

#priceListBtn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* Telegram button in nav */
.nav-telegram {
    background: linear-gradient(135deg, #0088cc, #00a8e6) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
    transition: all 0.3s ease !important;
}

.nav-telegram:hover {
    background: linear-gradient(135deg, #006699, #0088cc) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
    color: var(--white) !important;
}

/* CTA button in nav */
.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: #c4941f !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #00ACC1 50%, var(--gold) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '缘分';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25rem;
    opacity: 0.05;
    color: var(--white);
    z-index: 0;
    font-weight: bold;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Caveat', cursive;
    font-size: 4rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
}

.timer-block {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 600px;
}

.timer-label {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.timer-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
}

/* ===== BUTTONS ===== */
.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary {
    background: var(--accent-red);
    color: var(--white);
}

.cta-primary:hover {
    background: #B22222;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.cta-secondary {
    background: var(--white);
    color: var(--primary-purple);
}

.cta-secondary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.center-button {
    text-align: center;
    margin-top: 3rem;
}

/* ===== WHY US ===== */
.why-us {
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--light-beige);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

/* ===== CHOOSE DIRECTION ===== */
.choose-direction {
    background: var(--ivory);
}

.age-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.age-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 1.5rem 2rem;
    background: var(--white);
    border: 3px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
}

.age-btn:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.age-btn.active {
    background: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

.age-icon {
    font-size: 2.5rem;
}

.courses-display {
    margin-top: 3rem;
    min-height: 300px;
}

.course-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.course-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.course-info h3 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.course-info p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

/* ===== PROGRAMS ===== */
.programs {
    background: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.program-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-flag {
    font-size: 5rem;
}

.program-content {
    padding: 2rem;
}

.program-content h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.program-content p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--ivory);
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 200px;
    box-shadow: 0 4px 15px var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-content h3 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--gold);
    font-weight: bold;
}

/* ===== REVIEWS ===== */
.reviews {
    background: var(--white);
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--light-beige);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px var(--shadow);
}

.stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--dark-text);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.author-name {
    font-weight: 600;
    color: var(--dark-text);
}

.author-meta {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* ===== LEAD MAGNET ===== */
.lead-magnet {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #00ACC1 100%);
    color: var(--white);
}

.lead-magnet-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.lead-magnet-image {
    flex-shrink: 0;
    text-align: center;
}

.pdf-icon {
    font-size: 8rem;
    margin-bottom: 1rem;
}

.pdf-label {
    font-size: 1.2rem;
    font-weight: 600;
}

.lead-magnet-text h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.lead-magnet-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.lead-form {
    display: flex;
    gap: 1rem;
}

.lead-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

/* ===== PRICING ===== */
.pricing {
    background: var(--ivory);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.price-card.featured {
    border: 3px solid var(--gold);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-header h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--light-beige);
    color: var(--dark-text);
}

.promo-banner {
    background: var(--accent-red);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    text-align: center;
}

/* ===== PRICE LIST BUTTON ===== */
.price-list-button-container {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 20px;
}

.price-list-button-container .cta-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(220, 20, 60, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(220, 20, 60, 0.4);
    }
}

.promo-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.countdown-timer.small .timer-value {
    font-size: 2rem;
}

.countdown-timer.small .timer-text {
    font-size: 0.8rem;
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
}

.about-photo {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--gold) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.about-mission {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
}

.stat-label {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* ===== CONTACT FORM ===== */
.contact {
    background: var(--ivory);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select {
    padding: 1rem 1.5rem;
    border: 2px solid var(--light-beige);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.contact-form select {
    width: 100%;
    margin-bottom: 1.5rem;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--light-text);
}

.form-note a {
    color: var(--primary-purple);
    text-decoration: none;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 1.5rem 0;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--dark-text);
}

.lead-magnet .checkbox-label {
    color: var(--white);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-purple);
    flex-shrink: 0;
}

.checkbox-label span {
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--primary-purple);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.lead-magnet .checkbox-label a {
    color: var(--gold);
}

.checkbox-label a:hover {
    color: var(--gold);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-purple);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent-red);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(220, 20, 60, 0.6);
}

/* ===== BACKGROUND ANIMATION ===== */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    pointer-events: none;
}

/* Flying Letters */
.letter {
    font-size: 5rem;
    font-weight: 900;
    opacity: 0.18;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

/* Hero Section Letters */
.letter-hero-1 { top: 15%; left: 10%; color: #FF6B6B; animation: floatSlow 60s infinite ease-in-out; }
.letter-hero-2 { top: 70%; right: 15%; color: #4ECDC4; animation: floatSlow 65s infinite ease-in-out; }

/* Why Us Section Letters */
.letter-why-1 { top: 20%; left: 85%; color: #FFE66D; animation: floatSlow 55s infinite ease-in-out; }
.letter-why-2 { top: 65%; left: 5%; color: #95E1D3; animation: floatSlow 70s infinite ease-in-out; }

/* Direction Section Letters */
.letter-dir-1 { top: 25%; right: 10%; color: #F38181; animation: floatSlow 58s infinite ease-in-out; }
.letter-dir-2 { top: 75%; left: 12%; color: #AA96DA; animation: floatSlow 62s infinite ease-in-out; }

/* Programs Section Letters */
.letter-prog-1 { top: 15%; right: 20%; color: #FCBAD3; animation: floatSlow 68s infinite ease-in-out; }
.letter-prog-2 { top: 80%; left: 20%; color: #FFFFD2; animation: floatSlow 52s infinite ease-in-out; }

/* Reviews Section Letters */
.letter-rev-1 { top: 50%; right: 10%; color: #A8D8EA; animation: floatSlow 72s infinite ease-in-out; }

/* Speech Bubbles */
.speech-bubble {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 8px 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.20;
    position: relative;
}

/* Убираем хвостики */
.speech-bubble::after {
    display: none;
}

/* Hero Bubbles */
.bubble-hero-1 { top: 25%; left: 75%; animation: floatSlow 50s infinite ease-in-out; }
.bubble-hero-1 span { color: #FF6B6B; }

.bubble-hero-2 { top: 60%; right: 8%; animation: floatSlow 55s infinite ease-in-out; }
.bubble-hero-2 span { color: #4ECDC4; }

/* Direction Bubble */
.bubble-dir-1 { top: 50%; left: 85%; animation: floatSlow 60s infinite ease-in-out; }
.bubble-dir-1 span { color: #F38181; }

/* Programs Bubble */
.bubble-prog-1 { top: 40%; left: 8%; animation: floatSlow 52s infinite ease-in-out; }
.bubble-prog-1 span { color: #FFE66D; }

/* Reviews Bubbles */
.bubble-rev-1 { top: 20%; left: 10%; animation: floatSlow 58s infinite ease-in-out; }
.bubble-rev-1 span { color: #AA96DA; }

.bubble-rev-2 { top: 70%; right: 15%; animation: floatSlow 62s infinite ease-in-out; }
.bubble-rev-2 span { color: #95E1D3; }

/* Paper Airplanes */
.paper-plane {
    font-size: 3rem;
    opacity: 0.15;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.1));
}

/* Hero Plane */
.plane-hero-1 { 
    top: 40%; 
    right: 35%; 
    animation: floatSlow 80s infinite linear;
    transform: rotate(-45deg);
}

/* Direction Plane */
.plane-dir-1 { 
    top: 15%; 
    left: 30%; 
    animation: floatSlow 85s infinite linear;
    transform: rotate(45deg);
}

/* Pricing Planes */
.plane-price-1 { 
    top: 25%; 
    right: 10%; 
    animation: floatSlow 75s infinite linear;
    transform: rotate(-30deg);
}

.plane-price-2 { 
    top: 75%; 
    left: 15%; 
    animation: floatSlow 90s infinite linear;
    transform: rotate(60deg);
}

/* Globes, Books, Stars */
.globe, .book, .star {
    font-size: 3rem;
    opacity: 0.18;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.1));
}

/* Why Us Globes & Books */
.globe-why-1 { top: 40%; right: 10%; animation: rotateSlow 80s infinite linear; }
.book-why-1 { top: 80%; right: 20%; animation: floatSlow 65s infinite ease-in-out; }

/* Programs Globes & Books */
.globe-prog-1 { top: 55%; left: 75%; animation: rotateSlow 90s infinite linear reverse; }
.book-prog-1 { top: 25%; left: 10%; animation: floatSlow 70s infinite ease-in-out; }

/* Pricing Globe */
.globe-price-1 { top: 60%; right: 30%; animation: rotateSlow 75s infinite linear; }

/* Hero Stars */
.star-hero-1 { top: 30%; left: 40%; animation: twinkleSlow 8s infinite ease-in-out; }
.star-hero-2 { top: 80%; right: 25%; animation: twinkleSlow 10s infinite ease-in-out 2s; }

/* Direction Star */
.star-dir-1 { top: 65%; right: 20%; animation: twinkleSlow 9s infinite ease-in-out 4s; }

/* Reviews Stars */
.star-rev-1 { top: 35%; left: 80%; animation: twinkleSlow 8s infinite ease-in-out 1s; }
.star-rev-2 { top: 85%; left: 20%; animation: twinkleSlow 10s infinite ease-in-out 3s; }

/* Pricing Star */
.star-price-1 { top: 45%; left: 10%; animation: twinkleSlow 9s infinite ease-in-out 2s; }

/* Animations */
@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(40px, -40px) rotate(8deg);
    }
    50% {
        transform: translate(-30px, -80px) rotate(-8deg);
    }
    75% {
        transform: translate(-40px, -40px) rotate(5deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-50px, 50px) rotate(-10deg);
    }
    50% {
        transform: translate(30px, 100px) rotate(10deg);
    }
    75% {
        transform: translate(50px, 50px) rotate(-5deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(60px, 40px) scale(1.15) rotate(10deg);
    }
    66% {
        transform: translate(-40px, 80px) scale(0.85) rotate(-10deg);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(50px, -50px) rotate(180deg) scale(1.25);
    }
}

/* Медленное плавное движение */
@keyframes floatSlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(15px, -15px);
    }
    50% {
        transform: translate(-10px, -30px);
    }
    75% {
        transform: translate(-15px, -15px);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes twinkleSlow {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.1);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Reduce background animations on mobile */
    .letter {
        font-size: 3rem;
        opacity: 0.15;
    }
    
    .speech-bubble {
        font-size: 0.8rem;
        padding: 8px 12px;
        opacity: 0.18;
    }
    
    .paper-plane, .globe, .book, .star {
        font-size: 2rem;
        opacity: 0.15;
    }
    
    /* Hide some elements on mobile for performance */
    .letter-6, .letter-7, .letter-9, .letter-10,
    .bubble-5, .bubble-6,
    .plane-3, .plane-4,
    .globe-3, .book-2, .star-3 {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 188, 212, 0.98);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px var(--shadow);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .timer-value {
        font-size: 2rem;
    }

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

    .steps-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .reviews-slider {
        grid-template-columns: 1fr;
    }

    .lead-magnet-content {
        flex-direction: column;
        text-align: center;
    }

    .lead-form {
        flex-direction: column;
    }

    .lead-form input,
    .lead-form button {
        width: 100%;
    }

    .about-content {
        flex-direction: column;
    }

    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .social-links {
        align-items: center;
    }

    .course-card {
        flex-direction: column;
        text-align: center;
    }

    .age-selector {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .timer-block {
        padding: 1rem;
    }

    .timer-value {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .floating-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        bottom: 15px;
        right: 15px;
    }
}

