.logo-img {
    width: 200px;
}

/* Hero Section - Clean Reference Style */
.hero-section {
    /* Subtle Grid Pattern */
    background-color: #ffffff;
    background-image:
        linear-gradient(#f1f5f9 1px, transparent 1px),
        linear-gradient(90deg, #f1f5f9 1px, transparent 1px);
    background-size: 40px 40px;
    padding-top: var(--spacing-lg);
    position: relative;
    overflow: hidden;
    text-align: center;
    /* Enforce global center */
}

/* Floating Badges */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Let clicks pass through */
    z-index: 1;
    /* Behind text if needed, or frame it */
}

.float-badge {
    position: absolute;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.1);
    font-size: 0.9rem;
    animation: floaty 6s ease-in-out infinite;
    opacity: 0.9;
}

/* Individual Positions */
.badge-aws {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.badge-cisco {
    top: 20%;
    right: 12%;
    animation-delay: 2s;
}

.badge-linux {
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

.badge-security {
    bottom: 25%;
    right: 8%;
    animation-delay: 3s;
}

.float-badge img {
    width: 100px;
}

@keyframes floaty {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    margin: 0 auto;
}

/* Hero Title - Gradient Text */
.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-main);
    font-weight: 800;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.text-primary {
    background: linear-gradient(135deg, #200371 0%, #1b017a 50%, #172c70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0 auto var(--spacing-md);
    max-width: 90%;
}

.hero-cta-wrapper {
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Pulsing Shine Animation for CTA */
@keyframes glowing-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 229, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
    }
}

/* Clean Reference Button Style */
.hero-cta-wrapper .btn-primary {
    background: var(--gradient-primary);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
    /* Soft diffused shadow */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    /* Smooth rounded corners */
}

.hero-cta-wrapper .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.5);
}

.hero-note {
    font-size: 0.9rem;
    color: var(--accent-danger);
    font-weight: 700;
    margin-top: var(--spacing-xs);
    font-style: italic;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: center;
    /* Center stats */
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--text-main);
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hero Visual (Mockup) */
.hero-visual {
    position: relative;
    margin-top: var(--spacing-md);
}

.visual-placeholder {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    position: relative;
    color: white;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-overlay pre {
    font-family: 'Consolas', monospace;
    color: var(--accent-neon);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    /* Keep code left aligned */
}



/* Section 3: Reality Check */
.narrative-block {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-main);
    padding: 30px;
    border: 5px dashed var(--primary-color);
    border-radius: 10px;
    background: #fff;
    box-shadow: 10px 10px 0px rgba(32, 3, 113, 0.1);
    /* Pop-out effect */
}

