/* ==========================================================================
   MAXELON CRYPTO - CSS STYLESHEET
   ========================================================================== */

/* --- DESIGN TOKENS --- */
:root {
    /* Colors */
    --clr-bg-black: #06030c;
    --clr-bg-teal: #180628;
    --clr-neon-cyan: #d900ff;
    --clr-emerald: #ffd700;
    --clr-gold: #ffaa00;
    --clr-white: #ffffff;
    --clr-text-light: rgba(255, 255, 255, 0.7);
    --clr-border: rgba(255, 255, 255, 0.08);
    --clr-glass-bg: rgba(24, 12, 38, 0.6);
    --clr-glass-bg-hover: rgba(38, 18, 58, 0.8);
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--clr-neon-cyan) 0%, var(--clr-emerald) 100%);
    --grad-glow: linear-gradient(90deg, rgba(217,0,255,0.2) 0%, rgba(255,215,0,0.2) 100%);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Sizes */
    --container-width: 1200px;
    --section-padding: 100px 0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Transitions & Shadows */
    --transition: all 0.3s ease;
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-glow: 0 0 20px rgba(217, 0, 255, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-black);
    color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- BACKGROUND EFFECTS --- */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at top right, var(--clr-bg-teal) 0%, var(--clr-bg-black) 60%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 10s infinite alternate ease-in-out;
}

.orb-1 {
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--clr-neon-cyan);
}

.orb-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--clr-emerald);
    animation-delay: -5s;
}

/* --- TYPOGRAPHY & UTILITIES --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

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

.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-cyan { color: var(--clr-neon-cyan); }
.text-emerald { color: var(--clr-emerald); }
.text-gold { color: var(--clr-gold); }

.mt-5 { margin-top: 50px; }
.w-100 { width: 100%; text-align: center; }

/* --- GLASSMORPHISM --- */
.glass-panel {
    background: var(--clr-glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
}

.glass-card {
    background: var(--clr-glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.glass-card:hover::before {
    left: 150%;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(217, 0, 255, 0.4);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--clr-bg-black);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--clr-border);
    color: var(--clr-white);
}

.btn-outline:hover {
    border-color: var(--clr-neon-cyan);
    color: var(--clr-neon-cyan);
}

.btn-neon {
    background: transparent;
    border: 1px solid var(--clr-neon-cyan);
    color: var(--clr-neon-cyan);
    position: relative;
    overflow: hidden;
}

.btn-neon:hover {
    background: var(--clr-neon-cyan);
    color: var(--clr-bg-black);
    box-shadow: 0 0 15px var(--clr-neon-cyan);
}

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

/* --- TOPBAR --- */
.topbar {
    height: 40px;
    background: rgba(10, 5, 20, 0.95);
    border-bottom: 1px solid var(--clr-border);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    font-size: 0.85rem;
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-right a {
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-right a:hover {
    color: var(--clr-neon-cyan);
}

.topbar-socials {
    display: flex;
    gap: 12px;
}

.topbar-socials a {
    color: var(--clr-text-light);
    transition: var(--transition);
}

.topbar-socials a:hover {
    color: var(--clr-neon-cyan);
    transform: scale(1.1);
}

/* --- NAVBAR --- */
#navbar {
    position: fixed;
    top: 40px; /* Starts below topbar */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 3, 12, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--clr-border);
    padding: 15px 0;
    transition: top 0.3s ease, background 0.3s ease, padding 0.3s ease;
}

#navbar.scrolled {
    top: 0;
    background: rgba(6, 3, 12, 0.95);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--clr-white);
}

