@font-face {
    font-family: "Space Grotesk";
    src: url("../fonts/SpaceGrotesk.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Playfair Display";
    src: url("../fonts/PlayfairDisplay.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Playfair Display";
    src: url("../fonts/PlayfairDisplay-Italic.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

img {
    max-width: 100%;
}

:root {
    --primary: #FF4D6D;
    --secondary: #7209B7;
    --accent: #F72585;
    --dark: #1A1A2E;
    --light: #F8F9FA;
    --gradient-main: linear-gradient(135deg, #FF4D6D 0%, #7209B7 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Space Grotesk', sans-serif;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: clip;
}

main {
    flex: 1 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.ad-notice {
    background: var(--dark);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-section {
    margin-top: 80px;
    background: var(--gradient-dark);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-grid > * {
    min-width: 0;
    max-width: 100%;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 109, 0.4);
}

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 500px;
    box-shadow: var(--shadow);
}

.floating-card {
    position: absolute;
    background: white;
    color: var(--dark);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    left: -20px;
}

.card-2 {
    bottom: 40px;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-tag {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark);
}

.benefits-section {
    padding: 80px 0;
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.interactive-showcase {
    padding: 80px 0;
    background: #f0f2f5;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}

.showcase-img-box {
    width: 100%;
    height: 100%;
    position: relative;
}

.showcase-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.showcase-item:hover .showcase-img-box img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: white;
}

.curriculum-section {
    padding: 80px 0;
}

.curriculum-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.curriculum-layout > *,
.split-layout > *,
.testimonials-grid > *,
.benefits-grid > *,
.pricing-grid > *,
.results-grid > *,
.emoji-grid > * {
    min-width: 0;
    max-width: 100%;
}

.curriculum-list {
    list-style: none;
    margin-top: 30px;
}

.curriculum-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.curriculum-list i {
    color: var(--primary);
}

.curriculum-visual {
    position: relative;
}

.curriculum-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.visual-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow);
}

.instructor-section {
    padding: 40px 0 80px;
}

.instructor-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
    box-shadow: var(--shadow);
}

.instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-content {
    padding: 50px;
}

.instructor-role {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
}

.instructor-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonials-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: white;
}

.testimonials-section h2 {
    color: white;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.t-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.results-section {
    padding: 80px 0;
}

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

.result-item {
    text-align: center;
    padding: 40px;
    border: 2px solid #eee;
    border-radius: 20px;
    transition: all 0.3s;
}

.result-item:hover {
    border-color: var(--primary);
    background: #fff5f7;
}

.result-item i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.price-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.price-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.price-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li.disabled {
    color: #ccc;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--dark);
    color: white;
}

.faq-contact-section {
    padding: 80px 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.lead-form .form-group {
    margin-bottom: 20px;
}

.lead-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.lead-form input {
    width: 100%;
    max-width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.full-width {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 15px;
    color: #666;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.site-footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo span {
    color: white;
}

.footer-info p, .footer-disclaimer p {
    opacity: 0.8;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
}

.modal-form input {
    width: 100%;
    max-width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .hero-grid, .curriculum-layout, .split-layout, .instructor-card {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid, .testimonials-grid, .pricing-grid, .results-grid, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .benefits-grid, .testimonials-grid, .pricing-grid, .results-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
}
.thanks-page {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.thanks-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    min-height: calc(100vh - 80px - 280px);
    padding-top: 150px;
}

.thanks-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.thanks-decor-1 {
    width: 400px;
    height: 400px;
    background: #FF4D6D;
    top: -100px;
    left: -100px;
    animation: floatDecor 8s ease-in-out infinite;
}

.thanks-decor-2 {
    width: 500px;
    height: 500px;
    background: #7209B7;
    bottom: -150px;
    right: -150px;
    animation: floatDecor 10s ease-in-out infinite reverse;
}

@keyframes floatDecor {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.thanks-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 60px 50px;
    max-width: 720px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    animation: cardAppear 0.8s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.thanks-logo {
    margin-bottom: 20px;
}


.thanks-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FF4D6D 0%, #7209B7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 15px 35px rgba(255, 77, 109, 0.4);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 15px 35px rgba(255, 77, 109, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 20px 45px rgba(255, 77, 109, 0.6); }
}

.thanks-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #1A1A2E;
    margin-bottom: 15px;
    line-height: 1.2;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #7209B7;
    margin-bottom: 35px;
    font-weight: 500;
}

.thanks-message {
    background: linear-gradient(135deg, #FFF5F7 0%, #F8F0FF 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 35px;
    border-left: 4px solid #FF4D6D;
    text-align: left;
}

.thanks-message p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #1A1A2E;
    margin-bottom: 15px;
}

.thanks-message p:last-child {
    margin-bottom: 0;
}

.highlight-name {
    font-weight: 700;
    color: #FF4D6D;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.highlight-email {
    font-weight: 600;
    color: #7209B7;
    word-break: break-all;
}

.thanks-next-steps {
    margin-bottom: 30px;
}

.thanks-next-steps h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1A1A2E;
    margin-bottom: 20px;
}

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

.step-item {
    background: white;
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF4D6D 0%, #7209B7 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 10px;
}

.step-item p {
    font-size: 0.95rem;
    color: #1A1A2E;
    font-weight: 500;
}

.thanks-footer-note {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.thanks-footer-note p {
    font-size: 1rem;
    color: #666;
}

.thanks-footer-note i {
    color: #FF4D6D;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .thanks-card {
        padding: 40px 25px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .thanks-message {
        padding: 20px;
    }
    
    .thanks-message p {
        font-size: 1.05rem;
    }
    
    .thanks-icon {
        width: 75px;
        height: 75px;
        font-size: 2.5rem;
    }
}
/* Interactive Gallery Section */
.interactive-gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-blocks-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.gallery-block {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.gallery-block-header {
    background: var(--gradient-main);
    color: white;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.gallery-block-header i {
    font-size: 2rem;
}

.gallery-block-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 0;
}

.gallery-slider {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark);
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.gallery-block-desc {
    padding: 35px;
    background: white;
}

.gallery-block-desc p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.gallery-block-desc p:last-child {
    margin-bottom: 0;
}

.gallery-block-desc strong {
    color: var(--accent);
}

/* Emoji Features Section */
.emoji-features-section {
    padding: 80px 0;
    background: white;
}

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

.emoji-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff5f7 0%, #f8f0ff 100%);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.emoji-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 77, 109, 0.2);
}

.emoji-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.emoji-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.emoji-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 992px) {
    .gallery-slider {
        height: 350px;
    }
    
    .emoji-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-slider {
        height: 300px;
    }
    
    .gallery-block-header {
        padding: 20px 25px;
    }
    
    .gallery-block-header h3 {
        font-size: 1.4rem;
    }
    
    .gallery-block-desc {
        padding: 25px;
    }
    
    .gallery-block-desc p {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .emoji-grid {
        grid-template-columns: 1fr;
    }
    
    .emoji-icon {
        font-size: 3rem;
    }
}
.site-footer {
            background: var(--dark);
            color: white;
            padding: 40px 0 20px;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 30px;
            align-items: start;
            margin-bottom: 30px;
        }
        .footer-brand .logo a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: white;
            font-weight: 700;
            font-size: 1.4rem;
            font-family: var(--font-heading);
        }
        .footer-brand .logo img {
            margin-right: 10px;
        }
        .footer-brand p {
            opacity: 0.7;
            font-size: 0.95rem;
            margin-top: 8px;
            line-height: 1.5;
        }
        .footer-links h4,
        .footer-info h4 {
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 14px;
            opacity: 0.9;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links ul li {
            margin-bottom: 8px;
        }
        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .footer-links ul li a:hover {
            color: var(--primary);
        }
        .footer-info p {
            opacity: 0.7;
            font-size: 0.9rem;
            margin-bottom: 4px;
            line-height: 1.5;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 18px;
            text-align: center;
            font-size: 0.85rem;
            opacity: 0.6;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                text-align: center;
            }
            .footer-brand .logo a {
                justify-content: center;
            }
            .footer-links ul {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px 20px;
            }
            .footer-links ul li {
                margin-bottom: 0;
            }
        }
        @media (max-width: 480px) {
            .footer-links ul {
                flex-direction: column;
                gap: 6px;
            }
        }

[data-aos="fade-right"]:not(.aos-animate) {
    transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
    transform: translate3d(32px, 0, 0) !important;
}

[data-aos="zoom-in"]:not(.aos-animate) {
    transform: translate3d(0, 24px, 0) scale(0.95) !important;
}

.legal-page {
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.legal-main {
    flex: 1 0 auto;
    padding: 120px 20px 60px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px 60px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    word-break: break-word;
}

.legal-container h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.legal-container .update-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.legal-container b {
    color: var(--dark);
}

@media (max-width: 768px) {
    .legal-main {
        padding-top: 160px;
    }

    .legal-container {
        padding: 30px 25px;
    }

    .legal-container h1 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .legal-main {
        padding-top: 180px;
    }
}

.btn-primary.full-width {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 900px) {
    [data-aos] {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }

    .hero-grid > *,
    .curriculum-layout > *,
    .split-layout > *,
    .testimonials-grid > * {
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .logo a {
        flex-direction: column;
    }

    .logo a span {
        word-break: break-all;
        min-width: 0;
        flex: 1;
    }

    .ad-notice {
        word-break: break-all;
    }

    .footer-col,
    .footer-info {
        word-break: break-all;
    }

    .hero-image-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .floating-card {
        position: static;
        max-width: 100%;
    }

    .curriculum-visual {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .visual-badge {
        position: static;
        max-width: 100%;
        align-self: flex-start;
    }

    .instructor-stats {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .benefits-section,
    .interactive-gallery-section,
    .emoji-features-section,
    .curriculum-section,
    .testimonials-section,
    .results-section,
    .pricing-section,
    .faq-contact-section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .price {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .modal-content,
    .lead-form,
    .contact-form-wrapper {
        padding: 20px 16px;
    }

    .thanks-card {
        padding: 32px 18px;
    }
}