/* ============================================
   LANDING PAGES - YELLOW JACKET THEME
   Bright yellow/black color scheme
   Color: #FFD700 (Gold/Bright Yellow)
   ============================================ */

/* ============================================
   YELLOW JACKET THEME - STANDARDIZED COLOR SYSTEM
   All colors defined as CSS variables for consistency
   ============================================ */

:root {
    /* Primary Brand Colors */
    --yellow-primary: #FFD700;        /* Main yellow/gold */
    --yellow-dark: #FFCC00;           /* Darker yellow for gradients */
    --yellow-bright: #FFEB3B;         /* Bright yellow for hovers */

    /* Background Colors */
    --bg-black: #000000;              /* Pure black */
    --bg-dark: #0a0a0a;               /* Darker backgrounds */
    --bg-card: #0d0d0d;               /* Card backgrounds */
    --bg-card-light: #1a1a1a;         /* Lighter card areas */

    /* Text Colors - Standardized Hierarchy */
    --text-primary: #ffffff;          /* Headings, important text */
    --text-secondary: #e8e8e8;        /* Body text, paragraphs */
    --text-tertiary: #c0c0c0;         /* Muted text, descriptions */
    --text-muted: #999999;            /* Very muted, less important */
    --text-disabled: #201d1d;         /* Placeholders, disabled */

    /* Yellow Text & Accents */
    --text-yellow: var(--yellow-primary);
    --text-yellow-hover: var(--yellow-bright);

    /* Borders & Dividers */
    --border-yellow: rgba(255, 215, 0, 0.3);
    --border-yellow-hover: rgba(255, 215, 0, 0.6);
    --border-yellow-strong: rgba(255, 215, 0, 0.5);
    --border-yellow-light: rgba(255, 215, 0, 0.2);
    --border-yellow-subtle: rgba(255, 215, 0, 0.1);

    /* Shadows & Glows (Text) */
    --glow-yellow-sm: 0 0 10px rgba(255, 215, 0, 0.4);
    --glow-yellow-md: 0 0 15px rgba(255, 215, 0, 0.5);
    --glow-yellow-lg: 0 0 20px rgba(255, 215, 0, 0.6);

    /* Box Shadows */
    --shadow-yellow-xs: 0 2px 20px rgba(255, 215, 0, 0.3);
    --shadow-yellow-sm: 0 5px 20px rgba(255, 215, 0, 0.2);
    --shadow-yellow-subtle: 0 5px 20px rgba(255, 215, 0, 0.1);
    --shadow-yellow-md: 0 5px 25px rgba(255, 215, 0, 0.3);
    --shadow-yellow-lg: 0 10px 40px rgba(255, 215, 0, 0.4);
    --shadow-yellow-xl: 0 10px 50px rgba(255, 215, 0, 0.3);

    /* Background Overlays */
    --overlay-yellow-subtle: rgba(255, 215, 0, 0.05);
    --overlay-yellow-light: rgba(255, 215, 0, 0.1);
    --overlay-yellow-medium: rgba(255, 215, 0, 0.2);

    /* Gradients */
    --gradient-bg: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card-light) 100%);
    --gradient-card: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-light) 100%);
    --gradient-yellow: linear-gradient(135deg, var(--yellow-dark) 0%, var(--yellow-primary) 100%);
    --gradient-yellow-hover: linear-gradient(135deg, var(--yellow-primary) 0%, var(--yellow-bright) 100%);
}

/* Dark Theme Base */
body {
    background: var(--bg-black);
    color: var(--text-secondary);
    padding-top: 70px !important; /* Account for fixed navbar height */
}

/* Custom Scrollbar Styling - Yellow Theme */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-left: 1px solid var(--border-yellow-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--yellow-dark) 0%, var(--yellow-primary) 100%);
    border-radius: 6px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--yellow-primary) 0%, var(--yellow-bright) 100%);
    box-shadow: var(--glow-yellow-sm);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--yellow-primary) var(--bg-dark);
}

/* Landing Page Navigation */
.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030; /* Higher than most content, below modals */
    background: var(--gradient-bg);
    padding: 0.25rem 0;
    box-shadow: var(--shadow-yellow-xs);
    border-bottom: 2px solid var(--border-yellow);
    backdrop-filter: blur(10px); /* Add slight blur for modern effect */
    -webkit-backdrop-filter: blur(10px);
}

.landing-navbar .container {
    max-width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.landing-navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-yellow) !important;
    text-shadow: var(--glow-yellow-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-navbar .navbar-brand img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.landing-navbar .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.landing-navbar .nav-link:hover {
    color: var(--text-yellow) !important;
    background: var(--overlay-yellow-light);
    border-radius: 5px;
    box-shadow: var(--glow-yellow-md);
}

.landing-navbar .btn-login {
    background: var(--overlay-yellow-medium);
    border: 2px solid var(--yellow-primary);
    color: var(--text-yellow);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--glow-yellow-md);
}

.landing-navbar .btn-login:hover {
    background: var(--yellow-primary);
    color: var(--bg-black);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

/* Fixed Bottom CTA Bar — shrunk per #297 follow-up */
.bottom-cta-bar {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 56%; /* was 70% — tighter footprint */
    width: 100%;
    z-index: 1020;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-light) 100%);
    border: 1px solid var(--border-yellow-strong);
    border-radius: 10px;
    padding: 0.55rem 1rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* #297: typographic shrink so the same 4-element layout
   (icon + title + subtext + button) fits in a smaller bar */
.bottom-cta-bar .bottom-cta-icon {
    color: var(--yellow-primary);
    font-size: 1.15rem;
}

.bottom-cta-bar .bottom-cta-title {
    color: var(--text-primary);
    font-size: 0.88rem;
    line-height: 1.2;
}

.bottom-cta-bar .bottom-cta-subtext {
    color: var(--text-secondary);
    font-size: 0.72rem;
    line-height: 1.3;
}

.bottom-cta-bar .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* CTA Button in Bottom Bar — sized down to match shrunk bar */
.btn-cta-bottom {
    background: var(--yellow-primary);
    color: var(--bg-black);
    border: none;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.82rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.35);
    white-space: nowrap;
    animation: subtlePulseGlow 3s ease-in-out infinite;
}

.btn-cta-bottom:hover {
    background: var(--yellow-bright);
    color: var(--bg-black);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    animation: none; /* Stop animation on hover */
}

.btn-cta-bottom:active {
    transform: translateY(0);
}

/* Subtle Pulse and Glow Animation */
@keyframes subtlePulseGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 215, 0, 0.7),
                    0 0 30px rgba(255, 215, 0, 0.3);
        transform: scale(1.02);
    }
}

/* Close Button for Bottom Bar */
.btn-close-cta {
    background: transparent;
    border: 1px solid var(--border-yellow-light);
    color: var(--text-tertiary);
    padding: 0.4rem 0.65rem;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-close-cta:hover {
    background: var(--overlay-yellow-light);
    color: var(--text-primary);
    border-color: var(--border-yellow);
}

/* Mobile responsiveness for bottom bar */
@media (max-width: 767px) {
    .bottom-cta-bar {
        max-width: 92%;
        padding: 0.5rem 0.75rem;
        bottom: 12px;
    }

    .bottom-cta-bar .bottom-cta-title {
        font-size: 0.85rem;
    }

    .bottom-cta-bar .bottom-cta-subtext {
        font-size: 0.7rem;
    }

    .btn-cta-bottom {
        padding: 0.45rem 0.8rem;
        font-size: 0.8rem;
    }

    .btn-close-cta {
        padding: 0.4rem 0.65rem;
    }
}

/* Landing Page Footer */
.landing-footer {
    position: relative;
    z-index: 1;
    background: var(--gradient-bg);
    color: var(--text-secondary);
    padding: 2rem 0 1rem;
    margin-top: 0;
    margin-bottom: 100px; /* Add space for fixed bottom CTA bar */
    border-top: 2px solid var(--border-yellow);
}

.landing-footer .container {
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.landing-footer h5 {
    color: var(--text-yellow);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: var(--glow-yellow-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-footer h5 img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.landing-footer a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.landing-footer a:hover {
    color: var(--text-yellow);
    text-shadow: var(--glow-yellow-sm);
}

.landing-footer .footer-bottom {
    border-top: 1px solid var(--border-yellow-light);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: left;
    display: flex;
    color: var(--text-muted);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-black) 0%, var(--bg-card-light) 50%, var(--bg-black) 100%);
    color: var(--text-secondary);
    padding: 4rem 0;
    margin-bottom: 0;
    border-bottom: 2px solid var(--border-yellow);
    box-shadow: var(--shadow-yellow-lg);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, var(--overlay-yellow-light) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: var(--glow-yellow-lg);
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Content Section - Consistent Spacing */
.content-section {
    padding: 4rem 0;
    background: transparent;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

.content-section.bg-light {
    background: var(--bg-dark) !important;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

.content-section h2 {
    color: var(--text-primary);
    text-shadow: var(--glow-yellow-md);
}

.content-section .lead {
    color: var(--text-tertiary);
}

.content-section .text-muted {
    color: var(--text-muted) !important;
}

.content-section .text-primary {
    color: var(--text-yellow) !important;
    text-shadow: var(--glow-yellow-sm);
}

/* ============================================
   Landing Page Table Styles
   Used by resource pages (break-even, ATR calculator, etc.)
   ============================================ */

/* Base table styling for dark theme */
.table-dark,
.table.table-dark {
    --bs-table-bg: rgba(0, 0, 0, 0.3);
    --bs-table-striped-bg: rgba(255, 255, 255, 0.03);
    --bs-table-hover-bg: rgba(255, 215, 0, 0.08);
    --bs-table-border-color: rgba(255, 255, 255, 0.1);
    background-color: var(--bs-table-bg);
    color: var(--text-secondary, #e0e0e0);
    border-color: var(--bs-table-border-color);
}

/* Table header styling - yellow accent */
.table-dark thead,
.table-dark thead th,
.table.table-dark thead th {
    background: rgba(255, 215, 0, 0.12) !important;
    color: var(--yellow-primary, #FFD700) !important;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3) !important;
}

/* Table body cell styling - light text on dark */
.table-dark tbody td,
.table.table-dark tbody td {
    color: var(--text-secondary, #e0e0e0) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: middle;
}

/* Table body row styling */
.table-dark tbody tr,
.table.table-dark tbody tr {
    background-color: transparent;
}

/* Striped rows */
.table-dark.table-striped tbody tr:nth-of-type(odd),
.table.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.02);
}

/* Hover state */
.table-dark.table-hover tbody tr:hover,
.table.table-dark.table-hover tbody tr:hover {
    background-color: rgba(255, 215, 0, 0.08) !important;
}

.table-dark.table-hover tbody tr:hover td,
.table.table-dark.table-hover tbody tr:hover td {
    color: #ffffff !important;
}

/* Sticky header support */
.table-dark thead.sticky-top th {
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Table-responsive wrapper with scrollbar styling */
.table-responsive {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.3) rgba(0, 0, 0, 0.2);
}

.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

/* Common table cell styles */
.savings-positive {
    color: #28a745 !important;
    font-weight: 600;
}

.value-negative,
.loss-value {
    color: #dc3545 !important;
}

.value-positive,
.profit-value {
    color: #28a745 !important;
}

.value-neutral {
    color: var(--text-muted, #888888) !important;
}

/* ============================================
   Landing Page Range Slider Styles
   Yellow-themed sliders for resource pages
   ============================================ */

.form-range::-webkit-slider-thumb {
    background: var(--yellow-primary, #FFD700);
}

.form-range::-webkit-slider-runnable-track {
    background: rgba(255, 215, 0, 0.2);
}

.form-range::-moz-range-thumb {
    background: var(--yellow-primary, #FFD700);
}

.form-range::-moz-range-track {
    background: rgba(255, 215, 0, 0.2);
}

/* Feature Cards */
.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-yellow);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow-yellow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--overlay-yellow-subtle) 0%, transparent 70%);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-yellow-lg);
    border-color: var(--border-yellow-hover);
}

.feature-card .icon {
    font-size: 3rem;
    color: var(--text-yellow);
    margin-bottom: 1rem;
    filter: drop-shadow(var(--glow-yellow-sm));
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-tertiary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.feature-card .badge {
    background: var(--overlay-yellow-medium) !important;
    color: var(--text-yellow) !important;
    border: 1px solid var(--border-yellow-strong);
}

.feature-card .text-muted {
    color: var(--text-muted) !important;
}

.feature-card .btn {
    border-color: var(--border-yellow-strong);
    color: var(--text-yellow);
}

.feature-card .btn:hover {
    background: var(--overlay-yellow-medium);
    border-color: var(--yellow-primary);
    box-shadow: var(--glow-yellow-md);
}

/* CTA Buttons */
.btn-cta {
    background: var(--gradient-yellow);
    border: none;
    color: var(--bg-black);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-yellow-md);
}

.btn-cta:hover {
    background: var(--gradient-yellow-hover);
    color: var(--bg-black);
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.6);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid var(--yellow-primary);
    color: var(--text-yellow);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-yellow-md);
}

.btn-cta-outline:hover {
    background: var(--overlay-yellow-medium);
    color: var(--text-yellow);
    border-color: var(--yellow-primary);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

/* ============================================
   LANDING PAGE NOTIFICATIONS - CENTERED TOP
   Sleek, modern design with auto-dismiss
   ============================================ */

.landing-notification-container {
    position: fixed;
    top: 80px; /* Below navbar */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1025; /* Below navbar (1030), above content */
    width: auto;
    max-width: 90%; /* Responsive max width */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    pointer-events: none; /* Allow clicks to pass through container */
}

.landing-notification {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.95);
    border: 1.5px solid var(--yellow-primary);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    animation: slideDownBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: auto;
    min-width: 320px;
    max-width: 650px;
    pointer-events: auto; /* Enable clicks on notification */
    position: relative;
    overflow: hidden;
}

/* Subtle animated border glow */
.landing-notification::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        transparent,
        rgba(255, 215, 0, 0.3),
        transparent
    );
    z-index: -1;
    border-radius: 8px;
    opacity: 0;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes slideDownBounce {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateY(5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Fade out animation */
.landing-notification.fade-out {
    animation: fadeOutUp 0.4s ease-out forwards;
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-30px);
    }
}

.landing-notification-content {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    flex: 1;
}

.landing-notification-close {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    font-size: 0.875rem;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
    border-radius: 4px;
    filter: none;
}

.landing-notification-close i {
    pointer-events: none;
}

.landing-notification-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: scale(1.15);
}

