:root {
    /* Mystic Dark Mode Palette */
    --primary-color: #9D4EDD; /* Bright Mystic Purple for dark bg */
    --primary-light: #C77DFF;
    --primary-dark: #5A189A;
    
    --secondary-color: #4CC9F0; /* Bright Teal/Cyan */
    --accent-color: #FFC300; /* Bright Gold */
    
    --bg-cream: #10002B; /* Deepest Void Purple */
    --bg-white: #240046; /* Rich Dark Purple */
    --bg-dark: #000000; /* Pure Black */
    --bg-card: rgba(36, 0, 70, 0.6); /* Glassy Dark Purple */
    
    --text-main: #E0AAFF; /* Soft Lavender Text */
    --text-muted: #9D8189; /* Muted Mauve */
    --text-light: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 50px rgba(157, 78, 221, 0.2);
    --glow: 0 0 20px rgba(255, 195, 0, 0.3);
    
    --radius: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; letter-spacing: -0.5px; }
h2 { font-size: 2.5rem; color: var(--primary-color); }
h3 { font-size: 1.75rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }
a { text-decoration: none; transition: all 0.3s ease; }

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

/* Navbar */
.navbar {
    background: rgba(16, 0, 43, 0.85);
    backdrop-filter: blur(12px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    border: 2px solid var(--primary-color);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--primary-color) !important;
}

.btn-nav:hover {
    background: var(--primary-color);
    color: #fff !important;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(93, 46, 140, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine-sweep 6s infinite ease-in-out;
    pointer-events: none;
}

@keyframes shine-sweep {
    0% { left: -100%; }
    10% { left: 200%; }
    100% { left: 200%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(93, 46, 140, 0.4);
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    background: transparent;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at top right, rgba(76, 201, 240, 0.08), transparent 40%),
                radial-gradient(circle at bottom left, rgba(157, 78, 221, 0.1), transparent 40%);
    overflow: hidden;
    padding: 120px 0 100px;
}

/* Problem Section */
.section-light { background: var(--bg-cream); }
.section-dark { background: var(--bg-dark); color: var(--text-light); }
.section-mystic { background: linear-gradient(135deg, var(--bg-dark), #10002B); color: #fff; }

/* Section Spacing */
.section-light,
.section-dark,
.section-mystic,
.problem-section,
.methodology-section,
.why-matters-section {
    padding: 140px 0;
}

/* Specific adjustments for flow */
.methodology-section {
    padding-bottom: 160px;
}

.why-matters-section {
    padding-top: 160px;
    padding-bottom: 140px;
}

/* Ensure container has breathing room on mobile */
@media (max-width: 768px) {
    .section-light,
    .section-dark,
    .section-mystic,
    .problem-section,
    .methodology-section,
    .why-matters-section {
        padding: 100px 0;
    }
}

/* Hero Grid Layout */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
}

/* Mobile Responsive Hero */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        text-align: center;
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-content .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 183, 3, 0.15);
    color: #FFD60A;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 183, 3, 0.3);
    box-shadow: 0 0 15px rgba(255, 214, 10, 0.2);
}

.hero-text h1 {
    color: #FFFFFF;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(157, 78, 221, 0.3);
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 540px;
}

/* Trust Indicators */
.trust-indicator-hero {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .trust-indicator-hero {
        justify-content: center;
    }
}

.avatars {
    display: flex;
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: #000;
    margin-right: -10px;
}

.rating-text {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

.rating-label {
    color: var(--text-light);
    opacity: 0.8;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.guarantee-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 992px) {
    .hero-actions {
        align-items: center;
    }
    
    .guarantee-text {
        justify-content: center;
    }
}

/* Crystal Ball / Data Sphere */
.crystal-ball-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    animation: float-ball 6s ease-in-out infinite;
}

.crystal-ball {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), rgba(16, 0, 43, 0.9));
    box-shadow: 
        inset -20px -20px 50px rgba(0,0,0,0.5),
        inset 10px 10px 30px rgba(255,255,255,0.2),
        0 0 50px rgba(157, 78, 221, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.ball-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.matrix-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(157, 78, 221, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: rotate-grid 20s linear infinite;
    opacity: 0.5;
}

.central-glow {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 214, 10, 0.8), 0 0 40px rgba(255, 214, 10, 0.4);
    z-index: 2;
    animation: pulse-glow 4s infinite ease-in-out;
}

