/* ==========================================
   3RD EYE BEAUTIFUL - MASTER STYLESHEET
   ========================================== */

/* CSS Variables */
:root {
    --primary: #7c3aed;
    --primary-light: #a855f7;
    --primary-dark: #5b21b6;
    --secondary: #ec4899;
    --accent: #f59e0b;
    --gold: #d4af37;
    --dark: #0f0a1e;
    --dark-2: #1a1030;
    --dark-3: #251840;
    --light: #faf5ff;
    --text-light: rgba(255,255,255,0.9);
    --text-muted: rgba(255,255,255,0.6);
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    --gradient-cosmic: linear-gradient(135deg, #0f0a1e 0%, #251840 50%, #1a1030 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f59e0b 100%);
    --font-heading: 'Cinzel Decorative', serif;
    --font-body: 'Raleway', sans-serif;
    --font-italic: 'Cormorant Garamond', serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
    --shadow-lg: 0 25px 60px rgba(124, 58, 237, 0.4);
    --border-radius: 16px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(15, 10, 30, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.3);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: white;
    letter-spacing: 0.05em;
}
.eye-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.8));
    animation: eyePulse 3s ease-in-out infinite;
}
@keyframes eyePulse {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6)); }
    50% { filter: drop-shadow(0 0 20px rgba(168, 85, 247, 1)) drop-shadow(0 0 40px rgba(236, 72, 153, 0.6)); }
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: white; }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-cta {
    background: var(--gradient-primary) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: white !important;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-cosmic);
    padding: 8rem 2rem 4rem;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: floatParticle linear infinite;
}
@keyframes floatParticle {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    flex: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.4);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-title-line { display: block; }
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
    font-family: var(--font-italic);
    font-style: italic;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    letter-spacing: 0.03em;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}
.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}
.hero-visual {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mandala-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mandala-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: rotateMandala linear infinite;
}
.ring-1 {
    width: 380px;
    height: 380px;
    border-color: rgba(124, 58, 237, 0.3);
    background: transparent;
    animation-duration: 20s;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2), inset 0 0 30px rgba(124, 58, 237, 0.1);
}
.ring-2 {
    width: 280px;
    height: 280px;
    border-color: rgba(236, 72, 153, 0.4);
    animation-duration: 15s;
    animation-direction: reverse;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}
.ring-3 {
    width: 180px;
    height: 180px;
    border-color: rgba(212, 175, 55, 0.5);
    animation-duration: 10s;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
@keyframes rotateMandala {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.mandala-center {
    position: relative;
    z-index: 10;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.8), rgba(236, 72, 153, 0.6));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.8), 0 0 100px rgba(236, 72, 153, 0.4);
    animation: centerPulse 3s ease-in-out infinite;
}
@keyframes centerPulse {
    0%, 100% { box-shadow: 0 0 50px rgba(124, 58, 237, 0.8), 0 0 100px rgba(236, 72, 153, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 80px rgba(124, 58, 237, 1), 0 0 150px rgba(236, 72, 153, 0.7); transform: scale(1.05); }
}
.third-eye-symbol { font-size: 3rem; }
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
}
@keyframes bounce {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(-10px) translateX(-50%); }
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}
.section-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--primary-light);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-family: var(--font-italic);
    font-style: italic;
}
.section-header.light h2 { -webkit-text-fill-color: white; background: none; }
.section-header.light p { color: rgba(255,255,255,0.7); }

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
    padding: 8rem 0;
    background: var(--dark-2);
    position: relative;
}
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), transparent);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}
.feature-card.featured {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(236, 72, 153, 0.1));
    border-color: rgba(124, 58, 237, 0.3);
}
.feature-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.feature-icon { font-size: 3rem; margin-bottom: 1.5rem; display: block; }
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.feature-card.animate-in { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }

/* ==========================================
   COURSES PREVIEW
   ========================================== */
.courses-preview {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
}
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.course-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(124, 58, 237, 0.3); }
.course-card.animate-in { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}
.course-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.course-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}
.course-icon { font-size: 4rem; position: relative; z-index: 1; }
.course-content { padding: 1.8rem; }
.course-level {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 0.7rem;
}
.course-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: white;
    line-height: 1.4;
}
.course-content p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.2rem; }
.course-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.course-meta i { color: var(--primary-light); margin-right: 0.4rem; }
.course-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}
.course-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5); }
.courses-cta { text-align: center; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    backdrop-filter: blur(10px);
}
.testimonial-card:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-5px);
}
.testimonial-card.animate-in { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.quote-icon {
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}
.testimonial-card > p {
    color: rgba(255,255,255,0.8);
    font-family: var(--font-italic);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; color: white; }
.testimonial-author span { font-size: 0.85rem; color: var(--text-muted); }

/* ==========================================
   NEWSLETTER
   ========================================== */
.newsletter {
    padding: 6rem 0;
    background: var(--dark-2);
    position: relative;
}
.newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
}
.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.newsletter-icon { font-size: 3.5rem; margin-bottom: 1rem; display: block; }
.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}
.newsletter-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-family: var(--font-italic);
    font-style: italic;
}
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}
.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--primary); background: rgba(124, 58, 237, 0.1); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: none;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.newsletter-features span { color: rgba(168, 85, 247, 0.9); }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 5rem 0 2rem;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: white;
    margin-bottom: 1.2rem;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-family: var(--font-italic);
    font-style: italic;
}
.social-links { display: flex; gap: 1rem; }
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 1rem;
}
.social-links a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}
.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--primary-light); padding-left: 5px; }
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================
   PAGE HERO (for inner pages)
   ========================================== */
.page-hero {
    padding: 10rem 2rem 6rem;
    background: var(--gradient-cosmic);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-family: var(--font-italic);
    font-style: italic;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
    .hero { flex-direction: column; text-align: center; padding-top: 10rem; }
    .hero-content { max-width: 100%; }
    .hero-subtitle { margin: 0 auto 2.5rem; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { margin-top: 4rem; }
    .mandala-container { width: 300px; height: 300px; }
    .ring-1 { width: 280px; height: 280px; }
    .ring-2 { width: 210px; height: 210px; }
    .ring-3 { width: 140px; height: 140px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: rgba(15, 10, 30, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(124, 58, 237, 0.3);
    }
    .nav-menu.active { right: 0; }
    .hamburger { display: flex; }
    .features-grid, .courses-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { border-radius: 50px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .stat-divider { width: 60px; height: 1px; }
}