/* Success notification variant */
.landing-notification-success {
    border-color: #4caf50;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(76, 175, 80, 0.3),
        inset 0 1px 0 rgba(76, 175, 80, 0.2);
}

.landing-notification-success::before {
    background: linear-gradient(45deg,
        transparent,
        rgba(76, 175, 80, 0.3),
        transparent
    );
}

.landing-notification-success .landing-notification-content {
    color: #66bb6a;
}

/* Info notification variant */
.landing-notification-info {
    border-color: #2196f3;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(33, 150, 243, 0.3),
        inset 0 1px 0 rgba(33, 150, 243, 0.2);
}

.landing-notification-info::before {
    background: linear-gradient(45deg,
        transparent,
        rgba(33, 150, 243, 0.3),
        transparent
    );
}

.landing-notification-info .landing-notification-content {
    color: #64b5f6;
}

/* Warning notification variant */
.landing-notification-warning {
    border-color: #ff9800;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 152, 0, 0.3),
        inset 0 1px 0 rgba(255, 152, 0, 0.2);
}

.landing-notification-warning::before {
    background: linear-gradient(45deg,
        transparent,
        rgba(255, 152, 0, 0.3),
        transparent
    );
}

.landing-notification-warning .landing-notification-content {
    color: #ffb74d;
}

/* Error/Danger notification variant */
.landing-notification-danger,
.landing-notification-error {
    border-color: #f44336;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(244, 67, 54, 0.3),
        inset 0 1px 0 rgba(244, 67, 54, 0.2);
}

.landing-notification-danger::before,
.landing-notification-error::before {
    background: linear-gradient(45deg,
        transparent,
        rgba(244, 67, 54, 0.3),
        transparent
    );
}

.landing-notification-danger .landing-notification-content,
.landing-notification-error .landing-notification-content {
    color: #ef5350;
}

/* Progress bar for auto-dismiss timer */
.landing-notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--yellow-primary);
    width: 100%;
    transform-origin: left;
    animation: progressShrink 5s linear forwards;
}

.landing-notification-success .landing-notification-progress {
    background: #4caf50;
}

.landing-notification-info .landing-notification-progress {
    background: #2196f3;
}

.landing-notification-warning .landing-notification-progress {
    background: #ff9800;
}

.landing-notification-danger .landing-notification-progress,
.landing-notification-error .landing-notification-progress {
    background: #f44336;
}

@keyframes progressShrink {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .landing-notification-container {
        top: 70px;
        max-width: 95%;
    }

    .landing-notification {
        padding: 0.75rem 1.25rem;
        min-width: 280px;
        gap: 1rem;
    }

    .landing-notification-content {
        font-size: 0.875rem;
    }
}

/* Legacy alert styling for non-landing pages (fallback) */
.alert {
    background: linear-gradient(135deg, var(--bg-card-light) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-yellow);
    color: var(--text-secondary);
}

.alert-info {
    border-color: var(--border-yellow-strong);
    background: linear-gradient(135deg, var(--overlay-yellow-light) 0%, var(--overlay-yellow-subtle) 100%);
}

/* Statistics Display */
.display-3, .display-4, .display-5 {
    color: var(--text-yellow) !important;
    text-shadow: var(--glow-yellow-lg);
}

/* Form Controls for Dark Theme */
.form-control, .form-control-lg {
    background: var(--bg-card-light);
    border: 1px solid var(--border-yellow);
    color: var(--text-secondary);
}

.form-control:focus, .form-control-lg:focus {
    background: var(--bg-card);
    border-color: var(--yellow-primary);
    color: var(--text-primary);
    box-shadow: var(--glow-yellow-md);
}

.form-control::placeholder {
    color: var(--text-disabled);
}

/* Button Primary Override for Yellow Theme */
.btn-primary {
    background: var(--gradient-yellow);
    border-color: var(--yellow-primary);
    color: var(--bg-black);
}

.btn-primary:hover {
    background: var(--gradient-yellow-hover);
    border-color: var(--yellow-bright);
    color: var(--bg-black);
    box-shadow: var(--glow-yellow-md);
}

.btn-outline-primary {
    border-color: var(--yellow-primary);
    color: var(--text-yellow);
}

.btn-outline-primary:hover {
    background: var(--overlay-yellow-medium);
    border-color: var(--yellow-primary);
    color: var(--text-yellow);
}

/* Text Warning - Matches Yellow Theme */
.text-warning {
    color: var(--yellow-bright) !important;
}

/* Border Colors */
.border-bottom {
    border-color: var(--border-yellow-light) !important;
}

.border-top {
    border-color: var(--border-yellow-light) !important;
}

/* ============================================
   CONTACT FORM STYLES
   Reusable styles for contact/message forms
   ============================================ */

/* Form labels */
.contact-form .form-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Form inputs, textareas, and selects */
.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-yellow);
    color: var(--text-primary);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--yellow-primary);
    color: var(--text-primary);
    box-shadow: var(--glow-yellow-sm);
}

/* Select dropdown options */
.contact-form .form-select option {
    background: var(--bg-card-light);
    color: var(--text-primary);
}

/* Feature card titles - gold color */
.card-title-gold {
    color: var(--text-yellow) !important;
}

/* Primary action button - solid yellow */
.btn-yellow {
    background: var(--yellow-primary) !important;
    color: #000 !important;
    font-weight: 600 !important;
    border: none !important;
}

.btn-yellow:hover,
.btn-yellow:focus,
.btn-yellow:active {
    background: var(--yellow-bright) !important;
    color: #000 !important;
    box-shadow: var(--glow-yellow-md) !important;
}

/* Outline button - yellow border */
.btn-yellow-outline {
    border: 2px solid var(--yellow-primary) !important;
    color: var(--text-yellow) !important;
    font-weight: 600 !important;
    background: transparent !important;
}

.btn-yellow-outline:hover,
.btn-yellow-outline:focus,
.btn-yellow-outline:active {
    background: var(--overlay-yellow-light) !important;
    border-color: var(--yellow-bright) !important;
    color: var(--text-yellow-hover) !important;
}

/* Social link buttons */
.btn-social {
    border: 1px solid var(--border-yellow-strong) !important;
    color: var(--text-yellow) !important;
    background: transparent !important;
}

.btn-social:hover,
.btn-social:focus,
.btn-social:active {
    background: var(--overlay-yellow-light) !important;
    border-color: var(--yellow-primary) !important;
    color: var(--text-yellow-hover) !important;
}

/* Alternative contact section divider */
.contact-alt-section {
    border-top: 1px solid var(--border-yellow-light);
}

/* Contact alternative email link */
.contact-email-link {
    color: var(--text-yellow) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.contact-email-link:hover {
    color: var(--text-yellow-hover) !important;
    text-decoration: underline !important;
}

/* Feature card h4 headings */
.feature-card h4 {
    color: var(--text-primary);
}

/* Utility Classes for Yellow Theme */
.text-yellow {
    color: var(--text-yellow) !important;
}

.text-white {
    color: var(--text-primary) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.text-tertiary {
    color: var(--text-tertiary) !important;
}

.bg-yellow {
    background: var(--yellow-primary) !important;
}

.text-dark {
    color: var(--bg-black) !important;
}

/* Step badges for process flows */
.badge-step {
    background: var(--yellow-primary) !important;
    color: #000 !important;
    font-size: 1.2rem !important;
    padding: 0.5rem 1rem !important;
}

/* Large icon styling */
.icon-hero {
    font-size: 5rem !important;
    color: var(--text-yellow) !important;
}

/* ============================================
   LANDING PAGES CSS - YELLOW JACKET THEME
   Page-specific styling with yellow/black scheme
   ============================================ */

/* ============================================
   ABOUT PAGE - TEAM SECTION
   ============================================ */
.team-headshot {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-yellow);
    margin-bottom: 20px;
    box-shadow: var(--shadow-yellow-md);
    transition: all 0.3s ease;
}

.team-headshot:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

/* Feature card flexbox for team cards */
.feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================================
   ABOUT PAGE - MODAL STYLING
   ============================================ */
.modal-content {
    background: var(--gradient-card);
    border: 1px solid var(--border-yellow);
    color: var(--text-secondary);
    box-shadow: var(--shadow-yellow-xl);
}

.modal-header {
    background: var(--gradient-bg);
    border-bottom: 1px solid var(--border-yellow);
}

.modal-body {
    background: transparent;
}

.modal-body h3 {
    color: var(--text-primary);
    text-shadow: var(--glow-yellow-md);
}

.modal-body p {
    color: var(--text-tertiary);
    line-height: 1.8;
}

.modal-body .text-primary {
    color: var(--text-yellow) !important;
    text-shadow: var(--glow-yellow-sm);
}

.modal-body a {
    color: var(--text-yellow);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.modal-body a:hover {
    color: var(--yellow-bright);
    text-shadow: var(--glow-yellow-md);
}

.modal .btn-close {
    filter: invert(1) brightness(1.5);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.modal .btn-close:hover {
    opacity: 1;
    filter: invert(1) brightness(2) drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

/* ============================================
   HOME PAGE - REVIEWS CAROUSEL
   ============================================ */
.reviews-carousel-container {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    position: relative;
}

.reviews-carousel {
    display: flex;
    width: fit-content;
    animation: scroll 800s linear infinite;
}

.reviews-carousel:hover {
    animation-play-state: paused;
}

.review-card {
    flex-shrink: 0;
    width: 400px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .review-card {
        width: 300px;
    }
}

/* Hero icon fallback */
.hero-icon-fallback {
    font-size: 15rem;
    opacity: 0.2;
    color: var(--text-yellow);
}

/* ============================================
   BLOG DETAIL PAGE - CONTENT STYLING
   ============================================ */
.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content h1 {
    font-size: 2.5rem;
    text-shadow: var(--glow-yellow-md);
}

.blog-content h2 {
    font-size: 2rem;
    text-shadow: var(--glow-yellow-sm);
}

.blog-content h3 {
    font-size: 1.75rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content a {
    color: var(--text-yellow);
    text-decoration: none;
    border-bottom: 1px solid var(--border-yellow);
    transition: all 0.3s ease;
}

.blog-content a:hover {
    color: var(--yellow-bright);
    border-bottom-color: var(--yellow-primary);
    text-shadow: var(--glow-yellow-sm);
}

.blog-content blockquote {
    border-left: 4px solid var(--yellow-primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-tertiary);
    background: var(--overlay-yellow-subtle);
    padding: 1rem 1.5rem;
    border-radius: 4px;
}

.blog-content code {
    background: var(--overlay-yellow-light);
    color: var(--text-yellow);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

.blog-content pre {
    background: var(--bg-card);
    border: 1px solid var(--border-yellow);
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.blog-content pre code {
    background: none;
    padding: 0;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid var(--border-yellow);
}

/* ============================================
   BLOG DETAIL PAGE - BADGE STYLING
   ============================================ */
.blog-category-badge {
    font-size: 0.9rem;
    background: var(--overlay-yellow-medium) !important;
    color: var(--text-yellow) !important;
    border: 1px solid var(--border-yellow-strong);
}

/* ============================================
   BLOG DETAIL PAGE - FEATURED IMAGE
   ============================================ */
.blog-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* ============================================
   PACK TRADE GROUP PAGE - CUSTOM STYLING
   ============================================ */

/* Hero Section - Logo and Title */
.pack-hero-title {
    flex-wrap: wrap;
}

.pack-logo {
    max-height: 180px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
}

.pack-logo:hover {
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .pack-logo {
        max-height: 120px;
        margin-bottom: 1rem !important;
    }

    .pack-hero-title {
        flex-direction: column;
        text-align: center;
    }

    .pack-hero-title h1 {
        font-size: 2.5rem !important;
    }
}

/* Overview Section */
.pack-overview .lead {
    font-size: 1.15rem;
    color: var(--text-tertiary);
    line-height: 1.8;
}

.pack-overview strong {
    color: var(--text-yellow);
    text-shadow: var(--glow-yellow-sm);
}

/* Bootcamp Transition Info */
.pack-transition-info h3 {
    color: var(--text-primary);
    text-shadow: var(--glow-yellow-md);
}

.pack-transition-info .lead {
    color: var(--text-yellow);
    font-size: 1.1rem;
}

.pack-transition-info p {
    color: var(--text-tertiary);
    line-height: 1.8;
}

/* Schedule Cards - Compact Design */
.schedule-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-yellow);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--overlay-yellow-subtle) 0%, transparent 70%);
    pointer-events: none;
}

.schedule-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow-sm);
    border-color: var(--border-yellow-hover);
}

.schedule-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Featured Schedule Card */
.schedule-card-featured {
    border: 2px solid var(--yellow-primary);
    box-shadow: var(--glow-yellow-md);
}

.schedule-card-featured::before {
    background: radial-gradient(circle at 50% 0%, var(--overlay-yellow-light) 0%, transparent 70%);
}

/* Schedule Card Content */
.schedule-time {
    color: var(--text-yellow) !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-shadow: var(--glow-yellow-sm);
    flex-shrink: 0;
}

/* Pack Traders Images */
.pack-traders-image {
    border: 2px solid var(--border-yellow);
    box-shadow: var(--shadow-yellow-md);
    transition: all 0.3s ease;
}

.pack-traders-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-yellow-lg);
    border-color: var(--border-yellow-hover);
}

