/**
 * BitV Premium Landing Page Stylesheet
 * Vanilla CSS Custom Properties for Theme Toggling
 */

:root {
    /* Dark Theme Variables (Default) */
    --hsl-hue: 255;
    
    --bg-color: hsl(var(--hsl-hue), 32%, 6%);
    --bg-gradient: linear-gradient(135deg, hsl(var(--hsl-hue), 32%, 6%) 0%, hsl(var(--hsl-hue), 40%, 10%) 100%);
    --card-bg: hsl(var(--hsl-hue), 28%, 10%);
    --card-border: hsla(var(--hsl-hue), 25%, 20%, 0.4);
    --card-border-hover: hsla(var(--hsl-hue), 60%, 50%, 0.5);
    
    --text-color: hsl(210, 20%, 98%);
    --text-muted: hsl(215, 12%, 72%);
    --text-contrast: hsl(0, 0%, 100%);
    
    --primary: hsl(var(--hsl-hue), 77%, 57%);
    --primary-hover: hsl(var(--hsl-hue), 77%, 48%);
    --primary-glow: hsla(var(--hsl-hue), 77%, 57%, 0.4);
    
    --secondary-bg: hsl(var(--hsl-hue), 20%, 14%);
    --secondary-border: hsla(var(--hsl-hue), 20%, 25%, 0.5);
    --secondary-text: hsl(var(--hsl-hue), 20%, 90%);
    
    --header-bg: hsla(var(--hsl-hue), 32%, 6%, 0.75);
    --header-border: hsla(var(--hsl-hue), 20%, 15%, 0.5);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
    
    --whatsapp-bg: #25D366;
    --whatsapp-glow: rgba(37, 211, 102, 0.3);

    /* BitV Academy Button Theme Properties */
    --academy-btn-bg: linear-gradient(135deg, #FF5E36 0%, #FF3366 50%, #7A22FF 100%);
    --academy-btn-hover-bg: linear-gradient(135deg, #FF704D 0%, #FF4D79 50%, #8D3CFF 100%);
    --academy-btn-shadow: 0 4px 15px rgba(255, 51, 102, 0.35);
    --academy-btn-hover-shadow: 0 6px 20px rgba(255, 51, 102, 0.55);

    /* Browse Videos Button Theme Properties */
    --videos-btn-bg: linear-gradient(135deg, #7A22FF 0%, #3B82F6 50%, #00D2FF 100%);
    --videos-btn-hover-bg: linear-gradient(135deg, #8D3CFF 0%, #5266FF 50%, #1AD5FF 100%);
    --videos-btn-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
    --videos-btn-hover-shadow: 0 6px 20px rgba(59, 130, 246, 0.55);
}

/* Light Theme Variables */
body.light-theme {
    --bg-color: hsl(var(--hsl-hue), 25%, 96%);
    --bg-gradient: linear-gradient(135deg, hsl(var(--hsl-hue), 25%, 96%) 0%, hsl(var(--hsl-hue), 20%, 98%) 100%);
    --card-bg: hsl(0, 0%, 100%);
    --card-border: hsla(var(--hsl-hue), 15%, 85%, 0.8);
    --card-border-hover: hsla(var(--hsl-hue), 70%, 55%, 0.3);
    
    --text-color: hsl(var(--hsl-hue), 30%, 15%);
    --text-muted: hsl(var(--hsl-hue), 12%, 45%);
    --text-contrast: hsl(var(--hsl-hue), 35%, 10%);
    
    --primary: hsl(var(--hsl-hue), 75%, 52%);
    --primary-hover: hsl(var(--hsl-hue), 75%, 44%);
    --primary-glow: hsla(var(--hsl-hue), 75%, 52%, 0.2);
    
    --secondary-bg: hsl(var(--hsl-hue), 15%, 90%);
    --secondary-border: hsla(var(--hsl-hue), 15%, 80%, 0.8);
    --secondary-text: hsl(var(--hsl-hue), 30%, 25%);
    
    --header-bg: rgba(255, 255, 255, 0.8);
    --header-border: hsla(var(--hsl-hue), 15%, 88%, 0.8);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.1);

    /* BitV Academy Button Light Theme Properties */
    --academy-btn-bg: linear-gradient(135deg, #FF5E36 0%, #FF3366 50%, #7A22FF 100%);
    --academy-btn-hover-bg: linear-gradient(135deg, #FF704D 0%, #FF4D79 50%, #8D3CFF 100%);
    --academy-btn-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
    --academy-btn-hover-shadow: 0 6px 20px rgba(255, 51, 102, 0.45);

    /* Browse Videos Button Light Theme Properties */
    --videos-btn-bg: linear-gradient(135deg, #7A22FF 0%, #3B82F6 50%, #00D2FF 100%);
    --videos-btn-hover-bg: linear-gradient(135deg, #8D3CFF 0%, #5266FF 50%, #1AD5FF 100%);
    --videos-btn-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    --videos-btn-hover-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
}

/* Global Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    /* Custom Scrollbar for Firefox */
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-color);
    overflow-x: hidden;
}

/* Custom Scrollbar for Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
    border-left: 1px solid var(--card-border);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    border: 2px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Navigation Header styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-contrast);
    display: inline-flex;
    align-items: center;
}

.logo span {
    color: var(--primary);
}

.site-logo-img {
    height: 36px;
    width: auto;
    max-width: 160px;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.nav-link:hover .nav-icon {
    transform: translateY(-1px);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-contrast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.2s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: 1px solid var(--header-border);
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    color: var(--text-contrast);
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

/* Toggle Sun/Moon display */
.sun-icon { display: block; }
.moon-icon { display: none; }

body.light-theme .sun-icon { display: none; }
body.light-theme .moon-icon { display: block; }

.portal-btn {
    background: var(--academy-btn-bg);
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--academy-btn-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.portal-btn:hover {
    background: var(--academy-btn-hover-bg);
    transform: translateY(-2px);
    box-shadow: var(--academy-btn-hover-shadow);
    color: #ffffff !important;
}

.portal-btn:active {
    transform: translateY(0);
}

.portal-btn .btn-icon {
    transition: transform 0.3s ease;
}

.portal-btn:hover .btn-icon {
    transform: rotate(15deg) scale(1.15);
}

.hero-portal-btn {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 30px;
}

.videos-btn {
    background: var(--videos-btn-bg);
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--videos-btn-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.videos-btn:hover {
    background: var(--videos-btn-hover-bg);
    transform: translateY(-2px);
    box-shadow: var(--videos-btn-hover-shadow);
    color: #ffffff !important;
}

.videos-btn:active {
    transform: translateY(0);
}

.videos-btn .btn-icon {
    transition: transform 0.3s ease;
}

.videos-btn:hover .btn-icon {
    transform: rotate(15deg) scale(1.15);
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle svg {
    width: 28px;
    height: 28px;
}

/* Mobile Dropdown Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--header-border);
    padding: 20px;
    z-index: 999;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: 15px;
    animation: slideDown 0.3s ease-out;
}

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

.mobile-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 0;
}

.mobile-link:hover, .mobile-link.active {
    color: var(--text-contrast);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 24px 100px 24px;
    display: flex;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(103, 61, 230, 0.15) 0%, rgba(103, 61, 230, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

body.light-theme .hero-glow {
    background: radial-gradient(circle, rgba(103, 61, 230, 0.08) 0%, rgba(103, 61, 230, 0) 70%);
}

.hero-container {
    max-width: 800px;
    z-index: 2;
}

.badge-accent {
    position: relative;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary);
    background: rgba(103, 61, 230, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(103, 61, 230, 0.1);
    animation: badgePulse 4s ease-in-out infinite alternate;
}

.badge-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(135deg, #FF5E36, #FF3366, #7A22FF, #3B82F6, #00D2FF);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: gradientBorder 6s ease infinite;
}

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

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 4px rgba(103, 61, 230, 0.15);
        background: rgba(103, 61, 230, 0.05);
    }
    100% {
        box-shadow: 0 0 12px rgba(103, 61, 230, 0.3);
        background: rgba(103, 61, 230, 0.12);
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-contrast);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-secondary {
    background-color: var(--secondary-bg);
    color: var(--secondary-text);
    border: 1px solid var(--secondary-border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-contrast);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

body.light-theme .btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

/* Main Layout */
.main-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 100px 24px;
}

.no-content {
    text-align: center;
    padding: 60px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 16px;
}

.video-section {
    margin-bottom: 80px;
}

.section-header {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-contrast);
    white-space: nowrap;
}

.title-line {
    height: 2px;
    background-color: var(--card-border);
    flex-grow: 1;
    position: relative;
}

.title-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background-color: var(--primary);
}

/* Video Grid Layout */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Card Common Styling */
.video-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-lg);
}

.thumbnail-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    overflow: hidden;
}

.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .thumbnail {
    transform: scale(1.05);
}

/* Overlay & Buttons */
.play-overlay, .link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.play-btn {
    width: 56px;
    height: 56px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(103, 61, 230, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-icon {
    width: 20px;
    height: 20px;
    margin-left: 3px; /* visual center alignment */
}

.video-card:hover .play-btn {
    transform: scale(1.15);
    background-color: #fff;
    color: var(--primary);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Link Card Overlays */
.link-overlay {
    opacity: 0;
    flex-direction: column;
    gap: 8px;
    background: rgba(10, 8, 19, 0.85);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.video-card:hover .link-overlay {
    opacity: 1;
}

.external-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.video-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-contrast);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Inline Embed Layout Styling */
.video-card-inline {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.iframe-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Detailed Footer */
.footer {
    background-color: var(--secondary-bg);
    border-top: 1px solid var(--secondary-border);
    padding: 60px 24px 30px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 340px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.links-column h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-contrast);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.links-column ul {
    list-style: none;
}

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

.links-column a {
    font-size: 14px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.links-column a:hover {
    color: var(--text-contrast);
}

.footer-icon {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.links-column a:hover .footer-icon {
    color: var(--primary);
    transform: scale(1.15);
}

.developer-link {
    background: var(--academy-btn-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.developer-link:hover {
    background: var(--academy-btn-hover-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: brightness(1.2);
    transform: translateY(-1px);
}

.subscription-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.subscription-group {
    display: flex;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--secondary-border);
    border-radius: 30px;
    padding: 4px;
    transition: all 0.3s ease;
    align-items: center;
}

body.light-theme .subscription-group {
    background-color: rgba(0, 0, 0, 0.02);
}

.subscription-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(103, 61, 230, 0.25);
}

.subscription-input {
    flex-grow: 1;
    background: none;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text-color);
    outline: none;
}

.subscription-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.subscription-btn {
    background: var(--academy-btn-bg);
    color: #ffffff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--academy-btn-shadow);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.subscription-btn:hover {
    background: var(--academy-btn-hover-bg);
    box-shadow: var(--academy-btn-hover-shadow);
    transform: scale(1.05);
}

.subscription-btn:active {
    transform: scale(0.95);
}

.newsletter-msg {
    font-size: 13px;
    margin-top: 8px;
    transition: all 0.3s ease;
    min-height: 20px;
}

.newsletter-msg.success {
    color: #10B981;
}

.newsletter-msg.error {
    color: #EF4444;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--secondary-border);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* Video Player Modal Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(11, 8, 19, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    width: 90%;
    max-width: 900px;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--text-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background-color: var(--danger);
    color: #fff;
    border-color: var(--danger);
}

.modal-close svg {
    width: 18px;
    height: 18px;
}

.modal-title {
    padding: 24px 60px 16px 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-contrast);
    border-bottom: 1px solid var(--card-border);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.modal-video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Premium WhatsApp Chat Widget */
.whatsapp-widget-container {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.whatsapp-bubble {
    position: relative;
    background-color: var(--whatsapp-bg);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px var(--whatsapp-glow);
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsappPulse 2s infinite;
    border: none;
    cursor: pointer;
    padding: 0;
}

.whatsapp-bubble:hover {
    transform: scale(1.08);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

.whatsapp-online-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #25D366;
    border: 2px solid #fff;
    border-radius: 50%;
}

/* WhatsApp Chat Box Panel */
.whatsapp-chat-box {
    position: absolute;
    bottom: 76px;
    left: 0;
    width: 360px;
    max-width: calc(100vw - 32px);
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.whatsapp-chat-box.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Widget Header */
.whatsapp-chat-header {
    background-color: #045e54; /* Premium dark green/teal */
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.whatsapp-chat-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-avatar-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.whatsapp-chat-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.whatsapp-chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-avatar-fallback {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.whatsapp-avatar-status-dot {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 12px;
    height: 12px;
    background-color: #25D366;
    border: 2px solid #045e54; /* matches header green */
    border-radius: 50%;
    z-index: 2;
}

.whatsapp-chat-header-info {
    display: flex;
    flex-direction: column;
}

.whatsapp-chat-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
}

.whatsapp-chat-status {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2px;
}

.whatsapp-chat-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.whatsapp-chat-close:hover {
    color: #fff;
}

.whatsapp-chat-close svg {
    width: 20px;
    height: 20px;
}

/* Chat Body area */
.whatsapp-chat-body {
    background-color: #efe9e2;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='%23b4a996' fill-opacity='0.08'><path d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm36-23c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-24 4c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-8 44c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4z'/></g></svg>");
    padding: 24px 20px;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    min-height: 120px;
}

.whatsapp-chat-bubble {
    background-color: #fff;
    color: #333;
    padding: 12px 14px;
    border-radius: 0px 12px 12px 12px;
    font-size: 13px;
    line-height: 1.45;
    position: relative;
    max-width: 85%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
}

.whatsapp-chat-bubble::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
}

.whatsapp-chat-bubble p {
    margin: 0;
}

.whatsapp-chat-time {
    display: block;
    text-align: right;
    font-size: 10px;
    color: #999;
    margin-top: 4px;
}

/* Chat Footer & Inputs */
.whatsapp-chat-footer {
    background-color: #fff;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.whatsapp-input-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f0f2f5;
    border-radius: 24px;
    padding: 6px 12px 6px 16px;
    transition: background-color 0.2s ease;
}

.whatsapp-input-container:focus-within {
    background-color: #e4e6eb;
}

.whatsapp-input-container input {
    border: none;
    background: transparent;
    flex-grow: 1;
    font-size: 13.5px;
    color: #333;
    outline: none;
    padding: 6px 0;
}

.whatsapp-input-container input::placeholder {
    color: #8f9296;
}

#whatsapp-send-btn {
    background-color: #e91e63; /* Pink accent send button */
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

#whatsapp-send-btn:hover {
    background-color: #d81b60;
    transform: scale(1.05);
}

#whatsapp-send-btn svg {
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    margin-left: -2px;
}

.whatsapp-cta-btn {
    background-color: #25D366;
    color: #fff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-align: center;
}

.whatsapp-cta-btn:hover {
    background-color: #1ebea5;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn-icon {
    width: 18px;
    height: 18px;
}

.whatsapp-brand-footer {
    display: block;
    text-align: center;
    font-size: 10px;
    color: #b0b0b0;
    margin-top: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Media Queries Responsiveness */
@media (max-width: 960px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .header-container {
        padding: 12px 16px;
    }
    .header-actions .portal-btn {
        display: inline-flex;
        padding: 8px;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        box-shadow: var(--academy-btn-shadow);
    }
    .header-actions .portal-btn .portal-btn-text {
        display: none;
    }
    .header-actions .portal-btn svg {
        margin-right: 0 !important;
        width: 18px;
        height: 18px;
    }
    .header-actions {
        margin-left: auto;
        margin-right: 12px;
    }
    .site-logo-img {
        max-width: 120px;
    }
    .mobile-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 15.5px;
        font-weight: 500;
        width: 100%;
        color: var(--text-muted);
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }
    body.light-theme .mobile-link {
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }
    .mobile-link.active {
        color: var(--text-contrast);
        font-weight: 600;
    }
    .mobile-link .nav-icon {
        width: 18px;
        height: 18px;
        color: var(--primary);
    }
    .mobile-nav-btn {
        display: inline-flex !important;
        align-self: flex-start;
        margin-top: 10px;
        padding: 10px 20px !important;
        border-radius: 30px !important;
        font-size: 14.5px !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        width: auto !important;
        height: auto !important;
        box-shadow: var(--academy-btn-shadow) !important;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }
    .mobile-nav-btn svg {
        margin-right: 0 !important;
        width: 16px;
        height: 16px;
    }
}


/* Custom Membership / Goal Tracker Page Styles */
.membership-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.membership-header {
    text-align: center;
    margin-bottom: 40px;
}

.membership-badge {
    background: linear-gradient(135deg, #FF5E36 0%, #FF3366 100%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.25);
}

.membership-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-contrast);
    line-height: 1.25;
    margin-bottom: 20px;
}

.membership-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}
.membership-video-section {
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding: 0 16px;
}

.membership-video-section .video-card {
    position: relative;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Premium Gradient Border Animation */
.membership-video-section .video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #FF5E36, #FF3366, #7A22FF, #00D2FF, #FF5E36);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.2;
    pointer-events: none;
    transition: opacity 0.5s ease;
    animation: borderGradient 4s ease infinite;
}

.membership-video-section .video-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(122, 34, 255, 0.25);
}

.membership-video-section .video-card:hover::after {
    opacity: 1;
}

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

.membership-member-note {
    background-color: var(--card-bg);
    border: 1px dashed var(--primary);
    padding: 16px 24px;
    border-radius: 12px;
    display: inline-block;
    font-size: 15.5px;
    color: var(--text-color);
    box-shadow: var(--shadow-sm);
}

.membership-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.membership-section-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: var(--text-contrast);
}

.section-underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.membership-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.step-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-md);
}

.step-num {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.12;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    user-select: none;
}

.step-card h3 {
    font-size: 19px;
    color: var(--text-contrast);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.membership-features-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 45px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
    align-items: center;
}

.features-heading-col h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: var(--text-contrast);
    margin-bottom: 20px;
    line-height: 1.3;
}

.features-heading-col p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-glow-btn {
    box-shadow: 0 4px 20px rgba(103, 61, 230, 0.4);
}

.features-list-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #25D366;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.4;
}

