:root {
    --bg-body: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1A1A1A;
    --text-main: #FFFFFF;
    --text-muted: #888888;
    --accent-blue: #00FFFF;
    --accent-purple: #2908F1;
    /* Electric Blue Palette */
    --accent-pink: #7DF9FF;
    --accent-gold: #FFD700;
    /* Using bright cyan as highlight */
    --gradient-main: linear-gradient(135deg, #00FFFF 0%, #2908F1 100%);
    --border-color: rgba(255, 255, 255, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

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

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

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Grid Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

h1,
h2,
h3,
h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    /* Bebas only has one weight */
    letter-spacing: 0.5px;
    color: var(--text-main);
    text-transform: uppercase;
}

h1 {
    font-size: clamp(64px, 8vw, 100px);
    line-height: 0.9;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 16px;
}

h3 {
    font-size: 32px;
    margin-bottom: 8px;
}

p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 24px;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 999px;
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn:hover {
    transform: scale(1.05);
}

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

.btn-primary {
    background: #fff;
    color: #000;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.btn-gradient {
    background: var(--gradient-main);
    color: #fff;
}

.btn-gradient:hover {
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.4);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-outline-white:hover {
    background: #1ff0ff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Navbar */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(0, 255, 255, 0.15);
    transition: all 0.2s ease;
}

.logo-link:hover .logo-img {
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, rgba(0, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted) !important;
}

.nav-links a:hover {
    color: #fff;
}

/* Hero */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #fff;
}

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

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
    margin-bottom: 40px;
}

.bento-card {
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    padding: 0;
    /* Removed padding for full-bleed image */
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.bento-image-header {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-card:hover .bento-image-header img {
    transform: scale(1.1);
}

.bento-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.bento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.bento-card:hover::after {
    opacity: 1;
}

.bento-span-2 {
    grid-column: span 2;
}

.bento-span-3 {
    grid-column: span 3;
}

.bento-row-2 {
    grid-row: span 2;
}

@media (max-width: 900px) {
    .bento-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 24px;

        /* Full Bleed Fix */
        width: calc(100% + 48px);
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        /* Snap alignment offset */
        padding-right: 24px;

        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
        scrollbar-width: none;
    }

    .bento-grid::-webkit-scrollbar {
        display: none;
    }

    .bento-card {
        min-width: 85vw;
        scroll-snap-align: center;
        flex-shrink: 0;
        margin-bottom: 0;
        padding: 30px 50px !important;
        position: relative;
        z-index: 1;
    }

    .bento-span-2,
    .bento-span-3 {
        grid-column: auto;
        min-width: 85vw;
    }
}

/* Card Content */
.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    /* Ensure image stays within radius */
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-top: auto;
}

/* Stats Section */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 60px 0;
    flex-wrap: wrap;
}

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

.stat-num {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    display: block;
}

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

/* Pricing */
/* Pricing */
.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(0, 153, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border-color: var(--accent-blue);
}

.price {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
}