.floating-stat {
    position: absolute;
    background: rgba(16, 0, 43, 0.8);
    border: 1px solid rgba(76, 201, 240, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-stat i {
    color: #FFD60A;
}

.stat-1 { top: 20%; right: 10%; animation: float-stat 5s infinite alternate; }
.stat-2 { bottom: 25%; left: 5%; animation: float-stat 6s infinite alternate-reverse; }
.stat-3 { bottom: 15%; right: 15%; animation: float-stat 7s infinite alternate 1s; }

.ball-shine {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 40%;
    height: 30%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.4), transparent 70%);
    border-radius: 50%;
    transform: rotate(-45deg);
    pointer-events: none;
}

.ball-base {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 40px;
    background: radial-gradient(ellipse at center, #240046, transparent 80%);
    border-radius: 50%;
    border: 1px solid rgba(157, 78, 221, 0.3);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.2);
}

.ball-shadow {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) rotateX(60deg);
    width: 200px;
    height: 60px;
    background: radial-gradient(rgba(0,0,0,0.6), transparent 70%);
    filter: blur(15px);
    z-index: -1;
    animation: shadow-pulse 6s ease-in-out infinite;
}

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

@keyframes rotate-grid {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes shadow-pulse {
    0%, 100% { transform: translateX(-50%) rotateX(60deg) scale(1); opacity: 0.6; }
    50% { transform: translateX(-50%) rotateX(60deg) scale(0.8); opacity: 0.4; }
}

.trust-indicator {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stars {
    color: var(--accent-color);
    letter-spacing: 2px;
}

/* Orbs Animation */
.hero-orbs span {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

.orb-1 { width: 300px; height: 300px; background: rgba(157, 78, 221, 0.3); top: -50px; left: -50px; animation: float 8s infinite alternate; }
.orb-2 { width: 400px; height: 400px; background: rgba(76, 201, 240, 0.2); bottom: -100px; right: -100px; animation: float 10s infinite alternate-reverse; }
.orb-3 { width: 200px; height: 200px; background: rgba(255, 195, 0, 0.2); top: 40%; left: 80%; animation: float 12s infinite alternate; }

/* Revelation Card */
.revelation-card {
    background: linear-gradient(145deg, rgba(36, 0, 70, 0.9), rgba(16, 0, 43, 0.95));
    border: 1px solid rgba(157, 78, 221, 0.5);
    border-radius: 24px;
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    max-width: 900px;
    margin: 0 auto 5rem;
}

/* Enhanced Border Glow */
.revelation-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, rgba(157, 78, 221, 0.8), transparent);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(157, 78, 221, 0.1), transparent 60%);
    animation: rotate-glow 20s linear infinite;
    z-index: 0;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #E0AAFF 50%, #C77DFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(224, 170, 255, 0.3);
}

.revelation-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Revelation Icons Grid */
.revelation-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.revelation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 140px;
    transition: all 0.3s ease;
}

.revelation-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.revelation-item i {
    font-size: 1.8rem;
    color: #4CC9F0;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 10px rgba(76, 201, 240, 0.5));
}

.revelation-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.revelation-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    background: rgba(16, 0, 43, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border-left: 3px solid var(--secondary-color);
}

.revelation-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Hidden Power Section */
.hidden-power-section {
    margin-bottom: 6rem;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

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

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

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

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-card .icon-box {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Blueprint Section */
.blueprint-section {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.6) 0%, rgba(16, 0, 43, 0.8) 100%);
    border-radius: 30px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    padding: 4rem;
    position: relative;
    box-shadow: 0 0 50px rgba(157, 78, 221, 0.1);
}

.blueprint-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blueprint-header h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

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

.blueprint-col h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.blueprint-col ul {
    list-style: none;
    padding: 0;
}

.blueprint-col li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.blueprint-col li i {
    color: var(--primary-light);
    margin-top: 4px;
}

.blueprint-cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .revelation-card {
        padding: 2rem;
    }
    
    .gradient-text {
        font-size: 1.8rem;
    }
    
    .blueprint-section {
        padding: 2rem;
    }
}

/* Methodology Section */
.methodology-section {
    position: relative;
    overflow: hidden;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
    margin-bottom: 6rem;
}

.process-step {
    position: relative;
}

.step-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -40px;
    right: 20px;
    line-height: 1;
    font-family: var(--font-heading);
}

.step-card {
    background: rgba(16, 0, 43, 0.6);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(76, 201, 240, 0.15);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-dark), var(--bg-cream));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.step-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Cipher Wheel Animation - Removed as per user request */

/* Responsive */
@media (max-width: 768px) {
    .step-number {
        font-size: 4rem;
        right: 10px;
    }
    
    .cipher-wheel {
        width: 280px;
        height: 280px;
    }
}

/* Why This Matters Section */
.why-matters-section {
    position: relative;
    overflow: hidden;
}

