/* ===== CSS Variables & Theme ===== */
:root {
    /* Dark Mystical Palette */
    --color-bg-primary: #0a0a0f;
    --color-bg-secondary: #0d0d1a;
    --color-bg-card: rgba(20, 20, 35, 0.8);
    
    /* Purple & Indigo */
    --color-purple: #7c3aed;
    --color-purple-light: #a78bfa;
    --color-purple-dark: #5b21b6;
    --color-indigo: #4f46e5;
    --color-indigo-light: #818cf8;
    
    /* Gold with metallic shine */
    --color-gold: #d4a574;
    --color-gold-light: #e8c9a0;
    --color-gold-dark: #b8956a;
    --color-gold-metallic: linear-gradient(135deg, #d4a574 0%, #f5d799 50%, #d4a574 100%);
    
    /* Deep Blue - Night Sky / Ocean */
    --color-deep-blue: #1e3a5f;
    --color-night-sky: #0f1729;
    --color-ocean-deep: #0a192f;
    
    /* Accent Colors */
    --color-lavender: #c4b5fd;
    --color-twilight: #312e81;
    
    /* Text Colors */
    --color-text-primary: #f8fafc;
    --color-text-secondary: #cbd5e1;
    --color-text-muted: #94a3b8;
    --color-text-gold: #f5d799;
    
    /* Typography */
    --font-heading: 'Cinzel Decorative', 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Effects */
    --glow-purple: 0 0 30px rgba(124, 58, 237, 0.5);
    --glow-gold: 0 0 30px rgba(212, 165, 116, 0.5);
    --glow-blue: 0 0 30px rgba(79, 70, 229, 0.5);
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}

@media (pointer: coarse) {
    html {
        scroll-behavior: smooth;
    }
    
    * {
        -webkit-overflow-scrolling: touch;
    }
}

:target {
    scroll-margin-top: 100px;
}

a {
    -webkit-tap-highlight-color: rgba(124, 58, 237, 0.3);
}

body {
    font-family: var(--font-body);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.7;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

@media (pointer: coarse) {
    body {
        -webkit-overflow-scrolling: touch;
    }
}

/* Background with stars */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(30, 58, 95, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse at 10% 90%, rgba(212, 165, 116, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 10%, rgba(124, 58, 237, 0.08) 0%, transparent 40%),
        var(--color-bg-primary);
    z-index: -2;
    pointer-events: none;
}

/* Subtle noise texture overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

/* Reduce background intensity on mobile */
@media (max-width: 768px) {
    body::before {
        opacity: 0.6;
    }
    
    body::after {
        opacity: 0.02;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    touch-action: manipulation;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-gold {
    background: var(--color-gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-purple {
    background: linear-gradient(135deg, var(--color-purple-light) 0%, var(--color-lavender) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-blue {
    background: linear-gradient(135deg, var(--color-indigo-light) 0%, var(--color-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Starfield Background ===== */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Reduce starfield on mobile */
@media (max-width: 768px) {
    .starfield {
        opacity: 0.3;
    }
    
    .star {
        opacity: 0.5 !important;
        animation: none !important;
    }
    
    .shooting-star {
        display: none;
    }
    
    /* Reduce heavy animations on mobile */
    .hypnotic-spiral,
    .concentric-circles,
    .hero-glow,
    .mystical-ring {
        animation: none !important;
    }
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes twinkle {
    0%, 100% { opacity: var(--min-opacity); transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Shooting stars */
.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, white, transparent);
    animation: shoot 3s ease-in-out infinite;
    opacity: 0;
}

@keyframes shoot {
    0% { transform: translateX(0) translateY(0); opacity: 0; }
    10% { opacity: 1; }
    30% { opacity: 0; }
    100% { transform: translateX(500px) translateY(300px); opacity: 0; }
}

/* ===== Hypnotic Spiral ===== */
.hypnotic-spiral {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.hypnotic-spiral::before,
.hypnotic-spiral::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--color-purple);
    border-radius: 50%;
}

.hypnotic-spiral::before {
    width: 100%;
    height: 100%;
    border-color: rgba(124, 58, 237, 0.3);
}

.hypnotic-spiral::after {
    width: 70%;
    height: 70%;
    border-color: rgba(212, 165, 116, 0.2);
    animation: rotate-reverse 15s linear infinite;
}

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

@keyframes rotate-reverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

/* Concentric circles */
.concentric-circles {
    position: absolute;
    width: 200px;
    height: 200px;
}

.concentric-circles span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    animation: pulse-circle 4s ease-in-out infinite;
}

.concentric-circles span:nth-child(1) { width: 50px; height: 50px; animation-delay: 0s; }
.concentric-circles span:nth-child(2) { width: 100px; height: 100px; animation-delay: 0.5s; }
.concentric-circles span:nth-child(3) { width: 150px; height: 150px; animation-delay: 1s; }
.concentric-circles span:nth-child(4) { width: 200px; height: 200px; animation-delay: 1.5s; }

@keyframes pulse-circle {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Reduce decorative elements on mobile */
@media (max-width: 768px) {
    .hypnotic-spiral {
        opacity: 0.05;
        width: 200px;
        height: 200px;
    }
    
    .concentric-circles {
        opacity: 0.05;
        width: 120px;
        height: 120px;
    }
    
    .concentric-circles span {
        border-color: rgba(124, 58, 237, 0.15);
    }
}

/* ===== Layout ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.section {
    padding: 100px 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-gold));
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    min-height: 70px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 50%, transparent 100%);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(124, 58, 237, 0.1);
    padding: 12px 0;
    min-height: 60px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
}

.logo i {
    font-size: 1.8rem;
    background: var(--color-gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: center;
    margin: 0 20px;
    padding: 0;
    list-style: none;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: 6px 0;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-gold), var(--color-purple));
    background-size: 200% 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-links a:hover {
    color: var(--color-gold);
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
}

.nav-links a:hover::before {
    width: 100%;
    background-position: 100% 0;
}

.nav-links a:hover::after {
    opacity: 1;
}

.nav-links a.active {
    color: var(--color-gold);
}

.nav-links a.active::before {
    width: 100%;
}

/* ===== Mobile Menu Toggle ===== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.mobile-only {
    display: none;
    width: 100%;
}

.mobile-only a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    width: 100%;
    justify-content: flex-start;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.nav-telegram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.5);
    border-radius: 8px;
    color: var(--color-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-telegram:hover {
    background: rgba(124, 58, 237, 0.4);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle-bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active .menu-toggle-bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 30% 0%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 70% 50%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
}

/* Mystical symbols pattern */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(79, 70, 229, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 60% 20%, rgba(212, 165, 116, 0.03) 0%, transparent 20%);
    background-size: 100% 100%;
}

.mist {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(212, 165, 116, 0.05) 0%, transparent 40%);
    animation: mist-flow 20s ease-in-out infinite;
    pointer-events: none;
    filter: blur(30px);
}

@keyframes mist-flow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(0, 4%) rotate(0deg); }
    75% { transform: translate(-2%, 2%) rotate(-1deg); }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 8s ease-in-out infinite;
}

.glow-1 {
    top: 15%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.5) 0%, transparent 70%);
    box-shadow: 0 0 100px rgba(124, 58, 237, 0.3);
}

.glow-2 {
    bottom: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.4) 0%, transparent 70%);
    box-shadow: 0 0 80px rgba(79, 70, 229, 0.3);
    animation-delay: -4s;
}

.glow-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 60%);
    box-shadow: 0 0 100px rgba(212, 165, 116, 0.15);
    animation-delay: -2s;
}

/* Additional accent glow */
.glow-4 {
    top: 30%;
    left: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.3) 0%, transparent 70%);
    animation-delay: -6s;
}

