:root {
    --primary: #00d4aa;
    --primary-dark: #00b894;
    --primary-light: #55efc4;
    --secondary: #2d3436;
    --accent: #fdcb6e;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #636e72;
    --gray-light: #b2bec3;
    --gray-dark: #2d3436;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; line-height: 1.6; color: var(--secondary); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.05); transition: var(--transition); }
.nav-container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.5px; }
.nav-menu { display: flex; gap: 2rem; }
.nav-link { font-size: 0.9rem; font-weight: 500; color: var(--gray-dark); position: relative; padding: 0.5rem 0; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 25px; height: 3px; background: var(--secondary); border-radius: 2px; transition: var(--transition); }
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* BUTTONS */
.btn { display: inline-block; padding: 0.875rem 2rem; font-size: 0.95rem; font-weight: 600; border-radius: 50px; cursor: pointer; transition: var(--transition); border: none; text-align: center; }
.btn-primary { background: var(--gradient); color: var(--white); box-shadow: 0 4px 15px rgba(0,212,170,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,212,170,0.4); }
.btn-secondary { background: transparent; color: var(--secondary); border: 2px solid var(--secondary); }
.btn-secondary:hover { background: var(--secondary); color: var(--white); }
.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 2rem 60px; background: linear-gradient(135deg, #f8f9fa 0%, #e8f5f0 50%, #d4edda 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 150%; background: radial-gradient(circle, rgba(0,212,170,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-content { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; color: var(--darker); margin-bottom: 1.5rem; }
.hero h1 .accent { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.15rem; color: var(--gray); margin-bottom: 2rem; max-width: 500px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; }

/* DEVICE SHOWCASE */
.device-showcase { position: relative; width: 300px; height: 300px; }
.device-showcase.large { width: 400px; height: 400px; }
.device-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120px; height: 120px; background: var(--gradient); border-radius: 50%; box-shadow: 0 10px 40px rgba(0,212,170,0.3); z-index: 2; }
.device-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 2px solid rgba(0,212,170,0.2); border-radius: 50%; animation: pulse-ring 3s ease-out infinite; }
.ring-1 { width: 180px; height: 180px; animation-delay: 0s; }
.ring-2 { width: 240px; height: 240px; animation-delay: 1s; }
.ring-3 { width: 300px; height: 300px; animation-delay: 2s; }
@keyframes pulse-ring { 0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; } 100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; } }

/* SECTIONS */
.section { padding: 100px 0; }
.section-light { background: var(--white); }
.section-dark { background: var(--dark); color: var(--white); }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; text-align: center; margin-bottom: 3rem; color: var(--darker); }
.section-title.light { color: var(--white); }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card { text-align: center; padding: 2.5rem 2rem; background: var(--light); border-radius: var(--radius-lg); transition: var(--transition); }
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-number { font-size: 3rem; font-weight: 800; color: var(--primary); opacity: 0.3; margin-bottom: 1rem; }
.step-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; color: var(--darker); }
.step-card p { color: var(--gray); font-size: 0.95rem; }

/* BENEFITS */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.benefit-card { padding: 2.5rem; background: rgba(255,255,255,0.05); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.benefit-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.benefit-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--white); }
.benefit-card p { color: var(--gray-light); font-size: 0.95rem; }

/* VIDEO */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.video-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.video-placeholder { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); cursor: pointer; transition: var(--transition); position: relative; }
.video-placeholder:hover { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%); }
.play-button { width: 60px; height: 60px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; box-shadow: 0 4px 20px rgba(0,212,170,0.4); }

/* CTA */
.cta-section { background: var(--gradient); color: var(--white); text-align: center; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-subtitle { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-secondary { border-color: var(--white); color: var(--white); }
.cta-section .btn-secondary:hover { background: var(--white); color: var(--primary-dark); }

/* FOOTER */
.footer { background: var(--darker); color: var(--white); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--primary); }
.footer-brand p { color: var(--gray-light); font-size: 0.9rem; }
.footer-links h4, .footer-social h4 { font-size: 1rem; margin-bottom: 1rem; color: var(--white); }
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--gray-light); font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary); }
.social-links { display: flex; gap: 1rem; }
.social-links a { color: var(--gray-light); font-size: 0.9rem; }
.social-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; color: var(--gray); font-size: 0.85rem; }