/* ============================================
   FAQ ACCORDION - YELLOW THEME STYLING
   ============================================ */

.accordion-item {
    background: var(--gradient-card) !important;
    border: 1px solid var(--border-yellow) !important;
    margin-bottom: 1rem;
}

.accordion-button {
    background: linear-gradient(135deg, var(--bg-card-light) 0%, var(--bg-card) 100%) !important;
    color: var(--text-yellow) !important;
    font-weight: 600;
    border: none !important;
    box-shadow: none !important;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-card) !important;
    color: var(--text-yellow) !important;
    box-shadow: var(--shadow-yellow-sm) !important;
}

.accordion-button:hover {
    background: var(--overlay-yellow-light) !important;
    box-shadow: var(--glow-yellow-md) !important;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(79%) sepia(82%) saturate(473%) hue-rotate(359deg) brightness(103%) contrast(104%);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25) !important;
    border-color: var(--border-yellow-strong) !important;
}

.accordion-body {
    background: var(--gradient-bg) !important;
    color: var(--text-tertiary) !important;
    border-top: 1px solid var(--border-yellow-light) !important;
    padding: 1.5rem;
}

.accordion-body strong {
    color: var(--text-yellow);
    text-shadow: var(--glow-yellow-sm);
}

.accordion-collapse {
    border: none !important;
}


/* ============================================
   TIMELINE CONTAINER - YELLOW THEME (TACTICAL OPS)
   ============================================ */

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
    border-left: 3px solid var(--border-yellow-strong);
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    padding-left: 25px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--bg-dark);
    border: 3px solid var(--yellow-primary);
    border-radius: 50%;
    box-shadow: var(--glow-yellow-md);
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

.timeline-time {
    font-family: 'Inter', sans-serif;
    color: var(--text-yellow);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-shadow: var(--glow-yellow-md);
    letter-spacing: 0.5px;
}

.timeline-content {
    background: var(--gradient-card);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    border: 1px solid var(--border-yellow);
    box-shadow: var(--shadow-yellow-subtle);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--border-yellow-hover);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

.timeline-content h4 {
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: var(--glow-yellow-sm);
}

.timeline-content h4 i {
    color: var(--text-yellow);
    margin-right: 0.5rem;
}

.timeline-content p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Active/Featured Session */
.active-session::before {
    background: var(--yellow-primary);
    border-color: var(--yellow-primary);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    animation: pulse-glow 2s infinite;
}

.active-session .timeline-content {
    border-color: var(--yellow-primary);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, var(--overlay-yellow-light) 0%, var(--bg-card-light) 100%);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 1);
    }
}

/* Host Badge */
.host-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--border-yellow-strong);
    color: var(--text-yellow);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.host-badge i {
    color: var(--text-yellow);
    margin-right: 0.3rem;
}

/* ============================================
   BOOTCAMP → PACK PROGRESSION VISUAL
   ============================================ */

.progression-flow {
    flex-wrap: wrap;
}

.progression-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.progression-step.completed .step-circle {
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    border: 3px solid #999999;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(136, 136, 136, 0.3);
}

.progression-step.active .step-circle {
    background: var(--gradient-yellow);
    border: 3px solid var(--yellow-primary);
    color: var(--bg-black);
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.6);
    animation: step-pulse 2s infinite;
}

@keyframes step-pulse {
    0%, 100% {
        box-shadow: 0 5px 30px rgba(255, 215, 0, 0.6);
    }
    50% {
        box-shadow: 0 5px 45px rgba(255, 215, 0, 0.9);
    }
}

.step-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.progression-step.active .step-label {
    color: var(--text-yellow);
    text-shadow: var(--glow-yellow-sm);
}

.step-sublabel {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.progression-step.active .step-sublabel {
    color: var(--text-tertiary);
}

.step-connector {
    margin: 0 1.5rem;
    font-size: 2rem;
    color: var(--text-yellow);
    display: flex;
    align-items: center;
    animation: arrow-flow 1.5s infinite;
}

@keyframes arrow-flow {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

@media (max-width: 768px) {
    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-connector {
        margin: 0 1rem;
        font-size: 1.5rem;
    }

    .step-label {
        font-size: 0.95rem;
    }

    .step-sublabel {
        font-size: 0.75rem;
    }
}

/* ============================================
   SOCIAL PROOF STATS BAR
   ============================================ */

.stats-bar {
    background: var(--gradient-card);
    border: 2px solid var(--border-yellow);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-yellow-lg);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, var(--overlay-yellow-subtle) 0%, transparent 70%);
    pointer-events: none;
}

.stat-item {
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--text-yellow);
    margin-bottom: 1rem;
    filter: drop-shadow(var(--glow-yellow-md));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-yellow);
    margin-bottom: 0.5rem;
    text-shadow: var(--glow-yellow-lg);
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    color: var(--yellow-bright);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    transition: all 0.3s ease;
}

/* ============================================
   PACK LOGO - LARGE VERSION (LEFT ALIGNED)
   ============================================ */

.pack-logo-large {
    max-height: 450px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
}

.pack-logo-large:hover {
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .pack-logo-large {
        max-height: 220px;
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-yellow);
    border: 2px solid var(--yellow-primary);
    border-radius: 50%;
    color: var(--bg-black);
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-yellow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gradient-yellow-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .stats-bar {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 2rem;
    }
}

/* Custom Dark Glassmorphism Card for Stats */
.stats-glass-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-yellow);
    border-radius: 10px;
    box-shadow: var(--shadow-yellow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    padding: 1rem;
    height: 100%;
    position: relative;
    overflow: hidden;

}

.stats-glass-card .lead {
    color: var(--text-tertiary);
}

.stats-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-yellow-lg);
    border-color: var(--border-yellow-hover);
}

/* Make the divider line subtle */
.stats-divider {
    border-right: 1px solid var(--border-yellow);
}

/* Mobile responsive: Remove border on small screens */
@media (max-width: 768px) {
    .stats-divider {
        border-right: none;
        border-bottom: 1px solid var(--border-yellow);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

/* ============================================
   GSAP SCROLL ANIMATIONS - INITIAL STATES
   ============================================ */

/* Hidden initial state for animated elements */
[data-animate="slide-up"],
[data-animate="fade-in"],
[data-animate="stagger-cards"] > * {
    opacity: 0;
    transform: translateY(60px);
    will-change: opacity, transform; /* GPU acceleration hint */
}

/* Accessibility: Disable animations if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    [data-animate],
    [data-animate] * {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
}

/* Mobile: Smaller animation distance for better performance */
@media (max-width: 768px) {
    [data-animate="slide-up"],
    [data-animate="fade-in"],
    [data-animate="stagger-cards"] > * {
        transform: translateY(30px);
    }
}

/* Counter elements: Prevent width shift during number changes */
[data-counter-end] {
    font-variant-numeric: tabular-nums;
    display: inline-block;
    min-width: 1em; /* Prevent layout shift */
}

/* Fallback: Show content if GSAP fails to load */
.gsap-failed [data-animate] {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.5s ease-out 1s, transform 0.5s ease-out 1s;
}

/* Ensure animated elements don't cause layout shift */
[data-animate] {
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   FOCUS STATE OVERRIDES - YELLOW THEME
   Override enterprise blue focus states with yellow
   ============================================ */

/* Universal focus state override */
*:focus,
*:focus-visible {
    outline: 2px solid var(--yellow-primary) !important;
    outline-offset: 2px;
}

/* Button focus states */
button:focus,
.btn:focus,
.btn-primary:focus,
.btn-secondary:focus,
.btn-outline-primary:focus,
.btn-outline-secondary:focus,
.btn-cta:focus,
.btn-cta-outline:focus,
.btn-cta-bottom:focus,
.btn-login:focus {
    outline: 2px solid var(--yellow-primary) !important;
    outline-offset: 2px;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25) !important;
}

/* Link focus states */
a:focus,
.nav-link:focus,
.navbar-brand:focus {
    outline: 2px solid var(--yellow-primary) !important;
    outline-offset: 2px;
}

/* Form control focus states (already defined above but ensuring consistency) */
.form-control:focus,
.form-control-lg:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--yellow-primary) !important;
    outline-offset: 2px;
    border-color: var(--yellow-primary) !important;
    box-shadow: var(--glow-yellow-md) !important;
}

/* Accordion focus override (already defined above but ensuring consistency) */
.accordion-button:focus {
    outline: 2px solid var(--yellow-primary) !important;
    outline-offset: 2px;
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25) !important;
}

/* Dropdown and interactive elements */
.dropdown-item:focus,
.page-link:focus {
    outline: 2px solid var(--yellow-primary) !important;
    outline-offset: 2px;
}

/* Close button focus */
.btn-close:focus,
.btn-close-cta:focus {
    outline: 2px solid var(--yellow-primary) !important;
    outline-offset: 2px;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25) !important;
}

/* =====================================================
   INPUT GROUP ALIGNMENT - Landing Pages
   Ensures input and addon ($ / %) are perfectly aligned
   ===================================================== */

.input-group {
    display: flex !important;
    align-items: stretch !important;
}

.input-group .form-control,
.input-group .input-group-text {
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.input-group .input-group-text {
    background: rgba(255, 215, 0, 0.15) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    color: var(--yellow-primary) !important;
    padding: 0 12px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
}

/* $ on left: round left corners of $, round right corners of input */
.input-group .input-group-text:first-child {
    border-radius: 8px 0 0 8px !important;
    border-right: none !important;
}
.input-group .input-group-text:first-child + .form-control {
    border-radius: 0 8px 8px 0 !important;
}

/* % on right: round left corners of input, round right corners of % */
.input-group .form-control:first-child {
    border-radius: 8px 0 0 8px !important;
    border-right: none !important;
}
.input-group .form-control:first-child + .input-group-text {
    border-radius: 0 8px 8px 0 !important;
}

/* =====================================================
   RESOURCE PAGES - Simulators & Calculators
   ===================================================== */

/* Quick Reference Card */
.quick-reference-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
}

.ref-metric-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ref-metric-card:hover {
    border-color: var(--yellow-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.ref-metric-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--yellow-primary);
}

.ref-metric-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 4px;
}

.ref-metric-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.grade-scale-reference {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.grade-pill {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #fff;
}

.grade-pill.grade-a { background: rgba(40, 167, 69, 0.3); border: 1px solid rgba(40, 167, 69, 0.6); }
.grade-pill.grade-b { background: rgba(13, 110, 253, 0.3); border: 1px solid rgba(13, 110, 253, 0.6); }
.grade-pill.grade-c { background: rgba(255, 193, 7, 0.3); border: 1px solid rgba(255, 193, 7, 0.6); }
.grade-pill.grade-d { background: rgba(253, 126, 20, 0.3); border: 1px solid rgba(253, 126, 20, 0.6); }
.grade-pill.grade-f { background: rgba(220, 53, 69, 0.3); border: 1px solid rgba(220, 53, 69, 0.6); }

.input-def-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.input-def-item strong {
    color: var(--yellow-primary);
}

/* Simulator Cards */
.simulator-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.simulator-card .card-title {
    color: #fff;
    font-weight: 600;
}

/* Form Styling for Resource Pages */
.simulator-card .form-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

/* Form Controls - Resource Pages */
.simulator-card .form-control,
.simulator-card .form-control-sm,
.simulator-card .form-select {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 0 12px !important;
    font-size: 0.875rem !important;
    height: 38px !important;
    min-height: 38px !important;
}

.simulator-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.simulator-card .form-control:focus,
.simulator-card .form-select:focus {
    background: rgba(0, 0, 0, 0.5) !important;
    border-color: var(--yellow-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.15) !important;
    color: #fff !important;
}

/* Ensure input-group items in simulator-card align properly */
.simulator-card .input-group {
    height: 38px !important;
}

.simulator-card .input-group .form-control {
    border-radius: 0 8px 8px 0 !important;
}

/* Select Dropdown Options - Dark Theme */
.form-select,
select {
    background-color: #0d0d0d !important;
    color: #fff !important;
}

.form-select option,
select option {
    background-color: #0d0d0d;
    color: #fff;
    padding: 10px 12px;
}

.form-select option:hover,
select option:hover,
.form-select option:focus,
select option:focus,
.form-select option:checked,
select option:checked {
    background-color: rgba(255, 215, 0, 0.2) !important;
    color: #fff !important;
}

.form-select optgroup,
select optgroup {
    background-color: #0d0d0d;
    color: var(--yellow-primary);
    font-weight: 600;
    font-style: normal;
}

/* Action Buttons - Unified */
.action-buttons-row {
    display: flex;
    gap: 10px;
}

.btn-action-primary {
    flex: 1;
    background: var(--yellow-primary);
    color: #0d0d0d;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-action-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-action-secondary {
    background: transparent;
    color: var(--yellow-primary);
    border: 1px solid var(--yellow-primary);
    padding: 12px 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-action-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--yellow-primary);
}