.text-gold-gradient {
    background: linear-gradient(135deg, var(--clr-emerald) 0%, var(--clr-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.nav-links a {
    margin: 0 15px;
    font-weight: 500;
    color: var(--clr-text-light);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-neon-cyan);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-only-buttons {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--clr-white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1010;
    transition: var(--transition);
}

/* --- HERO SECTION --- */
.hero {
    padding-top: 150px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 4rem;
    margin: 20px 0;
}

.hero-content .badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(217, 0, 255, 0.1);
    border: 1px solid rgba(217, 0, 255, 0.3);
    border-radius: 20px;
    color: var(--clr-neon-cyan);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-content .sub-heading {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--clr-white);
}

.hero-content .description {
    color: var(--clr-text-light);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-tags span {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-tags i {
    color: var(--clr-emerald);
}

.hero-image {
    position: relative;
    perspective: 1000px;
}

.hero-image .image-wrapper {
    padding: 20px;
    border: 1px solid rgba(217, 0, 255, 0.2);
    transform-style: preserve-3d;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(10, 15, 26, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-gold);
    box-shadow: var(--shadow-glass);
    backdrop-filter: blur(5px);
}

.float-1 { top: 10%; left: -20px; animation: float 4s infinite ease-in-out; }
.float-2 { bottom: 20%; right: -20px; color: var(--clr-neon-cyan); animation: float 5s infinite ease-in-out alternate-reverse; }
.float-3 { top: -20px; right: 20%; color: var(--clr-emerald); animation: float 6s infinite ease-in-out; }


/* --- SECTION TITLES --- */
.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}
.section-subtitle {
    color: var(--clr-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}


/* --- ABOUT SECTION --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.15);
}

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

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
    border-left: 2px solid var(--clr-neon-cyan);
}

.feature-item i {
    color: var(--clr-neon-cyan);
    font-size: 1.2rem;
}


/* --- WHY CHOOSE US --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--clr-neon-cyan);
    box-shadow: inset 0 0 20px rgba(0,243,255,0.2);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}


/* --- INVESTMENT PLANS --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    row-gap: 50px;
}

.pricing-card {
    text-align: center;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.popular {
    border-color: var(--clr-neon-cyan);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0,243,255,0.15);
}

.popular:hover {
    transform: scale(1.08);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--grad-primary);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.roi {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    color: var(--clr-emerald);
    font-weight: 600;
    margin-bottom: 20px;
}

.roi-glow {
    box-shadow: 0 0 15px rgba(0,255,102,0.3);
    border: 1px solid rgba(0,255,102,0.5);
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--clr-white);
}

.plan-features {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 15px;
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features i {
    color: var(--clr-neon-cyan);
    font-size: 0.9rem;
}


/* --- EARNING SYSTEM & LEVEL INCOME --- */
.direct-referral {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}

.dr-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.dr-content p {
    font-size: 1.2rem;
    color: var(--clr-text-light);
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--clr-emerald);
    font-weight: 700;
    font-size: 1.4rem;
}

.example-box {
    background: rgba(217, 0, 255, 0.05);
    border-left: 4px solid var(--clr-neon-cyan);
    padding: 15px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.95rem;
    color: var(--clr-text-light);
}

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

.huge-text {
    font-size: 8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    filter: drop-shadow(0 0 20px rgba(217, 0, 255, 0.4));
}

.dr-icons {
    font-size: 2.5rem;
    color: var(--clr-text-light);
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

/* Ladder Income */
.ladder-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.ladder-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    background: var(--clr-glass-bg);
    border: 1px solid var(--clr-border);
    padding: 15px 30px;
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition);
}

.ladder-step:hover {
    transform: scale(1.02);
    border-color: var(--clr-emerald);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.level-badge {
    font-weight: 600;
    font-size: 1.1rem;
}

.level-percent {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-neon-cyan);
}

.ladder-step:nth-child(1) { width: 100%; }
.ladder-step:nth-child(2) { width: 90%; opacity: 0.9;}
.ladder-step:nth-child(3) { width: 80%; opacity: 0.8;}
.ladder-step:nth-child(4) { width: 70%; opacity: 0.7;}
.ladder-step:nth-child(5) { width: 60%; opacity: 0.6;}
.ladder-step:nth-child(6) { width: 50%; opacity: 0.5;}


/* --- MONTHLY SALARY & CONDITIONS --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.salary-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.salary-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.salary-card .team-size {
    font-weight: 600;
    font-size: 1.1rem;
}

.salary-card .arrow {
    color: var(--clr-border);
}

.salary-card .reward-amount {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.highlight-card {
    border-color: var(--clr-gold);
    background: rgba(255, 204, 0, 0.05);
}

.glow-text {
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.conditions-list {
    padding: 40px;
    margin-top: 30px;
    height: 100%;
}

.condition-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.condition-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    font-size: 1.5rem;
    color: var(--clr-emerald);
}

.condition-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.condition-item p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}


/* --- FUTURE VISION --- */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.vision-card {
    text-align: center;
    padding: 40px 20px;
}

.vision-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(217, 0, 255, 0.3));
}