.membership-visibility-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 45px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

.visibility-divider {
    width: 1px;
    background-color: var(--card-border);
}

.visibility-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: var(--text-contrast);
    margin-bottom: 16px;
}

.visibility-item p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.visibility-badge {
    display: inline-block;
    background-color: rgba(103, 61, 230, 0.1);
    color: var(--primary);
    border: 1px solid rgba(103, 61, 230, 0.2);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.summit-badge {
    background-color: rgba(255, 94, 54, 0.1);
    color: #FF5E36;
    border: 1px solid rgba(255, 94, 54, 0.2);
}

.trophy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trophy-list li {
    font-size: 14.5px;
    color: var(--text-color);
    line-height: 1.5;
}

.membership-quote-block {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(180deg, var(--card-bg) 0%, transparent 100%);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
}

.quote-text {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-contrast);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FF5E36 0%, #FF3366 50%, #7A22FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quote-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Membership Styles */
@media (max-width: 900px) {
    .membership-steps-grid {
        grid-template-columns: 1fr;
    }
    .membership-features-box {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .membership-visibility-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .visibility-divider {
        display: none;
    }
}

/* Custom Membership Plans Landing Page Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-lg);
}

.pricing-card.gold-tier {
    background: linear-gradient(135deg, hsl(var(--hsl-hue), 35%, 11%) 0%, hsl(var(--hsl-hue), 40%, 6%) 100%);
    border: 1px solid hsla(43, 80%, 60%, 0.3);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.08);
}

.pricing-card.gold-tier:hover {
    border-color: hsla(43, 80%, 60%, 0.5);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15);
}

.pricing-card.platinum-tier {
    background: linear-gradient(135deg, hsl(280, 40%, 11%) 0%, hsl(280, 50%, 6%) 100%);
    border: 1px solid hsla(280, 80%, 60%, 0.3);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.08);
}

.pricing-card.platinum-tier:hover {
    border-color: hsla(280, 80%, 60%, 0.5);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15);
}

.pricing-badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.pricing-badge {
    background: linear-gradient(135deg, #FF5E36 0%, #FF3366 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.pricing-badge.referral-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.pricing-badge.platinum-badge {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

.pricing-title-area {
    margin-bottom: 24px;
}

.pricing-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-contrast);
    margin-bottom: 6px;
}

.pricing-sub {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.pricing-card.gold-tier .pricing-sub {
    color: #f59e0b;
}

.pricing-card.platinum-tier .pricing-sub {
    color: #a855f7;
}

.pricing-price-box {
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-contrast);
    letter-spacing: -1px;
    line-height: 1;
}

.pricing-price span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0;
}

.pricing-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--card-border);
}

.pricing-list {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.pricing-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.4;
}

.pricing-item-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card.gold-tier .pricing-item-icon {
    color: #f59e0b;
}

.pricing-card.platinum-tier .pricing-item-icon {
    color: #a855f7;
}

.pricing-btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.pricing-btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.pricing-btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.pricing-btn-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.pricing-btn-gold:hover {
    transform: translateY(-2px);
}

.pricing-btn-platinum {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(168, 85, 247, 0.3);
}

.pricing-btn-platinum:hover {
    transform: translateY(-2px);
}

/* Detail Blocks Styles */
.info-section {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 45px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.info-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon-box {
    width: 54px;
    height: 54px;
    background-color: hsla(var(--hsl-hue), 77%, 57%, 0.1);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon-box svg {
    width: 26px;
    height: 26px;
}

.info-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: var(--text-contrast);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.how-card {
    background-color: var(--bg-color);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.how-card-num {
    width: 36px;
    height: 36px;
    background-color: var(--card-bg);
    border: 3px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 15px;
}

.how-card h4 {
    font-size: 18px;
    color: var(--text-contrast);
    margin-bottom: 10px;
}

.how-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.eligibility-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.eligibility-card {
    background-color: var(--bg-color);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
}

.eligibility-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.eligibility-card p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-contrast);
    line-height: 1.5;
}

.incomplete-box {
    background: linear-gradient(135deg, hsl(var(--hsl-hue), 35%, 11%) 0%, hsl(var(--hsl-hue), 40%, 6%) 100%);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 45px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.incomplete-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    color: var(--text-contrast);
    margin-bottom: 15px;
}

.incomplete-text p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.incomplete-rules {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.incomplete-rule-item {
    display: flex;
    gap: 12px;
    font-size: 14.5px;
    color: var(--text-color);
}

.incomplete-rule-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.example-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
}

.example-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.example-badge {
    background-color: #f59e0b;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.example-header h4 {
    font-size: 18px;
    color: var(--text-contrast);
}

.example-body {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.example-highlight {
    background-color: rgba(103, 61, 230, 0.08);
    border-left: 3px solid var(--primary);
    padding: 12px 18px;
    margin-top: 15px;
    border-radius: 0 8px 8px 0;
    font-size: 13.5px;
    color: var(--text-color);
}

/* Responsive Pricing */
@media (max-width: 990px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 50px auto 50px auto;
    }
    .how-it-works-grid, .eligibility-container, .incomplete-box {
        grid-template-columns: 1fr;
    }
}

/* New Premium Sections for Membership Plans */

/* Comparison Table */
.comparison-container {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 45px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 24px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--card-border);
    font-size: 15px;
}

.comparison-table th {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-contrast);
    background-color: rgba(255, 255, 255, 0.02);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-contrast);
}