.highlight-text {
    background: linear-gradient(120deg, rgba(0, 229, 255, 0.2) 0%, rgba(0, 229, 255, 0.2) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 90%;
    color: var(--primary-color);
    font-weight: 800;
}

/* Section 4: Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: var(--spacing-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

/* Comparison Table Cells */
.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    /* Center aligned table cells */
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: var(--bg-dark);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table .bad-col {
    color: var(--accent-danger);
    background: rgba(220, 53, 69, 0.05);
}

.comparison-table .good-col {
    color: var(--primary-color);
    background: rgba(0, 229, 255, 0.05);
    border-top: 4px solid var(--accent-neon);
    font-weight: 700;
}

.fw-bold {
    font-weight: 700;
}

/* Section 5: Market Insight */
.bg-dark {
    background-color: var(--primary-color);
    background: var(--gradient-primary);
    /* Use gradient for dark sections */
}

.text-white {
    color: white;
}

.text-neon {
    color: var(--accent-neon);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
    /* Stronger glow */
    font-weight: 800;
    font-size: 3rem;
    display: block;
    margin: 10px 0;
}

.market-insight {
    border-radius: 10px;
}

.insight-card {
    max-width: 800px;
    margin: 0 auto;
}

.insight-source {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 1;
    margin-bottom: var(--spacing-sm);
    background-color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
}

.insight-quote {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin: var(--spacing-sm) 0 var(--spacing-md);
}

.insight-takeaway {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding-top: 1rem;
}

/* Section 6: Curriculum Intro */
.badge-pill {
    background: var(--gradient-accent);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.curriculum-intro {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Terminal Design */
.terminal-wrapper {
    margin-top: var(--spacing-lg);
    display: flex;
    justify-content: center;
}

.terminal-window {
    background: #0f0c29;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.15), 0 20px 50px rgba(0, 0, 0, 0.5);
    /* Neon Glow */
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.terminal-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.terminal-body {
    padding: 20px;
    font-family: 'Consolas', 'Monaco', monospace;
}

.terminal-body pre {
    margin: 0;
    white-space: pre-wrap;
}

.terminal-body code {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}

.cmd {
    color: var(--accent-neon);
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.log {
    color: #8BE9FD;
    display: block;
    opacity: 0.9;
}

.success {
    color: #50fa7b;
    font-weight: bold;
    display: block;
    margin-top: 10px;
    text-shadow: 0 0 10px rgba(80, 250, 123, 0.5);
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 18px;
    background: var(--accent-neon);
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Section 7-10: Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
    justify-content: center;
    /* Center Grid Items */
}

.module-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.highlight-card {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.module-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(32, 3, 113, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.module-role {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.check-list {
    text-align: left;
    /* Keep text list left for readability, but center container */
    display: inline-block;
    /* Allows focusing width */
    margin: 0 auto;
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.check-list li::before {
    content: "✓";
    color: var(--accent-success);
    position: absolute;
    left: 0;
    font-weight: 800;
}

.module-insight,
.module-stat {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    width: 100%;
}

/* Section 11: Tools - Logo Grid */
.tool-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: var(--spacing-md) 0;
}

.tool-badge {
    background: white;
    padding: 0.8rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* Space between logo and text */
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* Subtle lift */
}

.tool-badge img {
    height: 24px;
    /* Standard icon size */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    /* Clean uniform look */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.tool-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.tool-badge:hover img {
    filter: grayscale(0%);
    /* Color on hover */
    opacity: 1;
    transform: scale(1.1);
}

.tool-badge.highlight {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.tool-insight blockquote {
    background: #fff3cd;
    color: #856404;
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
}

/* Section 12: Roadmap - Cyber Circuit Design */
.roadmap-section {
    background: var(--bg-dark);
    /* Fallback */
    background: linear-gradient(180deg, #0f0c29 0%, #302b63 100%);
    position: relative;
    overflow: hidden;
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

/* Background Cyber Grid Pattern */
.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Spine - Gradient Line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-neon), var(--primary-color));
    border-radius: 4px;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.timeline-item {
    position: relative;
    padding: 0;
    margin-bottom: var(--spacing-lg);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    z-index: 2;
}

.timeline-marker {
    position: relative;
    width: 4rem;
    height: 4rem;
    background: var(--bg-dark);
    color: var(--accent-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    border: 3px solid var(--accent-neon);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4), inset 0 0 10px rgba(0, 229, 255, 0.2);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    background: var(--accent-neon);
    color: var(--primary-color);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.8);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent-neon);
}

.timeline-content h4 {
    color: var(--accent-neon);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

/* Section 13: Labs */
/* Section 13: Labs - Floating Holographic Nodes */
.labs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-md);
    justify-content: center;
}

/* Remove the pipeline line from previous design */
.labs-grid::before {
    display: none;
}

.lab-card {
    /* "Out of the box" concept: No distinct box background, just the content floating */
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* Extremely subtle bound */
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Elastic bounce */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lab-card::before {
    /* Holographic glow on hover */
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
    filter: blur(40px);
}

.lab-card:hover {
    transform: translateY(-10px);
    border-color: rgba(32, 3, 113, 0.1);
}

.lab-card:hover::before {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0.15;
}

.lab-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    /* Create a floating bubble for the icon */
    background: linear-gradient(135deg, #fff 0%, #f4f7fa 100%);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Circle */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Float shadow */
    color: var(--primary-color);
}

.lab-icon img {
    width: 50px;
    /* Sized for bubble */
    height: 50px;
    object-fit: contain;
}

.lab-card:hover .lab-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    color: var(--accent-neon);
    background: white;
}

.lab-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

.lab-card:hover h4 {
    color: var(--primary-color);
}

/* Section 14: Audience */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    /* Wider gaps */
    margin-top: var(--spacing-md);
    padding: 0 1rem;
}

.audience-card {
    background: white;
    padding: 2.5rem 1.5rem;
    /* The Skew Magic */
    transform: skewY(-3deg);
    border-radius: 20px;
    box-shadow: -10px 10px 0 rgba(32, 3, 113, 0.1);
    /* Hard shadow */
    border: 2px solid #1a1a2e;
    /* Bold comic/cyber border */
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
    display: block;
}

/* Un-skew content so it's readable */
.audience-card h3,
.audience-card p {
    transform: skewY(3deg);
    /* Counter skew */
}

.audience-card:hover {
    transform: skewY(-3deg) translateY(-10px) translateX(5px);
    box-shadow: -15px 15px 0 var(--accent-neon);
    border-color: var(--primary-color);
    background: #fff;
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.audience-card p {
    font-family: monospace;
    /* Tech feel */
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* Neon corner accent */
.audience-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, transparent 50%, var(--primary-color) 50%);
    transition: all 0.3s ease;
}

.audience-card:hover::after {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, transparent 50%, var(--accent-neon) 50%);
}

/* Section 15: Bonuses */
/* Section 15: Bonuses - Holo-Unlock System */
/* Section 15: Bonuses - Floating Constellation */
.bonus-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    /* Wide open space */
    margin-top: var(--spacing-lg);
    position: relative;
}

/* Constellation Connector Line */
.bonus-stack::before {
    content: '';
    position: absolute;
    top: 45px;
    /* Align with icon centers */
    left: 15%;
    right: 15%;
    height: 2px;
    background: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.3) 0,
            rgba(255, 255, 255, 0.3) 10px,
            transparent 10px,
            transparent 20px);
    z-index: 0;
}

.bonus-item {
    background: transparent;
    padding: 0;
    border: none;
    width: 260px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    /* Above line */
}

/* No boxes, just nodes */
.bonus-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin-bottom: 2rem;
    /* Solid Planet Node */
    background: #0f1623;
    /* Dark background to hide connector line behind */
    border: 2px solid var(--accent-neon);
    border-radius: 50%;
    color: white;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bonus-icon::after {
    display: none;
}

/* Remove spinner */

.bonus-item:hover .bonus-icon {
    transform: scale(1.2);
    background: var(--accent-neon);
    color: #000;
    box-shadow: 0 0 30px var(--accent-neon);
    border-color: white;
}

.bonus-item h4 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bonus-item p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.bonus-item:hover p {
    color: white;
    opacity: 1;
}

@media (max-width: 768px) {
    .bonus-stack::before {
        display: none;
        /* Hide connector on mobile */
    }

    .bonus-stack {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }

    .bonus-item {
        width: 100%;
        flex-direction: row;
        text-align: left;
        padding: 0 1rem;
    }

    .bonus-icon {
        margin-bottom: 0;
        margin-right: 1.5rem;
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 1.5rem;
    }
}

/* Section 16: Why Us */
.why-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    text-align: center;
    flex-wrap: wrap;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
}

.why-icon-lg {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    background: rgba(32, 3, 113, 0.05);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .why-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Section 17: Pricing */
/* Section 17: Pricing - The Equation System */
.pricing-equation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
    text-align: left;
}

/* Left: Market Reality */
.market-side {
    flex: 1;
    max-width: 400px;
    color: var(--text-muted);
}

.market-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.market-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.market-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dashed #ddd;
    /* Subtle guide lines */
    font-size: 1rem;
}

