/* ==========================================================================
   CSS Variables & Premium Aesthetic Resets
   ========================================================================== */
:root {
    /* Richer Color Palette */
    --bg-dark: #050810;
    --bg-darker: #020306;
    --bg-card: rgba(13, 19, 35, 0.6);
    --bg-glass: rgba(7, 10, 19, 0.7);
    --primary-neon: #00ff88;
    --primary-dark: #00b04a;
    --text-main: #f8f9fa;
    --text-muted: #8b9bb4;
    --border-color: rgba(0, 255, 136, 0.15);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Premium Effects */
    --glow-shadow: 0 8px 32px rgba(0, 255, 136, 0.25);
    --glow-strong: 0 0 40px rgba(0, 255, 136, 0.5);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glass-blur: blur(12px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: 0.3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 120px 0;
    /* Increased spacing */
}

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

.bg-darker {
    background-color: var(--bg-darker);
    position: relative;
}

.highlight {
    color: var(--primary-neon);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* ==========================================================================
   Typography & Accents
   ========================================================================== */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
}

.accent-line {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, var(--primary-neon), transparent);
    margin-bottom: 25px;
    border-radius: 2px;
}

.accent-line.center {
    margin: 0 auto 25px auto;
    background: linear-gradient(90deg, transparent, var(--primary-neon), transparent);
    width: 150px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

/* ==========================================================================
   Buttons (Premium Design)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 50px;
    /* Pill shape */
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
    gap: 10px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-neon), var(--primary-dark));
    color: #000;
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-strong);
    color: #000;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

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

.btn-outline {
    background-color: transparent;
    border-color: rgba(0, 255, 136, 0.4);
    color: var(--primary-neon);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: rgba(0, 255, 136, 0.05);
    border-color: var(--primary-neon);
    box-shadow: var(--glow-shadow);
    transform: translateY(-4px);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.05rem;
}

.w-100 {
    width: 100%;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo-clip {
    /* No longer used */
    display: contents;
}

/* Navbar logo — clipped to hide the tagline baked into the PNG */
.nav-logo {
    display: block;
    width: 185px;
    height: 52px;
    overflow: hidden;
    flex-shrink: 0;
}

/* Navbar logo image — offset to show only the brand mark region */
.nav-logo .brand-logo {
    /* PNG natural size: ~1536 × 480px.
       At 350px display width, brand mark starts at ~84px from left.
       Container is 185w × 52h, so offsets clip to the mark only. */
    display: block;
    width: 350px;
    height: auto;
    margin-left: -84px;
    margin-top: -10px;
    transition: var(--transition);
}

.nav-logo .brand-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

/* Footer logo — exact same size and clipping as navbar logo */
.footer-logo {
    display: block;
    width: 380px;
    height: auto;
    overflow: visible;
    margin-bottom: 16px;
    margin-left: -80px;
}

.footer-brand-logo {
    display: block;
    width: 380px;
    height: auto;
    margin: 0;
    mix-blend-mode: screen;
    transition: var(--transition);
}

.footer-brand-logo:hover {
    transform: scale(1.04);
    opacity: 0.9;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-neon);
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
    transition: var(--transition);
}

.hamburger:hover {
    color: var(--primary-neon);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at top right, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(0, 255, 136, 0.05) 0%, var(--bg-darker) 60%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.glitch {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.subtitle {
    font-size: 1.8rem;
    color: var(--primary-neon);
    letter-spacing: 5px;
    margin-bottom: 30px;
    font-weight: 600;
}

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

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

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.stat-box {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-neon);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateX(10px);
    background: rgba(13, 19, 35, 0.8);
    border-color: var(--border-color);
    box-shadow: var(--glow-shadow);
}

.stat-box i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-neon), #008f3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Departments Section
   ========================================================================== */
.sub-heading {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dept-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.dept-badge {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: default;
    backdrop-filter: var(--glass-blur);
}

.dept-badge:hover {
    background-color: var(--primary-neon);
    color: #000;
    border-color: var(--primary-neon);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    transform: translateY(-5px);
}

/* ==========================================================================
   Problem / Solution Section
   ========================================================================== */
.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ps-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.problem-card {
    border-top: 4px solid #ff4757;
}

.problem-card:hover {
    box-shadow: 0 10px 40px rgba(255, 71, 87, 0.1);
    transform: translateY(-5px);
}

.solution-card {
    border-top: 4px solid var(--primary-neon);
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.05) 0%, var(--bg-card) 100%);
}

.solution-card:hover {
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.15);
    transform: translateY(-5px);
}

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

.card-header i {
    font-size: 2.5rem;
}

.problem-card .card-header i,
.problem-card h3 {
    color: #ff4757;
}