/* Expectancy Box */
.expectancy-display {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.expectancy-display.negative {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
}

.expectancy-display.negative #expectancy-preview,
.expectancy-display.negative #expectancy-value {
    color: #dc3545 !important;
}

/* Metric Cards - Clickable */
.metric-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.metric-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.1);
}

.metric-card::after {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 0.6rem;
    color: rgba(255, 215, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
}

.metric-card:hover::after {
    opacity: 1;
}

.metric-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--yellow-primary);
}

/* Grade Items */
.grade-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    margin-bottom: 6px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
}

.grade-item:hover {
    transform: translateX(4px);
    background: rgba(0, 0, 0, 0.4);
}

.grade-item:last-child {
    margin-bottom: 0;
}

.grade-badge {
    font-weight: 800;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 4px;
    min-width: 32px;
    text-align: center;
}

.grade-a { background: rgba(40, 167, 69, 0.3); color: #28a745; border: 1px solid rgba(40, 167, 69, 0.5); }
.grade-b { background: rgba(13, 110, 253, 0.3); color: #0d6efd; border: 1px solid rgba(13, 110, 253, 0.5); }
.grade-c { background: rgba(255, 193, 7, 0.3); color: #ffc107; border: 1px solid rgba(255, 193, 7, 0.5); }
.grade-d { background: rgba(253, 126, 20, 0.3); color: #fd7e14; border: 1px solid rgba(253, 126, 20, 0.5); }
.grade-f { background: rgba(220, 53, 69, 0.3); color: #dc3545; border: 1px solid rgba(220, 53, 69, 0.5); }

/* Position Sizing Advice */
.advice-box {
    padding: 14px;
    border-radius: 8px;
    line-height: 1.6;
    font-size: 0.9rem;
    color: #fff;
}

.advice-box.grade-a-advice { background: rgba(40, 167, 69, 0.15); border: 1px solid rgba(40, 167, 69, 0.3); }
.advice-box.grade-b-advice { background: rgba(13, 110, 253, 0.15); border: 1px solid rgba(13, 110, 253, 0.3); }
.advice-box.grade-c-advice { background: rgba(255, 193, 7, 0.15); border: 1px solid rgba(255, 193, 7, 0.3); }
.advice-box.grade-d-advice { background: rgba(253, 126, 20, 0.15); border: 1px solid rgba(253, 126, 20, 0.3); }
.advice-box.grade-f-advice { background: rgba(220, 53, 69, 0.15); border: 1px solid rgba(220, 53, 69, 0.3); }

/* Insights */
.insight-item {
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    margin-bottom: 8px;
    border-left: 3px solid var(--yellow-primary);
}

.insight-item:last-child {
    margin-bottom: 0;
}

.insight-item.insight-positive { border-left-color: #28a745; }
.insight-item.insight-warning { border-left-color: #ffc107; }
.insight-item.insight-danger { border-left-color: #dc3545; }
.insight-item.insight-info { border-left-color: #0d6efd; }

/* Tab Navigation */
.tab-container {
    display: flex;
    gap: 8px;
    padding: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.tab {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tab:hover {
    background: rgba(255, 215, 0, 0.08);
    color: var(--yellow-primary);
}

.tab.active {
    background: var(--yellow-primary);
    color: #0d0d0d;
}

.chart-panel {
    display: none;
}

.chart-panel.active {
    display: block;
}

.chart-container {
    height: 280px;
    position: relative;
    background: #0d0d0d;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 10px;
}

.chart-container canvas {
    background: #0d0d0d !important;
}

/* Modal Styling - Dark Theme */
.metric-modal-content {
    background: #0d0d0d;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
}

.metric-modal-header {
    background: #0d0d0d !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2) !important;
    padding: 16px 20px !important;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}

.metric-modal-header .btn-close:hover {
    opacity: 1;
}

.metric-modal-header .modal-title,
.metric-modal-header h5 {
    color: var(--yellow-primary) !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.metric-modal-header .modal-title i,
.metric-modal-header h5 i {
    color: var(--yellow-primary) !important;
}

.metric-modal-body {
    background: #0d0d0d;
    color: rgba(255, 255, 255, 0.8);
    padding: 20px;
}

.metric-modal-footer {
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 16px 20px;
    border-radius: 0 0 12px 12px;
}

.metric-modal-section {
    margin-bottom: 16px;
}

.metric-modal-section:last-child {
    margin-bottom: 0;
}

.metric-modal-section h6 {
    color: var(--yellow-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.metric-modal-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.metric-modal-formula {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 6px;
    padding: 10px 14px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--yellow-primary);
}

.metric-modal-grades {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.metric-modal-grade {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Clickable Element Styles for Metric Modals */
.clickable-card {
    cursor: pointer;
    transition: all 0.2s ease;
}

.clickable-card:hover {
    transform: translateY(-2px);
    border-color: var(--yellow-primary, #ffc107) !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.clickable-metric {
    cursor: pointer;
    transition: all 0.2s ease;
}

.clickable-metric:hover {
    color: var(--yellow-primary, #ffc107) !important;
}

.clickable-row {
    cursor: pointer;
    transition: all 0.2s ease;
}

.clickable-row:hover {
    background: rgba(255, 193, 7, 0.1) !important;
}

.clickable-header {
    cursor: pointer;
    transition: all 0.2s ease;
}

.clickable-header:hover {
    color: var(--yellow-primary, #ffc107) !important;
    background: rgba(255, 193, 7, 0.15) !important;
}

/* Quick fact hover for clickable cards */
.quick-fact.clickable-card:hover {
    background: rgba(255, 193, 7, 0.1);
}

/* Info circle icon reveal on hover */
.clickable-card:hover .fa-info-circle,
.clickable-row:hover .fa-info-circle,
.clickable-header:hover .fa-info-circle,
.clickable-metric:hover .fa-info-circle {
    opacity: 1 !important;
    color: var(--yellow-primary);
}

/* Specific element hover effects */
.result-card.clickable-card:hover,
.cpr-card.clickable-card:hover,
.income-card.clickable-card:hover,
.comparison-card.clickable-card:hover,
.quick-ref-card.clickable-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    border-color: var(--yellow-primary) !important;
}

/* Pivot row clickable styling */
.pivot-row.clickable-row:hover {
    background: rgba(255, 215, 0, 0.1);
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
}

/* Summary row clickable styling */
.summary-row.clickable-row {
    cursor: pointer;
    transition: all 0.2s ease;
}

.summary-row.clickable-row:hover {
    background: rgba(255, 215, 0, 0.1);
    margin: 0 -10px;
    padding: 5px 10px;
    border-radius: 8px;
}

/* Matrix table clickable header */
.matrix-table th.clickable-header:hover {
    background: rgba(255, 215, 0, 0.3);
}

/* Print Theme Toggle Buttons */
.btn-group .btn-check + .btn-outline-light {
    background: transparent;
    border-color: rgba(255, 215, 0, 0.4);
    color: var(--yellow-primary);
}

.btn-group .btn-check + .btn-outline-light:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--yellow-primary);
    color: var(--yellow-primary);
}

.btn-group .btn-check:checked + .btn-outline-light {
    background: var(--yellow-primary);
    border-color: var(--yellow-primary);
    color: #000;
}

.btn-group .btn-check:checked + .btn-outline-light:hover {
    background: var(--yellow-hover);
    border-color: var(--yellow-hover);
    color: #000;
}

/* Result Cards (Prop Firm Simulator) */
.result-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 16px;
}

/* Responsive - Resource Pages */
@media (max-width: 768px) {
    .tab {
        padding: 8px 10px;
        font-size: 0.75rem;
    }

    .tab i {
        display: none;
    }

    .metric-value {
        font-size: 1rem;
    }

    .chart-container {
        height: 220px;
    }

    .quick-reference-card {
        padding: 12px 16px;
    }

    .action-buttons-row {
        flex-wrap: wrap;
    }

    .btn-action-primary {
        width: 100%;
        margin-bottom: 10px;
    }

    .btn-action-secondary {
        flex: 1;
    }
}

/* =====================================================
   PREMARKET CHECKLIST PAGE STYLES
   ===================================================== */

/* Print Preview Container - Dark Theme */
.premarket-preview-container {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    min-height: 600px;
}

.premarket-preview-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.premarket-preview-header img {
    height: 40px;
    margin-bottom: 0.5rem;
}

.premarket-preview-header h1 {
    color: var(--yellow-primary) !important;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.premarket-preview-header div {
    color: rgba(255, 255, 255, 0.6) !important;
}

.premarket-preview-category {
    margin-bottom: 1.5rem;
}

.premarket-preview-category-title {
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 215, 0, 0.15) !important;
    border-left: 4px solid var(--yellow-primary);
}

.premarket-preview-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premarket-preview-item:last-child {
    border-bottom: none;
}

.premarket-preview-item .checkbox-box {
    width: 16px;
    height: 16px;
    border: 2px solid var(--yellow-primary);
    border-radius: 3px;
    flex-shrink: 0;
    background: transparent;
}

/* Premarket Modals - Dark Theme */
#addCategoryModal .modal-content,
#editItemModal .modal-content {
    background: #0d0d0d !important;
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
    border-radius: 12px;
}

#addCategoryModal .modal-header,
#editItemModal .modal-header {
    background: #0d0d0d !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2) !important;
    padding: 16px 20px;
}

#addCategoryModal .modal-header .modal-title,
#editItemModal .modal-header .modal-title {
    color: var(--yellow-primary) !important;
    font-weight: 600;
}

#addCategoryModal .modal-header .btn-close,
#editItemModal .modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

#addCategoryModal .modal-body,
#editItemModal .modal-body {
    background: #0d0d0d !important;
    padding: 20px;
}

#addCategoryModal .modal-body .form-label,
#editItemModal .modal-body .form-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

#addCategoryModal .modal-body .form-control,
#addCategoryModal .modal-body .form-select,
#editItemModal .modal-body .form-control,
#editItemModal .modal-body .form-select {
    background: rgba(30, 30, 30, 0.8) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    color: #fff !important;
    border-radius: 8px;
}

#addCategoryModal .modal-body .form-control:focus,
#addCategoryModal .modal-body .form-select:focus,
#editItemModal .modal-body .form-control:focus,
#editItemModal .modal-body .form-select:focus {
    border-color: var(--yellow-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.15) !important;
}

#addCategoryModal .modal-body .form-control::placeholder,
#editItemModal .modal-body .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

#addCategoryModal .modal-footer,
#editItemModal .modal-footer {
    background: #0d0d0d !important;
    border-top: 1px solid rgba(255, 215, 0, 0.2) !important;
    padding: 16px 20px;
}

/* Print styles - Light theme for actual printing */
@media print {
    .premarket-preview-container {
        background: #fff !important;
        border: none !important;
    }

    .premarket-preview-header h1 {
        color: #333 !important;
    }

    .premarket-preview-header div {
        color: #666 !important;
    }

    .premarket-preview-category-title {
        color: #333 !important;
        background: #f5f5f5 !important;
    }

    .premarket-preview-item {
        color: #333 !important;
    }

    .premarket-preview-item .checkbox-box {
        border-color: #333 !important;
    }
}

/* ============================================
   STOP TRADING CALCULATOR STYLES
   Dark theme styling for psychology check
   ============================================ */

/* Tool Container */
.tool-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Simulator Card - Stop Trading Calculator */
.simulator-card {
    background: rgba(30, 30, 30, 0.95) !important;
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.simulator-card h3 {
    color: var(--yellow-primary, #ffc107) !important;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.simulator-card h3 i {
    color: var(--yellow-primary, #ffc107) !important;
}

/* Responsive simulator-card */
@media (max-width: 768px) {
    .simulator-card {
        padding: 1.25rem;
    }
}

/* Assessment Section - Dark Theme */
.assessment-category {
    background: rgba(40, 40, 40, 0.8) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    background: transparent !important;
}

.category-title {
    color: var(--yellow-primary, #ffc107) !important;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent !important;
}

.category-title i {
    color: var(--yellow-primary, #ffc107) !important;
}

.category-score {
    font-weight: 700;
    font-size: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.score-green {
    background: rgba(40, 167, 69, 0.2) !important;
    color: #28a745 !important;
}

.score-yellow {
    background: rgba(255, 193, 7, 0.2) !important;
    color: #ffc107 !important;
}

.score-orange {
    background: rgba(253, 126, 20, 0.2) !important;
    color: #fd7e14 !important;
}

.score-red {
    background: rgba(220, 53, 69, 0.2) !important;
    color: #dc3545 !important;
}

/* Question Items */
.question-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.question-item:last-child {
    border-bottom: none;
}

.question-text {
    flex: 1;
    color: #e0e0e0 !important;
    font-size: 0.95rem;
}

.question-options {
    display: flex;
    gap: 0.5rem;
}

/* Option Buttons */
.option-btn {
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.option-btn.yes {
    background: rgba(220, 53, 69, 0.2) !important;
    color: #dc3545 !important;
    border-color: rgba(220, 53, 69, 0.3) !important;
}

.option-btn.yes:hover, .option-btn.yes.selected {
    background: rgba(220, 53, 69, 0.4) !important;
    border-color: #dc3545 !important;
}

.option-btn.no {
    background: rgba(40, 167, 69, 0.2) !important;
    color: #28a745 !important;
    border-color: rgba(40, 167, 69, 0.3) !important;
}

.option-btn.no:hover, .option-btn.no.selected {
    background: rgba(40, 167, 69, 0.4) !important;
    border-color: #28a745 !important;
}

/* P&L Input Section */
.pnl-input-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pnl-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pnl-input-group label {
    color: #888 !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pnl-input-group input {
    background: rgba(30, 30, 30, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 600;
}

.pnl-input-group input:focus {
    outline: none;
    border-color: var(--yellow-primary, #ffc107) !important;
}

.pnl-input-group input.negative {
    color: #dc3545 !important;
}

.pnl-input-group input.positive {
    color: #28a745 !important;
}

/* Verdict Section */
.verdict-section {
    text-align: center;
    padding: 2rem;
}

.verdict-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.verdict-icon.stop { color: #dc3545 !important; }
.verdict-icon.caution { color: #fd7e14 !important; }
.verdict-icon.warning { color: #ffc107 !important; }
.verdict-icon.go { color: #28a745 !important; }

.verdict-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.verdict-title.stop { color: #dc3545 !important; }
.verdict-title.caution { color: #fd7e14 !important; }
.verdict-title.warning { color: #ffc107 !important; }
.verdict-title.go { color: #28a745 !important; }

.verdict-description {
    color: #ccc !important;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* Score Meter */
.score-meter {
    width: 100%;
    max-width: 500px;
    margin: 2rem auto;
}

.meter-track {
    height: 24px;
    background: linear-gradient(to right,
        #28a745 0%, #28a745 25%,
        #ffc107 25%, #ffc107 50%,
        #fd7e14 50%, #fd7e14 75%,
        #dc3545 75%, #dc3545 100%);
    border-radius: 12px;
    position: relative;
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #888 !important;
}

.meter-indicator {
    position: absolute;
    top: -8px;
    transform: translateX(-50%);
    width: 4px;
    height: 40px;
    background: #fff !important;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: left 0.5s ease;
}

.meter-value {
    position: absolute;
    top: -35px;
    transform: translateX(-50%);
    background: rgba(30, 30, 30, 0.95) !important;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff !important;
    white-space: nowrap;
}

/* Recommendations */
.recommendation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommendation-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(40, 40, 40, 0.5) !important;
    border-radius: 8px;
    color: #ccc !important;
}

.recommendation-list li i {
    color: var(--yellow-primary, #ffc107) !important;
    margin-top: 0.2rem;
}

/* Quick Rules */
.rule-card {
    background: rgba(40, 40, 40, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.rule-card.stop-rule {
    border-color: rgba(220, 53, 69, 0.5) !important;
    background: rgba(220, 53, 69, 0.1) !important;
}

.rule-card h4 {
    color: #fff !important;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rule-card p {
    color: #aaa !important;
    font-size: 0.9rem;
    margin: 0;
}

/* Timer Section */
.timer-section {
    background: rgba(40, 40, 40, 0.8) !important;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.timer-display {
    font-size: 3rem;
    font-weight: 700;
    color: var(--yellow-primary, #ffc107) !important;
    font-family: monospace;
    margin: 1rem 0;
}

.timer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.timer-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.timer-btn.primary {
    background: var(--yellow-primary, #ffc107) !important;
    color: #000 !important;
    border: none;
}

.timer-btn.primary:hover {
    background: #e0a800 !important;
}

.timer-btn.secondary {
    background: transparent !important;
    color: var(--yellow-primary, #ffc107) !important;
    border: 1px solid var(--yellow-primary, #ffc107) !important;
}

.timer-btn.secondary:hover {
    background: rgba(255, 193, 7, 0.1) !important;
}

/* Presets */
.preset-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.preset-btn {
    padding: 0.5rem 1rem;
    background: rgba(40, 40, 40, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px;
    color: #e0e0e0 !important;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.preset-btn:hover {
    border-color: var(--yellow-primary, #ffc107) !important;
    color: var(--yellow-primary, #ffc107) !important;
}

/* Reset Button */
.reset-btn {
    background: transparent !important;
    color: #888 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.reset-btn:hover {
    color: var(--yellow-primary, #ffc107) !important;
    border-color: var(--yellow-primary, #ffc107) !important;
}

/* Stop Trading Calculator Responsive */
@media (max-width: 768px) {
    .tool-container {
        padding: 1rem;
    }

    .question-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .question-options {
        width: 100%;
    }

    .option-btn {
        flex: 1;
        text-align: center;
    }

    .verdict-icon {
        font-size: 3rem;
    }

    .verdict-title {
        font-size: 1.5rem;
    }

    .timer-display {
        font-size: 2rem;
    }
}

/* ============================================
   CINEMATIC INTRO ANIMATION
   ============================================ */

/* Body states during animation */
body.intro-playing {
    overflow: hidden;
}

body.intro-playing .landing-navbar,
body.intro-playing .cta-bar,
body.intro-playing .scroll-to-top-btn,
body.intro-playing #cookieConsentBanner {
    opacity: 0 !important;
    pointer-events: none;
}

/* Overlay container */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: var(--bg-black, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Canvas layers for background effects */
.intro-canvas-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Film grain */
.intro-grain-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0.08;
}

/* Radial gold pulse behind logo */
.intro-radial-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 40%, transparent 70%);
    pointer-events: none;
    opacity: 0;
}

/* Vignette edge darkening */
.intro-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

/* Hide stroke-draw paths until JS sets dashoffset (prevents flash of completed logo) */
#intro-draw-group path {
    stroke-dasharray: 9999;
    stroke-dashoffset: 9999;
}

/* Centered draw SVG (Phase 1) */
.intro-draw-svg {
    position: relative;
    z-index: 2;
    width: 60vw;
    max-width: 600px;
}

/* Full viewport mask SVG (Phase 2) */
.intro-mask-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Gold scan line */
.intro-scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.8) 50%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    z-index: 4;
    top: 0;
}

/* Skip button */
.intro-skip-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    background: transparent;
    color: var(--text-tertiary, #555);
    border: 1px solid var(--text-tertiary, #555);
    border-radius: 999px;
    padding: 0.4rem 1.2rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transition: color 0.2s, border-color 0.2s;
}

.intro-skip-btn:hover {
    color: var(--yellow-primary, #FFD700);
    border-color: var(--yellow-primary, #FFD700);
}

/* Page content wrapper */
.intro-page-content {
    opacity: 0;
    position: relative;
    z-index: 1;
}

.intro-page-content.intro-revealed {
    opacity: 1;
}

/* Post-animation entrance keyframes */
body.intro-complete .landing-navbar {
    animation: introFadeInDown 0.6s ease-out forwards;
}

body.intro-complete .cta-bar {
    animation: introFadeInUp 0.6s ease-out forwards;
}

@keyframes introFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes introFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility: skip animation for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .intro-overlay {
        display: none !important;
    }

    .intro-page-content {
        opacity: 1 !important;
    }

    .landing-video-bg-source {
        filter: brightness(0.75) contrast(1.2) saturate(0.35) blur(0px) !important;
        transition: none !important;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .intro-draw-svg {
        width: 70vw;
        max-width: 200px;
    }

    .intro-radial-pulse {
        width: 300px;
        height: 300px;
    }

    .intro-skip-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 0.65rem;
        padding: 0.3rem 1rem;
    }
}


/* ============================================
   HOME PAGE REDESIGN - PREMIUM HUB AESTHETIC
   Clean, spacious, Sora font, gold accents on
   ultra-dark backgrounds. "Damn" factor.
   ============================================ */

/* Apply Sora globally to landing pages */
body {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---- Landing Background Animation ---- */
.landing-bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#bg-smoke-canvas {
    opacity: 0.85;
}

.landing-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ---- Landing Video Background (replaces constellation canvas) ---- */
.landing-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.landing-video-bg-source {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
    filter: brightness(0.75) contrast(1.2) saturate(0.35) blur(20px);
    transition: filter 3s ease-out, opacity 1s ease-in-out;
}

/* De-blur video after intro animation completes */
body.intro-complete .landing-video-bg-source {
    filter: brightness(0.75) contrast(1.2) saturate(0.35) blur(0px);
}

/* Pages without intro animation — show sharp immediately */
.intro-page-content.intro-revealed .landing-video-bg-source {
    filter: brightness(0.75) contrast(1.2) saturate(0.35) blur(0px);
}

/* ---- Video Rotation Crossfade ---- */
.landing-video-rotation .landing-video-bg-source {
    opacity: 0;
}

.landing-video-rotation .landing-video-bg-source.landing-video-active {
    opacity: 1;
}

.landing-video-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 80% at 50% 50%, transparent 40%, #08090a 90%),
        linear-gradient(to bottom, rgba(8, 9, 10, 0.27) 0%, transparent 15%, transparent 80%, rgba(8, 9, 10, 0.8) 100%);
}


/* ---- Hero Redesign ---- */
.hero-home {
    position: relative;
    padding: 7rem 0 6rem;
    background: transparent;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.hero-home::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at 50% 40%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.15) 50%, transparent 100%);
}

.hero-home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--yellow-primary);
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 100px;
    background: rgba(255, 215, 0, 0.06);
    margin-bottom: 2rem;
}

.hero-home-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
}

.hero-home-title .text-gold {
    color: var(--yellow-primary);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
}

.hero-home-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-home-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-home-video-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.06);
    background: #0d0d0d;
}

.hero-home-video-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, transparent 50%, rgba(255, 215, 0, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.hero-home-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(255, 215, 0, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3), 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 3;
    cursor: pointer;
    border: none;
}

.hero-home-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.4), 0 6px 30px rgba(0, 0, 0, 0.5);
}

.hero-home-play-btn i {
    color: #0a0a0a;
    font-size: 1.5rem;
    margin-left: 3px;
}

/* ---- Section: Premium ---- */
.section-premium {
    position: relative;
    padding: 6rem 0;
    background: transparent;
}

.section-premium.alt-bg {
    background: transparent;
}

/* Glass panel for section containers — ensures text readability over video backgrounds */
.section-premium > .container,
.hero-home > .container,
.content-section > .container,
.resources-hero > .container {
    position: relative;
    background: rgba(8, 9, 10, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 3rem;
}

.section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
}

.section-premium-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--yellow-primary);
    margin-bottom: 0.75rem;
    opacity: 0.85;
}

.section-premium-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.section-premium-subtext {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    line-height: 1.6;
}

/* Centered variant */
.section-premium .text-center .section-premium-subtext {
    margin-left: auto;
    margin-right: auto;
}

/* ---- Pillar Cards (How We Build Better Traders) ---- */
.pillar-card {
    height: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2.25rem;
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-card:hover {
    border-color: rgba(255, 215, 0, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.04);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card-number {
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--yellow-primary);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pillar-card-number::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 215, 0, 0.15);
}

.pillar-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover .pillar-card-icon {
    background: rgba(255, 215, 0, 0.12);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.pillar-card-icon i {
    font-size: 1.15rem;
    color: var(--yellow-primary);
}

.pillar-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.pillar-card-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ---- Journey / Pathway Section ---- */
.journey-pathway {
    position: relative;
}

.journey-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.journey-image-wrap img {
    width: 100%;
    display: block;
}

.journey-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}
.journey-step:last-child {
    margin-bottom: 0;
}

.journey-step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--yellow-primary);
    color: #000000;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.journey-step-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.journey-step-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}

.journey-step-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.journey-arrow {
    display: flex;
    justify-content: flex-start;
    /* Center under the 36px step-number circle: half of circle width (18px) */
    padding-left: 6px;
    margin: 0.5rem 0;
    width: 36px;
}

.journey-arrow i {
    color: rgba(255, 215, 0, 0.3);
    font-size: 1rem;
    display: block;
    text-align: center;
    width: 100%;
}

.journey-option-card {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    background: rgba(255, 215, 0, 0.04);
    border-left: 3px solid var(--yellow-primary);
    margin-bottom: 0.5rem;
}

.journey-option-card strong {
    color: #ffffff;
    font-size: 0.9rem;
}

.journey-option-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    margin: 0.25rem 0 0;
    line-height: 1.6;
}

.journey-option-card .text-gold {
    color: var(--yellow-primary);
}

/* ---- Anti-Guru Guarantee Banner ---- */
.anti-guru-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    border-radius: 16px;
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    margin-top: 2.5rem;
}

.anti-guru-icon {
    font-size: 2.5rem;
    color: var(--yellow-primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
}

.anti-guru-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--yellow-primary);
    margin-bottom: 0.35rem;
}

.anti-guru-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* ---- Resource Tool Cards ---- */
.tool-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.05);
}

/* Diagonal ribbon badge (FREE / NEW) */
.tool-card-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #28a745;
    color: white;
    padding: 5px 35px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    transform: rotate(45deg);
    z-index: 1;
}

.tool-card-ribbon.ribbon-new {
    background: #28a745;
}

.tool-card-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--yellow-primary), #f0c000);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.tool-card-icon-wrap i {
    font-size: 1.4rem;
    color: #0a0a0a;
}

.tool-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.tool-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.tool-card .btn-cta-outline,
.tool-card .btn-cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* ---- Review Section Redesign ---- */
.reviews-section-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-big-number {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.reviews-stars-label {
    text-align: left;
}

.reviews-stars-label .text-warning {
    color: var(--yellow-primary) !important;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.reviews-total-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.25rem;
}

/* ---- Veteran Section ---- */
.veteran-stat-box {
    text-align: center;
    padding: 1.25rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s ease;
}

.veteran-stat-box:hover {
    border-color: rgba(255, 215, 0, 0.15);
}

.veteran-stat-value {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--yellow-primary);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.veteran-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.veteran-value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
}

.veteran-value-item i {
    color: var(--yellow-primary);
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
}

.veteran-value-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.veteran-value-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.veteran-quote-block {
    padding: 2rem 2.5rem;
    border-radius: 16px;
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
    margin-top: 3rem;
}

.veteran-quote-text {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.veteran-quote-author {
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--yellow-primary);
}

.veteran-quote-author span {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
}

/* ---- Final CTA Section ---- */
.cta-finale {
    position: relative;
    padding: 7rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-finale::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.cta-finale-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
}

.cta-finale-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* #297: minimalist CTA family — coherent treatment shared between the
   final-page CTA section and the sticky bottom CTA bar. Single inline
   message: "$100 • 3 months • Start now" + button. */
.cta-finale-headline {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 2.5rem;
    letter-spacing: -0.01em;
    line-height: 1.15;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem 0.9rem;
}

.cta-finale-price {
    color: var(--yellow-primary, #FFD700);
    font-size: 1.25em;
    font-weight: 800;
}

.cta-finale-sep {
    color: rgba(255, 215, 0, 0.45);
    font-weight: 400;
}

.cta-finale-button {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.35);
}

.cta-finale-button:hover {
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.55);
    transform: translateY(-2px);
}

/* Sticky-bar variant — same family, scaled to bar height */
.cta-pitch {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    flex-wrap: wrap;
    line-height: 1.2;
}

.cta-pitch-price {
    color: var(--yellow-primary, #FFD700);
    font-size: 1.35em;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.cta-pitch-sep {
    color: rgba(255, 215, 0, 0.5);
    font-weight: 400;
}

.cta-pitch-term,
.cta-pitch-action {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 575px) {
    .cta-pitch {
        font-size: 0.9rem;
        gap: 0.35rem;
    }
}

/* ---- Disclaimer note ---- */
.home-disclaimer {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 1.5rem;
}

.home-disclaimer i {
    color: var(--yellow-primary);
}

/* ---- Video poster overlay ---- */
.video-poster-overlay {
    position: relative;
    cursor: pointer;
}

/* ---- Journey time label (align with button) ---- */
.journey-step-time-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ---- Veteran Section - Original Layout Classes ---- */
.veteran-medal-icon {
    color: var(--yellow-primary);
}

.veteran-section-subtitle {
    color: var(--yellow-primary);
}

.veteran-stat-card {
    background: var(--bg-card-light);
    border: 1px solid var(--border-yellow-light);
}

.veteran-stat-card-value {
    color: var(--yellow-primary);
}

.veteran-stat-card-label {
    color: var(--text-tertiary);
}

.veteran-values-box {
    background: var(--bg-card-light);
    border: 1px solid var(--border-yellow-light);
}

.veteran-value-icon {
    color: var(--yellow-primary);
}

.veteran-value-label {
    color: var(--text-primary);
}

.veteran-value-sublabel {
    color: var(--text-tertiary);
    font-size: 0.75rem;
}

.veteran-quote-card {
    background: var(--overlay-yellow-light);
    border: 1px solid var(--border-yellow-light);
}

.veteran-quote-card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.veteran-quote-card-author {
    color: var(--yellow-primary);
}

.veteran-quote-card-branch {
    color: var(--text-tertiary);
}

/* ---- Animated reveal (reusable) ---- */
.hub-reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: hubRevealIn 0.6s ease forwards;
}

@keyframes hubRevealIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Review loading/empty states ---- */
.review-loading-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.review-loading-text {
    color: rgba(255, 255, 255, 0.3);
}

/* ---- Rating breakdown row ---- */
.rating-breakdown-label {
    width: 60px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.rating-breakdown-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
}

.rating-breakdown-bar .progress-bar {
    background: var(--yellow-primary);
    border-radius: 3px;
}

.rating-breakdown-count {
    width: 30px;
    text-align: right;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

/* ---- Responsive: Home Page Premium ---- */
@media (max-width: 991px) {
    .hero-home {
        padding: 5rem 0 4rem;
    }

    .hero-home-title {
        font-size: 2.25rem;
    }


    .anti-guru-banner {
        flex-direction: column;
        text-align: center;
    }

    .reviews-section-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .reviews-stars-label {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .hero-home {
        padding: 4rem 0 3rem;
    }

    .hero-home-title {
        font-size: 1.85rem;
    }

    .hero-home-desc {
        font-size: 1rem;
    }

    .section-premium {
        padding: 4rem 0;
    }

    /* Tighter glass panel padding on mobile */
    .section-premium > .container,
    .hero-home > .container,
    .content-section > .container {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .section-premium-heading {
        font-size: 1.65rem;
    }

    .pillar-card {
        padding: 1.75rem;
    }

    .journey-step-title {
        font-size: 0.95rem;
    }

    .cta-finale {
        padding: 5rem 0;
    }
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */

/* Products Hero */
.products-hero {
    position: relative;
    padding: 5rem 0 2rem;
    background: transparent;
    text-align: center;
}

.products-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.products-hero-title .text-gold {
    color: var(--yellow-primary);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
}

.products-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Product Card — glass variant of pillar-card */
.product-card {
    height: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2.25rem;
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    border-color: rgba(255, 215, 0, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.04);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-align: center;
}

.product-card-lead {
    font-size: 0.95rem;
    color: var(--yellow-primary);
    font-weight: 500;
    margin-bottom: 1.25rem;
    text-align: center;
}

.product-card-heading {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--yellow-primary);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-card-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.product-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.product-card ul li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 0.35rem;
}

.product-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--yellow-primary);
    font-size: 0.65rem;
    top: 0.35rem;
}

.product-card ul li strong {
    color: rgba(255, 255, 255, 0.75);
}

/* Inspired-by badge (floats top-right of card) */
.product-inspired-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.product-inspired-badge img {
    height: 22px;
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-inspired-badge img {
    opacity: 0.7;
}

/* Screenshot zoom container */
.product-screenshot-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-screenshot-wrap:hover {
    transform: translateY(-5px);
}

.product-screenshot-wrap img {
    width: 100%;
    display: block;
}

.product-screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-screenshot-wrap:hover .product-screenshot-overlay {
    opacity: 1;
}

.product-screenshot-icon {
    color: #ffffff;
    font-size: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Ecosystem integration cards */
.ecosystem-card {
    height: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.ecosystem-card:hover {
    border-color: rgba(255, 215, 0, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.04);
}

.ecosystem-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: opacity 0.3s ease;
}

.ecosystem-card:hover .ecosystem-card-icon {
    opacity: 0.85;
}

.ecosystem-card-icon i {
    font-size: 1.75rem;
    color: var(--yellow-primary);
}

.ecosystem-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.ecosystem-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Bootcamp included cards — large icon, no box, check items */
.bootcamp-included-card {
    height: 100%;
    position: relative;
    background: rgba(8, 9, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.bootcamp-included-card:hover {
    border-color: rgba(255, 215, 0, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.04);
}

.bootcamp-included-icon {
    font-size: 2rem;
    color: var(--yellow-primary);
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.bootcamp-included-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.bootcamp-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bootcamp-included-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.bootcamp-included-list li:last-child {
    margin-bottom: 0;
}

.bootcamp-included-list li i {
    color: var(--yellow-primary);
    font-size: 0.7rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
    opacity: 0.7;
}

/* Tighter section spacing on products page */
.products-hero + .section-premium,
.products-hero ~ .section-premium {
    padding: 3rem 0;
}

/* Center the numbered label inside product cards */
.product-card .pillar-card-number {
    justify-content: center;
    text-align: center;
}

.product-card .pillar-card-number::after {
    display: none;
}

/* Products page responsive */
@media (max-width: 991px) {
    .products-hero {
        padding: 5rem 0 3rem;
    }

    .products-hero-title {
        font-size: 2.25rem;
    }

    .product-inspired-badge {
        position: static;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575px) {
    .products-hero {
        padding: 4rem 0 2.5rem;
    }

    .products-hero-title {
        font-size: 1.85rem;
    }

    .products-hero-desc {
        font-size: 1rem;
    }

    .product-card {
        padding: 1.75rem;
    }
}

/* ============================================
   ABOUT PAGE — PREMIUM OVERHAUL
   ============================================ */

/* About Hero (reuses products-hero sizing) */
.about-hero {
    position: relative;
    padding: 5rem 0 2rem;
    background: transparent;
    text-align: center;
}

.about-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.about-hero-title .text-gold {
    color: var(--yellow-primary);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
}

.about-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Tighter section spacing scoped to about page */
.about-hero + .section-premium,
.about-hero ~ .section-premium {
    padding: 3rem 0;
}

/* Team card — glass-morphism card for team members */
.team-card {
    height: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover {
    border-color: rgba(255, 215, 0, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.04);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.team-card-role {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--yellow-primary);
    margin-bottom: 1rem;
}

.team-card-bio {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    flex-grow: 1;
}

.team-card .btn-profile {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.45rem 1.5rem;
    background: transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.team-card .btn-profile:hover {
    color: var(--yellow-primary);
    border-color: rgba(255, 215, 0, 0.3);
}

/* Partner badge inside team-card */
.team-card-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--yellow-primary);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 100px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1rem;
}

/* About Mission / Story image styling */
.about-section-img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Partner section gold divider */
.about-partner-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.25) 50%, transparent 100%);
    margin: 2rem 0 3rem;
}

/* Bio modal premium override (transparent dark glass) */
.bio-modal .modal-content {
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.bio-modal .modal-header {
    border-bottom: none;
    background: transparent;
}

.bio-modal .btn-close {
    filter: invert(1) brightness(0.8);
}

.bio-modal .modal-body h3 {
    font-family: 'Sora', sans-serif;
    color: #ffffff;
    text-shadow: none;
}

.bio-modal .modal-body .text-primary {
    color: var(--yellow-primary) !important;
    text-shadow: none;
}

.bio-modal .modal-body p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    font-size: 0.92rem;
}

.bio-modal .modal-body .fst-italic {
    color: var(--yellow-primary);
    opacity: 0.7;
    font-size: 0.95rem;
}

/* About page responsive */
@media (max-width: 991px) {
    .about-hero {
        padding: 5rem 0 3rem;
    }

    .about-hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 575px) {
    .about-hero {
        padding: 4rem 0 2.5rem;
    }

    .about-hero-title {
        font-size: 1.85rem;
    }

    .about-hero-desc {
        font-size: 1rem;
    }

    .team-card {
        padding: 1.75rem 1.5rem;
    }
}

/* ============================================
   BOOTCAMP CURRICULUM PAGE
   ============================================ */

/* Bootcamp Hero (same pattern as about-hero) */
.bootcamp-hero {
    position: relative;
    padding: 5rem 0 2rem;
    background: transparent;
    text-align: center;
}

/* Hero glass panel */
.bootcamp-hero-glass {
    background: rgba(8, 9, 10, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2.5rem 3rem;
}

.bootcamp-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.bootcamp-hero-title .text-gold {
    color: var(--yellow-primary);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
}

.bootcamp-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Tighter section spacing scoped to bootcamp page */
.bootcamp-hero + .section-premium,
.bootcamp-hero ~ .section-premium {
    padding: 4rem 0;
}

/* Subtle gold dividers between bootcamp sections */
.bootcamp-hero ~ .section-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 500px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.15) 30%, rgba(255, 215, 0, 0.25) 50%, rgba(255, 215, 0, 0.15) 70%, transparent 100%);
}

/* Bootcamp ambient smoke video background */
.bootcamp-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bootcamp-video-bg-source {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
    filter: brightness(0.75) contrast(1.2) saturate(0.35);
}

.bootcamp-video-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 80% at 50% 50%, transparent 40%, #08090a 90%),
        linear-gradient(to bottom, rgba(8, 9, 10, 0.27) 0%, transparent 15%, transparent 80%, rgba(8, 9, 10, 0.8) 100%);
}

/* Bootcamp enrollment badge */
.bootcamp-enrollment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    background: rgba(8, 9, 10, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    margin-bottom: 1.5rem;
    font-family: 'Sora', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 215, 0, 0.9);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bootcamp-enrollment-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: enrollment-pulse 2s ease-in-out infinite;
}

@keyframes enrollment-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Bootcamp price tag */
.bootcamp-price-tag {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--yellow-primary);
    letter-spacing: 0.02em;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bootcamp-price-tag .price-amount {
    font-size: 2.25rem;
    font-weight: 800;
    display: block;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.bootcamp-price-tag .price-detail-line {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.bootcamp-price-tag .price-detail {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    margin-left: 0.25rem;
}

/* Comparison cards (Before/After Bootcamp) */
.bootcamp-comparison-card {
    position: relative;
    background: rgba(8, 9, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.bootcamp-comparison-card:hover {
    transform: translateY(-2px);
}

.bootcamp-comparison-card.comparison-negative {
    border-color: rgba(239, 68, 68, 0.15);
}

.bootcamp-comparison-card.comparison-negative:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

.bootcamp-comparison-card.comparison-positive {
    border-color: rgba(255, 215, 0, 0.15);
}

.bootcamp-comparison-card.comparison-positive:hover {
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.08);
}

.comparison-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.comparison-indicator .indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.comparison-negative .indicator-dot {
    background: #ef4444;
}

.comparison-negative .comparison-indicator {
    color: #ef4444;
}

.comparison-positive .indicator-dot {
    background: var(--yellow-primary);
}

.comparison-positive .comparison-indicator {
    color: var(--yellow-primary);
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-item i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.comparison-negative .comparison-item i {
    color: rgba(239, 68, 68, 0.7);
}

.comparison-positive .comparison-item i {
    color: rgba(255, 215, 0, 0.8);
}

.comparison-positive .comparison-item {
    color: rgba(255, 255, 255, 0.65);
}

/* Comparison connector icon */
.comparison-connector {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--yellow-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.35);
    z-index: 2;
}

.comparison-connector i {
    color: #000;
    font-size: 1.25rem;
}

/* Bootcamp accordion styles */
.bootcamp-accordion .accordion-item {
    background: rgba(8, 9, 10, 0.5) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.bootcamp-accordion .accordion-button {
    background: transparent !important;
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border: none !important;
    box-shadow: none !important;
}

.bootcamp-accordion .accordion-button:hover {
    background: rgba(255, 215, 0, 0.03) !important;
    box-shadow: none !important;
}

.bootcamp-accordion .accordion-button:not(.collapsed) {
    background: rgba(255, 215, 0, 0.05) !important;
    color: var(--yellow-primary) !important;
}

.bootcamp-accordion .accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

.bootcamp-accordion .accordion-button::after {
    filter: invert(1) brightness(0.6);
}

.bootcamp-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(1) brightness(1);
}

.bootcamp-accordion .accordion-body {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.88) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 0.75rem 1.25rem 1.25rem;
    text-shadow: none !important;
}

.bootcamp-accordion .accordion-body * {
    text-shadow: none !important;
}

.bootcamp-accordion .accordion-body p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.bootcamp-accordion .accordion-body .text-muted {
    color: rgba(255, 255, 255, 0.78) !important;
}

.bootcamp-accordion .week-badge {
    display: inline-block;
    color: var(--yellow-primary);
    font-weight: 700;
    margin-right: 0.75rem;
    min-width: 4.5rem;
}

.bootcamp-accordion .phase-heading {
    color: var(--yellow-primary);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.bootcamp-accordion .phase-heading:first-child {
    margin-top: 0;
}

/* Instructor glass panel */
.bootcamp-instructor-panel {
    background: rgba(8, 9, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
}

/* Instructor image */
.bootcamp-instructor-img {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    border: 2px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.08), 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.bootcamp-instructor-img:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15), 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* FAQ accordion — reuse bootcamp-accordion base */
.bootcamp-faq .accordion-item {
    background: rgba(8, 9, 10, 0.5) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.bootcamp-faq .accordion-button {
    background: transparent !important;
    color: var(--yellow-primary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    border: none !important;
    box-shadow: none !important;
}

.bootcamp-faq .accordion-button:hover {
    background: rgba(255, 215, 0, 0.03) !important;
    box-shadow: none !important;
}

.bootcamp-faq .accordion-button:not(.collapsed) {
    background: rgba(255, 215, 0, 0.05) !important;
    color: var(--text-primary) !important;
}

.bootcamp-faq .accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

.bootcamp-faq .accordion-button::after {
    filter: invert(1) brightness(0.6);
}

.bootcamp-faq .accordion-button:not(.collapsed)::after {
    filter: invert(1) brightness(1);
}

.bootcamp-faq .accordion-body {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.88) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 0.75rem 1.25rem 1.25rem;
    line-height: 1.7;
    text-shadow: none !important;
}

.bootcamp-faq .accordion-body * {
    text-shadow: none !important;
}

/* Bootcamp CTA section — distinct from other sections */
.bootcamp-cta-section {
    padding: 5rem 0 !important;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.bootcamp-cta-section::after {
    display: none !important;
}

.bootcamp-cta-btn {
    padding: 1.15rem 3rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15), 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease, transform 0.3s ease !important;
}

.bootcamp-cta-btn:hover {
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.25), 0 4px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.bootcamp-cta-btn-outline {
    padding: 1.15rem 3rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    background: transparent !important;
    border: 2px solid rgba(255, 215, 0, 0.6) !important;
    color: #ffd700 !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.08);
    transition: all 0.3s ease !important;
}

.bootcamp-cta-btn-outline:hover {
    background: rgba(255, 215, 0, 0.1) !important;
    border-color: #ffd700 !important;
    color: #ffd700 !important;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2), 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Responsive - Bootcamp */
@media (max-width: 991px) {
    .comparison-connector {
        display: none;
    }
}

@media (max-width: 767px) {
    .bootcamp-hero {
        padding: 5rem 0 3rem;
    }

    .bootcamp-hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 575px) {
    .bootcamp-hero {
        padding: 4rem 0 2.5rem;
    }

    .bootcamp-hero-title {
        font-size: 1.85rem;
    }

    .bootcamp-hero-desc {
        font-size: 1rem;
    }

    .bootcamp-comparison-card {
        padding: 1.5rem;
    }

    .bootcamp-price-tag .price-amount {
        font-size: 1.6rem;
    }
}

/* ============================================
   RESOURCES HUB PAGE
   ============================================ */

/* Resources Hero */
.resources-hero {
    position: relative;
    padding: 5rem 0 2rem;
    background: transparent;
    text-align: center;
}

.resources-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.resources-hero-title .text-gold {
    color: var(--yellow-primary);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
}

.resources-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Tighter section spacing scoped to resources page */
.resources-hero + .section-premium,
.resources-hero ~ .section-premium {
    padding: 3rem 0;
}

/* Tool stats bar (hero) */
.resources-stats-bar {
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    background: rgba(255, 215, 0, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.resources-stat {
    text-align: center;
}

.resources-stat-value {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--yellow-primary);
    line-height: 1;
}

.resources-stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.35rem;
}

.resources-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 215, 0, 0.2);
}

/* Category filter pills */
.resources-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.resources-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.15rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.resources-filter-pill:hover {
    border-color: rgba(255, 215, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

.resources-filter-pill.active {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.08);
    color: var(--yellow-primary);
}

.resources-filter-pill i {
    font-size: 0.7rem;
}

/* Resource card — glass-morphism (matches product-card pattern) */
.resource-card {
    height: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.4) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.resource-card:hover {
    border-color: rgba(255, 215, 0, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.04);
}

.resource-card:hover::before {
    opacity: 1;
}

.resource-card.coming-soon {
    opacity: 0.5;
    pointer-events: none;
}

/* Resource badge (ribbon) */
.resource-badge {
    position: absolute;
    top: 14px;
    right: -34px;
    padding: 5px 40px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 2;
}

.resource-badge.badge-popular {
    background: linear-gradient(135deg, #dc3545 0%, #ff4757 100%);
    color: #ffffff;
}

.resource-badge.badge-new {
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
    color: #ffffff;
}

/* Resource icon box */
.resource-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.resource-card:hover .resource-icon-box {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.3);
}

.resource-icon-box i {
    font-size: 1.25rem;
    color: var(--yellow-primary);
}

/* Resource card typography */
.resource-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.resource-card-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--yellow-primary);
    margin-bottom: 0.75rem;
    opacity: 0.85;
}

.resource-card-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

/* Resource feature list */
.resource-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.resource-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 0.3rem 0;
}

.resource-feature-list li i {
    color: rgba(255, 215, 0, 0.6);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* Resource CTA button */
.resource-card .btn-resource-launch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.06);
    color: var(--yellow-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.resource-card .btn-resource-launch:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.4);
    color: var(--yellow-bright);
}

.resource-card .btn-resource-launch.disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* Category section divider */
.resources-category-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.2) 50%, transparent 100%);
    margin: 1rem 0 2rem;
}

/* Resources page responsive */
@media (max-width: 991px) {
    .resources-hero {
        padding: 5rem 0 3rem;
    }

    .resources-hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 575px) {
    .resources-hero {
        padding: 4rem 0 2.5rem;
    }

    .resources-hero-title {
        font-size: 1.85rem;
    }

    .resources-hero-desc {
        font-size: 1rem;
    }

    .resources-stats-bar {
        gap: 1.5rem;
        padding: 0.85rem 1.5rem;
    }

    .resources-stat-value {
        font-size: 1.35rem;
    }

    .resource-card {
        padding: 1.5rem;
    }

    .resources-filter-bar {
        gap: 0.35rem;
    }

    .resources-filter-pill {
        padding: 0.4rem 0.9rem;
        font-size: 0.72rem;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Hero */
.contact-hero {
    position: relative;
    padding: 5rem 0 2rem;
    background: transparent;
    text-align: center;
}

.contact-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.contact-hero-title .text-gold {
    color: var(--yellow-primary);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
}

.contact-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Tighter section spacing scoped to contact page */
.contact-hero + .section-premium,
.contact-hero ~ .section-premium {
    padding: 3rem 0;
}

/* Form card override — center premium labels & heading inside card */
.contact-form-card .section-premium-label {
    justify-content: center;
}

.contact-form-card .section-premium-heading {
    text-align: center;
}

/* Larger social buttons for the channel cards */
.btn-social-lg {
    min-width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border-radius: 12px;
    padding: 0.5rem 1.25rem;
}

/* Channel link inside ecosystem cards */
.contact-channel-link {
    font-size: 0.85rem;
}

/* CTA subtext centred */
.contact-cta-subtext {
    margin: 0 auto 2rem;
}

/* ---- Responsive: Contact ---- */
@media (max-width: 767px) {
    .contact-hero {
        padding: 4rem 0 1.5rem;
    }

    .contact-hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 575px) {
    .contact-hero {
        padding: 4rem 0 2.5rem;
    }

    .contact-hero-title {
        font-size: 1.85rem;
    }

    .contact-hero-desc {
        font-size: 1rem;
    }
}

/* ============================================
   PACK TRADE GROUP PAGE — PREMIUM OVERHAUL
   ============================================ */

/* Pack Hero */
.pack-hero {
    position: relative;
    padding: 5rem 0 2rem;
    background: transparent;
    text-align: center;
}

.pack-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.pack-hero-title .text-gold {
    color: var(--yellow-primary);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
}

.pack-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Tighter section spacing scoped to pack page */
.pack-hero + .section-premium,
.pack-hero ~ .section-premium {
    padding: 3rem 0;
}

/* Callout box (Why Join The Pack) */
.pack-callout {
    position: relative;
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 16px;
    padding: 2.25rem;
    text-align: center;
}

.pack-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.4) 50%, transparent 100%);
    border-radius: 16px 16px 0 0;
}

.pack-callout-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--yellow-primary);
    margin-bottom: 1rem;
}

.pack-callout-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.pack-callout-text.pack-callout-text-wide {
    max-width: 900px;
}

.pack-callout-text strong {
    color: rgba(255, 255, 255, 0.75);
}

.pack-callout-wide {
    padding: 2.5rem 3rem;
}

.pack-callout-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.pack-callout-features-centered {
    justify-content: center;
    margin-top: 1.5rem;
}

.pack-callout-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}

.pack-callout-feature i {
    color: var(--yellow-primary);
    font-size: 0.9rem;
}

/* Community tagline */
.pack-community-tagline {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--yellow-primary);
    max-width: 700px;
    margin: 0 auto 0.5rem;
    line-height: 1.6;
}

/* ---- Schedule Timeline ---- */
.pack-schedule-list {
    position: relative;
    padding-left: 0;
}

/* Vertical gold line connecting all dots */
.pack-schedule-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 80px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.2) 10%, rgba(255, 215, 0, 0.2) 90%, transparent);
}

.pack-schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1rem 0;
    position: relative;
}

.pack-schedule-item + .pack-schedule-item {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.pack-schedule-time {
    min-width: 70px;
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--yellow-primary);
    text-align: right;
    padding-top: 0.15rem;
    flex-shrink: 0;
}

.pack-schedule-dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.5);
    border: 2px solid var(--yellow-primary);
    flex-shrink: 0;
    margin-top: 0.35rem;
    z-index: 1;
    transition: box-shadow 0.3s ease;
}