.glow-5 {
    bottom: 40%;
    right: 25%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.2) 0%, transparent 70%);
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* Mystical ring decoration */
.mystical-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    animation: rotate-slow 60s linear infinite;
    pointer-events: none;
}

.mystical-ring::before {
    content: '';
    position: absolute;
    inset: 50px;
    border: 1px solid rgba(212, 165, 116, 0.08);
    border-radius: 50%;
}

.mystical-ring::after {
    content: '';
    position: absolute;
    inset: 100px;
    border: 1px dashed rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    animation: rotate-reverse 40s linear infinite;
}

@keyframes rotate-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    animation: fadeInUp 1.2s ease;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(20, 20, 35, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid rgba(212, 165, 116, 0.4);
    margin-bottom: 35px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gold-light);
    box-shadow: 
        0 0 30px rgba(212, 165, 116, 0.15),
        inset 0 0 20px rgba(212, 165, 116, 0.05);
}

.badge i {
    color: var(--color-gold);
    animation: sparkle 2s ease-in-out infinite;
    font-size: 1.1rem;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.hero-title .gradient-text-gold {
    background: linear-gradient(135deg, #f5d799 0%, #d4a574 30%, #b8956a 50%, #e8c9a0 70%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(212, 165, 116, 0.4));
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(212, 165, 116, 0.4)); }
    50% { filter: drop-shadow(0 0 50px rgba(212, 165, 116, 0.6)); }
}