.price span {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0;
    margin-top: 100px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .pricing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 24px;

        /* Full Bleed Fix */
        width: calc(100% + 48px);
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;

        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .pricing-card {
        min-width: 85vw;
        scroll-snap-align: center;
        flex-shrink: 0;
        padding: 30px 50px !important;
        position: relative;
        z-index: 1;
    }
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* Missing Classes from Migration */
/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-video iframe,
.hero-bg-video video {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 100vw;
    height: 140vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
    /* Ensure video covers the area */
}

/* Aspect Ratio Fix for Video */
@media (min-aspect-ratio: 16/9) {
    .hero-bg-video iframe {
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-bg-video iframe {
        width: 177.78vh;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: rgba(0, 0, 0, 0.6);
    /* Darken video */
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
    animation: slideInLeftInRigthInFinalCenter 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    /* Start hidden */
}

@media (max-width: 500px) {
    .hero-bg-video video {
        height: 160%;
        top: 25%;
    }

    .hero-overlay {
        height: 89%;
    }

    .hero-content-wrapper {
        bottom: 15%;
    }
}

/* Animations */
@keyframes slideInLeftInRigthInFinalCenter {
    0% {
        transform: translateX(-100vw);
        opacity: 0;
    }

    50% {
        transform: translateX(20vw);
        transform: scale(0.5);
        opacity: 0.5;
    }

    100% {
        transform: translateX(0);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes electricGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 255, 255, 0);
        color: #fff;
    }

    15% {
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    }

    30% {
        text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    }

    60% {
        text-shadow: 0 0 20px #00FFFF, 0 0 10px #2908F1;
    }

    80% {
        text-shadow: 0 0 10px #00FFFF, 0 0 20px #2908F1;
    }

    100% {
        text-shadow: 0 0 10px #00FFFF, 0 0 30px #2908F1;
        color: #fff;
    }
}

.hero-title {
    animation: electricGlow 6s ease-in-out infinite;
    animation-delay: 1s;
    /* Start after slideIn finishes */
}

/* Remove glow from span since parent has it */
.hero-title .text-highlight-blue {
    animation: none;
    color: inherit;
    /* Inherit white color */
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: transparent;
    border: none;
    border-left: 3px solid var(--accent-blue);
    padding: 0 0 0 12px;
    border-radius: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 16px auto 0;
}

.text-highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    /* Fix for some browsers */
}

/* Hero Specifics to match inline styles */
.hero-title {
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    text-shadow: 0 0 40px rgba(0, 153, 255, 0.3);
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 20px;
    color: var(--text-muted);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

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

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.mission-box {
    border-left: 4px solid var(--accent-blue);
    padding: 30px;
    margin: 30px 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--accent-blue);
    box-shadow: var(--glass-shadow);
}

.mission-text {
    font-size: 20px;
    font-style: italic;
    color: #fff;
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    padding: 60px;
    overflow: hidden;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: inherit;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.form-control option {
    background: var(--bg-card);
    /* Dark background for options so white text shows up */
    color: #fff;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-main);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Newsletter */
.newsletter-card {
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, rgba(136, 0, 255, 0.1) 100%);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 900px) {
    .newsletter-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.newsletter-badge {
    display: inline-block;
    background: var(--accent-blue);
    color: #666;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-features {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .newsletter-features {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-form input {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-blue);
    outline: none;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--accent-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

/* Footer Widget Area if needed */
.footer-widget {
    margin-bottom: 20px;
}

/* Restored Sections Styling */

/* Video Section */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    margin-bottom: 60px;
    background: #000;
}

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

/* Transformations Slider */
.transformations-slider-container {
    text-align: center;
    padding: 40px 0;
}

.transformations-title {
    margin-bottom: 30px;
}

.transformations-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.transformations-track-container {
    overflow: hidden;
    width: 100%;
    max-width: 800px;
}

.transformations-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.transformation-slide {
    min-width: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.transformation-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.trans-arrow,
.slider-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.trans-arrow:hover,
.slider-arrow:hover {
    background: var(--accent-blue);
}

/* Testimonials 3D Carousel */
.testimonials-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 50px;
    perspective: 1500px;
    /* 3D perspective */
}

.testimonials-slider {
    position: relative;
    width: 100%;
    height: 450px;
    transform-style: preserve-3d;
}

.testimonials-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial {
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 350px;
    margin-left: -175px;
    /* Center horizontally */
    margin-top: -150px;
    /* Center vertically */
    display: flex;
    flex-direction: column;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
}

/* Active center card */
.testimonial.active {
    opacity: 1;
    z-index: 5;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .testimonials-slider-container {
        padding: 40px 20px;
    }

    /* On mobile, use auto height instead of fixed height */
    .testimonials-slider {
        height: auto;
        min-height: 0;
    }

    /* Switch from 3D absolute positioning to a simple single-card layout on mobile */
    .testimonials-track {
        display: block;
        position: relative;
        transform: none !important;
        height: auto;
    }

    .testimonial {
        position: relative;
        display: none;
        left: auto;
        top: auto;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        transform: none !important;
        opacity: 1 !important;
        padding: 24px;
    }

    .testimonial.active {
        display: flex;
        transform: none !important;
        box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important;
    }
}

.testimonial:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.stars {
    color: #FFD700;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    margin: 0;
    color: #fff;
}

.author-role {
    font-size: 12px;
    color: var(--accent-blue);
    margin: 0;
}

.slider-arrow.prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    /* Above testimonial cards */
}

.slider-arrow.next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    /* Above testimonial cards */
}

.newsletter-section {
    margin-top: 150px;
}

/* Card List Styles */
.bento-card ul,
.path-features,
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.bento-card li,
.path-features li,
.pricing-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.bento-card li::before,
.path-features li::before,
.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: 0.3s;
}

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