.pack-schedule-item:hover .pack-schedule-dot {
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.pack-schedule-featured .pack-schedule-dot {
    width: 14px;
    height: 14px;
    background: var(--yellow-primary);
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.6);
    margin-top: 0.25rem;
}

.pack-schedule-body {
    flex: 1;
    min-width: 0;
}

.pack-schedule-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.pack-schedule-title i {
    color: var(--yellow-primary);
    font-size: 0.8rem;
}

.pack-schedule-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.35rem;
    line-height: 1.6;
}

.pack-schedule-host {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 215, 0, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 100px;
    padding: 0.25rem 0.85rem;
    background: rgba(255, 215, 0, 0.04);
}

.pack-schedule-host i {
    color: var(--yellow-primary);
    opacity: 0.7;
}

.pack-schedule-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: var(--yellow-primary);
    border-radius: 100px;
    padding: 0.15rem 0.6rem;
}

/* Pack schedule featured row highlight */
.pack-schedule-featured {
    background: rgba(255, 215, 0, 0.03);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 0.25rem -1.25rem;
}

/* Pack Stats Bar — single unified box */
.pack-stats-bar {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2.5rem 2rem;
}

.pack-stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.pack-stat-item {
    flex: 1;
    position: relative;
}

.pack-stat-item + .pack-stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.pack-stat-icon {
    font-size: 1.5rem;
    color: var(--yellow-primary);
    margin-bottom: 0.75rem;
    display: block;
}