/* 2026 Universal Shift (Angle 0) */
.universal-shift-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.shift-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
    perspective: 1000px;
}

.shift-content {
    flex: 1;
}

/* Portal Effect */
.portal-core {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.portal-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-top: 2px solid var(--secondary-color);
    border-right: 2px solid rgba(76, 201, 240, 0.3);
    animation: portal-spin 8s linear infinite;
    box-shadow: 0 0 20px rgba(76, 201, 240, 0.2);
}

.ring-2 {
    width: 80%;
    height: 80%;
    border-bottom: 2px solid var(--primary-color);
    border-left: 2px solid rgba(157, 78, 221, 0.3);
    animation: portal-spin-reverse 12s linear infinite;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
}

.ring-3 {
    width: 60%;
    height: 60%;
    border: 1px dashed var(--accent-color);
    animation: portal-spin 20s linear infinite;
    opacity: 0.6;
}

.portal-glow {
    position: absolute;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    animation: portal-pulse 4s ease-in-out infinite;
}

.portal-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    box-shadow: 0 0 10px #fff;
    animation: particle-orbit 6s linear infinite;
}

.portal-particles span:nth-child(1) { animation-duration: 4s; transform: rotate(0deg) translateX(120px); }
.portal-particles span:nth-child(2) { animation-duration: 6s; transform: rotate(72deg) translateX(140px); }
.portal-particles span:nth-child(3) { animation-duration: 8s; transform: rotate(144deg) translateX(100px); }
.portal-particles span:nth-child(4) { animation-duration: 5s; transform: rotate(216deg) translateX(130px); }
.portal-particles span:nth-child(5) { animation-duration: 7s; transform: rotate(288deg) translateX(110px); }

.year-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.year-text {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    background: linear-gradient(to bottom, #fff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.sum-text {
    font-size: 10rem;
    font-weight: 900;
    color: var(--primary-light);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    z-index: 1;
    filter: blur(2px);
    animation: sum-pulse 5s infinite alternate;
}

@keyframes portal-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes portal-spin-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes portal-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes particle-orbit {
    0% { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

@keyframes sum-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.25; filter: blur(4px); }
}

/* Personal Impact (Angle 1) */
.personal-impact-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
    /* Default: Text Left, Visual Right */
}

.impact-content {
    flex: 1;
}

.impact-content p strong {
    color: var(--secondary-color);
}

.stat-row {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

/* HUD Card Style */
.hud-card {
    text-align: center;
    background: linear-gradient(160deg, rgba(36, 0, 70, 0.6), rgba(16, 0, 43, 0.8));
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(76, 201, 240, 0.2);
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hud-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(76, 201, 240, 0.2);
}

.hud-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin-top: 10px;
    opacity: 0.5;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 195, 0, 0.3);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-text {
    font-size: 1.1rem;
    color: #fff;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
    margin-top: 1rem;
}

/* Holographic Phone Visual */
.impact-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.phone-hologram {
    position: relative;
    width: 200px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.device-body {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 2px solid rgba(157, 78, 221, 0.5);
    background: rgba(16, 0, 43, 0.8);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.2), inset 0 0 20px rgba(157, 78, 221, 0.2);
    position: relative;
    z-index: 2;
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.phone-hologram:hover .device-body {
    transform: rotateY(0deg) rotateX(0deg);
}

.screen-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 2rem;
}

.digital-core-pulse {
    position: absolute;
    top: 30%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    opacity: 0.4;
    filter: blur(10px);
    animation: core-pulse 2s infinite;
}

.frequency-bars {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 60px;
}

.frequency-bars span {
    width: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    animation: freq-bounce 1s ease-in-out infinite;
}

.frequency-bars span:nth-child(odd) { animation-duration: 0.8s; background: var(--primary-light); }
.frequency-bars span:nth-child(even) { animation-duration: 1.2s; }

.floating-digits span {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-family: monospace;
    font-weight: bold;
    animation: digit-float 4s linear infinite;
    z-index: 1;
}

.d1 { top: 10%; left: -20%; animation-delay: 0s; }
.d2 { top: 40%; right: -30%; animation-delay: 1s; font-size: 1.5rem; }
.d3 { bottom: 20%; left: -10%; animation-delay: 2s; }
.d4 { top: -10%; right: 0%; animation-delay: 1.5s; }
.d5 { bottom: -10%; left: 20%; animation-delay: 0.5s; font-size: 1.2rem; }
.d6 { top: 60%; left: -25%; animation-delay: 2.5s; }