.comparison-table td {
    color: var(--text-muted);
}

.comparison-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.01);
}

.comparison-check {
    color: #25D366;
    font-weight: bold;
}

.comparison-cross {
    color: #ef4444;
    font-weight: bold;
}

/* Calculator Style */
.calculator-box {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 45px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-top: 30px;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-group label {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-contrast);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-val-badge {
    background-color: rgba(103, 61, 230, 0.12);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
}

.calc-slider {
    width: 100%;
    height: 6px;
    background-color: var(--secondary-bg);
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: transform 0.1s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calculator-results {
    background: linear-gradient(135deg, hsl(var(--hsl-hue), 35%, 11%) 0%, hsl(var(--hsl-hue), 40%, 6%) 100%);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calc-result-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.calc-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.calc-breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
}

.calc-breakdown-row span:last-child {
    font-weight: 600;
    color: var(--text-color);
}

.calc-total-row {
    border-top: 1px solid var(--card-border);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-total-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-contrast);
}

.calc-total-price {
    font-size: 30px;
    font-weight: 800;
    color: #25D366;
    text-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
}

/* Summit VIP Cards Grid */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.vip-card {
    background-color: var(--bg-color);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.vip-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-3px);
}

.vip-icon-box {
    width: 46px;
    height: 46px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.vip-text h4 {
    font-size: 18px;
    color: var(--text-contrast);
    margin-bottom: 8px;
}

.vip-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* FAQ Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 35px;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-contrast);
    outline: none;
}

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