.pack-stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--yellow-primary);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    margin-bottom: 0.25rem;
}

.pack-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

/* Feature cards — plain icon, no box */
.pack-feature-icon {
    font-size: 1.75rem;
    color: var(--yellow-primary);
    margin-bottom: 1.25rem;
    display: block;
}

/* Hide the ecosystem-card-icon box when inside pack-feature-card */
.pack-feature-card .ecosystem-card-icon {
    display: none;
}

/* Pack page responsive */
@media (max-width: 991px) {
    .pack-hero {
        padding: 5rem 0 3rem;
        text-align: center;
    }

    .pack-hero-desc {
        margin: 0 auto;
    }

    .pack-schedule-list::before {
        left: 65px;
    }
}

@media (max-width: 575px) {
    .pack-hero {
        padding: 4rem 0 2.5rem;
    }

    .pack-hero-title {
        font-size: 1.85rem;
    }

    .pack-hero-desc {
        font-size: 1rem;
    }

    /* Stack schedule vertically on small screens */
    .pack-schedule-list::before {
        display: none;
    }

    .pack-schedule-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pack-schedule-time {
        text-align: left;
        min-width: auto;
    }

    .pack-schedule-dot {
        display: none;
    }

    .pack-schedule-featured {
        margin: 0.25rem 0;
    }

    .pack-callout-features {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .pack-callout-wide {
        padding: 2rem 1.5rem;
    }

    .pack-stats-grid {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .pack-stat-item {
        flex: 0 0 45%;
    }

    .pack-stat-item + .pack-stat-item::before {
        display: none;
    }

    .pack-stat-number {
        font-size: 1.75rem;
    }
}


/* =============================================
   LOGIN PAGE — YELLOW JACKET PREMIUM
   ============================================= */

.login-hero {
    position: relative;
    padding: 5rem 0 2rem;
    background: transparent;
    text-align: center;
}

.login-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.login-hero-title .text-gold {
    color: var(--yellow-primary);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
}

.login-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Tighter section spacing scoped to login page */
.login-hero + .section-premium,
.login-hero ~ .section-premium {
    padding: 3rem 0;
}

/* Login form card — override product-card for centered form layout */
.login-form-card {
    max-width: 520px;
    margin: 0 auto;
}

.login-form-card .section-premium-label {
    justify-content: center;
}

.login-form-card .section-premium-heading {
    text-align: center;
}

/* SSO / OAuth button — prominent gold CTA */
.login-sso-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--gradient-yellow);
    border: none;
    border-radius: 12px;
    color: var(--bg-black);
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-yellow-md);
    animation: subtlePulseGlow 3s ease-in-out infinite;
}