.hologram-base {
    position: absolute;
    bottom: -40px;
    width: 140px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(76, 201, 240, 0.4), transparent 70%);
    transform: rotateX(70deg);
    filter: blur(10px);
    animation: base-pulse 3s infinite;
}

@keyframes freq-bounce {
    0%, 100% { height: 10px; opacity: 0.5; }
    50% { height: 50px; opacity: 1; box-shadow: 0 0 10px var(--secondary-color); }
}

@keyframes core-pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes digit-float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { transform: translateY(-100px) rotate(20deg); opacity: 0; }
}

@keyframes base-pulse {
    0%, 100% { opacity: 0.3; transform: rotateX(70deg) scale(1); }
    50% { opacity: 0.6; transform: rotateX(70deg) scale(1.2); }
}

@media (max-width: 968px) {
    .universal-shift-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .personal-impact-container {
        flex-direction: column; /* Stacks vertically on mobile */
        gap: 3rem;
        text-align: center;
    }
    
    .stat-row {
        justify-content: center;
    }
    
    .highlight-text {
        border-left: none;
        border-top: 4px solid var(--accent-color);
        padding-top: 1rem;
        padding-left: 0;
    }
}

/* Global Context (Angle 2) */
.global-context-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.map-visual {
    flex: 1;
    height: 400px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 800 400" xmlns="http://www.w3.org/2000/svg"><path d="M680,180 Q650,220 600,200 T500,250 T400,200 T300,250 T200,200 T100,250 T50,200" stroke="rgba(157, 78, 221, 0.2)" fill="none" stroke-width="2"/><circle cx="580" cy="180" r="140" fill="rgba(157, 78, 221, 0.05)"/></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-dots .dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-color);
    animation: pulse-dot 2s infinite;
}

.dot-1 { top: 40%; left: 65%; } /* Indiaish */
.dot-2 { top: 35%; left: 75%; } /* Chinaish */
.dot-3 { top: 45%; left: 55%; } /* UAEish */

.dot::after {
    content: attr(data-label);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.8rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

@keyframes pulse-dot {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 195, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 195, 0, 0); }
}

.context-text {
    flex: 1;
}

.mystic-quote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0;
}

.highlight-box {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
}

/* Report Reveal Grid */
.report-reveal-section {
    position: relative;
}

.reveal-header {
    margin-bottom: 4rem;
}

.report-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.report-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.report-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    height: 60px;
    width: 60px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(76, 201, 240, 0.2);
}

.report-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

/* Highlight Card Style */
.highlight-card {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(36, 0, 70, 0.4));
    border: 1px solid var(--primary-color);
    grid-column: span 1; 
}

@media (min-width: 992px) {
    .highlight-card {
        grid-column: span 2; /* Span 2 columns on large screens if desired, or keep 1 */
        transform: scale(1.05);
        z-index: 2;
    }
}

.highlight-card .card-icon {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: rgba(255, 195, 0, 0.1);
}