/* Decorative lines around title */
.hero-title::before,
.hero-title::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: rgba(212, 165, 116, 0.5);
    animation: symbol-pulse 2s ease-in-out infinite;
}

.hero-title::before {
    left: -40px;
}

.hero-title::after {
    right: -40px;
    animation-delay: 1s;
}

@keyframes symbol-pulse {
    0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--color-text-secondary);
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-desc {
    color: var(--color-text-muted);
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(212, 165, 116, 0.4);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    transition: var(--transition);
}

.scroll-indicator:hover {
    border-color: rgba(212, 165, 116, 0.8);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

.scroll-indicator::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.5; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-indigo) 100%);
    color: white;
    box-shadow: 
        0 10px 30px rgba(124, 58, 237, 0.3),
        0 0 20px rgba(124, 58, 237, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 50px rgba(124, 58, 237, 0.5),
        0 0 40px rgba(124, 58, 237, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    box-shadow: 
        0 0 15px rgba(212, 165, 116, 0.1),
        inset 0 0 15px rgba(212, 165, 116, 0.05);
}

.btn-secondary:hover {
    background: rgba(212, 165, 116, 0.1);
    border-color: var(--color-gold-light);
    color: var(--color-gold-light);
    box-shadow: 
        0 0 30px rgba(212, 165, 116, 0.3),
        0 10px 30px rgba(212, 165, 116, 0.2),
        inset 0 0 20px rgba(212, 165, 116, 0.1);
    transform: translateY(-3px);
}

/* ===== Philosophy Section ===== */
.philosophy {
    position: relative;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== Energy Section (Infographic) ===== */
.energy-section {
    background: linear-gradient(180deg, transparent 0%, rgba(79, 70, 229, 0.08) 30%, rgba(124, 58, 237, 0.08) 70%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.energy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 70%, rgba(79, 70, 229, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.energy-infographic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.energy-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.energy-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(79, 70, 229, 0.2) 100%);
    border: 2px solid rgba(212, 165, 116, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-gold);
    position: relative;
    animation: pulse-energy 3s ease-in-out infinite;
}

.energy-circle::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 1px dashed rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    animation: rotate-slow 20s linear infinite;
}

.energy-circle::after {
    content: '';
    position: absolute;
    inset: -30px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 50%;
    animation: rotate-slow 30s linear infinite reverse;
}

@keyframes pulse-energy {
    0%, 100% { box-shadow: 0 0 30px rgba(124, 58, 237, 0.3); }
    50% { box-shadow: 0 0 60px rgba(124, 58, 237, 0.5), 0 0 100px rgba(212, 165, 116, 0.2); }
}

.energy-center span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gold-light);
    letter-spacing: 0.1em;
}

.energy-path {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.energy-step {
    background: var(--color-bg-card);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    max-width: 250px;
    transition: var(--transition);
    position: relative;
}

.energy-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-gold));
    border-radius: 0 0 3px 3px;
    opacity: 0;
    transition: var(--transition);
}

.energy-step:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
}

.energy-step:hover::before {
    opacity: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-indigo) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}

.energy-step h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.energy-step p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.energy-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-purple);
    opacity: 0.6;
    animation: arrow-pulse 1.5s ease-in-out infinite;
}

.energy-arrow:nth-child(2) { animation-delay: 0s; }
.energy-arrow:nth-child(4) { animation-delay: 0.5s; }

@keyframes arrow-pulse {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5px); }
}