.solution-card .card-header i,
.solution-card h3 {
    color: var(--primary-neon);
}

.custom-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.custom-list li::before {
    content: '\f00d';
    /* Times icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff4757;
}

.custom-list.success li::before {
    content: '\f00c';
    /* Check icon */
    color: var(--primary-neon);
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-neon);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(13, 19, 35, 0.9);
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 136, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-neon);
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-neon);
    color: #000;
    transform: rotate(5deg) scale(1.1);
    box-shadow: var(--glow-shadow);
}

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

.service-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==========================================================================
   Timeline / Process
   ========================================================================== */
.timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-neon), transparent);
    opacity: 0.5;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-num {
    width: 80px;
    height: 80px;
    background: var(--bg-darker);
    border: 3px solid var(--primary-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-neon);
    font-size: 1.5rem;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: var(--glow-shadow);
    transition: var(--transition);
}

.timeline-step:hover .step-num {
    background: var(--primary-neon);
    color: #000;
    transform: scale(1.1);
}

.step-content {
    margin-left: 40px;
    padding-top: 15px;
}

.step-content h4 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #fff;
    transition: var(--transition);
}

.timeline-step:hover .step-content h4 {
    color: var(--primary-neon);
}

.step-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   Pricing Packages
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border-color: var(--primary-neon);
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.05) 0%, var(--bg-card) 100%);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.1);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.2);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary-neon), var(--primary-dark));
    color: #000;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glow-shadow);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.duration {
    text-align: center;
    color: var(--primary-neon);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.features li {
    margin-bottom: 20px;
    color: var(--text-main);
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.features li i {
    color: var(--primary-neon);
    margin-top: 5px;
    background: rgba(0, 255, 136, 0.1);
    padding: 4px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.price-container {
    text-align: center;
    margin-bottom: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
}

/* ==========================================================================
   Marketplace
   ========================================================================== */
.marketplace-banner {
    background: linear-gradient(135deg, rgba(13, 19, 35, 0.8) 0%, rgba(4, 6, 11, 0.9) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 24px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.marketplace-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    transform: rotate(-45deg);
    pointer-events: none;
}

.marketplace-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.marketplace-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #fff;
}

.marketplace-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.marketplace-features {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.marketplace-features li {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.marketplace-features i {
    color: var(--primary-neon);
}

.cyber-cart {
    width: 200px;
    height: 200px;
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid var(--primary-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-neon);
    box-shadow: var(--glow-strong);
    animation: float 6s ease-in-out infinite;
}

/* ==========================================================================
   Partnerships & Why Us
   ========================================================================== */
.advantage-list .adv-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    transition: var(--transition);
}

.adv-item:hover {
    transform: translateX(10px);
}

.adv-item i {
    font-size: 2.2rem;
    color: var(--primary-neon);
    background: rgba(0, 255, 136, 0.08);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.1);
}

.adv-item h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.adv-item p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.partner-benefits {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.benefit {
    background: var(--bg-card);
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-neon);
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
}

.benefit:hover {
    background: rgba(13, 19, 35, 0.9);
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.benefit i {
    color: var(--primary-neon);
    font-size: 1.8rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 150px 0;
}

.cyber-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--primary-neon) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-neon) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.04;
    transform: perspective(600px) rotateX(60deg);
    transform-origin: top;
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta-heading {
    font-size: 3.5rem;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--bg-darker);
    padding: 100px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand .brand-logo {
    height: auto;
    margin: 0;
    mix-blend-mode: screen;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 25px 0;
    max-width: 350px;
    font-size: 1.1rem;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-neon);
    color: #000;
    transform: translateY(-5px);
    box-shadow: var(--glow-shadow);
}

.footer h3 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #fff;
}

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

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

.footer-links a:hover {
    color: var(--primary-neon);
    padding-left: 8px;
}

.footer-contact ul li {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    color: var(--text-muted);
    align-items: flex-start;
    font-size: 1.05rem;
}

.footer-contact a {
    color: inherit;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-neon);
}

.footer-contact i {
    color: var(--primary-neon);
    margin-top: 5px;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

    50% {
        transform: translateY(-25px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .glitch {
        font-size: 3.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .split-container {
        grid-template-columns: 1fr;
    }

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

    .marketplace-banner {
        flex-direction: column;
        text-align: center;
        padding: 50px;
    }

    .marketplace-features {
        justify-content: center;
    }

    .cyber-cart {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(5, 8, 16, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        gap: 30px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    .hamburger {
        display: block;
    }

    .nav-btn {
        display: none;
    }

    .glitch {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 80px 0;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

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

    .cta-heading {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}