/* PAGE HERO */
.page-hero { padding: 140px 2rem 80px; text-align: center; background: linear-gradient(135deg, var(--light) 0%, #e8f5f0 100%); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--darker); margin-bottom: 0.5rem; }
.page-subtitle { font-size: 1.1rem; color: var(--gray); }

/* PRODUCT PAGE */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.product-gallery { position: sticky; top: 100px; }
.product-main-image { background: linear-gradient(135deg, var(--light) 0%, #e8f5f0 100%); border-radius: var(--radius-lg); padding: 3rem; display: flex; justify-content: center; align-items: center; min-height: 400px; }
.product-thumbs { display: flex; gap: 1rem; margin-top: 1rem; }
.thumb { flex: 1; padding: 1rem; background: var(--light); border-radius: var(--radius); text-align: center; font-size: 0.85rem; color: var(--gray); cursor: pointer; transition: var(--transition); border: 2px solid transparent; }
.thumb.active, .thumb:hover { border-color: var(--primary); color: var(--primary-dark); }
.product-info h2 { font-size: 2rem; margin-bottom: 0.5rem; color: var(--darker); }
.product-price { font-size: 2.5rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 0.5rem; }
.product-rating { color: var(--accent); font-size: 1.1rem; margin-bottom: 1.5rem; }
.product-rating span { color: var(--gray); font-size: 0.9rem; }
.product-description { color: var(--gray); margin-bottom: 1.5rem; line-height: 1.7; }
.product-features { margin-bottom: 2rem; }
.product-features li { padding: 0.5rem 0; color: var(--gray-dark); font-size: 0.95rem; }
.stripe-buy-button-container { margin-top: 1.5rem; }
.stripe-placeholder { background: var(--light); border: 2px dashed var(--gray-light); border-radius: var(--radius); padding: 2rem; text-align: center; color: var(--gray); }
.stripe-placeholder.small { padding: 1rem; }
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.spec-card { padding: 1.5rem; background: rgba(255,255,255,0.05); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); }
.spec-card h4 { font-size: 0.85rem; color: var(--gray-light); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.spec-card p { font-size: 1.1rem; color: var(--white); }
.includes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.include-item { text-align: center; padding: 2rem; }
.include-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.include-item h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--darker); }
.include-item p { color: var(--gray); font-size: 0.9rem; }

/* COACHING */
.coaching-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.coaching-text h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--darker); }
.coaching-text p { color: var(--gray); margin-bottom: 1rem; line-height: 1.7; }
.coaching-visual { position: relative; width: 300px; height: 300px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.brain-icon { font-size: 5rem; z-index: 2; position: relative; }
.coaching-visual .pulse-ring { position: absolute; width: 200px; height: 200px; border: 2px solid rgba(0,212,170,0.3); border-radius: 50%; animation: pulse-ring 2s ease-out infinite; }
.coaching-visual .pulse-ring.delay-1 { animation-delay: 0.5s; }
.coaching-visual .pulse-ring.delay-2 { animation-delay: 1s; }

/* PACKAGES */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.package-card { background: rgba(255,255,255,0.05); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); overflow: hidden; transition: var(--transition); position: relative; }
.package-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.package-card.featured { border-color: var(--primary); transform: scale(1.05); }
.package-card.featured:hover { transform: scale(1.05) translateY(-5px); }
.package-badge { position: absolute; top: 0; right: 0; background: var(--primary); color: var(--white); padding: 0.5rem 1rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-bottom-left-radius: var(--radius); }
.package-header { padding: 2rem 2rem 1rem; text-align: center; }
.package-header h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--white); }
.package-price { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.package-body { padding: 0 2rem 2rem; }
.package-features { margin-bottom: 1.5rem; }
.package-features li { padding: 0.6rem 0; color: var(--gray-light); font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* EXPECT */
.expect-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.expect-card { text-align: center; padding: 2rem; }
.expect-step { width: 50px; height: 50px; background: var(--gradient); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; margin: 0 auto 1rem; }
.expect-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--darker); }
.expect-card p { color: var(--gray); font-size: 0.9rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-item h4 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--white); }
.faq-item p { color: var(--gray-light); font-size: 0.95rem; line-height: 1.6; }
.faq-item a { color: var(--primary); }

/* SCHOOLS */
.schools-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.schools-text h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--darker); }
.schools-text p { color: var(--gray); margin-bottom: 1rem; line-height: 1.7; }
.schools-stats { display: grid; gap: 1.5rem; }
.stat-card { background: var(--light); padding: 2rem; border-radius: var(--radius-lg); text-align: center; transition: var(--transition); }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 0.5rem; }
.stat-label { color: var(--gray); font-size: 0.9rem; }