.cta-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.guarantee-text {
    color: var(--secondary-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 968px) {
    .global-context-container {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    
    .map-visual {
        width: 100%;
        height: 250px;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(36, 0, 70, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(36, 0, 70, 0.5);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(157, 78, 221, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--secondary-color);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center; /* Center items vertically so pop-out works */
}

/* Cyber Card Base */
.cyber-card {
    background: rgba(16, 0, 43, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden; /* For ribbon */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

@keyframes border-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Holographic Border */
.cyber-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px; 
    padding: 1px; /* Border width */
    background: linear-gradient(
        90deg, 
        rgba(157, 78, 221, 0.1), 
        rgba(76, 201, 240, 0.8), 
        rgba(255, 195, 0, 0.8), 
        rgba(157, 78, 221, 0.1)
    );
    background-size: 300% 100%;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-rotate 4s linear infinite;
    pointer-events: none;
    z-index: 2;
}

.cyber-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(76, 201, 240, 0.15);
}

.card-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(157, 78, 221, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Popular Tier Enhancement */
.popular-tier {
    transform: scale(1.05);
    border: 1px solid var(--accent-color);
    background: linear-gradient(145deg, rgba(36, 0, 70, 0.9), rgba(16, 0, 43, 0.95));
    box-shadow: 0 0 30px rgba(255, 195, 0, 0.15);
    z-index: 2;
}

.popular-tier:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 50px rgba(255, 195, 0, 0.25);
}

/* Card Header */
.card-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.tier-badge {
    display: inline-block;
    background: rgba(157, 78, 221, 0.2);
    color: var(--text-main);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.popular-badge {
    background: rgba(255, 195, 0, 0.2);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.card-header h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    margin-top: 8px;
    margin-right: 4px;
    color: var(--text-muted);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
}

.popular-tier .amount {
    text-shadow: 0 0 25px rgba(255, 195, 0, 0.4);
    color: var(--accent-color);
}

.price-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Card Body */
.card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    flex: 1;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.highlight-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-feature i {
    color: var(--accent-color);
}

.info-tooltip {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 5px;
    font-size: 0.9em;
    cursor: help;
    transition: color 0.3s;
}

.info-tooltip:hover {
    color: #fff;
}

/* Guarantee Block */
.guarantee-block {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.06));
    padding: 2rem;
    border-radius: 20px;
    max-width: 700px;
    margin: 4rem auto 0;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.guarantee-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
}

.guarantee-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(76, 201, 240, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    border: 1px solid rgba(76, 201, 240, 0.3);
}

.guarantee-block h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.guarantee-block p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .popular-tier {
        transform: scale(1);
        margin: 1rem 0;
    }
    
    .popular-tier:hover {
        transform: translateY(-5px);
    }
    
    .guarantee-block {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* Booking Form */
.form-layout {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: left;
}

.form-intro h2 { 
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.form-benefits {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    list-style: none;
    padding: 0;
}

.form-benefits li {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: color 0.2s ease;
}

.form-benefits li:hover {
    transform: none;
    color: var(--primary-color);
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-form {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
    margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(157, 78, 221, 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: #fff;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(157, 78, 221, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

#book-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

@media (max-width: 992px) {
    .form-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-intro {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .form-benefits {
        align-items: center;
    }
    
    .form-benefits li {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-wrapper {
        padding: 1.5rem;
    }
}

.form-wrapper {
    background: rgba(36, 0, 70, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form label {
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9rem;
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 8px;
    font-family: var(--font-body);
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(76, 201, 240, 0.2);
    outline: none;
    background: rgba(0, 0, 0, 0.6);
}

/* FAQ Section Redesign */
.section-faq {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(157, 78, 221, 0.3), transparent);
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(157, 78, 221, 0.3);
}

.faq-item.active {
    background: rgba(36, 0, 70, 0.6);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s;
}

.faq-item.active .faq-header h4 {
    color: var(--secondary-color);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    padding: 0 2rem 2rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease 0.1s;
}

.faq-item.active .faq-content {
    opacity: 1;
    transform: translateY(0);
}

.faq-item.active .faq-body {
    max-height: 200px; /* Adjust based on content length */
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.4);
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.8); 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, #240046, #10002B);
    margin: 10% auto; 
    padding: 3rem 2rem;
    border: 1px solid var(--primary-color);
    width: 90%; 
    max-width: 500px;
    border-radius: var(--radius);
    position: relative;
    box-shadow: 0 0 50px rgba(157, 78, 221, 0.5);
    text-align: center;
    animation: fadeInUp 0.4s ease-out;
}

.modal-content form .form-group {
    margin-bottom: 2rem;
}

.close-modal {
    color: var(--text-muted);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fade {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(93, 46, 140, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(93, 46, 140, 0); }
    100% { box-shadow: 0 0 0 0 rgba(93, 46, 140, 0); }
}

@keyframes float {
    from { transform: translate(0, 0); }
    to { transform: translate(20px, -20px); }
}

/* Mobile Menu Toggle Base */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    margin: 3px auto;
    transition: all 0.3s ease-in-out;
}

/* Responsive */
@media (max-width: 900px) {
    .split-layout, .form-layout {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero {
        text-align: center;
        padding-top: 120px; /* Space for nav */
    }
    
    h1 { font-size: 2.5rem; }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    /* Mobile Menu Styles */
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(16, 0, 43, 0.98);
        padding: 30px 0;
        text-align: center;
        transition: all 0.3s ease;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        border-top: 1px solid rgba(157, 78, 221, 0.2);
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .btn-nav {
        display: inline-block;
        margin-top: 10px;
    }
}

/* Mobile Optimizations for Crystal Ball & Stats */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .crystal-ball-container {
        width: 240px;
        height: 240px;
    }
    
    .central-glow {
        font-size: 2.2rem;
    }
    
    .floating-stat {
        font-size: 0.7rem;
        padding: 6px 12px;
        white-space: nowrap;
    }
    
    /* Adjust positions to prevent overflow on small screens */
    .stat-1 { 
        top: 15%; 
        right: -10px; 
    }
    
    .stat-2 { 
        bottom: 20%; 
        left: -10px; 
    }
    
    .stat-3 { 
        bottom: 10%; 
        right: 0; 
    }
    
    .ball-shadow {
        width: 160px;
        bottom: -50px;
    }
}