.faq-item.active {
    border-color: var(--accent-blue);
    background: var(--bg-card-hover);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: 0.3s;
    color: var(--accent-blue);
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
    padding-bottom: 24px;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Professional Footer */
/* === FOOTER STYLES === */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(5, 5, 5, 1) 100%);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    padding: 100px 0 30px;
    margin-top: 120px;
    font-size: 14px;
    overflow: hidden;
}

/* Footer accent line */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 255, 255, 0.5) 20%,
            rgba(41, 8, 241, 0.5) 50%,
            rgba(0, 255, 255, 0.5) 80%,
            transparent 100%);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    position: relative;
}

/* Brand Column */
.brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    margin-bottom: 20px;
    margin-left: 8%;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.02);
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.3);
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, rgba(0, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 350px;
    font-size: 14px;
}

/* Footer Column Headings */
.footer-col h4 {
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    text-shadow: none !important;
    animation: none !important;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
}

/* Footer Menu */
.footer-menu,
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li,
.footer-col ul li {
    margin: 0;
}

.footer-menu a,
.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-menu a::before,
.footer-col ul a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-blue);
    bottom: -2px;
    transition: width 0.3s ease;
}

.footer-menu a:hover,
.footer-col ul a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-menu a:hover::before,
.footer-col ul a:hover::before {
    width: 100%;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-blue), rgba(41, 8, 241, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.social-links a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-blue);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.3);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover i {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-blue);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 30px;
        margin-top: 80px;
    }

    .footer-content {
        padding: 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .brand-col {
        grid-column: span 2;
        text-align: center;
        align-items: center;
    }

    .footer-logo img {
        max-width: 180px;
    }

    .footer-tagline {
        max-width: 100%;
        text-align: center;
    }

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

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-col {
        grid-column: span 1;
    }

    .footer-col h4 {
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-menu,
    .footer-col ul {
        align-items: center;
        text-align: center;
    }

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

/* App Section */
.app-section {
    /* Background removed to use global dynamic background */
    position: relative;
    overflow: hidden;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .app-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-features {
        text-align: left;
        display: inline-block;
    }
}

.app-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .app-badges {
        justify-content: center;
    }
}

.app-badge-tech {
    color: #00FFFF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.app-badge-soon {
    background: #FFD700;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.text-highlight-gold {
    color: #fff;
    /* Fallback */
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.app-features li {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 16px;
}

.app-features strong {
    color: #fff;
}

.app-features li::before {
    content: '✓';
    color: #FFD700;
    margin-right: 10px;
    font-weight: bold;
}

.btn-gold {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 16px 32px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    border-radius: 999px;
}

.btn-gold:hover {
    background: #FFD700;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.app-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Phone Mockup */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #1a1a1a;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.phone-screen {
    background: #0a0a0a;
    height: 100%;
    border-radius: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-greeting {
    font-weight: 700;
    font-size: 18px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: #333;
    border-radius: 50%;
}

.phone-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 16px;
    transition: all 0.3s ease;
}

.phone-card:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.skill-percent {
    color: #FFD700;
    font-weight: 700;
}

.skill-progress {
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
}

.skill-bar {
    height: 100%;
    background: #FFD700;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.heatmap-header {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.heatmap-grid {
    display: flex;
    gap: 6px;
}

.heat-box {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.level-1 {
    background: #035096;
}

.level-2 {
    background: #0000FF;
}

.level-3 {
    background: #2908F1;
}

.level-4 {
    background: #00FFFF;
}

/* App Animations */
@keyframes fill-bar {
    from {
        width: 0;
    }

    to {
        width: 78%;
    }
}

@keyframes pulse-opacity {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.skill-bar {
    height: 100%;
    background: #FFD700;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    width: 0;
    /* Start at 0 */
    animation: fill-bar 1.5s ease-out forwards;
    animation-delay: 0.5s;
    /* Wait for scroll/load */
}

.heat-box {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    animation: pulse-opacity 2s infinite alternate;
}

/* Staggered Entrance Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 {
    animation: fade-in-up 0.6s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.stagger-2 {
    animation: fade-in-up 0.6s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.stagger-3 {
    animation: fade-in-up 0.6s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* Workout Card Styles */
.workout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
}

.workout-time {
    color: var(--text-muted);
    font-size: 12px;
}

.workout-preview {
    display: flex;
    align-items: center;
    gap: 12px;
}

.workout-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.workout-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.workout-name {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.workout-meta {
    font-size: 11px;
    color: var(--text-muted);
}

.heat-box:nth-child(odd) {
    animation-delay: 0.2s;
}

.heat-box:nth-child(even) {
    animation-delay: 0.5s;
}

.heat-box:nth-child(3n) {
    animation-delay: 0.8s;
}

/* Dynamic Background */
#dynamic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #050505;
    overflow: hidden;
}

#dynamic-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 102, 255, 0.15), transparent 50%);
    opacity: 1;
    transition: opacity 0.5s;
    pointer-events: none;
    will-change: background;
}

#dynamic-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 calc(var(--scroll-y, 0px) * -0.1);
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

/* Ensure body is transparent to show bg */
body {
    background-color: transparent;
}


/* Theme Switcher */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}


/* Light Mode Variables */
body.light-mode {
    --bg-body: #f5f5f7;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f0f0;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .theme-toggle {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Light Mode Buttons */
body.light-mode .btn-primary {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

body.light-mode .btn-primary:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3) !important;
}

body.light-mode .btn-outline-white,
body.light-mode .btn-outline,
body.light-mode .btn {
    color: #1a1a1a !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
}

body.light-mode .btn-outline-white,
body.light-mode .btn-outline {
    background: rgba(0, 0, 0, 0.05) !important;
}

body.light-mode .btn-outline-white:hover,
body.light-mode .btn-outline:hover,
body.light-mode .btn:hover {
    background: rgba(0, 0, 0, 0.1) !important;
    color: #000 !important;
}

body.light-mode .btn-primary {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

body.light-mode .btn-gradient {
    color: #ffffff !important;
}

/* Light Mode Inputs */
body.light-mode input:not([type="checkbox"]):not([type="radio"]),
body.light-mode textarea,
body.light-mode select {
    background: #ffffff !important;
    color: #1a1a1a !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
}

body.light-mode .form-control option {
    background: #ffffff;
    color: #1a1a1a;
}

body.light-mode input::placeholder,
body.light-mode textarea::placeholder {
    color: #666666 !important;
}

body.light-mode input:focus,
body.light-mode textarea:focus,
body.light-mode select:focus {
    background: #ffffff !important;
    border-color: var(--accent-blue) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(0, 153, 255, 0.2) !important;
}

/* CSS Scroll-Driven Animations */

/* Keyframes */
@keyframes scale-down-fade {
    to {
        transform: scale(0.6);
        opacity: 0;
    }
}

@keyframes zoom-in {
    to {
        transform: scale(1.0);
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(50vw);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-left {
    from {
        opacity: 0;
        transform: translateX(-50vw);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-right {
    from {
        opacity: 0;
        transform: translateX(50vw);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-up {
    from {
        opacity: 0;
        transform: scale(0.6);
    }

    to {
        opacity: 1;
        transform: scale(1.0);
    }
}

/* Hero Animations Removed */

/* Section Animations */
.scroll-animate {
    /* Base styles */
    opacity: 0;
    /* Fallback */
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
    animation-fill-mode: both;
}

.scroll-animate.anim-fast {
    animation-range: entry 0% cover 15%;
    /* Completes faster, good for bottom elements */
}

.scroll-animate.anim-up {
    animation-name: fade-up;
}

.scroll-animate.anim-left {
    animation-name: slide-left;
}

.scroll-animate.anim-right {
    animation-name: slide-right;
}

.scroll-animate.anim-scale {
    animation-name: scale-up;
}

/* Light Mode Mobile Menu */
body.light-mode .mobile-menu {
    background: rgba(255, 255, 255, 0.95);
}

body.light-mode .mobile-link {
    color: #1a1a1a;
}

body.light-mode .mobile-menu-toggle {
    color: #1a1a1a;
}

body.light-mode .sun-icon {
    display: block;
}

body.light-mode .moon-icon {
    display: none;
}

body.light-mode #dynamic-bg {
    background: #f5f5f7;
}

body.light-mode #dynamic-bg::after {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}

body.light-mode .hero-title,
body.light-mode h2,
body.light-mode h3 {
    color: #1a1a1a;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--accent-blue);
}

.mobile-cta {
    font-size: 20px;
    padding: 12px 32px;
}

@media (max-width: 900px) {

    .nav-links,
    .desktop-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

body.light-mode .card,
body.light-mode .bento-card,
body.light-mode .program-card,
body.light-mode .faq-item,
body.light-mode .footer,
body.light-mode .pricing-card,
body.light-mode .contact-container,
body.light-mode .testimonial {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

body.light-mode .text-gradient {
    background: linear-gradient(135deg, #0066FF 0%, #0044AA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* How It Works - Steps as Cards */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .steps-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 24px;

        /* Full Bleed Fix */
        width: calc(100% + 48px);
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;

        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .steps-grid::-webkit-scrollbar {
        display: none;
    }

    .step,
    .simple-step {
        min-width: 85vw;
        scroll-snap-align: center;
        flex-shrink: 0;
        padding: 30px 50px !important;
        position: relative;
        z-index: 1;
    }
}

.step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.step:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.step-number {
    font-size: 60px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    z-index: 0;
}

.step h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    font-size: 24px;
}

.step p {
    position: relative;
    z-index: 1;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Simple Step (Beginner Friendly) */
.simple-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    /* Softer background */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-step h3 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 0;
    /* Friendly */
}

.step-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.badge-soft {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0, 255, 255, 0.1);
    color: var(--accent-pink);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 0.5px;
}

/* Light Mode Overrides for Steps */
body.light-mode .step {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .step-number {
    color: rgba(0, 0, 0, 0.05);
}

/* Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: #050505;
    /* Base dark background */
}

/* Light Mode Canvas Background */
body.light-mode #bg-canvas {
    background: #f5f5f7;
}

/* Light Mode Header */
body.light-mode header {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-mode .nav-links a {
    color: #000;
}

body.light-mode .nav-links a:hover {
    color: var(--accent-blue);
}

body.light-mode .logo-text {
    color: #000;
}


/* Light Mode Back to Top */
body.light-mode .back-to-top {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Refined Pricing Section */
.pricing-section {
    position: relative;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    overflow: hidden;
}

/* Add a background glow effect */
.pricing-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    /* Darker glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    /* More rounded */
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 102, 255, 0.1);
}

/* Featured Card */
.pricing-card.featured {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 102, 255, 0.3);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-blue);
    color: #666;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.4);
}

.pricing-header {
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #fff;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.pricing-currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.pricing-features {
    margin: 0 0 2rem 0;
    padding: 0;
    list-style: none;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-align: left;
}

.pricing-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.pricing-btn-primary {
    background: var(--accent-blue);
    color: #666;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.pricing-btn-primary:hover {
    background: #0052cc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.pricing-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.pricing-btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* Enhanced Mobile Glassmorphism */
@media (max-width: 900px) {

    .card,
    .bento-card,
    .program-card,
    .faq-item,
    .pricing-card,
    .step,
    .testimonial {
        background: rgba(255, 255, 255, 0.03) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
    }

    /* Light Mode Mobile Glassmorphism */
    body.light-mode .card,
    body.light-mode .bento-card,
    body.light-mode .program-card,
    body.light-mode .faq-item,
    body.light-mode .pricing-card,
    body.light-mode .step,
    body.light-mode .testimonial {
        background: rgba(255, 255, 255, 0.6) !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15) !important;
    }
}

/* Login Page Styles */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    /* Top padding for header */
    background: radial-gradient(circle at top right, rgba(41, 8, 241, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(0, 255, 255, 0.05), transparent 40%);
}

.login-container {
    width: 100%;
    max-width: 450px;
}

.login-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.login-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-muted);
}

.forgot-password {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #fff;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.login-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--text-muted);
}

.login-footer a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Login Page Light Mode Overrides */
body.light-mode .login-section {
    background: radial-gradient(circle at top right, rgba(41, 8, 241, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(0, 255, 255, 0.05), transparent 40%);
    background-color: #f5f5f7;
}

body.light-mode .login-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

body.light-mode .login-header h2 {
    color: #000;
}

body.light-mode .login-header p {
    color: #666;
}

body.light-mode .form-group label {
    color: #333;
}

body.light-mode .input-field {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
    color: #000;
}

body.light-mode .input-field:focus {
    background: #fff;
    border-color: var(--accent-blue);
}

body.light-mode .remember-me {
    color: #666;
}

body.light-mode .login-footer {
    border-top-color: rgba(0, 0, 0, 0.1);
    color: #666;
}

body.light-mode .login-footer a {
    color: #000;
}

/* Dashboard Styles */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
    /* Header height */
}

.dashboard-sidebar {
    width: 280px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    position: fixed;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.user-profile-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-avatar-large {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.user-info h3 {
    font-size: 16px;
    margin: 0;
}

.user-plan {
    font-size: 12px;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dash-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dash-link:hover,
.dash-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dash-link.active {
    border-left: 3px solid var(--accent-gold);
}

.dash-link.logout {
    margin-top: auto;
    color: #ff4444;
}

.dashboard-content {
    flex: 1;
    margin-left: 280px;
    padding: 40px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title-dash {
    font-size: 20px;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 16px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.stat-trend {
    font-size: 12px;
    color: var(--accent-green);
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.activity-icon {
    font-size: 24px;
}

.activity-details h4 {
    font-size: 14px;
    margin: 0 0 4px;
}

.activity-details span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Programs Grid Dash */
.programs-grid-dash {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.program-card-dash {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-image {
    height: 150px;
    background-size: cover;
    background-position: center;
}

.program-info {
    padding: 20px;
}

.progress-bar-wrapper {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 10px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent-gold);
}

.progress-text {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 15px;
}

/* Settings & Billing */
.settings-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-card h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.billing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.billing-table th {
    text-align: left;
    color: var(--text-muted);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.billing-table td {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-paid {
    color: var(--accent-green);
    background: rgba(0, 255, 0, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* Light Mode Overrides for Dashboard */
body.light-mode .dashboard-sidebar {
    background: #fff;
    border-right-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .user-profile-summary {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .user-info h3 {
    color: #000;
}

body.light-mode .dash-link {
    color: #666;
}

body.light-mode .dash-link:hover,
body.light-mode .dash-link.active {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

body.light-mode .dashboard-header h1 {
    color: #000;
}

body.light-mode .section-title-dash {
    color: #000;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .stat-card,
body.light-mode .activity-item,
body.light-mode .program-card-dash,
body.light-mode .settings-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .stat-value {
    color: #000;
}

body.light-mode .activity-details h4,
body.light-mode .activity-details p {
    color: #000;
}

/* Global Light Mode Styles */
body.light-mode {
    background-color: #f5f5f7;
    color: #000000;
}

body.light-mode .bento-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

body.light-mode .bento-card h3 {
    color: #000000;
}

body.light-mode .bento-card p {
    color: #666666;
}

body.light-mode .section-subtitle {
    color: #666666;
}

body.light-mode .blog-date {
    color: var(--accent-purple) !important;
    /* Darker blue for contrast */
}

body.light-mode .pagination li a,
body.light-mode .pagination li span {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    color: #000000;
}

body.light-mode .pagination li a:hover {
    background: rgba(0, 0, 0, 0.05);
}

body.light-mode .pagination li span.current {
    background: var(--accent-gold);
    color: #000000;
    border-color: var(--accent-gold);
}

body.light-mode .program-info h3,
body.light-mode .settings-card h3 {
    color: #000;
}

body.light-mode .billing-table th {
    color: #666;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .billing-table td {
    color: #333;
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .dashboard-wrapper {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 15px;
    }

    .dashboard-content {
        margin-left: 0;
        padding: 20px;
    }

    .dashboard-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .dash-link {
        white-space: nowrap;
    }
}

/* Redesigned Dashboard Styles */
.dashboard-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    min-height: 100vh;
}

.dash-header-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.profile-text h1 {
    font-size: 24px;
    margin: 0 0 5px;
}

.profile-badge {
    background: rgba(41, 8, 241, 0.2);
    color: var(--accent-blue);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(41, 8, 241, 0.3);
}

.dash-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Horizontal Tabs */
.dash-nav-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.dash-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dash-tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dash-tab-btn.active {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

/* Background Canvas */
/* bg-canvas definition moved to line 2138 */

/* Theme Toggle Icons Logic */
.sun-icon,
.moon-icon {
    display: none !important;
}

/* Default (Dark Mode): Show Sun (to switch to light) */
body:not(.light-mode) .sun-icon {
    display: block !important;
}

/* Light Mode: Show Moon (to switch to dark) */
/* Decorative Numbers for Bento Grid */
.card-deco-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    transition: all 0.3s ease;
}

.bento-card:hover .card-deco-number,
.bento-card.scroll-active .card-deco-number {
    -webkit-text-stroke: 1px rgba(255, 215, 0, 0.3);
    transform: scale(1.1) rotate(-5deg);
    opacity: 0.8;
}

/* Light Mode Override for Numbers */
body.light-mode .card-deco-number {
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
}

/* Animated Border for Bento Cards (Snake Effect) */
.bento-card {
    position: relative;
    overflow: hidden;
    z-index: 0;
    border-radius: 20px;
}

/* The rotating light (Snake) */
/* The rotating light (Snake) - Origin at bottom-left corner */
.bento-card::before {
    content: '';
    position: absolute;
    top: var(--pos-y, 0%);
    /* Default: bottom (100% - 50% - 50% = 0%) */
    left: var(--pos-x, -100%);
    /* Default: left (0% - 50% - 50% = -100%) */
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            transparent,
            transparent,
            var(--accent-gold));
    animation: rotate 1s linear infinite;
    opacity: 0;
    z-index: -2;
    transition: opacity 0.3s ease;
}

/* The inner background to hide the center of the conic gradient */
.bento-card::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--bg-card);
    border-radius: 18px;
    z-index: -1;
}

/* Hover State (Desktop) & Scroll State (Mobile) */
.bento-card:hover::before,
.bento-card.scroll-active::before {
    opacity: 1;
}

/* Instant appearance on mobile scroll (no fade transition) */
@media (max-width: 768px) {
    .bento-card.scroll-active::before {
        transition: opacity 0.3s ease;
        animation: rotatePulse 3s linear infinite;
        /* 1s rotate + 2s pause = 3s total */
        opacity: 0.1;
        /* Reduced opacity for mobile */
    }
}

/* Animation for mobile: rotate once, then pause */
@keyframes rotatePulse {
    0% {
        transform: rotate(0deg);
    }

    33.33% {
        transform: rotate(360deg);
        /* Complete rotation in first 1s (33.33% of 3s) */
    }

    100% {
        transform: rotate(360deg);
        /* Hold for remaining 2s */
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Light Mode Override for Border Animation */
body.light-mode .bento-card::before {
    background: conic-gradient(transparent,
            transparent,
            transparent,
            #000000);
}

body.light-mode .bento-card::after {
    background: #ffffff;
}

/* Dashboard Content */
.dash-content-area {
    min-height: 400px;
}

.dash-panel {
    animation: fadeIn 0.4s ease-out forwards;
}

.stat-big {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 10px 0;
}

.stat-sub {
    font-size: 13px;
    color: var(--accent-green);
}

.activity-mini-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.activity-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.activity-time {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-muted);
}

/* Discord Large Card */
.discord-card-large {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(88, 101, 242, 0.05));
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
}

.discord-icon-huge {
    font-size: 60px;
    margin-bottom: 20px;
}

.discord-content h2 {
    margin-bottom: 15px;
}

.discord-content p {
    max-width: 500px;
    margin: 0 auto 30px;
    color: var(--text-secondary);
}

.discord-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 30px;
    font-size: 14px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #43b581;
    border-radius: 50%;
    box-shadow: 0 0 8px #43b581;
}

/* Billing Grid */
.billing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.settings-card.full-width {
    grid-column: 1 / -1;
}

.plan-details {
    margin: 15px 0;
}

.plan-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-price {
    font-size: 14px;
    color: var(--text-muted);
}

.badge-active {
    display: inline-block;
    margin-top: 10px;
    background: rgba(0, 255, 0, 0.1);
    color: var(--accent-green);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* Light Mode Overrides for Redesign */
body.light-mode .dash-header-profile {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .profile-text h1 {
    color: #000;
}

body.light-mode .dash-tab-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #666;
}

body.light-mode .dash-tab-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

body.light-mode .dash-tab-btn.active {
    background: var(--accent-gold);
    color: #000;
}

body.light-mode .stat-big {
    color: #000;
}

body.light-mode .activity-row {
    background: rgba(0, 0, 0, 0.03);
    color: #333;
}

body.light-mode .discord-card-large {
    background: rgba(88, 101, 242, 0.05);
    border-color: rgba(88, 101, 242, 0.2);
}

body.light-mode .discord-content h2 {
    color: #000;
}

body.light-mode .plan-name {
    color: #000;
}

/* Comparison Table */
.comparison-container {
    margin-top: 4rem;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    padding-left: 0;
    font-weight: 500;
    color: #fff;
    width: 30%;
}

.comparison-table th {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--accent-blue);
    padding-bottom: 2rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check-icon {
    color: #00ff88;
    /* Bright green for checks */
    font-size: 1.2rem;
}

.cross-icon {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
}

.feature-value {
    font-weight: 700;
    color: #fff;
}

@media (max-width: 768px) {
    .comparison-container {
        display: none;
    }
}

/* Force Social Hover for Button */
a.btn.btn-primary.btn-social-hover:hover {
    background: #00FFFF !important;
    /* Cyan/Electric Blue */
    color: #fff !important;
    border-color: #00FFFF !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6) !important;
}

/* Background Canvas */
/* bg-canvas definition moved to line 2138 */

/* Theme Toggle Icons Logic */
.sun-icon,
.moon-icon {
    display: none !important;
}

/* Default (Dark Mode): Show Sun (to switch to light) */
body:not(.light-mode) .sun-icon {
    display: block !important;
}

/* Light Mode: Show Moon (to switch to dark) */
body.light-mode .moon-icon {
    display: block !important;
}

/* Floating Action Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    /* Ensure it's on top of everything */
    pointer-events: none;
}

.floating-buttons button {
    pointer-events: auto;
}

/* Theme Toggle Button (Floating) */
.theme-toggle {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-main);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* Light Mode Overrides for Buttons */
body.light-mode .theme-toggle,
body.light-mode #back-to-top {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .theme-toggle:hover,
body.light-mode #back-to-top:hover {
    background: var(--accent-gold);
    color: #000;
}

/* FORCE VISIBILITY OVERRIDE */
.floating-buttons {
    z-index: 2147483647 !important;
    bottom: 30px;
    bottom: calc(30px + env(safe-area-inset-bottom));
    /* Support for iPhone X+ */
}

/* Mobile adjustment to avoid browser bars */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 80px;
        /* Higher up on mobile */
        right: 20px;
    }
}

/* Back to Top Button */
#back-to-top {
    width: 50px;
    height: 50px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    color: #000;
}

#back-to-top i {
    color: #ffffff;
    font-size: 24px;
    display: block;
}

#back-to-top:hover i {
    color: #000;
}

/* Light Mode Back to Top */
body.light-mode #back-to-top {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.2);
    color: #000;
}

body.light-mode #back-to-top i {
    color: #000;
}

body.light-mode #back-to-top:hover {
    background: var(--accent-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex !important;
    background: rgba(20, 20, 20, 0.9) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
}

/* Fix icon display - only show one icon at a time */
.theme-toggle i {
    color: #ffffff !important;
    font-size: 24px !important;
    opacity: 1 !important;
    position: absolute;
}

/* Fix Background Animation Layering - consolidated at line 2138 */

body::before {
    z-index: -2 !important;
    /* Push grid behind ropes */
    opacity: 0.1 !important;
    /* Fade out grid significantly */
}

/* RESTORE GRID VISIBILITY */
body::before {
    opacity: 1 !important;
    /* Force grid visible again */
}

/* Slider Arrows */
.slider-wrapper {
    position: relative;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    /* Larger hit area */
    height: 44px;
    background: rgba(0, 0, 0, 0.8);
    /* Darker for better contrast */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    display: none;
    /* Hidden on desktop */
    align-items: center;
    justify-content: center;
    z-index: 9999 !important;
    /* Force on top of everything */
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    -webkit-tap-highlight-color: transparent;
    /* Remove mobile highlight */
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
    background: var(--accent-blue);
}

.slider-arrow.prev {
    left: 12px;
}

.slider-arrow.next {
    right: 12px;
}

/* Mobile Visibility */
@media (max-width: 900px) {
    .slider-arrow.mobile-only {
        display: flex;
    }
}

/* ========================================
   WAITLIST MODAL STYLES
   ======================================== */

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

/* Modal Content */
.modal-content {
    background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.2);
    max-width: 500px;
    width: calc(100% - 40px);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 100px rgba(255, 215, 0, 0.1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-header p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

/* Form Styles */
.waitlist-form .form-group {
    margin-bottom: 24px;
}

.waitlist-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.waitlist-form input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.waitlist-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Form Message */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    margin-top: 10px;
    position: relative;
}

.btn-submit .btn-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: flex;
}

.btn-submit.loading .btn-loading svg {
    animation: rotate 1s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.btn-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    transform: scale(1.02);
}

/* Modal Footer Text */
.modal-footer-text {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .modal-content {
        padding: 30px 24px;
    }

    .modal-header h2 {
        font-size: 26px;
    }
}

/* FAQ Show More */
.hidden-faq {
    display: none;
}

.faq-more-container {
    text-align: center;
    margin-top: 2rem;
}

.btn-text-icon {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.btn-text-icon:hover {
    color: var(--color-light);
    transform: translateY(2px);
}

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

.btn-text-icon:hover svg {
    transform: translateY(3px);
}

/* Single Post Title Overrides */
.post-title {
    font-size: clamp(32px, 5vw, 48px) !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
    color: var(--text-main) !important;
    text-shadow: none !important;
    animation: none !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    text-align: left;
    margin-top: 40px;
}

body.light-mode .post-title {
    color: #1a1a1a !important;
}