.energy-result {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 40px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50px;
    margin-top: 20px;
}

.energy-result i {
    font-size: 1.5rem;
    color: var(--color-gold);
    animation: sparkle 2s ease-in-out infinite;
}

.energy-result p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-gold-light);
}

@media (max-width: 768px) {
    .energy-path {
        flex-direction: column;
        align-items: center;
    }
    
    .energy-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .energy-step {
        width: 100%;
        max-width: 300px;
    }
    
    .energy-circle {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
}

/* ===== Akashic Records Section ===== */
.akashic-section {
    background: linear-gradient(180deg, transparent 0%, rgba(79, 70, 229, 0.1) 30%, rgba(124, 58, 237, 0.1) 70%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.akashic-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.akashic-content {
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.akashic-intro {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: var(--color-bg-card);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    transition: var(--transition);
}

.akashic-intro:hover {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
}

.akashic-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 0 40px rgba(79, 70, 229, 0.4);
}

.akashic-intro p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.akashic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.akashic-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.akashic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-indigo), var(--color-purple), var(--color-gold));
    opacity: 0;
    transition: var(--transition);
}

.akashic-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}

.akashic-card:hover::before {
    opacity: 1;
}

.akashic-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-indigo) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}

.akashic-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-gold-light);
}

.akashic-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.akashic-cta {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 20px;
    padding: 35px 40px;
}

.akashic-cta i {
    flex-shrink: 0;
    font-size: 2.5rem;
    color: var(--color-purple-light);
}