.faq-answer-inner {
    padding: 0 28px 22px 28px;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Mobile responsive details */
@media (max-width: 900px) {
    .calculator-grid, .vip-grid {
        grid-template-columns: 1fr;
    }
}

/* Guarantee readable light text on dark cards inside Light Theme Mode */
.pricing-card.gold-tier,
.pricing-card.platinum-tier {
    color: #ffffff !important;
}

.pricing-card.gold-tier h2,
.pricing-card.platinum-tier h2 {
    color: #ffffff !important;
}

.pricing-card.gold-tier .pricing-price,
.pricing-card.platinum-tier .pricing-price {
    color: #ffffff !important;
}

.pricing-card.gold-tier .pricing-price span,
.pricing-card.platinum-tier .pricing-price span {
    color: rgba(255, 255, 255, 0.6) !important;
}

.pricing-card.gold-tier .pricing-desc,
.pricing-card.platinum-tier .pricing-desc {
    color: rgba(255, 255, 255, 0.7) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.pricing-card.gold-tier .pricing-item,
.pricing-card.platinum-tier .pricing-item {
    color: rgba(255, 255, 255, 0.9) !important;
}

.incomplete-box {
    color: #ffffff !important;
}

.incomplete-box h3 {
    color: #ffffff !important;
}

.incomplete-box p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.incomplete-rule-item {
    color: rgba(255, 255, 255, 0.9) !important;
}

.example-box {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.example-box h4 {
    color: #ffffff !important;
}

.example-body {
    color: rgba(255, 255, 255, 0.7) !important;
}

.example-highlight {
    background-color: rgba(255, 255, 255, 0.06) !important;
    border-left-color: var(--primary) !important;
    color: #ffffff !important;
}

/* VIP Section Wrapper */
.vip-section-wrapper {
    background: linear-gradient(135deg, hsl(var(--hsl-hue), 25%, 8%) 0%, hsl(var(--hsl-hue), 30%, 4%) 100%) !important;
    border-color: rgba(122, 34, 255, 0.25) !important;
    color: #ffffff !important;
}

.vip-section-wrapper h3 {
    color: #ffffff !important;
}

.vip-section-wrapper > p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Auto-scrolling horizontal marquee styling */
.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 16px 0;
    margin: 20px 0;
    /* Premium fade-out mask edges */
    mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scroll-marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    padding: 10px 24px 10px 10px;
    min-width: 260px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.marquee-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

.marquee-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    background: #111;
}

.marquee-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.marquee-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-contrast);
}