.market-list li span:last-child {
    font-weight: 600;
    color: #333;
    font-family: monospace;
    /* Tech numbers */
}

.market-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.strikethrough {
    text-decoration: line-through;
    color: #999;
}

/* Middle: Divider */
.pricing-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Right: Alpha Offer */
.offer-side {
    flex: 1;
    max-width: 450px;
    padding: 2rem;
    /* Floating Effect */
    background: linear-gradient(145deg, #ffffff, #f0f7ff);
    border-radius: 30px;
    box-shadow: -20px 20px 60px #d1d9e6, 20px -20px 60px #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.offer-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.offer-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.offer-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.offer-sub {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-neon);
    display: block;
    margin-top: 0.5rem;
}

.offer-logic {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin: 1.5rem 0;
    border-left: 3px solid var(--accent-neon);
    padding-left: 1rem;
}

.offer-expiry {
    font-size: 0.85rem;
    color: #e74c3c;
    /* Urgent Red */
    margin-top: 1rem;
    font-weight: 600;
}

.btn-glow {
    box-shadow: 0 10px 30px rgba(32, 3, 113, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    /* Ensure block button */
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(32, 3, 113, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-equation {
        flex-direction: column;
        gap: 2rem;
    }

    .pricing-divider {
        transform: rotate(90deg);
        /* Down Arrow */
    }

    .market-side,
    .offer-side {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .market-list li {
        text-align: left;
    }

    .offer-logic {
        border-left: none;
        border-top: 3px solid var(--accent-neon);
        padding-top: 1rem;
        padding-left: 0;
    }
}

/* Section 18: FAQ */
.faq-grid {
    display: grid;
    gap: var(--spacing-md);
    max-width: 800px;
    margin: var(--spacing-md) auto 0;
    justify-content: center;
}

.faq-item {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    /* Center FAQ Question */
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-main);
}

/* Footer & Sticky */
.footer-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.footer-info h3 {
    color: white;
    margin-bottom: 0.2rem;
}

.footer-contact p {
    margin-bottom: 0.2rem;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    font-size: 0.8rem;
    opacity: 0.6;
}

.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: white;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: block;
    }

    .site-footer {
        padding-bottom: 80px;
    }

    /* Space for sticky CTA */
}