.login-sso-btn:hover {
    background: var(--gradient-yellow-hover);
    transform: scale(1.02);
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.6);
    color: var(--bg-black);
    animation: none;
}

.login-sso-btn:active {
    transform: scale(0.98);
}

.login-sso-btn i {
    font-size: 1.5rem;
}

/* SSO benefits list */
.login-sso-benefits {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 215, 0, 0.12);
}

.login-sso-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-sso-benefits li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-sso-benefits li i {
    color: var(--yellow-primary);
    font-size: 0.85rem;
    width: 1rem;
    text-align: center;
}

/* Admin login toggle */
.login-admin-toggle {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.login-admin-link {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.login-admin-link:hover {
    color: rgba(255, 255, 255, 0.65);
}

.login-admin-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.login-admin-link.expanded i {
    transform: rotate(180deg);
}

/* Admin login collapse section */
.login-admin-section {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

.login-admin-section.expanded {
    max-height: 500px;
    opacity: 1;
    margin-top: 1.5rem;
}

.login-admin-container {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.login-admin-header {
    text-align: center;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Login form inputs (scoped to login card) */
.login-form-card .form-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.login-form-card .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.login-form-card .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--yellow-primary);
    color: var(--text-primary);
    box-shadow: var(--glow-yellow-sm);
    outline: none;
}

.login-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.login-form-card .form-check-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.login-form-card .form-check-input:checked {
    background-color: var(--yellow-primary);
    border-color: var(--yellow-primary);
}

/* Admin form submit button — subtle outline style */
.login-admin-submit {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: var(--yellow-primary);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-admin-submit:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: var(--yellow-primary);
    box-shadow: var(--glow-yellow-sm);
}

/* Additional links below admin form */
.login-extra-links {
    margin-top: 1rem;
    text-align: center;
}

.login-extra-links a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.login-extra-links a:hover {
    color: var(--yellow-primary);
    text-shadow: var(--glow-yellow-sm);
}

/* Login responsive */
@media (max-width: 767px) {
    .login-hero {
        padding: 4rem 0 1.5rem;
    }

    .login-hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 575px) {
    .login-hero {
        padding: 4rem 0 2.5rem;
    }

    .login-hero-title {
        font-size: 1.85rem;
    }

    .login-hero-desc {
        font-size: 1rem;
    }

    .login-form-card {
        margin: 0 0.5rem;
    }

    .login-sso-btn {
        font-size: 1.05rem;
        padding: 1rem 1.25rem;
    }
}

/* ============================================
   BLOG PAGE — PREMIUM OVERHAUL
   ============================================ */

/* Blog Hero */
.blog-hero {
    position: relative;
    padding: 5rem 0 2rem;
    background: transparent;
    text-align: center;
}

.blog-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.blog-hero-title .text-gold {
    color: var(--yellow-primary);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
}

.blog-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Tighter section spacing scoped to blog page */
.blog-hero + .section-premium,
.blog-hero ~ .section-premium {
    padding: 3rem 0;
}

/* Blog Sidebar Panel */
.blog-sidebar-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 1.5rem;
}

.blog-sidebar-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--yellow-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.12);
}