.marquee-loc {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

/* Scroll To Top Button */
.scroll-to-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--videos-btn-bg);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--videos-btn-shadow);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-to-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background: var(--videos-btn-hover-bg);
    transform: scale(1.08) translateY(-2px);
    box-shadow: var(--videos-btn-hover-shadow);
}

.scroll-to-top-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.2s ease;
}

.scroll-to-top-btn:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top-btn {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
    .scroll-to-top-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Premium Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    margin-top: 30px;
    text-align: left;
}

.contact-info-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
}

.contact-info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-contrast);
    margin-bottom: 24px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(103, 61, 230, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-contrast);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-text p, .contact-info-text a {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.5;
    transition: color 0.2s ease;
}

.contact-info-text a:hover {
    color: var(--primary);
}

.contact-form-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-contrast);
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-contrast);
}

.form-input, .form-textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-color);
    font-size: 14.5px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.light-theme .form-input, body.light-theme .form-textarea {
    background-color: #f9fafb;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

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

.contact-submit-btn {
    background: var(--academy-btn-bg);
    color: #fff !important;
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--academy-btn-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background: var(--academy-btn-hover-bg);
    transform: translateY(-2px);
    box-shadow: var(--academy-btn-hover-shadow);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-submit-btn .btn-icon {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.contact-alert {
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14.5px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-alert-success {
    background-color: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: #25D366;
}

.contact-alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* About Page Premium Layout */
.about-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.about-badge {
    position: relative;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 24px;
    color: var(--primary);
    background: rgba(103, 61, 230, 0.08);
}

.about-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(135deg, #FF5E36, #FF3366, #7A22FF, #3B82F6, #00D2FF);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 70px;
    text-align: left;
}

.about-story-box {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 45px;
    box-shadow: var(--shadow-sm);
}

.about-story-title {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-contrast);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-story-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.about-story-text {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 15px;
}

.about-mission-vision {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-mv-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.about-mv-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-3px);
}

.about-mv-icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(103, 61, 230, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-mv-card:hover .about-mv-icon-box {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.about-mv-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-contrast);
    margin-bottom: 8px;
}

.about-mv-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* About Stats Section */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 70px;
}

.about-stat-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.about-stat-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: rgba(103, 61, 230, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    transition: all 0.3s ease;
}

.about-stat-card:hover .about-stat-icon-wrapper {
    background: var(--academy-btn-bg);
    color: #fff;
    box-shadow: var(--academy-btn-shadow);
}

.about-stat-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.about-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-contrast);
    line-height: 1.2;
}