.vision-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.vision-card p {
    color: var(--clr-text-light);
    font-size: 0.9rem;
}


/* --- STATS SECTION --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 50px 0;
    text-align: center;
    border-radius: var(--radius-lg);
}

.stat-item {
    border-right: 1px solid var(--clr-border);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--clr-white);
}

.stat-plus, .stat-prefix {
    font-size: 2rem;
    color: var(--clr-neon-cyan);
    font-weight: 700;
}

.stat-label {
    width: 100%;
    color: var(--clr-text-light);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


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

.testimonial-card {
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--clr-gold);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.review {
    font-style: italic;
    color: var(--clr-white);
    margin-bottom: 30px;
    flex-grow: 1;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-info .avatar {
    font-weight: 700;
    color: var(--clr-neon-cyan);
}

.user-info .role {
    font-size: 0.85rem;
    color: var(--clr-text-light);
}


/* --- FAQ SECTION --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    padding: 0;
    cursor: pointer;
}

.accordion-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.accordion-header i {
    color: var(--clr-neon-cyan);
    transition: var(--transition);
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    padding-bottom: 20px;
}

.accordion-content p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}


/* --- FOOTER --- */
.footer {
    background: rgba(10, 5, 20, 0.8);
    border-top: 1px solid var(--clr-border);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

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

.footer-brand p {
    color: var(--clr-text-light);
    margin: 20px 0;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--clr-border);
}

.social-icons a:hover {
    background: var(--clr-neon-cyan);
    color: var(--clr-bg-black);
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--clr-white);
}

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

.footer-links ul li a {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--clr-neon-cyan);
    padding-left: 5px;
}

.footer-contact ul li {
    color: var(--clr-text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--clr-border);
    color: var(--clr-text-light);
    font-size: 0.9rem;
}


/* --- ANIMATIONS --- */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(217, 0, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(217, 0, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 0, 255, 0); }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }


/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .cards-grid, .pricing-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .stat-item {
        border-right: none;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
    #navbar {
        top: 0 !important;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 5, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--clr-border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding: 50px 20px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1005;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.15rem;
        margin: 0;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .nav-buttons {
        display: none;
    }
    .mobile-only-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 20px;
    }
    .mobile-only-buttons .btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-container, .about-container, .direct-referral {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-cta {
        justify-content: center;
    }
    .trust-tags {
        justify-content: center;
    }
    .direct-referral {
        flex-direction: column;
        gap: 40px;
        padding: 30px;
    }
    .cards-grid, .pricing-grid, .testimonials-grid, .vision-grid {
        grid-template-columns: 1fr;
    }
    .ladder-step {
        width: 100% !important;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- LEADERSHIP SECTION --- */
.leadership {
    background: radial-gradient(circle at bottom left, var(--clr-bg-teal) 0%, var(--clr-bg-black) 100%);
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1.2fr 2.8fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

.md-card {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    border: 1px solid rgba(255, 215, 0, 0.3); /* Gold border for MD */
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.md-card::after {
    content: 'MD';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--clr-emerald);
    color: var(--clr-bg-black);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
}

.avatar-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-neon-cyan) 0%, var(--clr-emerald) 100%);
    padding: 3px;
    box-shadow: var(--shadow-glow);
}

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #140824;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-inner i {
    font-size: 3rem;
    color: var(--clr-white);
    opacity: 0.85;
}

.leaders-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.leaders-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    text-align: left;
}

@media (max-width: 992px) {
    .leaders-title {
        text-align: center;
    }
}

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

@media (max-width: 768px) {
    .leaders-grid {
        grid-template-columns: 1fr;
    }
}

.leader-card {
    text-align: center;
    padding: 25px 20px;
}

.leader-card .avatar-wrapper {
    width: 90px;
    height: 90px;
}

.leader-card .avatar-inner i {
    font-size: 2.2rem;
}

.leader-card h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.leader-card .role {
    font-size: 0.85rem;
    color: var(--clr-neon-cyan);
    font-weight: 500;
}