.akashic-cta p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .akashic-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .akashic-icon {
        margin: 0 auto;
    }
    
    .akashic-cta {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Biofield Cleansing Section ===== */
.biofield-section {
    background: linear-gradient(180deg, transparent 0%, rgba(212, 165, 116, 0.05) 30%, rgba(124, 58, 237, 0.05) 70%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.biofield-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 90%, rgba(212, 165, 116, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 10%, rgba(124, 58, 237, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.biofield-content {
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.biofield-problems, .biofield-symptoms {
    background: var(--color-bg-card);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 20px;
    padding: 30px 35px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.biofield-problems:hover, .biofield-symptoms:hover {
    border-color: rgba(212, 165, 116, 0.4);
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.1);
}

.biofield-problems h3, .biofield-symptoms h3 {
    font-size: 1.2rem;
    color: var(--color-gold-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.biofield-problems h3 i {
    color: var(--color-gold);
}

.biofield-symptoms h3 i {
    color: #ef4444;
}

.problems-list li, .symptoms-list li {
    padding: 10px 0;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.problems-list li:last-child, .symptoms-list li:last-child {
    border-bottom: none;
}

.problems-list li i {
    color: var(--color-purple);
}

.symptoms-list li i {
    color: #f97316;
}

.biofield-results {
    background: var(--color-bg-card);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.biofield-results:hover {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

.biofield-results h3 {
    font-size: 1.2rem;
    color: var(--color-gold-light);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.biofield-results h3 i {
    color: var(--color-gold);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 12px;
    transition: var(--transition);
}

.result-item:hover {
    background: rgba(124, 58, 237, 0.15);
    transform: translateX(5px);
}

.result-item i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-primary);
    font-size: 1rem;
}

.result-item span {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.biofield-cta {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 20px;
    padding: 30px 35px;
}

.biofield-cta i {
    flex-shrink: 0;
    font-size: 2.5rem;
    color: var(--color-gold);
}

.biofield-cta p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .biofield-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .result-item {
        justify-content: center;
    }
}

/* ===== Energy Hygiene Section ===== */
.energy-hygiene {
    background: linear-gradient(180deg, transparent 0%, rgba(79, 70, 229, 0.08) 30%, rgba(212, 165, 116, 0.05) 70%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.energy-hygiene::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(79, 70, 229, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.energy-hygiene-content {
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.hygiene-intro {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: var(--color-bg-card);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.hygiene-intro:hover {
    border-color: rgba(79, 70, 229, 0.4);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.15);
}

.hygiene-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-bg-primary);
    box-shadow: 0 0 40px rgba(212, 165, 116, 0.4);
}

.hygiene-text p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.hygiene-text p:last-child {
    margin-bottom: 0;
}

.hygiene-warning {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    padding: 30px 35px;
    margin-bottom: 30px;
}

.hygiene-warning i {
    flex-shrink: 0;
    font-size: 2rem;
    color: #ef4444;
}

.hygiene-warning p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.hygiene-benefits h3 {
    font-size: 1.3rem;
    color: var(--color-gold-light);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hygiene-benefits h3 i {
    color: var(--color-gold);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.4);
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.benefit-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hygiene-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .hygiene-icon {
        margin: 0 auto;
    }
    
    .hygiene-warning {
        flex-direction: column;
        text-align: center;
    }
    
    .hygiene-benefits h3 {
        justify-content: center;
    }
}

/* ===== Higher Self Connection Section ===== */
.higher-self-connect {
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.08) 30%, rgba(79, 70, 229, 0.05) 70%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.higher-self-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(79, 70, 229, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.connect-content {
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.connect-intro {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: var(--color-bg-card);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.connect-intro:hover {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
}

.connect-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-indigo) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.4);
}

.connect-text p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.connect-text p:last-child {
    margin-bottom: 0;
}

.connect-description {
    background: var(--color-bg-card);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 20px;
    padding: 30px 35px;
    margin-bottom: 30px;
}

.connect-description p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
}

.connect-questions h3, .connect-process h3 {
    font-size: 1.3rem;
    color: var(--color-gold-light);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.connect-questions h3 i {
    color: var(--color-gold);
}

.connect-process h3 i {
    color: var(--color-purple);
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.question-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--color-bg-card);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 15px;
    transition: var(--transition);
}

.question-item:hover {
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateX(5px);
}

.question-item i {
    flex-shrink: 0;
    color: var(--color-purple-light);
    font-size: 1.2rem;
}

.question-item span {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.process-steps-custom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.process-step-custom {
    background: var(--color-bg-card);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-step-custom:hover {
    border-color: rgba(79, 70, 229, 0.5);
    transform: translateY(-5px);
}

.step-num {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-indigo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    position: absolute;
    top: 10px;
    left: 20px;
}

.process-step-custom p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.connect-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(79, 70, 229, 0.1) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 24px;
    text-align: center;
}

.connect-cta i {
    font-size: 3rem;
    color: var(--color-gold);
}

.connect-cta p {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text-primary);
}

.connect-cta .btn {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .connect-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .connect-icon {
        margin: 0 auto;
    }
    
    .connect-questions h3, .connect-process h3 {
        justify-content: center;
    }
}

.philosophy-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-style: italic;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    padding: 60px 40px;
    background: var(--color-bg-card);
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 0 60px rgba(124, 58, 237, 0.03);
}

.philosophy-quote::before,
.philosophy-quote::after {
    font-size: 4rem;
    color: var(--color-purple);
    opacity: 0.5;
    position: absolute;
    font-family: serif;
}

.philosophy-quote::before {
    content: '"';
    top: 10px;
    left: 20px;
}

.philosophy-quote::after {
    content: '"';
    bottom: -10px;
    right: 20px;
}

/* ===== Higher Self Section ===== */
.higher-self {
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.08) 50%, transparent 100%);
    position: relative;
}

.higher-self::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 80%, rgba(79, 70, 229, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.higher-self-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.higher-self-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.higher-self-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.higher-self-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}

.higher-self-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-indigo) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: var(--glow-purple);
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(212, 165, 116, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.higher-self-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-gold-light);
}

.higher-self-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Experts Section ===== */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    justify-content: center;
}

.expert-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.expert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-purple));
    opacity: 0;
    transition: var(--transition);
}

.expert-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.expert-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 165, 116, 0.5);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(212, 165, 116, 0.15);
}

.expert-card:hover::before {
    opacity: 1;
}

.expert-avatar {
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-bg-primary);
    border: 4px solid rgba(212, 165, 116, 0.3);
    box-shadow: 
        0 0 40px rgba(212, 165, 116, 0.4),
        0 0 80px rgba(212, 165, 116, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.expert-avatar.purple {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-light) 100%);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 
        0 0 40px rgba(124, 58, 237, 0.4),
        0 0 80px rgba(124, 58, 237, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
}

.expert-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-text-primary);
    position: relative;
    z-index: 1;
}