.about-stat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 8px;
    display: block;
}

/* About CTA Box */
.about-cta-container {
    background: linear-gradient(135deg, hsl(var(--hsl-hue), 35%, 11%) 0%, hsl(var(--hsl-hue), 40%, 6%) 100%);
    border: 1px solid rgba(122, 34, 255, 0.2);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.about-cta-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(122, 34, 255, 0.15) 0%, rgba(122, 34, 255, 0) 70%);
    pointer-events: none;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.about-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.about-cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about-cta-btn-primary {
    background: var(--academy-btn-bg);
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14.5px;
    font-weight: 600;
    box-shadow: var(--academy-btn-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-cta-btn-primary:hover {
    background: var(--academy-btn-hover-bg);
    transform: translateY(-2px);
    box-shadow: var(--academy-btn-hover-shadow);
}

.about-cta-btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 14.5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-cta-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 990px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    .about-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .about-cta-btn-primary, .about-cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .about-story-box {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 20px 80px 20px;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .whatsapp-widget-container {
        left: 16px;
        bottom: 16px;
    }
    .whatsapp-bubble {
        width: 48px;
        height: 48px;
    }
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }

    /* Responsive paddings for containers to prevent horizontal overflow */
    .info-section {
        padding: 24px 16px;
        border-radius: 16px;
        margin-bottom: 24px;
    }

    .incomplete-box {
        padding: 24px 16px;
        border-radius: 16px;
        gap: 24px;
    }

    .comparison-container {
        padding: 24px 16px;
        border-radius: 16px;
        margin-bottom: 24px;
    }

    .comparison-table th, .comparison-table td {
        padding: 12px 14px;
        font-size: 13.5px;
    }

    .pricing-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .example-box {
        padding: 16px;
        border-radius: 12px;
    }

    .membership-features-box {
        padding: 24px 16px;
        border-radius: 16px;
        margin-bottom: 24px;
        gap: 24px;
    }

    .membership-visibility-card {
        padding: 24px 16px;
        border-radius: 16px;
        margin-bottom: 24px;
        gap: 24px;
    }

    .about-story-box {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .about-cta-container {
        padding: 32px 16px;
        border-radius: 20px;
    }

    .contact-info-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .contact-form-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .page-content-wrapper {
        padding: 0 16px;
    }

    /* Additional inner cards padding to prevent overflow on mobile devices */
    .step-card {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .how-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .eligibility-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .vip-card {
        padding: 20px 16px;
        border-radius: 16px;
        gap: 16px;
    }
}