/* Blog Sidebar Search */
.blog-search-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    color: var(--text-primary);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.blog-search-input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--yellow-primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    outline: none;
    color: var(--text-primary);
}

.blog-search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.blog-search-btn {
    background: var(--yellow-primary);
    color: var(--bg-black);
    border: 1px solid var(--yellow-primary);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-search-btn:hover {
    background: var(--yellow-bright);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

/* Blog Sidebar Category List */
.blog-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-link {
    display: block;
    padding: 0.55rem 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.blog-category-link:hover {
    background: rgba(255, 215, 0, 0.06);
    color: var(--yellow-primary);
}

.blog-category-link.active {
    background: rgba(255, 215, 0, 0.12);
    color: var(--yellow-primary);
    font-weight: 600;
}

/* Blog Featured Sidebar Links */
.blog-featured-link {
    display: block;
    padding: 0.65rem 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.06);
    transition: all 0.3s ease;
}

.blog-featured-link:last-child {
    border-bottom: none;
}

.blog-featured-link:hover .blog-featured-link-title {
    color: var(--yellow-primary);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.15);
}

.blog-featured-link-title {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.blog-featured-link-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Blog Post Card */
/* #220: bumped background opacity from 0.02 (nearly transparent) so body
   text stays readable when the page background image rotates. Kept the
   backdrop-blur for the glass-pane look. */
.blog-post-card {
    height: 100%;
    position: relative;
    background: rgba(15, 15, 20, 0.78);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 1.75rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--yellow-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-post-card:hover {
    border-color: rgba(255, 215, 0, 0.22);
    background: rgba(20, 20, 28, 0.85);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.blog-post-card:hover::before {
    opacity: 1;
}

.blog-post-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 215, 0, 0.08);
}

.blog-post-card-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--yellow-primary);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    margin-bottom: 0.85rem;
}

.blog-post-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 0.65rem;
}

.blog-post-card-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.85rem;
}

.blog-post-card-meta i {
    color: rgba(255, 215, 0, 0.4);
    margin-right: 0.3rem;
}

.blog-post-card-excerpt {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-post-card-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.blog-post-card-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.08);
    margin-top: auto;
}

.blog-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--yellow-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--yellow-bright);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    padding: 2rem 0;
    list-style: none;
    margin: 0;
}

.blog-pagination .page-item .page-link {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.12);
    color: rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.blog-pagination .page-item .page-link:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.25);
    color: var(--yellow-primary);
}

.blog-pagination .page-item.active .page-link {
    background: var(--yellow-primary);
    border-color: var(--yellow-primary);
    color: var(--bg-black);
    font-weight: 700;
}

.blog-pagination .page-item.disabled .page-link {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

/* Blog Detail — Hero Meta */
.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.blog-detail-meta-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.blog-detail-meta-item i {
    color: rgba(255, 215, 0, 0.45);
    margin-right: 0.4rem;
}

.blog-detail-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-detail-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--yellow-primary);
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.18);
    padding: 0.25rem 0.7rem;
    border-radius: 6px;
}

/* Blog Detail — Featured Image */
.blog-detail-featured-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    margin-bottom: 2.5rem;
}

/* Blog Detail — Share Section */
.blog-share-bar {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    margin-bottom: 2rem;
}

.blog-share-title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--yellow-primary);
    margin-bottom: 0.3rem;
}

.blog-share-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

/* Blog Detail — Related Posts */
.blog-related-card {
    height: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-related-card:hover {
    border-color: rgba(255, 215, 0, 0.22);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.blog-related-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.blog-related-card-body {
    padding: 1.25rem;
}

.blog-related-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.blog-related-card-excerpt {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
    margin-bottom: 0.85rem;
}

/* Newsletter CTA Section */
.blog-newsletter-section {
    background: transparent;
    padding: 3rem 0;
}

.blog-newsletter-box {
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.blog-newsletter-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.blog-newsletter-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.blog-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.blog-newsletter-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 10px;
    color: var(--text-primary);
    padding: 0.75rem 1.15rem;
    font-size: 0.95rem;
    flex: 1;
    min-width: 180px;
    transition: all 0.3s ease;
}

.blog-newsletter-input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--yellow-primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    outline: none;
    color: var(--text-primary);
}

.blog-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Social Share Buttons (premium) */
.social-share-btn {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 215, 0, 0.12);
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.social-share-btn:hover {
    background: rgba(255, 215, 0, 0.08);
    color: var(--yellow-primary);
    border-color: rgba(255, 215, 0, 0.25);
}

.social-share-btn.active {
    background: var(--yellow-primary);
    color: var(--bg-black);
    border-color: var(--yellow-primary);
}

/* Blog Empty State */
.blog-empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.blog-empty-state i {
    font-size: 3rem;
    color: rgba(255, 215, 0, 0.2);
    margin-bottom: 1.5rem;
    display: block;
}

.blog-empty-state h4 {
    font-family: 'Sora', sans-serif;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.blog-empty-state p {
    color: rgba(255, 255, 255, 0.6);
}

.blog-empty-state a {
    color: var(--yellow-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-empty-state a:hover {
    color: var(--yellow-bright);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Blog page responsive */
@media (max-width: 991px) {
    .blog-hero {
        padding: 5rem 0 3rem;
    }

    .blog-hero-title {
        font-size: 2.25rem;
    }

    .blog-newsletter-box {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 575px) {
    .blog-hero {
        padding: 4rem 0 2.5rem;
    }

    .blog-hero-title {
        font-size: 1.85rem;
    }

    .blog-hero-desc {
        font-size: 1rem;
    }

    .blog-post-card {
        padding: 1.5rem;
    }

    .blog-newsletter-title {
        font-size: 1.35rem;
    }

    .blog-newsletter-box {
        padding: 2rem 1.25rem;
    }
}