.expert-role {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.role-gold {
    background: rgba(212, 165, 116, 0.2);
    color: var(--color-gold-light);
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.role-purple {
    background: rgba(124, 58, 237, 0.2);
    color: var(--color-purple-light);
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.expert-card p {
    color: var(--color-text-secondary);
    margin-bottom: 25px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

/* ===== Process Section ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-indigo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-gold-light);
    position: relative;
    z-index: 1;
}

.process-step p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ===== Services Section ===== */
.services {
    background: linear-gradient(180deg, transparent 0%, rgba(79, 70, 229, 0.05) 50%, transparent 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 50px 30px 35px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card > *:not(.service-badge) {
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-indigo), var(--color-gold));
    opacity: 0;
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 
        0 20px 60px rgba(124, 58, 237, 0.2),
        0 0 40px rgba(124, 58, 237, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(20, 20, 35, 0.95) 50%, rgba(212, 165, 116, 0.05) 100%);
}

.service-card.featured::before {
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-purple));
    opacity: 0;
}

.service-card.featured:hover::before {
    opacity: 1;
}

.service-card.featured:hover::before {
    opacity: 1;
}

.service-card.featured:hover {
    border-color: var(--color-gold);
    box-shadow: 
        0 20px 60px rgba(212, 165, 116, 0.2),
        0 0 40px rgba(212, 165, 116, 0.15);
}

.service-badge {
    position: inherit;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-bg-primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.5);
    white-space: nowrap;
    z-index: 20;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-text-primary);
    position: relative;
    z-index: 1;
}

.service-card > p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.service-price {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-price .gradient-text {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-shadow: 0 0 30px rgba(212, 165, 116, 0.3);
}

.service-period {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.service-features {
    text-align: left;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 8px 0;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    transition: var(--transition);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:hover {
    padding-left: 8px;
    color: var(--color-gold-light);
}

.service-features li i {
    color: var(--color-gold);
    width: 20px;
    text-align: center;
}

.service-card .btn {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ===== Testimonials Section ===== */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: var(--color-bg-card);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-indigo) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.testimonial-author strong {
    display: block;
    color: var(--color-gold-light);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--color-gold);
    box-shadow: var(--glow-gold);
}

/* ===== Safety Section ===== */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.safety-item {
    text-align: center;
    padding: 30px;
    background: var(--color-bg-card);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 20px;
    transition: var(--transition);
}

.safety-item:hover {
    border-color: rgba(79, 70, 229, 0.5);
    transform: translateY(-5px);
}

.safety-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.safety-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-gold-light);
}

.safety-item p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* ===== FAQ Section ===== */
.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(124, 58, 237, 0.4);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    background: transparent;
}

.faq-question i {
    color: var(--color-purple);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ===== Certificates Section ===== */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.certificate-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.certificate-card:hover {
    border-color: rgba(212, 165, 116, 0.5);
    transform: translateY(-5px);
}

.cert-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--color-gold-metallic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-bg-primary);
}

.certificate-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-gold-light);
}

.certificate-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.cert-year {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 15px;
    color: var(--color-gold);
    font-size: 0.85rem;
}

/* ===== Quiz Section ===== */
.quiz-card {
    max-width: 600px;
    margin: 50px auto 0;
    background: var(--color-bg-card);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.quiz-content p {
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.quiz-content strong {
    color: var(--color-gold);
}

/* ===== Telegram Feed ===== */
.telegram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.telegram-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
}

.telegram-card:hover {
    border-color: rgba(79, 70, 229, 0.5);
    transform: translateY(-5px);
}

.telegram-date {
    font-size: 0.85rem;
    color: var(--color-purple-light);
    margin-bottom: 12px;
    display: block;
}

.telegram-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.telegram-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.telegram-link {
    color: var(--color-gold);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.telegram-link:hover {
    color: var(--color-gold-light);
    gap: 12px;
}

.telegram-more {
    text-align: center;
    margin-top: 40px;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-night-sky) 100%);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), transparent);
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-gold-light);
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul a {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer ul a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contacts ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contacts ul li i {
    color: var(--color-purple);
    width: 20px;
}

.footer-contacts ul a {
    color: var(--color-text-secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-text-primary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-purple);
    border-color: var(--color-purple);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--color-text-muted);
}

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

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(124, 58, 237, 0.3);
    padding: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 2000;
}