.school-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.school-package { background: rgba(255,255,255,0.05); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); padding: 2rem; transition: var(--transition); position: relative; }
.school-package:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.school-package.featured { border-color: var(--primary); }
.school-package-header { margin-bottom: 1.5rem; }
.school-package-header h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--white); }
.school-package-desc { color: var(--gray-light); font-size: 0.9rem; }
.school-package-features { margin-bottom: 1.5rem; }
.school-package-features li { padding: 0.5rem 0; color: var(--gray-light); font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.school-package-price { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 1rem; }

.schools-process { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.process-step { text-align: center; max-width: 200px; padding: 1.5rem; }
.process-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--darker); }
.process-step p { color: var(--gray); font-size: 0.85rem; }
.process-arrow { font-size: 2rem; color: var(--primary); font-weight: 700; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: rgba(255,255,255,0.05); padding: 2rem; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); }
.testimonial-text { font-style: italic; color: var(--gray-light); margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-author strong { display: block; color: var(--white); margin-bottom: 0.25rem; }
.testimonial-author span { color: var(--gray); font-size: 0.85rem; }

/* ABOUT */
.story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.story-text h2 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--darker); }
.story-text p { color: var(--gray); margin-bottom: 1rem; line-height: 1.7; }
.origin-timeline { position: relative; padding-left: 2rem; }
.origin-timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--gradient); }
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-dot { position: absolute; left: -2rem; top: 0.25rem; width: 12px; height: 12px; background: var(--primary); border-radius: 50%; transform: translateX(-5px); }
.timeline-content h4 { font-size: 1.2rem; color: var(--primary-dark); margin-bottom: 0.25rem; }
.timeline-content p { color: var(--gray); font-size: 0.9rem; }

.mission-statement { font-size: 1.5rem; font-weight: 300; max-width: 700px; margin: 0 auto 3rem; line-height: 1.6; color: var(--gray-light); }
.mission-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
.value-card { text-align: center; padding: 2rem; }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h4 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--white); }
.value-card p { color: var(--gray-light); font-size: 0.9rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { text-align: center; padding: 2rem; background: var(--light); border-radius: var(--radius-lg); transition: var(--transition); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-avatar { width: 100px; height: 100px; margin: 0 auto 1rem; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.avatar-placeholder { font-size: 3rem; }
.team-card h3 { font-size: 1.2rem; margin-bottom: 0.25rem; color: var(--darker); }
.team-role { color: var(--primary-dark); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-bio { color: var(--gray); font-size: 0.9rem; }

.press-logos { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.press-logo { padding: 1rem 2rem; background: rgba(255,255,255,0.05); border-radius: var(--radius); color: var(--gray-light); font-weight: 600; border: 1px solid rgba(255,255,255,0.1); }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info-panel h2, .contact-form-panel h2 { font-size: 1.8rem; margin-bottom: 2rem; color: var(--darker); }
.contact-methods { margin-bottom: 3rem; }
.contact-method { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.5rem; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--light); border-radius: var(--radius); flex-shrink: 0; }
.contact-detail h4 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--darker); }
.contact-detail p { color: var(--gray); font-size: 0.9rem; }
.contact-social-cta h3 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--darker); }
.social-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-btn { padding: 0.6rem 1.2rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.social-btn.youtube { background: #ff0000; color: white; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-btn.tiktok { background: #000; color: white; }
.social-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

.contact-form { background: var(--light); padding: 2.5rem; border-radius: var(--radius-lg); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--darker); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.875rem 1rem; border: 2px solid #e0e0e0; border-radius: var(--radius); font-family: inherit; font-size: 0.95rem; transition: var(--transition); background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,212,170,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { margin-top: 1rem; font-size: 0.8rem; color: var(--gray); }

.faq-quick-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.faq-link { display: block; padding: 1.5rem; background: rgba(255,255,255,0.05); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.faq-link:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.faq-link h4 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.1rem; }
.faq-link p { color: var(--gray-light); font-size: 0.9rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual { order: -1; }
    .product-layout, .coaching-intro, .schools-intro, .story-layout, .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
    .product-gallery { position: static; }
    .steps-grid, .benefits-grid, .video-grid, .specs-grid, .includes-grid, .packages-grid, .expect-grid, .school-packages, .testimonials-grid, .team-grid, .faq-quick-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-menu { position: fixed; top: 70px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 2rem; gap: 1rem; box-shadow: var(--shadow); transform: translateY(-150%); transition: var(--transition); opacity: 0; }
    .nav-menu.active { transform: translateY(0); opacity: 1; }
    .steps-grid, .benefits-grid, .video-grid, .specs-grid, .includes-grid, .packages-grid, .expect-grid, .school-packages, .testimonials-grid, .team-grid, .mission-values, .faq-quick-links { grid-template-columns: 1fr; }
    .package-card.featured { transform: none; }
    .package-card.featured:hover { transform: translateY(-5px); }
    .schools-process { flex-direction: column; }
    .process-arrow { transform: rotate(90deg); }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .device-showcase, .device-showcase.large { width: 250px; height: 250px; }
    .section { padding: 60px 0; }
    .page-hero { padding: 120px 1.5rem 60px; }
}

@media (max-width: 480px) {
    .hero-buttons, .cta-buttons { flex-direction: column; }
    .btn { width: 100%; }
    .container { padding: 0 1rem; }
}