.cookie-banner p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-cookie:first-child {
    border: 1px solid var(--color-text-muted);
    color: var(--color-text-secondary);
}

.btn-cookie:first-child:hover {
    border-color: var(--color-text-primary);
    color: var(--color-text-primary);
}

.btn-cookie.accept {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-indigo) 100%);
    color: white;
}

.btn-cookie.accept:hover {
    box-shadow: var(--glow-purple);
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .nav-links {
        gap: 10px;
    }
    
    .nav-links a {
        font-size: 0.75rem;
        padding: 5px 0;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 8px;
    }
    
    .nav-links a {
        font-size: 0.7rem;
        padding: 4px 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
        margin-left: 10px;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
    }
    
    .nav-actions .nav-telegram {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(79, 70, 229, 0.2) 100%);
        border: 1px solid rgba(124, 58, 237, 0.3);
        transition: all 0.3s ease;
    }
    
    .nav-actions .nav-telegram:hover {
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.4) 0%, rgba(79, 70, 229, 0.4) 100%);
        border-color: rgba(124, 58, 237, 0.6);
        transform: scale(1.1);
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .mobile-only a {
        display: flex !important;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 70px);
        background: linear-gradient(180deg, rgba(13, 13, 26, 0.98) 0%, rgba(10, 10, 15, 0.95) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 15px 20px 50px;
        gap: 0;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, box-shadow 0.4s ease;
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.6),
            0 0 60px rgba(124, 58, 237, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
        z-index: 1001;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        transform: translateY(-30px);
        pointer-events: none;
        border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    }
    
    .nav-links.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.7),
            0 0 80px rgba(124, 58, 237, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    
    /* Decorative top border with gradient */
    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(124, 58, 237, 0.8) 20%, 
            rgba(212, 165, 116, 0.8) 50%, 
            rgba(124, 58, 237, 0.8) 80%, 
            transparent 100%);
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(124, 58, 237, 0.08);
        position: relative;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        font-weight: 500;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        white-space: nowrap;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: var(--color-text-secondary);
        position: relative;
        overflow: hidden;
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(180deg, var(--color-purple) 0%, var(--color-gold) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-links a:active {
        background: linear-gradient(90deg, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0.05) 100%);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a:hover {
        background: linear-gradient(90deg, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0.03) 100%);
        color: var(--color-gold);
        padding-left: 25px;
    }
    
    .nav-links a:hover::before {
        opacity: 1;
    }
    
    /* Add icon styling for menu items */
    .nav-links a i {
        width: 24px;
        text-align: center;
        color: var(--color-purple-light);
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover i {
        color: var(--color-gold);
        transform: scale(1.1);
    }
    
    /* Overlay - Premium blur effect */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 10, 0.7);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
        background: rgba(5, 5, 10, 0.75);
    }
    
    /* Custom scrollbar for menu */
    .nav-links::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav-links::-webkit-scrollbar-track {
        background: rgba(124, 58, 237, 0.05);
    }
    
    .nav-links::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
        border-radius: 3px;
    }
    
    .nav-links::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, var(--color-purple-light) 0%, var(--color-purple) 100%);
    }
}

@media (max-width: 768px) {
    .hero-title {
        letter-spacing: 0.05em;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-contacts ul li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .certificate-card,
    .telegram-card,
    .safety-item,
    .process-step {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .menu-toggle {
        right: 15px;
    }
    
    .hero {
        padding: 100px 15px 60px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-glow {
        width: 200px !important;
        height: 200px !important;
        opacity: 0.5;
    }
    
    .glow-1, .glow-2, .glow-3 {
        width: 250px !important;
        height: 250px !important;
        opacity: 0.6;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 80px 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        width: 85%;
        max-width: none;
    }
    
    .nav-links a {
        white-space: normal;
    }
}

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

    .hero {
        padding: 100px 15px 60px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 10px 18px;
    }

    .service-card,
    .expert-card {
        padding: 30px 20px;
    }

    .testimonial {
        padding: 30px 20px;
    }

    .quiz-card {
        padding: 30px 20px;
    }
} 
