/* ============================================
   REORGANIZED CSS STRUCTURE
   ============================================
   
   SECTIONS:
   1. BASE STYLES - Reset, variables, layout foundation
   2. COMPONENT STYLES - Navigation, buttons, modals, etc
   3. PAGE SECTIONS - Hero, About, Daily Updates, etc
   4. RESPONSIVE STYLES - All @media queries organized by breakpoint
   5. UTILITIES - Animations, print styles, etc
   
   ============================================ */

/* ============================================
   SECTION 1: BASE STYLES
   ============================================ */

/* === RESET & NORMALIZATION === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    scroll-padding-top: 0;
    /* Prevent zoom-related layout shifts */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* CSS scroll-snap enabled for mobile devices */
@media (max-width: 768px) {
    html {
        scroll-snap-type: y mandatory;
    }
    
    section {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
}

/* CSS scroll-snap enabled for desktop/laptop devices */
@media (min-width: 769px) {
    html {
        scroll-snap-type: y proximity;
    }
    
    section {
        scroll-snap-align: start;
        scroll-snap-stop: normal;
    }
}

/* Soft-close scroll effect - elegant deceleration like cabinet door */
/* Note: scroll-behavior already defined in html rule above */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #f8fafc;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
}

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

/* Container styles for full-height sections */
.features .container,
.pricing .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: scale(var(--container-scale));
    transform-origin: center center;
}

/* Performance container - separate rule to allow flex-start positioning */
.performance .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Changed to flex-start to respect section padding */
    transform: scale(var(--container-scale));
    transform-origin: center center;
}

/* Home Page Performance Container - Override for home page */
body:not(.about-page) .performance .container {
    justify-content: center; /* Restore center alignment for home page */
}

/* About sections container positioning */
.about-section-2 .container,
.about-section-3 .container,
.about-section-4 .container,
.about-section-5 .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: scale(var(--container-scale));
    transform-origin: center center;
    /* Removed padding-top: 120px and padding-bottom: 80px to match homepage */
}

/* Override container max-width for both sections to use intermediate width */
.about-section-2 .container,
.about-section-3 .container,
.about-section-4 .container,
.about-section-5 .container {
    max-width: var(--container-max) !important; /* Average of 1200px (section 2) and 1500px (section 3) */
}

/* Daily sections container positioning */
.daily-section-1 .container,
.daily-section-2 .container,
.daily-section-3 .container,
.daily-section-4 .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: scale(var(--container-scale));
    transform-origin: center center;
    padding-top: 120px;
    padding-bottom: 80px;
}

/* ============================================
   SECTION 2: COMPONENT STYLES
   ============================================ */

/* === NAVIGATION === */
.navbar {
    background: 
        linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
        url('images/morning-block21.PNG');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    backdrop-filter: blur(var(--blur-radius));
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    pointer-events: none; /* Allow scroll events to pass through */
    filter: brightness(1.2);
}

.navbar * {
    pointer-events: auto; /* Re-enable pointer events for navbar content */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    margin-left: -8px; /* Shift logo elements slightly left for better balance */
    margin-right: 4px; /* Add space between orb and burger menu */
}

.logo-icon {
    font-size: 2rem;
    color: #f7931e;
    font-weight: 800;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-link {
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-logo h2 {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    margin: 0;
}

.morning-call-symbol {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 0; /* Removed margin to make spacing equidistant */
    cursor: pointer;
}

.symbol-icon {
    height: 2.8rem;
    width: 2.8rem; /* Square dimensions for perfect circle - made bigger */
    object-fit: cover; /* Changed from contain to cover to fill the circle completely */
    border-radius: 50%; /* Makes it perfectly circular */
    background: rgba(15, 23, 42, 0.95); /* Same color as navigation bar */
    overflow: hidden; /* Clips any content outside the circle */
    border: none; /* Removes any border */
    outline: none; /* Removes any outline */
    box-shadow: none; /* Removes any shadow */
    padding: 0; /* Removes any padding */
    margin: 0; /* Removes any margin */
    display: block; /* Ensures proper rendering */
    /* Removed filter to show the actual image colors */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-link {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1;
}

.nav-link:hover,
.nav-link.active {
    color: #fbbf24;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fbbf24;
    border-radius: 1px;
}

.nav-link.login-btn {
    background: linear-gradient(135deg, #f7931e 0%, #fbbf24 100%) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
}

.nav-link.login-btn:hover {
    background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(247, 147, 30, 0.3) !important;
    color: white !important;
}

/* Logout button hover (when logged in) */
.nav-link.login-btn.logout-state:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
    color: white !important;
}

/* === HERO SECTION === */
.hero {
    background: url('images/morning-city-graffiti-genesis.png?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important; /* Parallax effect */
    color: white;
    padding: 0;
    text-align: center;
    position: relative;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20vh;
    overflow: hidden; /* Prevent horizontal scroll */
}

/* Hero Section 1 - mobile and desktop shared background */
.hero-section-1 {
    background: url('images/morning-city-graffiti-genesis.png?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* Hero Section 2 - mobile and desktop shared background */
.hero-section-2 {
    background: url('images/whistler-landscape.png?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    color: white;
    padding: 0;
    text-align: center;
    position: relative;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20vh;
    overflow: hidden;
}

/* Desktop Hero Section 1 - Title and Subtitle */
.desktop-hero-1 {
    background: url('images/morning-city-graffiti-genesis.png?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    color: white;
    padding: 0;
    text-align: center;
    position: relative;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20vh;
    overflow: hidden;
}

/* Desktop Hero Section 2 - Uses whistler-landscape background */
.desktop-hero-2 {
    background: url('images/whistler-landscape.png?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    color: white;
    padding: 0;
    text-align: center;
    position: relative;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20vh;
    overflow: hidden;
}

/* Hero Section 2 - Center the flow chart vertically */
.desktop-hero-2 {
    justify-content: center;
    padding-top: 0;
}

/* Desktop Performance Section 1 - Uses flims-laax background */
.desktop-performance-1 {
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/flims-laax.PNG?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Desktop Performance Section 2 - Uses heli-landscape background */
.desktop-performance-2 {
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/heli-landscape.PNG?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Performance Section 2 - Already centered */


.hero-container {
    padding: 40px 20px 40px;
    background: transparent;
    width: 100%;
    transform: scale(var(--container-scale));
    transform-origin: center center;
}

/* Desktop Hero Sections - Display controlled by media queries below */
.desktop-hero-1,
.desktop-hero-2 {
    display: none; /* Hidden by default, shown on desktop */
}

.desktop-hero-1 .hero-container,
.desktop-hero-2 .hero-container {
    position: relative;
    min-height: 400px;
}

/* Desktop hero content - always visible */
.desktop-hero-1 .hero-content,
.desktop-hero-2 .hero-content {
    opacity: 1;
    transform: none;
    position: relative;
}

/* Flow Chart Styles */
.flow-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.flow-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.flow-row-1 {
    /* Single box at top */
}

.flow-row-2 {
    /* Three boxes in middle */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 900px; /* Same as top/bottom boxes */
}

.flow-row-3 {
    /* Single box at bottom */
}

.flow-box {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.5) 0%, rgba(30, 41, 59, 0.4) 100%);
    padding: 25px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flow-box:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.flow-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flow-box h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flow-box p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(203, 213, 225, 0.9);
    margin: 0;
    font-weight: 500;
}

/* Specific box styling */
.foi-foundation {
    width: 900px; /* Total width for top box */
    border: 2px solid rgba(247, 147, 30, 0.3);
}

.foi-index {
    width: 280px;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.foi-sentiment {
    width: 280px;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.standalone-systems {
    width: 280px;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.foi-master {
    width: 900px; /* Total width for bottom box */
    border: 2px solid rgba(239, 68, 68, 0.3);
}

/* Flow chart container */
.flow-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

/* Desktop hero content visible by default */
.desktop-hero-1 .hero-title-content,
.desktop-hero-2 .hero-flow-content {
    opacity: 1;
    transform: none;
    position: relative;
}

/* Flow chart boxes always visible on desktop */
.desktop-hero-2 .flow-box {
    opacity: 1;
    transform: none;
    padding: 15px 30px; /* Reduced vertical padding for desktop */
}

/* Mobile flow chart animations */
.mobile-flow-chart .flow-box {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.mobile-flow-chart .flow-box.animate {
    opacity: 1;
    transform: translateY(0);
}

.mobile-flow-chart .foi-foundation.animate {
    transition-delay: 0.1s;
}

.mobile-flow-chart .foi-index.animate {
    transition-delay: 0.2s;
}

.mobile-flow-chart .foi-sentiment.animate {
    transition-delay: 0.3s;
}

.mobile-flow-chart .standalone-systems.animate {
    transition-delay: 0.4s;
}

.mobile-flow-chart .foi-master.animate {
    transition-delay: 0.5s;
}

/* Show desktop hero sections on desktop, hide mobile hero sections */
@media (min-width: 769px) {
    .desktop-hero-1,
    .desktop-hero-2 {
        display: flex !important;
    }
    
    .hero-section-1,
    .hero-section-2 {
        display: none !important;
    }
}

/* Hide desktop hero on mobile, show mobile hero sections */
@media (max-width: 768px) {
    .desktop-hero-1,
    .desktop-hero-2 {
        display: none !important;
    }
    
    .hero-section-1,
    .hero-section-2 {
        display: flex !important;
    }
    
    /* Mobile flow chart adjustments - maintain 3-layer structure */
    .mobile-flow-chart {
        padding: 0 10px 15px 10px; /* No top padding to reduce gap with title */
        gap: 12px; /* Reduced gap between rows */
        max-width: 100%;
    }
    
    .mobile-flow-chart .flow-row {
        gap: 8px;
        width: 100%;
    }
    
    /* Keep 3-layer structure - don't stack middle row vertically */
    .mobile-flow-chart .flow-row-2 {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-flow-chart .flow-box {
        padding: 8px 6px; /* Reduced internal padding */
        min-height: 70px; /* Reduced height */
        border-radius: 12px;
    }
    
    /* Top and bottom boxes - full width */
    .mobile-flow-chart .foi-foundation,
    .mobile-flow-chart .foi-master {
        width: 100% !important;
        max-width: none;
    }
    
    /* Middle row boxes - equal width */
    .mobile-flow-chart .foi-index,
    .mobile-flow-chart .foi-sentiment,
    .mobile-flow-chart .standalone-systems {
        width: calc(33.333% - 6px) !important;
        max-width: none;
    }
    
    /* Reduced font sizes for mobile */
    .mobile-flow-chart .flow-box h3 {
        font-size: 1.1rem;
        margin-bottom: 6px; /* Reduced margin */
    }
    
    .mobile-flow-chart .flow-box h4 {
        font-size: 0.9rem;
        margin-bottom: 4px; /* Reduced margin */
    }
    
    .mobile-flow-chart .flow-box p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    /* Hide connecting lines on mobile */
    .mobile-flow-chart .flow-box::after {
        display: none;
    }
    
    /* Mobile performance section - compressed text layout */
    .performance-section-2 .strategy-description {
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
        font-size: 0.9rem !important;
        max-width: 100% !important;
    }
}

/* Desktop Performance Sections - Display controlled by media queries below */
.desktop-performance-1,
.desktop-performance-2 {
    display: none; /* Hidden by default, shown on desktop */
}

.desktop-performance-1 .container,
.desktop-performance-2 .container {
    position: relative;
    min-height: 400px;
}

/* Desktop performance content - always visible */
.desktop-performance-1 .performance-content,
.desktop-performance-2 .performance-content {
    opacity: 1;
    transform: none;
    position: relative;
}

.desktop-performance-1 .performance-overview-content,
.desktop-performance-2 .performance-foi-content {
    opacity: 1;
    transform: none;
    position: relative;
}

/* Performance scroll indicator */
.performance-me-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.performance-me-indicator p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Show desktop performance sections on desktop, hide mobile performance sections */
@media (min-width: 769px) {
    .desktop-performance-1,
    .desktop-performance-2 {
        display: flex !important;
    }
    
    .performance-section-1,
    .performance-section-2 {
        display: none !important;
    }
}

/* Hide desktop performance on mobile, show mobile performance sections */
@media (max-width: 768px) {
    .desktop-performance-1,
    .desktop-performance-2 {
        display: none !important;
    }
    
    .performance-section-1,
    .performance-section-2 {
        display: flex !important;
    }
    
    /* Hide scroll indicator on mobile */
    .performance-me-indicator {
        display: none !important;
    }
}

/* Desktop Pricing Section - All 4 boxes together */
.desktop-pricing { display: none; } /* Hidden by default */

/* Show desktop pricing on desktop, hide mobile pricing sections */
@media (min-width: 769px) {
    .desktop-pricing { display: flex !important; }
    .pricing-section-1, .pricing-section-2 { display: none !important; }
}

/* Hide desktop pricing on mobile, show mobile pricing sections */
@media (max-width: 768px) {
    .desktop-pricing { display: none !important; }
    .pricing-section-1 { display: flex !important; }
    .pricing-section-2 { display: none !important; } /* Hide pricing-section-2 since all boxes are in section 1 */
}

.hero-bullets-container {
    padding: 40px 20px 40px;
    background: transparent;
    width: 100%;
    transform: scale(var(--container-scale));
    transform-origin: center center;
}

/* Graffiti Overlay */
.graffiti-overlay {
    position: absolute;
    bottom: 3%; /* ADJUST THIS VALUE - Percentage from bottom (12% = lower down) */
    right: 8%; /* ADJUST THIS VALUE - Percentage from right (8% = more to the right) */
    z-index: 10;
    pointer-events: none; /* Allow clicks to pass through */
}

.graffiti-image {
    width: 30vw; /* ADJUST THIS VALUE - Size as percentage of viewport width (20vw = 20% of screen width) */
    max-width: 400px; /* Fallback max size */
    min-width: 150px; /* Minimum size to prevent it from getting too small */
    height: auto;
    opacity: 0.9; /* ADJUST THIS VALUE - Transparency (0-1) */
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)); /* Subtle shadow */
    transform: rotate(-2deg); /* ADJUST THIS VALUE - Rotation angle */
}

/* Removed decorative background elements to clean up hero image */

/* About Section 2 - Morning Train Background */
.about-section-2 {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/morning-train.PNG?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* About Section 3 - Morning Roadmarks Background */
.about-section-3 {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/morning-roadmarks.PNG?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* About Section 4 - Morning Salt Background */
.about-section-4 {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/morning-salt.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-section-4 .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(var(--container-scale));
    transform-origin: center center;
}

.about-section-4 .legal-disclaimer-box {
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile-only sections - hidden on desktop */
.mobile-only {
    display: none;
}

/* Hide mobile-only sections on desktop */
@media (min-width: 769px) {
    .about-section-5,
    .about-section-6,
    .about-section-7,
    .about-section-8,
    .about-section-9 {
        display: none !important;
    }
}

/* About Section 5 - Approach (mobile only) - Morning Aridmountains Background */
.about-section-5 {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/morning-aridmountains.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* About Section 6 - Mission Statement & Aim (mobile only) - Morning Roadmarks Background */
.about-section-6 {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/morning-roadmarks.PNG') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* About Section 7 - Methodology (mobile only) - Morning Salt Background */
.about-section-7 {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/morning-salt.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* About Section 8 - How to use this site (mobile only) - Morning Saltflats Background */
.about-section-8 {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/morning-saltflats.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* About Section 9 - What this site is not (mobile only) - Morning Saltpuddles Background */
.about-section-9 {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/morning-saltpuddles.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-section-5 .container,
.about-section-6 .container,
.about-section-7 .container,
.about-section-8 .container,
.about-section-9 .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(var(--container-scale));
    transform-origin: center center;
}

/* Legals Section 1 - Morning Holkham Background */
.legals-section-1 {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/morning-holkham.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.legals-section-1 .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(var(--container-scale));
    transform-origin: center center;
}

.legals-section-1 .legal-disclaimer-box {
    max-width: 1200px;
    margin: 0 auto;
}

/* Legals Section 2 - Morning Coastal Background */
.legals-section-2 {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/morning-coastline.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.legals-section-2 .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(var(--container-scale));
    transform-origin: center center;
}

.legals-section-2 .legal-disclaimer-box {
    max-width: 1200px;
    margin: 0 auto;
}

/* Legals Section 3 - Privacy Policy (same background as section 1) */
.legals-section-3 {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/morning-holkham.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.legals-section-3 .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(var(--container-scale));
    transform-origin: center center;
}

.legals-section-3 .legal-disclaimer-box {
    max-width: 1200px;
    margin: 0 auto;
}

/* About Content Grid - Base rule removed to prevent conflicts */
.about-content-grid {
    display: grid;
    gap: 30px; /* Match homepage performance grid gap */
    max-width: 1400px;
    margin: 0 auto;
}

/* About Section 2 - 4 boxes in 2x2 grid */
.about-section-2 .about-content-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: var(--container-max); /* Match container width */
    gap: 50px 200px; /* Reduced horizontal gap from 270px to 200px - boxes get wider */
    row-gap: 50px; /* Vertical gap */
}

/* About Section 3 - 2 boxes side by side, stack on mobile */
.about-section-3 .about-content-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: var(--container-max); /* Match container width */
    gap: 0px 200px; /* Reduced horizontal gap from 270px to 200px - boxes get wider */
    row-gap: 50px; /* Vertical gap */
}

/* About Section 4 - 2 boxes side by side, stack on mobile */
.about-section-4 .about-content-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: var(--container-max); /* Match container width */
    gap: 0px 200px; /* Reduced horizontal gap from 270px to 200px - boxes get wider */
    row-gap: 50px; /* Vertical gap */
}

/* Legal Disclaimer Box - Extended to match full width of top row (boxes + gap) */
.legal-disclaimer-box {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(51, 65, 85, 0.85) 100%);
    padding: 15px 30px;
    border-radius: var(--radius-lg);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(var(--blur-radius));
    z-index: 2;
    width: 100%;
    max-width: var(--container-max); /* Match new grid width exactly */
    margin: 50px auto 0;
}

.legal-disclaimer-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.legal-disclaimer-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.legal-disclaimer-box p {
    font-size: 1.1rem;
    color: rgba(203, 213, 225, 0.95);
    margin-bottom: 10px;
    line-height: 1.4;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.legal-disclaimer-box p:last-child {
    margin-bottom: 0;
}

.legal-disclaimer-box ul,
.legal-disclaimer-box ol {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    padding-left: 1.5rem;
}

.legal-disclaimer-box ul li,
.legal-disclaimer-box ol li {
    margin-bottom: 0 !important;
    line-height: 1.2;
}

/* Legals sections: all links same blue for readability */
.legals-section-1 a,
.legals-section-2 a,
.legals-section-3 a {
    color: #60a5fa !important;
    text-decoration: underline;
}
.legals-section-1 a:hover,
.legals-section-2 a:hover,
.legals-section-3 a:hover {
    color: #93c5fd !important;
}

/* About Content Boxes */
.about-content-box {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(51, 65, 85, 0.85) 100%);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(var(--blur-radius));
    z-index: 2;
    width: 100%;
}

.about-content-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.about-content-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.about-content-box p {
    font-size: 1.1rem;
    color: rgba(203, 213, 225, 0.95);
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-content-box p:last-child {
    margin-bottom: 0;
}

/* Daily Section 1 - Wharf Background (Premium Package) */
.daily-section-1 {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/daily_updates_wharf.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    height: 100vh !important; /* Consistent with other sections */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Daily Section 2 - Skyline Background */
.daily-section-2 {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/daily_updates-skyline.png?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    height: 100vh !important; /* Consistent with other sections */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Daily Section 3 - Tokyo Background (Advanced Package) */
.daily-section-3 {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/daily_updates-tokyo.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    height: 100vh !important; /* Consistent with other sections */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Daily Section 4 - Cityscape Background (Essential Package) */
.daily-section-4 {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/daily_updates-cityscape.png?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    height: 100vh !important; /* Consistent with other sections */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Daily Package Content */
.daily-package-content {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Premium Package specific content - calculated width for 6 boxes */
.daily-section-1 .daily-package-content {
    max-width: calc(6 * var(--daily-box-width) + 5 * var(--daily-box-gap)) !important;
}

/* Full Package specific content - calculated width for 5 boxes */
.daily-section-2 .daily-package-content {
    max-width: calc(5 * var(--daily-box-width) + 4 * var(--daily-box-gap)) !important;
}

/* Advanced Package specific content - calculated width for 4 boxes */
.daily-section-3 .daily-package-content {
    max-width: calc(4 * var(--daily-box-width) + 3 * var(--daily-box-gap)) !important;
}

/* Essential Package specific content - calculated width for 3 boxes */
.daily-section-4 .daily-package-content {
    max-width: calc(3 * var(--daily-box-width) + 2 * var(--daily-box-gap)) !important;
}

/* Attachment placeholder styling */
.attachment-placeholder {
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

/* Daily Package Header */
.daily-package-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Daily Package Title - White with moderate glowing effect for all sections */
.daily-package-title {
    font-size: 4.2rem !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative !important;
    z-index: 2 !important;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.7) !important;
    filter: brightness(1.15) contrast(1.08) !important;
}

/* Desktop background restoration - ensure full images are visible */
@media (min-width: 1001px) {
    /* Daily sections - restore full image visibility */
    .daily-section-1,
    .daily-section-2,
    .daily-section-3,
    .daily-section-4 {
        background-size: 100% 100% !important; /* Restore full image visibility for desktop */
        background-position: center center !important;
    }

    /* Other sections - restore original background sizing for desktop */
    .hero {
        background-size: 100% 100% !important;
    }

    .features {
        background-size: 100% 100% !important;
    }

    .pricing {
        background-size: 100% 100% !important;
    }

    .performance {
        background-size: 100% 100% !important;
    }
    
    /* Override for desktop performance sections to use cover */
    .desktop-performance-1,
    .desktop-performance-2 {
        background-size: cover !important;
    }

    /* About sections - already use cover properly, no change needed */
}


.daily-package-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
    filter: none !important;
}

/* Daily Thumbnails Grid */
.daily-thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1867px;
    margin: 0 auto;
    align-items: stretch;
}

.daily-thumbnails-grid.lite-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 960px;
    justify-content: center;
    align-items: stretch;
}

/* Premium Package specific grid - wider container */
.daily-section-1 .daily-thumbnails-grid {
    max-width: 2000px !important;
    margin: 0 auto;
}

/* Premium Package grid - 6 boxes with unified dimensions */
.premium-package-grid {
    display: grid !important;
    grid-template-columns: repeat(6, var(--daily-box-width)) !important;
    gap: var(--daily-box-gap) !important;
    max-width: calc(6 * var(--daily-box-width) + 5 * var(--daily-box-gap)) !important;
    margin: 0 auto !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: stretch !important;
}

/* Full Package specific grid - wider container */
.daily-section-2 .daily-thumbnails-grid {
    max-width: 1800px !important;
    margin: 0 auto;
}

/* Full Package grid - 5 boxes with unified dimensions */
.full-package-grid {
    display: grid !important;
    grid-template-columns: repeat(5, var(--daily-box-width)) !important;
    gap: var(--daily-box-gap) !important;
    max-width: calc(5 * var(--daily-box-width) + 4 * var(--daily-box-gap)) !important;
    margin: 0 auto !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: stretch !important;
}

/* Advanced Package grid - 5 boxes with unified dimensions */
.daily-section-1 .daily-thumbnails-grid.advanced-package-grid {
    display: grid !important;
    grid-template-columns: repeat(5, var(--daily-box-width)) !important;
    gap: var(--daily-box-gap) !important;
    max-width: calc(5 * var(--daily-box-width) + 4 * var(--daily-box-gap)) !important;
    margin: 0 auto !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: stretch !important;
}

/* Essential Package grid - 3 boxes with unified dimensions */
.daily-section-2 .daily-thumbnails-grid.lite-grid {
    display: grid !important;
    grid-template-columns: repeat(3, var(--daily-box-width)) !important;
    gap: var(--daily-box-gap) !important;
    max-width: calc(3 * var(--daily-box-width) + 2 * var(--daily-box-gap)) !important;
    margin: 0 auto !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: stretch !important;
}

/* Make Advanced Package section same width as other packages */
.daily-section-1 {
    max-width: none !important;
    width: 100% !important;
}

.daily-section-1 .container {
    max-width: none !important;
    width: 100% !important;
}

/* Make Essential Package section same width as other packages */
.daily-section-2 {
    max-width: none !important;
    width: 100% !important;
}

.daily-section-2 .container {
    max-width: none !important;
    width: 100% !important;
}

/* === CSS VARIABLES === */
:root {
    --daily-box-width: 308px;
    --daily-box-height: 320px;
    --daily-box-padding: 30px;
    
    /* Centralized Width System */
    /* Wider dimensions (based on section 2 feature cards) */
    --width-wider-desktop: 300px;    /* Desktop wider elements */
    --width-wider-mobile: 300px;     /* Mobile wider elements */
    --width-wider-ultra-small: 280px; /* Ultra-small mobile wider elements */
    
    /* Narrower dimensions (based on section 3 performance highlights) */
    --width-narrower-desktop: 280px;  /* Desktop narrower elements */
    --width-narrower-mobile: 280px;   /* Mobile narrower elements */
    --width-narrower-ultra-small: 250px; /* Ultra-small mobile narrower elements */
    --daily-box-gap: 12px;
    --container-scale: 0.75; /* Common scale factor for containers */
    
    /* Centralized Section Spacing System */
    --section-padding-mobile: 20px 0 20px 0; /* Mobile non-hero sections */
    --performance-padding-mobile: 90px 0 20px 0; /* Performance section - nav bar height (70px) + gap (20px) */
    --section-padding-ultra-small: 180px 0 190px 0; /* Ultra-small mobile non-hero sections */
    --section-padding-hero-mobile: 100px 0 30px 0; /* Mobile hero sections */
    --container-max: 1350px;

    /* Common radii and effects */
    --radius-lg: 20px;
    --blur-radius: 10px;

    /* Gradient tokens */
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 25%, #f7931e 50%, #ea580c 75%, #dc2626 100%);
    --gradient-gold-mobile: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #dc2626 100%);
    --gradient-blue: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #1e3a8a 100%);
    --gradient-blue-light: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    --gradient-green: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #15803d 100%);
    --gradient-orange-red: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #b91c1c 100%);
    --gradient-cyan: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #006699 100%);
}

/* === CENTRALIZED WIDTH UTILITY CLASSES === */
.width-wider {
    max-width: var(--width-wider-desktop);
    margin: 0 auto;
}

.width-narrower {
    max-width: var(--width-narrower-desktop);
    margin: 0 auto;
}

/* Responsive width overrides */
@media (max-width: 768px) {
    .width-wider {
        max-width: var(--width-wider-mobile);
    }
    
    .width-narrower {
        max-width: var(--width-narrower-mobile);
    }
}

@media (max-width: 480px) {
    .width-wider {
        max-width: var(--width-wider-ultra-small);
    }
    
    .width-narrower {
        max-width: var(--width-narrower-ultra-small);
    }
}

/* Daily Thumbnail Styles - Desktop */
.daily-thumbnail-large,
.daily-thumbnail-small {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(51, 65, 85, 0.85) 100%);
    padding: var(--daily-box-padding);
    border-radius: var(--radius-lg);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(var(--blur-radius));
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: var(--daily-box-width);
    height: var(--daily-box-height);
    margin: 0 auto;
}

.daily-thumbnail-large:hover,
.daily-thumbnail-small:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Daily Thumbnail Titles - Desktop */
.daily-thumbnail-large h3,
.daily-thumbnail-small h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Thumbnail Container */
.thumbnail-container {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

/* === DEVICE STYLES (1000px and below) === */
@media (max-width: 1000px) {
    /* Daily Thumbnail Boxes - Device (smaller for 2-column layout) */
    .daily-thumbnail-small {
        width: 140px !important; /* Much smaller for 2-column layout */
        max-width: 140px !important; /* Fixed smaller width */
        height: auto !important;
        min-height: 80px !important; /* Even smaller for mobile 2-column */
        margin: 0 auto !important;
        padding: 8px !important; /* Much smaller padding */
    }
    
    /* Daily Thumbnail Titles - Device (increased size for better readability) */
    .daily-thumbnail-small h3 {
        font-size: 1.1rem !important; /* Increased by 1 increment for mobile */
        margin-top: -2px !important; /* Minimal top margin */
        margin-bottom: 4px !important; /* Smaller gap */
        line-height: 1.2 !important; /* Tighter line height */
    }
    
    /* Daily Package Header - Device (reduced spacing for compact layout) */
    .daily-package-header {
        margin-bottom: 20px !important; /* Reduced from 60px for mobile */
    }

    /* Daily section containers - remove extra padding for proper fit */
    .daily-section-1 .container,
    .daily-section-2 .container,
    .daily-section-3 .container,
    .daily-section-4 .container {
        padding-top: 0 !important; /* Remove extra container padding */
        padding-bottom: 0 !important; /* Remove extra container padding */
    }

    /* Daily Package Title - Device (increased size for better visibility) */
    .daily-section-1 .daily-package-title,
    .daily-section-2 .daily-package-title,
    .daily-section-3 .daily-package-title,
    .daily-section-4 .daily-package-title {
        margin-bottom: 10px !important; /* Reduced from 20px for mobile */
        font-size: 3.5rem !important; /* Even larger for mobile prominence */
    }

    /* Daily Package Subtitles - Properly sized for mobile */
    .daily-section-1 .container .daily-package-content .daily-package-header .daily-package-subtitle,
    .daily-section-2 .container .daily-package-content .daily-package-header .daily-package-subtitle,
    .daily-section-3 .container .daily-package-content .daily-package-header .daily-package-subtitle,
    .daily-section-4 .container .daily-package-content .daily-package-header .daily-package-subtitle {
        font-size: 1.6rem !important; /* Much smaller than title for clear hierarchy */
        font-weight: 700 !important;
        line-height: 1.2 !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        text-align: center !important;
        color: #ffffff !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
    }
    
    /* Daily Section Backgrounds - Device (ultra-optimized for zero scrolling) */
    /* Premium Package (6 boxes) - eliminate any overflow */
    .daily-section-1 {
        background-size: cover !important; /* Cover for mobile optimization */
        background-position: center center !important;
        padding: 15px 0 !important; /* Ultra-minimal padding */
        min-height: 100vh !important; /* Ensure minimum viewport height */
        height: 100vh !important; /* Force exact viewport height */
        overflow: hidden !important; /* Prevent any overflow */
    }

    /* Elite Package (5 boxes) - eliminate any overflow */
    .daily-section-2 {
        background-size: cover !important; /* Cover for mobile optimization */
        background-position: center center !important;
        padding: 20px 0 !important; /* Ultra-minimal padding */
        min-height: 100vh !important; /* Ensure minimum viewport height */
        height: 100vh !important; /* Force exact viewport height */
        overflow: hidden !important; /* Prevent any overflow */
    }

    /* Advanced Package (5 boxes) - eliminate any overflow */
    .daily-section-3 {
        background-size: cover !important; /* Cover for mobile optimization */
        background-position: center center !important;
        padding: 25px 0 !important; /* Ultra-minimal padding */
        min-height: 100vh !important; /* Ensure minimum viewport height */
        height: 100vh !important; /* Force exact viewport height */
        overflow: hidden !important; /* Prevent any overflow */
    }

    /* Essential Package (3 boxes) - eliminate any overflow */
    .daily-section-4 {
        background-size: cover !important; /* Cover for mobile optimization */
        background-position: center center !important;
        padding: 30px 0 !important; /* Ultra-minimal padding */
        min-height: 100vh !important; /* Ensure minimum viewport height */
        height: 100vh !important; /* Force exact viewport height */
        overflow: hidden !important; /* Prevent any overflow */
    }

    /* Mobile Grid Layouts - All content visible on screen */
    /* Premium Package (6 boxes): 2 columns × 3 rows */
    body .daily-section-1 .daily-thumbnails-grid.premium-package-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columns */
        gap: 8px !important; /* Smaller gap for compact mobile layout */
        max-width: 100% !important; /* Full width */
        padding: 0 10px !important; /* Minimal horizontal padding */
    }

    /* Elite Package (5 boxes): 2 columns × 3 rows (one column with 2 items) */
    body .daily-section-2 .daily-thumbnails-grid.full-package-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columns */
        gap: 8px !important; /* Smaller gap for compact mobile layout */
        max-width: 100% !important; /* Full width */
        padding: 0 10px !important; /* Minimal horizontal padding */
    }

    /* Advanced Package (5 boxes): 2 columns (2×2 + 1 row) */
    body .daily-section-1 .daily-thumbnails-grid.advanced-package-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columns */
        gap: 8px !important; /* Smaller gap for compact mobile layout */
        max-width: 100% !important; /* Full width */
        padding: 0 10px !important; /* Minimal horizontal padding */
    }

    /* Essential Package (3 boxes): 1 column × 3 rows */
    body .daily-section-2 .daily-thumbnails-grid.lite-grid {
        grid-template-columns: 1fr !important; /* 1 column */
        gap: 8px !important; /* Smaller gap for compact mobile layout */
        max-width: 100% !important; /* Full width */
        padding: 0 10px !important; /* Minimal horizontal padding */
    }
    
    /* Primers Page - Device (match other pages' device responsiveness) */
    .primers-hero {
        height: auto !important;
        min-height: 100vh;
        padding: var(--section-padding-hero-mobile) !important; /* Match features section mobile padding */
    }
    
    .primers-hero-content {
        margin: 40px 10px 40px -10px !important; /* Match about/daily hero margins */
        text-align: left !important; /* Left align like other pages */
        max-width: 100% !important; /* Full width like other pages */
    }
    
    .primers-title {
        font-size: 2.5rem !important; /* Match about/daily hero title size */
        margin-bottom: 20px !important; /* Match other pages */
        white-space: normal !important; /* Allow wrapping */
        word-wrap: break-word !important; /* Match other pages */
        overflow-wrap: break-word !important; /* Match other pages */
        hyphens: auto !important; /* Match other pages */
        line-height: 1.2 !important; /* Match other pages */
        padding: 0 10px !important; /* Match other pages */
    }
    
    .primers-subtitle {
        font-size: 1.3rem !important; /* Match about/daily hero subtitle size */
        white-space: normal !important; /* Allow wrapping */
        word-wrap: break-word !important; /* Match other pages */
        overflow-wrap: break-word !important; /* Match other pages */
        hyphens: auto !important; /* Match other pages */
        line-height: 1.4 !important; /* Match other pages */
        padding: 0 10px !important; /* Match other pages */
    }
    
    /* Contact Page - Device (hide company details box) */
    .contact-details-overlay-secondary {
        display: none !important; /* Hide company details box on devices */
    }
    
    /* Contact Page - Device (move contact details box lower) */
    .contact-details-overlay {
        margin-top: 15vh !important; /* Move box slightly higher */
    }
    
    /* Homepage Hero - Device (move title and subtitle lower) */
    .hero-container {
        padding-top: 5vh !important; /* Move content higher on devices */
    }
    
    /* Daily Package Grids - Device */
    .premium-package-grid,
    .full-package-grid,
    .advanced-package-grid,
    .lite-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }
}

/* === ULTRA-SMALL DEVICE STYLES (480px and below) === */
@media (max-width: 480px) {
    /* Daily Thumbnail Boxes - Ultra-small Device (even smaller for 2-column) */
    .daily-thumbnail-small {
        width: 120px !important; /* Even smaller for ultra-small mobile */
        max-width: 120px !important; /* Fixed smaller width */
        min-height: 70px !important; /* Very small for ultra-small mobile */
        padding: 6px !important; /* Minimal padding */
    }
}

.hero-badge {
    background: rgba(247, 147, 30, 0.3);
    color: #fbbf24;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(247, 147, 30, 0.4);
    backdrop-filter: blur(var(--blur-radius));
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-container h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-container h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 40px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.analysis-approach-title {
    font-size: 4rem;
    font-weight: 700;
    margin: 0 auto 20px;
    line-height: 1;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Desktop override to ensure Analysis Approach title matches other section titles */
@media (min-width: 769px) {
    .hero-container .analysis-approach-title {
        font-size: 4rem !important;
    }
}

.hero-subtitle {
    font-size: 1.2rem !important;
    margin-bottom: 40px !important;
    opacity: 0.95 !important;
    width: 100% !important;
    max-width: none !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6) !important;
}

.hero-subtitle p {
    margin: 8px 0 !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: unset !important;
}

.bullet-point {
    margin: 8px 0 !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: unset !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #b91c1c 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative !important;
    z-index: 2 !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    opacity: 0;
    transform: translateX(-300px);
    transition: all 0.8s ease-out;
}

.bullet-point:nth-child(2) {
    transform: translateX(300px);
}

.bullet-point:nth-child(3) {
    transform: translateY(200px);
}

.bullet-point.animate {
    opacity: 1;
    transform: translateX(0);
}

.bullet-point:nth-child(2).animate {
    transform: translateX(0);
}

.bullet-point:nth-child(3).animate {
    transform: translateY(0);
}



.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* === BUTTONS === */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #f7931e 0%, #fbbf24 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ============================================
   SECTION 3: PAGE SECTIONS
   ============================================ */

/* === FEATURES SECTION === */
.features {
    padding: 120px 0 30px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/morning-mountain.PNG?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Add subtle animated background elements */
/* Removed colored overlay from features section */

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-20px) translateY(-10px); }
    50% { transform: translateX(10px) translateY(-20px); }
    75% { transform: translateX(-10px) translateY(10px); }
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible,
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible,
.slide-in-left {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-in-right.visible,
.slide-in-right {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scale-in.visible,
.scale-in {
    opacity: 1;
    transform: scale(1);
}

.features h2 {
    text-align: center;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 40px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Split title styling for Why Choose section */
.why-choose-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.title-line-1 {
    font-size: inherit;
    font-weight: 800;
}

.title-line-2 {
    font-size: inherit;
    font-weight: 700;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f7931e, #ea580c);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(51, 65, 85, 0.85) 100%);
    padding: 15px 12px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(var(--blur-radius));
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}



.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #006699 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    color: rgba(203, 213, 225, 0.9);
    line-height: 1.5;
    font-size: 0.85rem;
    position: relative;
    z-index: 3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Inspirational Quotes Section */
.quotes-section {
    margin-top: 30px;
    margin-bottom: 260px; /* Doubled from 130px */
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Desktop only - constrain quote boxes to center two feature cards width */
@media (min-width: 769px) {
    .quotes-section {
        max-width: calc(50% + 25px); /* Half the grid width plus half the gap */
        margin-left: auto;
        margin-right: auto;
    }
}

.quote-item {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.5) 0%, rgba(30, 41, 59, 0.4) 100%);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(var(--blur-radius));
    position: relative;
    overflow: hidden;
}

.quote-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quote-item:hover::before {
    opacity: 1;
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 25%, #f7931e 50%, #ea580c 75%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.quote-author {
    font-size: 0.8rem;
    color: rgba(203, 213, 225, 0.8);
    font-weight: 400;
    position: relative;
    z-index: 3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/morning-clouds.PNG?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Add subtle animated background elements */
.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Pricing main title styling */
.pricing .pricing-main-title {
    text-align: center !important;
    font-size: 4rem !important; /* Match sections 1 and 2 desktop size */
    font-weight: 800 !important;
    margin-bottom: 40px !important; /* Match features section margin */
    margin-top: 0 !important; /* Remove excessive top margin */
    background: var(--gradient-gold) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative !important;
    z-index: 2 !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

/* Desktop title - show on desktop, hide on mobile */
.pricing .desktop-title {
    display: block;
}

.pricing .mobile-title {
    display: none;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(203, 213, 225, 0.9);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 50%, rgba(51, 65, 85, 0.92) 100%);
    padding: 40px; /* Restored original padding */
    border-radius: 16px; /* Restored original border radius */
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(var(--blur-radius));
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card.featured {
    border-color: #f7931e;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card.premium {
    border-color: #dc2626;
    transform: scale(1.08);
    background: linear-gradient(145deg, rgba(220, 38, 38, 0.15) 25%, rgba(153, 27, 27, 0.1) 75%, rgba(15, 23, 42, 0.98) 100%);
}

.pricing-card.premium:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

/* Premium box text styling - make all text bold for better readability */
.pricing-card.premium h3,
.pricing-card.premium .price,
.pricing-card.premium .pricing-features li {
    font-weight: 800 !important; /* Extra bold for better readability against translucent background */
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f7931e 0%, #fbbf24 100%);
    color: white;
    padding: 8px 25px; /* Increased horizontal padding for wider badge */
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap; /* Ensure text stays on one line */
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 8px 25px; /* Increased horizontal padding for consistency */
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap; /* Ensure text stays on one line */
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px; /* Restored original margin */
}

.pricing-header h3 {
    font-size: 2rem; /* Restored original font size */
    font-weight: 600;
    margin-bottom: 15px; /* Restored original margin */
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.price {
    font-size: 3rem; /* Restored original font size */
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 25px; /* Restored original margin */
}

.price span {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(203, 213, 225, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.pricing-features {
    list-style: none;
    margin: 30px 0; /* Restored original margin */
}

.pricing-features li {
    padding: 12px 0; /* Restored original padding */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(203, 213, 225, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1rem; /* Restored original font size */
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 20px; /* Restored original margin */
}

.elite-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Restored original gap */
    margin-top: 20px; /* Restored original margin */
}

.elite-buttons .btn {
    margin-top: 0;
}

.premium-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.premium-buttons .btn {
    margin-top: 0;
}

/* Performance Section - Default (for about page) */
.performance {
    padding: 160px 0 100px 0; /* Increased top padding from 120px to 160px for more spacing */
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/flims-laax.PNG?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    overflow: hidden;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Changed from center to flex-start to respect padding */
}

/* Key Data Section - Uses flims-laax background */
.key-data-section {
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/flims-laax.PNG?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* Performance Section 2 - Uses heli-landscape background */
.performance-section-2 {
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/heli-landscape.PNG?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* Desktop Performance Section 2 - Override performance class with heli-landscape */
.desktop-performance-2 {
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/heli-landscape.PNG?v=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* Home Page Performance Section - Override for home page */
@media (min-width: 769px) {
    body:not(.about-page) .performance {
        padding: 100px 0; /* Restore original padding for home page */
        justify-content: center; /* Restore center alignment for home page */
    }
}

/* Add subtle animated background elements */
/* Removed green overlay from performance section */

/* Performance Section 3-Row Layout with Mixed Column Structures */
@media (min-width: 769px) {
    .performance-content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 38px;
        align-items: start; /* Changed from center to start for top alignment */
        max-width: 1700px;
        margin: 120px auto 0; /* Increased top margin to 120px to push content down more */
    }
}

/* Home Page Performance Content Grid - Override for home page */
@media (min-width: 769px) {
    body:not(.about-page) .performance-content-grid {
        margin: 0 auto; /* Restore original margin for home page */
        align-items: center; /* Restore center alignment for home page */
    }
}

/* Row 1 - Full width title (spans all 3 columns) */
.about-main-title {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: left;
    margin-bottom: -60px; /* Restored original negative margin */
}

/* Row 2 - Description + 3 boxes (2 columns: text + boxes) */
.about-description {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
    margin-top: -40px; /* Restored original negative margin */
}

.about-highlights {
    grid-column: 2 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    margin-top: -40px; /* Restored original negative margin */
}

/* Row 1 - FOI Index (3 columns) */
.foi-index-title {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    margin-top: -30px;
}

.foi-index-chart {
    grid-column: 2;
    grid-row: 1;
    margin-top: -30px;
}

.foi-index-stats {
    grid-column: 3;
    grid-row: 1;
    margin-top: -30px;
}

/* Row 2 - FOI Sentiment (3 columns) */
.foi-sentiment-title {
    grid-column: 1;
    grid-row: 2;
    text-align: right;
    margin-top: -30px;
}

.foi-sentiment-chart {
    grid-column: 2;
    grid-row: 2;
    margin-top: -30px;
}

.foi-sentiment-stats {
    grid-column: 3;
    grid-row: 2;
    margin-top: -30px;
}

/* Row 3 - FOI Master (3 columns) */
.foi-master-title {
    grid-column: 1;
    grid-row: 3;
    text-align: right;
    margin-top: -30px;
}

.foi-master-chart {
    grid-column: 2;
    grid-row: 3;
    margin-top: -30px;
}

.foi-master-stats {
    grid-column: 3;
    grid-row: 3;
    margin-top: -30px;
}

/* Strategy Title Styling */
.strategy-title h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Strategy Description Styling */
.strategy-description {
    font-size: 1.3rem; /* Increased from 1.1rem to 1.3rem */
    font-weight: 700; /* Same weight as h3 */
    margin-top: 8px;
    margin-bottom: 0;
    text-align: right; /* Right justified like the title */
    line-height: 1.4;
    background: var(--gradient-gold); /* Same gradient as h3 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Same shadow as h3 */
}

/* About Description Styling */
.about-description p {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 0;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Outperform main title styling */
.performance .outperform-main-title {
    font-size: 4rem !important; /* Match sections 1 and 2 desktop size */
    font-weight: 800 !important;
    margin-bottom: 20px !important; /* Restored original margin */
    background: var(--gradient-gold) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative !important;
    z-index: 2 !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

/* Performance Metrics title styling */
.performance-metrics-title {
    text-align: right;
    margin-bottom: 60px;
}

.performance-metrics-title h2 {
    font-size: 4rem !important;
    font-weight: 800 !important;
    background: var(--gradient-gold) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.about-text p {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d4f2a;
    margin-bottom: 30px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

@media (min-width: 769px) {
    .performance .highlight {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px;
        background: linear-gradient(145deg, rgba(20, 184, 166, 0.3) 0%, rgba(6, 182, 212, 0.25) 50%, rgba(16, 185, 129, 0.2) 100%);
        border-radius: 16px;
        box-shadow:
            0 15px 30px rgba(0, 0, 0, 0.2),
            0 5px 10px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        position: relative;
        backdrop-filter: blur(8px);
        z-index: 2;
    }
}

.performance .highlight:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.18),
        0 8px 16px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
    background: linear-gradient(145deg, rgba(20, 184, 166, 0.4) 0%, rgba(6, 182, 212, 0.35) 50%, rgba(16, 185, 129, 0.3) 100%);
}

.highlight-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 12px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
}

.highlight-text {
    display: block;
    font-size: 1.2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

/* Thumbnails Container */
.thumbnails-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    height: 100%;
    justify-content: space-between;
    align-items: stretch;
}

/* Performance Thumbnail Styles */
.performance-thumbnail {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.55) 50%, rgba(51, 65, 85, 0.5) 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    color: rgba(203, 213, 225, 0.9);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(var(--blur-radius));
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 5px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    flex: 1;
    min-height: 0;
    width: 100%;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.performance-thumbnail:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.thumbnail-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-preview {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Specific styling for chart thumbnail to show full title and y-axis */
.top-thumbnail .chart-preview {
    object-fit: contain;
    width: 100%;
    height: 100%;
    transform: scale(0.95);
    transform-origin: center;
}

.performance-thumbnail:hover .chart-preview {
    transform: scale(1.0);
}

.top-thumbnail:hover .chart-preview {
    transform: scale(1.0);
}

/* Responsive Image Switching */
.desktop-image {
    display: block;
}

.mobile-image {
    display: none;
}

/* ============================================
   SECTION 4: RESPONSIVE STYLES
   ============================================ */

/* === MOBILE BREAKPOINT (768px and below) === */
@media (max-width: 768px) {
    .desktop-image {
        display: none;
    }
    
    .mobile-image {
        display: block;
    }
}


/* ============================================
   SECTION 5: UTILITIES & MODALS
   ============================================ */

/* === PERFORMANCE MODAL === */
.performance-modal {
    background: rgba(0, 0, 0, 0.9);
}

.performance-chart-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.performance-chart-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.performance-chart-image.zoomed {
    cursor: zoom-out;
    position: relative;
    z-index: 10;
    transform-origin: center center;
}

/* Desktop-specific zoom styles */
@media (min-width: 769px) {
    .performance-chart-image.zoomed {
        cursor: grab;
        position: relative;
        z-index: 10;
        transform-origin: center center;
        transition: transform 0.2s ease-out;
    }
    
    .performance-chart-image.zoomed:active {
        cursor: grabbing;
        transition: none; /* Remove transition during dragging for smooth panning */
    }
    
    .performance-chart-image.zoomed.dragging {
        transition: none; /* Remove transition during dragging */
    }
}

/* Mobile-specific modal improvements */
@media (max-width: 768px) {
    .performance-modal {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .performance-chart-container {
        position: relative;
        width: 100vw;
        height: 100vh;
        padding: 60px 20px 20px 20px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .performance-chart-image {
        max-width: 100%;
        max-height: calc(100vh - 100px);
        width: auto;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
        object-fit: contain;
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }
    
    .performance-chart-image.zoomed {
        position: relative;
        z-index: 1000;
        cursor: grab;
        transform-origin: center center;
    }
    
    .performance-chart-image.zoomed:active {
        cursor: grabbing;
    }
    
    .performance-chart-image.panning {
        transition: none;
    }
    
    /* Mobile close button improvements */
    .performance-modal .close {
        position: fixed;
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
        color: #fff;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        border: 3px solid rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .performance-modal .close:hover {
        background: rgba(0, 0, 0, 0.9);
        border-color: rgba(255, 255, 255, 0.8);
        transform: scale(1.1);
    }
}

.performance-modal .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.performance-modal .close:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Legacy placeholder styles (keeping for reference) */
.about-image-placeholder {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.55) 50%, rgba(51, 65, 85, 0.5) 100%);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    color: rgba(203, 213, 225, 0.9);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(var(--blur-radius));
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 5px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-image-placeholder span {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo .logo-icon {
    font-size: 2rem;
    color: #f7931e;
}

.footer-logo h3 {
    color: white;
    font-weight: 700;
}

.footer-section h4 {
    color: #fbbf24;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* Primers Page */
.primers-hero {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    background: #0f172a;
    z-index: 1;
}

.primers-hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.primers-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.primers-hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    color: white;
    margin: 100px 0 0 80px;
    max-width: 1200px;
}

.primers-me-indicator,
.hero-me-indicator,
.legals-me-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.primers-me-indicator p,
.hero-me-indicator p,
.legals-me-indicator p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.primers-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #15803d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.primers-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #15803d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.45);
    line-height: 1.4;
    position: relative;
    z-index: 10;
    white-space: nowrap;
}

.primers-section-2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/morning-greenvalley.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    padding: 100px 0;
}

.primers-section-3 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15, 23, 42, 0.1), rgba(30, 41, 59, 0.2)), url('images/morning-yosemite2.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    padding: 100px 0;
}

.primers-content-placeholder {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.primers-content-placeholder h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #22c55e;
}

.primers-content-placeholder p {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* === PRIMERS PAGE RESPONSIVE === */
@media (max-width: 768px) {
    .primers-hero-content {
        margin: 80px 0 0 40px;
    }

    .primers-title {
        font-size: 2.5rem;
    }

    .primers-subtitle {
        font-size: 1.4rem;
    }

    .primers-content-placeholder h2 {
        font-size: 2rem;
    }

    .primers-content-placeholder p {
        font-size: 1.1rem;
    }
}

/* Daily Updates Page */
.daily-updates {
    padding: 100px 0 80px;
}

.updates-header {
    text-align: center;
    margin-bottom: 50px;
}

.updates-header h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.date-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.current-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e40af;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.chart-container {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.chart-container h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.chart-image {
    margin-bottom: 20px;
    text-align: center;
}

.chart-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chart-commentary p {
    color: #64748b;
    line-height: 1.6;
}

.daily-summary {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.daily-summary h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.summary-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.highlight {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
}

.highlight-label {
    font-weight: 600;
    color: #64748b;
}

.highlight-value {
    font-weight: 700;
    color: #1e40af;
}

/* Access Control */
.access-check,
.no-access {
    text-align: center;
    padding: 60px 20px;
}

.access-message h2,
.no-access-content h2 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 2rem;
}

.no-access-content p {
    margin-bottom: 30px;
    color: #64748b;
    font-size: 1.1rem;
}

/* Daily Updates Page - New Design */
.daily-hero {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    background: url('images/daily_updates-background.png') center 10%/cover no-repeat;
    z-index: 1;
    margin: 0;
    padding: 0;
}

/* Eliminate any default section margins */
section {
    margin: 0;
}

/* Background image now handled inline in HTML */

.daily-hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    margin: 100px 0 0 80px;
    max-width: 1200px;
}

.daily-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    position: relative;
    filter: brightness(1.2) contrast(1.1);
}

.daily-hero-content p {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.7),
        0 0 16px rgba(255, 255, 255, 0.5),
        0 0 24px rgba(255, 255, 255, 0.3),
        0 3px 6px rgba(0, 0, 0, 0.9);
    line-height: 1.4;
    position: relative;
    z-index: 10;
    filter: brightness(1.1) contrast(1.05);
}

.daily-me-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 10;
}

.daily-me-indicator p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Hide scroll down indicators on mobile devices */
@media (max-width: 768px) {
    .daily-me-indicator {
        display: none;
    }
}

/* Daily Updates Section - Responsive Layout */
.daily-updates-unified {
    position: relative;
    background: transparent;
    overflow: visible;
    margin-top: 100vh;
    padding: 80px 0;
}

/* Zoom Consistency Rules - Ensure floating boxes scale together */
.daily-overlay-container,
.daily-scroll-content,
.analysis-item-overlay,
.foi-summary-overlay,
.package-header,
.bio-paragraph-overlay {
    /* Force hardware acceleration for consistent rendering */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Ensure consistent viewport unit scaling during zoom */
@media screen and (max-width: 100vw) {
    .analysis-item-overlay,
    .foi-summary-overlay,
    .package-header,
    .bio-paragraph-overlay {
        /* Prevent layout shifts during zoom by using will-change */
        will-change: transform;
        /* Ensure transform operations are hardware accelerated */
        transform-style: preserve-3d;
    }
}

/* Additional zoom consistency for different viewport sizes */
@media screen and (min-width: 768px) and (max-width: 1200px) {
    .analysis-item-overlay,
    .foi-summary-overlay {
        /* Maintain aspect ratios during zoom */
        min-width: 15vw;
        max-width: 20vw;
    }
}

/* === TABLET LAYOUT (768px - 1200px) === */
@media screen and (max-width: 1200px) and (min-width: 768px) {
    .bio-scroll-content {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }

    .bio-paragraph-overlay {
        max-width: 100%;
        margin-bottom: 25px;
    }
}

/* Tablet breakpoint - Removed conflicting rules */

/* Responsive Grid System for Daily Updates Page - Tablet Layout */
@media screen and (max-width: 1200px) and (min-width: 768px) {
    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .analysis-grid.lite-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .foi-summary-overlay, .analysis-item-overlay {
        max-width: 100%;
        margin-bottom: 25px;
    }
}

/* Daily Updates Mobile Layout - Removed conflicting rules */

/* Responsive Design - Standard Breakpoints */
/* Large Desktop: Maintain original floating layout */
@media screen and (min-width: 1200px) {
    .bio-paragraph-overlay,
    .analysis-item-overlay,
    .foi-summary-overlay {
        position: absolute;
        /* Maintain original positioning */
    }
}

/* Medium Desktop/Tablet: Scale down floating elements */
/* === TABLET & LARGE TABLET (768px - 1199px) === */
@media screen and (max-width: 1199px) and (min-width: 768px) {
    .bio-paragraph-overlay {
        max-width: 400px;
        /* Scale positioning values proportionally */
        transform: scale(0.85);
    }
    
    .analysis-item-overlay,
    .foi-summary-overlay {
        width: 200px;
        /* Scale positioning values proportionally */
        transform: scale(0.8);
    }
    
    /* Removed absolute positioning adjustments - now using responsive grid */
    
    /* Removed absolute positioning adjustments - now using responsive grid */
}

/* === MOBILE LAYOUT (767px and below) === */
@media screen and (max-width: 767px) {
    .bio-scroll-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bio-paragraph-overlay {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .analysis-grid.lite-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .foi-summary-overlay, .analysis-item-overlay {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Responsive Design Foundation */
html {
    /* Prevent zoom-related layout shifts */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Ensure consistent box-sizing for floating elements */
.analysis-item-overlay,
.foi-summary-overlay,
.package-header,
.bio-paragraph-overlay {
    box-sizing: border-box;
    transform-origin: center center;
}

.daily-overlay-container {
    position: relative;
    background: transparent;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.daily-scroll-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Removed old layout rules - now using responsive grid */

.package-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.package-header {
    text-align: center;
    z-index: 10;
    color: white;
    margin-bottom: 20px;
}



.package-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.analysis-grid.lite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 20px auto 0;
}

.foi-summary-overlay, .analysis-item-overlay, .lite-analysis-item {
    position: relative;
    width: 100%;
    max-width: 300px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.5) 100%);
    border-radius: 13px;
    backdrop-filter: blur(var(--blur-radius));
    box-shadow: 0 13px 27px rgba(0, 0, 0, 0.3), 0 5px 11px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
    justify-self: center;
}

.foi-summary-overlay {
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.foi-summary-overlay .analysis-thumbnail {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

/* Hover effects for Daily Updates boxes */
.foi-summary-overlay:hover,
.analysis-item-overlay:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    z-index: 15;
}

.foi-summary-overlay h3, .analysis-item-overlay h3, .lite-analysis-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 13px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 6px rgba(255, 255, 255, 0.8),
        0 0 12px rgba(255, 255, 255, 0.6),
        0 0 18px rgba(255, 255, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.8);
    filter: brightness(1.1) contrast(1.05);
}



.analysis-thumbnail {
    width: 134px;
    height: 134px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.thumbnail-placeholder span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}





/* About Page - New Design */
.about-hero {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    background: #0f172a;
    z-index: 1;
}

.about-hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    color: white;
    margin: 100px 0 0 80px;
    max-width: 1200px;
}

.about-me-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.about-me-indicator h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
}

.about-me-indicator p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Hide scroll down indicators on mobile devices */
@media (max-width: 768px) {
    .about-me-indicator {
        display: none;
    }
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.about-hero-content p {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
    line-height: 1.4;
    position: relative;
    z-index: 10;
    white-space: nowrap;
}

/* Middle Bio Section - Responsive Layout */
.about-bio-middle {
    position: relative;
    background: transparent;
    overflow: visible;
    margin-top: 100vh;
    padding: 80px 0;
}

.bio-overlay-container {
    position: relative;
    background: transparent;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive bio content layout */
.bio-scroll-content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    align-items: start;
}

.bio-paragraph-overlay {
    position: relative;
    width: 100%;
    max-width: 536px;
    padding: 27px 33px;
    z-index: 10;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.5) 100%);
    border-radius: 13px;
    margin-bottom: 27px;
    box-shadow:
        0 13px 27px rgba(0, 0, 0, 0.3),
        0 5px 11px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(var(--blur-radius));
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    justify-self: center;
}

/* Hover effects for About page bio paragraphs */
.bio-paragraph-overlay:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    z-index: 15;
}

.bio-paragraph-overlay.visible {
    opacity: 1;
    transform: translateY(0);
}

.bio-paragraph-overlay.blue {
    border-left: 4px solid #3b82f6;
}

.bio-paragraph-overlay.red {
    border-left: 4px solid #dc2626;
}

.bio-paragraph-overlay h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 13px;
    position: relative;
}

.bio-paragraph-overlay.blue h3 {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio-paragraph-overlay.red h3 {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio-paragraph-overlay p {
    font-size: 0.74rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 13px;
}

/* Ensure all bio boxes have consistent styling */
.bio-paragraph-overlay {
    border-radius: 13px !important;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force visibility for all boxes */
.bio-paragraph-overlay[data-paragraph] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.bio-middle-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.bio-middle-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio-middle-content p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
}

/* Bottom Section */
.about-bottom {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    position: relative;
    overflow: hidden;
}

.about-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    animation: backgroundShift 25s ease-in-out infinite reverse;
}

/* Bottom Image Section */
.about-bottom-image {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 50vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bottom-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.about-bottom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}





/* Bio Section */
.about-bio {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #cbd5e1 50%, #94a3b8 75%, #64748b 100%);
    position: relative;
    overflow: hidden;
}

.about-bio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    animation: backgroundShift 25s ease-in-out infinite reverse;
}

.bio-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.bio-paragraph {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    padding: 40px 50px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.bio-paragraph.visible {
    opacity: 1;
    transform: translateY(0);
}

.bio-paragraph:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1);
}

.bio-paragraph h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.bio-paragraph h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1e40af, #3b82f6);
    border-radius: 2px;
}

.bio-paragraph p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    font-weight: 400;
}

/* Placeholder Section */
.about-placeholder {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    position: relative;
    overflow: hidden;
}

.about-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: backgroundShift 30s ease-in-out infinite;
}

.placeholder-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.placeholder-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.placeholder-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.placeholder-visual {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.3) 0%, rgba(30, 41, 59, 0.2) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.placeholder-visual p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.features-section {
    margin-bottom: 60px;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}



.team-section {
    margin-bottom: 60px;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1e293b;
}

.team-section p {
    text-align: center;
    margin-bottom: 30px;
    color: #64748b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-method {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-method h3 {
    color: #1e40af;
    margin-bottom: 15px;
}

.contact-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 3% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #64748b;
}

.close:hover {
    color: #1e293b;
}

.modal h2 {
    margin-bottom: 30px;
    color: #1e293b;
    text-align: center;
}

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

.modal input,
.modal select {
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}

.modal input:focus,
.modal select:focus {
    outline: none;
    border-color: #1e40af;
}

.modal p {
    text-align: center;
    margin-top: 20px;
}

.modal a {
    color: #1e40af;
    text-decoration: none;
}

/* === MEDIUM SCREENS (1000px and below) === */
@media (max-width: 1000px) {
    /* Disable background-attachment: fixed on mobile for smooth scroll-snap */
    section {
        background-attachment: scroll !important;
        overflow-x: hidden !important;
    }
    
    .about-section-2 {
        min-height: 100vh !important;
        height: 100vh !important;
        padding: 40px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .about-section-2 .container {
        justify-content: center !important;
        height: 100% !important;
        align-items: center !important;
        transform: none !important;
        transform-origin: initial !important;
    }
    
    .about-section-2 .about-content-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        gap: 0 !important;
    }
    
    .about-section-2 .about-content-box {
        max-width: var(--width-wider-mobile) !important;
        margin: 0 auto !important;
    }
    
    .about-section-2 .about-content-box p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .about-section-2 .about-content-box h3 {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
    }
    
    .about-section-3 {
        min-height: 100vh !important;
        height: 100vh !important;
        padding: 40px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .about-section-3 .container {
        justify-content: center !important;
        height: 100% !important;
        align-items: center !important;
        transform: none !important;
        transform-origin: initial !important;
    }
    
    .about-section-3 .about-content-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        gap: 0 !important;
    }
    
    .about-section-4 .about-content-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        gap: 0 !important;
    }
    
    .about-section-3 .about-content-box {
        max-width: var(--width-wider-mobile) !important;
        margin: 0 auto !important;
    }
    
    .about-section-3 .about-content-box p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .about-section-3 .about-content-box h3 {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
    }
    
    .about-section-4 {
        min-height: 100vh !important;
        height: 100vh !important;
        padding: 40px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .about-section-4 .container {
        justify-content: center !important;
        height: 100% !important;
        align-items: center !important;
        transform: none !important;
        transform-origin: initial !important;
    }
    
    .about-section-4 .about-content-grid {
        gap: 30px !important;
    }
    
    .about-section-4 .about-content-box {
        max-width: var(--width-wider-mobile) !important;
        margin: 0 auto !important;
    }
    
    .about-section-4 .about-content-box p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .about-section-4 .about-content-box h3 {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
    }
    
    /* Mobile-specific: Hide second box in sections 2, 3, 4 */
    .about-section-2 .about-content-box:nth-child(2),
    .about-section-3 .about-content-box:nth-child(2),
    .about-section-4 .about-content-box:nth-child(2) {
        display: none !important;
    }
    
    /* Mobile-specific: Hide sections 3 and 4 completely on mobile */
    .about-section-3,
    .about-section-4 {
        display: none !important;
    }
    
    /* Mobile-specific: Show mobile-only sections */
    .mobile-only {
        display: flex !important;
    }
    
    /* Mobile-specific: Styling for sections 5-9 */
    .about-section-5,
    .about-section-6,
    .about-section-7,
    .about-section-8,
    .about-section-9 {
        min-height: 100vh !important;
        height: 100vh !important;
        padding: 40px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .about-section-5 .container,
    .about-section-6 .container,
    .about-section-7 .container,
    .about-section-8 .container,
    .about-section-9 .container {
        justify-content: center !important;
        height: 100% !important;
        align-items: center !important;
        transform: none !important;
        transform-origin: initial !important;
    }
    
    .about-section-5 .about-content-grid,
    .about-section-6 .about-content-grid,
    .about-section-7 .about-content-grid,
    .about-section-8 .about-content-grid,
    .about-section-9 .about-content-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        gap: 0 !important;
    }
    
    .about-section-5 .about-content-box,
    .about-section-6 .about-content-box,
    .about-section-7 .about-content-box,
    .about-section-8 .about-content-box,
    .about-section-9 .about-content-box {
        max-width: var(--width-wider-mobile) !important;
        margin: 0 auto !important;
    }
    
    .about-section-5 .about-content-box p,
    .about-section-6 .about-content-box p,
    .about-section-7 .about-content-box p,
    .about-section-8 .about-content-box p,
    .about-section-9 .about-content-box p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .about-section-5 .about-content-box h3,
    .about-section-6 .about-content-box h3,
    .about-section-7 .about-content-box h3,
    .about-section-8 .about-content-box h3,
    .about-section-9 .about-content-box h3 {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
    }
    
    /* Legals sections mobile styles */
    .legals-section-1,
    .legals-section-2,
    .legals-section-3 {
        min-height: 100vh !important;
        height: auto !important;
        padding: var(--section-padding-mobile) !important;
    }
    
    .legals-section-1 .container,
    .legals-section-2 .container,
    .legals-section-3 .container {
        justify-content: flex-start !important;
        height: auto !important;
        min-height: 0 !important;
        align-items: center !important;
        transform: none !important;
        transform-origin: initial !important;
    }
    
    .legal-disclaimer-box {
        margin: 30px auto 0;
        max-width: 100% !important;
    }
    
    .legal-disclaimer-box p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .legal-disclaimer-box ul li,
    .legal-disclaimer-box ol li {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
    }
    
    .legal-disclaimer-box h3 {
        font-size: 2.2rem !important;
        font-weight: 700 !important;
    }
    
    /* Homepage sections - make responsive */
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .pricing {
        height: auto !important;
        min-height: 100vh;
        padding: 80px 0 20px 0 !important; /* Increased top padding to clear nav bar */
        justify-content: flex-start !important; /* Match features section mobile behavior */
        align-items: center !important; /* Match features section mobile behavior */
    }

    /* Fix pricing container centering that overrides section flex-start */
    .pricing .container {
        justify-content: flex-start !important;
        height: auto !important;
        align-items: center !important;
        transform: none !important;
        transform-origin: initial !important;
    }
    
    body:not(.about-page) .performance {
        height: auto !important;
        min-height: 100vh;
        padding: var(--performance-padding-mobile) !important; /* Performance section specific padding */
    }
    
    /* Only reduce padding for performance-section-2 (FOI Index section) */
    body:not(.about-page) .performance-section-2 {
        padding: 60px 0 20px 0 !important; /* Increased top padding to move FOI Index title down from nav bar */
    }
    
    body:not(.about-page) .performance-content-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto auto auto auto auto auto auto auto auto !important;
        gap: 4px !important; /* Further reduced gap between tiles horizontally and vertically */
        justify-items: center !important;
        text-align: center !important;
    }
    
    /* Mobile grid positioning for 4-row layout */
    .about-main-title {
        grid-column: 1 / -1 !important;
        grid-row: 1 !important;
    }
    
    .about-description {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
    }
    
    .about-highlights {
        grid-column: 1 / -1 !important;
        grid-row: 3 !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .foi-index-title {
        grid-column: 1 / -1 !important;
        grid-row: 4 !important;
    }
    
    .foi-index-chart {
        grid-column: 1 !important;
        grid-row: 5 !important;
    }
    
    .foi-index-stats {
        grid-column: 2 !important;
        grid-row: 5 !important;
    }
    
    .foi-sentiment-title {
        grid-column: 1 / -1 !important;
        grid-row: 6 !important;
    }
    
    .foi-sentiment-chart {
        grid-column: 1 !important;
        grid-row: 7 !important;
    }
    
    .foi-sentiment-stats {
        grid-column: 2 !important;
        grid-row: 7 !important;
    }
    
    .foi-master-title {
        grid-column: 1 / -1 !important;
        grid-row: 8 !important;
    }
    
    .foi-master-chart {
        grid-column: 1 !important;
        grid-row: 9 !important;
    }
    
    .foi-master-stats {
        grid-column: 2 !important;
        grid-row: 9 !important;
    }
    
    .foi-index-chart,
    .foi-index-stats,
    .foi-sentiment-chart,
    .foi-sentiment-stats,
    .foi-master-chart,
    .foi-master-stats {
        margin: 0 !important; /* Override performance-thumbnail margin to allow grid positioning */
    }
    
    /* Mobile font size adjustments */
    .strategy-title h3 {
        font-size: 2rem !important;
    }
    
    .about-description p {
        font-size: 1.1rem !important;
    }
    
    .about-main-title h2 {
        font-size: 3rem !important;
    }
    
    .about-visual {
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .about-highlights {
        grid-template-columns: repeat(2, 1fr) !important;
        justify-content: center !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Daily Updates tablet section padding - ultra-optimized for zero scrolling */
    .daily-section-1 {
        padding: 20px 0 !important; /* Premium: ultra-minimal */
        min-height: 100vh !important;
        height: 100vh !important;
        overflow: hidden !important;
    }

    .daily-section-2 {
        padding: 25px 0 !important; /* Elite: ultra-minimal */
        min-height: 100vh !important;
        height: 100vh !important;
        overflow: hidden !important;
    }

    .daily-section-3 {
        padding: 30px 0 !important; /* Advanced: ultra-minimal */
        min-height: 100vh !important;
        height: 100vh !important;
        overflow: hidden !important;
    }

    .daily-section-4 {
        padding: 40px 0 !important; /* Essential: ultra-minimal */
        min-height: 100vh !important;
        height: 100vh !important;
        overflow: hidden !important;
    }

    /* Daily Updates tablet header spacing - consistent with mobile */
    .daily-package-header {
        margin-bottom: 25px !important; /* Reduced from 60px for tablet */
    }

    .daily-section-1 .daily-package-title,
    .daily-section-2 .daily-package-title,
    .daily-section-3 .daily-package-title,
    .daily-section-4 .daily-package-title {
        margin-bottom: 12px !important; /* Reduced from 20px for tablet */
        font-size: 3.8rem !important; /* Even larger for tablet prominence */
    }

    .daily-section-1 .daily-package-subtitle,
    .daily-section-2 .daily-package-subtitle,
    .daily-section-3 .daily-package-subtitle,
    .daily-section-4 .daily-package-subtitle {
        max-width: 450px !important; /* Appropriate width for tablet */
        font-size: 1.9rem !important; /* Much smaller than title for clear hierarchy */
        line-height: 1.2 !important;
        font-weight: 700 !important;
    }

    /* Daily section containers - remove extra padding for proper fit */
    .daily-section-1 .container,
    .daily-section-2 .container,
    .daily-section-3 .container,
    .daily-section-4 .container {
        padding-top: 0 !important; /* Remove extra container padding */
        padding-bottom: 0 !important; /* Remove extra container padding */
    }

    /* Daily Updates responsive - tablet layouts matching mobile */
    /* Premium Package (6 boxes): 2 columns × 3 rows */
    body .daily-section-1 .daily-thumbnails-grid.premium-package-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columns */
        gap: 10px !important; /* Smaller gap for tablet */
        max-width: 100% !important; /* Full width */
        padding: 0 15px !important; /* Horizontal padding */
    }

    /* Elite Package (5 boxes): 2 columns × 3 rows */
    body .daily-section-2 .daily-thumbnails-grid.full-package-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columns */
        gap: 10px !important; /* Smaller gap for tablet */
        max-width: 100% !important; /* Full width */
        padding: 0 15px !important; /* Horizontal padding */
    }

    /* Advanced Package (5 boxes): 2 columns (2×2 + 1 row) */
    body .daily-section-1 .daily-thumbnails-grid.advanced-package-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columns */
        gap: 10px !important; /* Smaller gap for tablet */
        max-width: 100% !important; /* Full width */
        padding: 0 15px !important; /* Horizontal padding */
    }

    /* Essential Package (3 boxes): 1 column × 3 rows */
    body .daily-section-2 .daily-thumbnails-grid.lite-grid {
        grid-template-columns: 1fr !important; /* 1 column */
        gap: 10px !important; /* Smaller gap for tablet */
        max-width: 100% !important; /* Full width */
        padding: 0 15px !important; /* Horizontal padding */
    }

}

/* === DESKTOP MEDIUM (1001px - 1200px) === */
@media (max-width: 1200px) and (min-width: 1001px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .about-highlights {
        grid-template-columns: repeat(2, 1fr) !important;
        justify-content: center !important;
    }
    
    /* Adjust strategy titles for medium screens */
    .strategy-title h3 {
        font-size: 2.2rem !important;
    }
    
    .about-description p {
        font-size: 1.2rem !important;
    }
}

/* === NARROW SCREENS (900px and below) === */
@media (max-width: 900px) {
    /* Premium Package grid - single column on narrow screens */
    .premium-package-grid {
        grid-template-columns: 1fr !important;
        gap: var(--daily-box-gap) !important;
        max-width: 100% !important;
    }
    
    /* Elite (Full Package) grid - single column on narrow screens */
    .full-package-grid {
        grid-template-columns: 1fr !important;
        gap: var(--daily-box-gap) !important;
        max-width: 100% !important;
    }
    .daily-section-3 .daily-thumbnails-grid.advanced-package-grid {
        grid-template-columns: 1fr !important;
        gap: var(--daily-box-gap) !important;
        max-width: 100% !important;
    }
    
    .daily-section-4 .daily-thumbnails-grid.lite-grid {
        grid-template-columns: 1fr !important;
        gap: var(--daily-box-gap) !important;
        max-width: 100% !important;
    }
    
    
    /* Section 2 - make height flexible when boxes stack */
    .daily-section-2 {
        height: auto !important;
        min-height: 100vh;
        padding: 80px 0;
    }

    /* Advanced section - make height flexible when boxes stack */
    .daily-section-3 {
        height: auto !important;
        min-height: 100vh;
        padding: 80px 0;
    }
}

/* === MOBILE SPECIFIC (768px and below) - Performance Section === */
@media (max-width: 768px) {
    .performance .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }
    
    .about-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .about-text {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    .about-visual {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .about-highlights {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
    }
    
    .performance .highlight {
        width: 100% !important;
        max-width: var(--width-narrower-mobile) !important;
        margin: 0 auto !important;
    }
    
    /* Fix title overflow on mobile */
    .about-text h2,
    .performance .outperform-main-title {
        font-size: 3rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
    }
}

/* === SMALL MOBILE (480px and below) === */
@media (max-width: 480px) {
    .performance {
        text-align: center !important;
    }
    
    .performance * {
        text-align: center !important;
    }
    
    .performance .container,
    .performance .about-content,
    .performance .about-text,
    .performance .about-visual,
    .performance .about-highlights {
        margin-left: auto !important;
        margin-right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        position: relative !important;
    }
    
    /* Fix title overflow on very small screens */
    .about-text h2,
    .performance .outperform-main-title {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        padding: 0 10px !important;
    }
}

/* === TABLET & SMALLER (1024px and below) === */
@media (max-width: 1024px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 20px 20px;
        gap: 12px;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 10px 20px;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(251, 191, 36, 0.1);
        color: #fbbf24;
    }
    
    .nav-link.login-btn {
        background: linear-gradient(135deg, #f7931e 0%, #fbbf24 100%) !important;
        color: white !important;
        margin-top: 8px !important;
    }
    
    .nav-link.login-btn:hover {
        background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(247, 147, 30, 0.3) !important;
    }
    
    .nav-link.login-btn.logout-state:hover {
        background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
    }
    
    /* Fix navigation title for smaller screens */
    .nav-logo h2 {
        font-size: 1.25rem;
        line-height: 1.1;
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
        max-width: none;
    }

    /* Mobile title sizes for features section - match hero section exactly */
    .title-line-1 {
        font-size: 2.2rem !important;
        font-weight: 800;
    }

    .title-line-2 {
        font-size: 2.2rem !important;
        font-weight: 700;
    }

    /* Reduce modal gap on mobile devices */
    .modal-content {
        margin: 2% auto !important;
        padding: 20px 15px !important;
        max-width: 90% !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
    
    /* Make login modal smaller on mobile */
    #loginModal .modal-content {
        padding: 12px 10px !important;
        max-height: 95vh !important;
        overflow-y: auto !important;
    }
    
    #loginModal h2 {
        font-size: 1.15rem !important;
        margin-bottom: 6px !important;
    }
    
    #loginModal h2 span {
        font-size: 1.15rem !important;
    }
    
    #loginModal p {
        font-size: 0.75rem !important;
        margin: 6px 0 !important;
    }
    
    #loginModal input[type="email"] {
        padding: 8px !important;
        font-size: 0.8rem !important;
    }
    
    #loginModal button[type="submit"] {
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
    }
    
    #loginModal #emailVerificationForm {
        margin-bottom: 10px !important;
        gap: 6px !important;
    }
    
    #loginModal #emailVerificationMessage {
        padding: 6px !important;
        font-size: 0.75rem !important;
        margin-bottom: 8px !important;
    }
    
    #loginModal .subscribe-section {
        margin-top: 12px !important;
        padding-top: 12px !important;
    }
    
    #loginModal .subscribe-section p:first-of-type {
        font-size: 0.95rem !important;
        margin: 0 0 10px 0 !important;
    }
    
    #loginModal .subscribe-section p:first-of-type span {
        font-size: 0.95rem !important;
    }
    
    #loginModal .subscribe-section a {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }
    
    #loginModal .subscribe-section a svg,
    #loginModal .subscribe-section a img {
        width: 16px !important;
        height: 16px !important;
    }
    
    #loginModal .subscribe-section > div:last-child {
        margin-top: 10px !important;
    }
    
    #loginModal .subscribe-section iframe {
        height: 280px !important;
        max-width: 100% !important;
    }
    
    #loginModal .subscribe-section p:last-of-type {
        font-size: 0.65rem !important;
        margin: 4px 0 !important;
    }
    
    /* Ensure close button works on mobile */
    #loginModal .close {
        font-size: 32px !important;
        top: 8px !important;
        right: 8px !important;
        z-index: 1001 !important;
        cursor: pointer !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(0, 0, 0, 0.5) !important;
        border-radius: 50% !important;
        line-height: 1 !important;
        padding: 0 !important;
    }
    
    #loginModal .close:hover {
        background: rgba(0, 0, 0, 0.7) !important;
    }

    /* Fix features section positioning on mobile */
    .features {
        padding: var(--section-padding-mobile) !important;
        justify-content: flex-start !important;
        align-items: center !important;
        height: auto !important;
        min-height: 100vh !important;
    }

    /* Fix container centering that overrides section flex-start */
    .features .container {
        justify-content: flex-start !important;
        height: auto !important;
        align-items: center !important;
        transform: scale(0.85) !important;
        transform-origin: center center !important;
    }

    /* Force title to top of section */
    .why-choose-title {
        margin-top: 20px !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 10 !important;
        gap: 0px !important;
    }

    /* Mobile-specific feature cards - make them less wide */
    .feature-card {
        max-width: var(--width-wider-mobile) !important;
        margin: 0 auto !important;
        padding: 6px 8px !important;
        min-height: 75px !important;
    }

    .feature-card h3 {
        font-size: 1.0rem !important;
        margin-bottom: 3px !important;
        line-height: 1.1 !important;
    }

    .feature-card p {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
    }

    /* Mobile-specific quote boxes - make them as wide as 2x2 grid */
    .quote-item {
        max-width: none !important; /* Let grid control the width */
        margin: 0 auto !important;
        padding: 18px 12px !important;
    }

    .quote-text {
        font-size: 1.0rem !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }

    .quote-author {
        font-size: 0.75rem !important;
    }

    /* Adjust features grid gap for mobile */
    .features-grid {
        gap: 20px !important;
        justify-items: center !important;
    }

    /* Adjust quotes section gap for mobile */
    .quotes-section {
        gap: 15px !important;
        margin-top: 20px !important;
        margin-bottom: 0 !important; /* Removed - now using section padding instead */
        max-width: none !important; /* Remove desktop constraint */
        display: grid !important;
        grid-template-columns: 1fr !important; /* 1 column */
        grid-template-rows: repeat(2, auto) !important; /* 2 rows */
    }

    /* Mobile-specific performance section fixes */
    .performance .outperform-main-title {
        font-size: 2.2rem !important; /* Match hero section title size on mobile (768px) */
        margin-bottom: 3px !important; /* Even further reduced gap between title and paragraph */
        text-align: center !important; /* Center the title */
        max-width: var(--width-wider-mobile) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .performance-metrics-title h2 {
        font-size: 2.2rem !important; /* Match other section titles on mobile */
        margin-bottom: 0 !important;
    }
    
    .performance-metrics-title {
        margin-bottom: 30px !important;
        text-align: center !important; /* Center on mobile for readability */
    }

    /* Add bottom spacing to match section 2 */
    .performance {
        padding: var(--section-padding-mobile) !important; /* Match section 2 bottom spacing (30px + 200px quotes margin) */
    }

    .about-main-title {
        margin-bottom: 0 !important; /* Remove negative margin on mobile */
        text-align: center !important; /* Center the title container */
    }

    .about-description {
        margin-top: 8px !important; /* Small gap between title and paragraph */
        text-align: center !important; /* Center the paragraph text */
        max-width: var(--width-wider-mobile) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .about-description p {
        font-size: 1.0rem !important; /* Reduced paragraph font size for mobile */
    }

    .about-highlights {
        margin-top: 10px !important; /* Reduced gap between paragraph and first feature tile */
    }

    /* Increase gap between feature tiles and FOI Index title */
    .foi-index-title {
        margin-top: 15px !important; /* Reduced from 20px to save space */
    }

    /* Increase gap above FOI Master title to match FOI Index spacing */
    .foi-master-title {
        margin-top: 8px !important; /* Reduced from 10px to save space */
    }
    
    /* FOI Sentiment title spacing */
    .foi-sentiment-title {
        margin-top: 8px !important; /* Reduced from 10px to save space */
    }

    /* Reduce gap between FOI Index title and description text */
    .strategy-title h3 {
        margin-bottom: -5px !important; /* Reduce gap between title and description */
        font-size: 1.7rem !important; /* Reduced by one increment from 1.9rem */
    }

    .strategy-description {
        margin-top: 3px !important; /* Reduce gap between title and description */
        margin-bottom: 15px !important; /* Add space below subtitle to push tiles lower */
        font-size: 1.0rem !important; /* Reduced by one increment from 1.1rem */
        background: var(--gradient-gold-mobile) !important; /* Subtle mobile gradient for descriptions only */
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important; /* Light shadow for mobile */
    }

    /* Reduce size of performance chart and stats boxes to match feature tiles */
    .performance-thumbnail {
        max-width: 175px !important; /* Increased tile size from 160px */
        margin: 0 auto !important; /* Center the boxes */
        padding: 8px !important; /* Reduced padding for compact height - equal all around */
        height: auto !important; /* Override desktop height of 280px */
        min-height: auto !important; /* Remove any min-height constraints */
    }

    /* Make performance section highlight tiles match section 2 feature cards exactly */
    .performance .highlight {
        max-width: var(--width-narrower-mobile) !important; /* Use narrower mobile width */
        padding: 8px 8px !important; /* Match section 2 feature-card padding */
        min-height: 120px !important; /* Match section 2 feature-card min-height */
        border-radius: 14px !important; /* Match section 2 feature-card border-radius */
        background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(51, 65, 85, 0.85) 100%) !important; /* Match section 2 background */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important; /* Match section 2 box-shadow */
        border: 1px solid rgba(255, 255, 255, 0.1) !important; /* Match section 2 border */
        backdrop-filter: blur(10px) !important; /* Match section 2 backdrop-filter */
        margin: 0 auto !important; /* Center the tiles */
        display: flex !important; /* Add flex structure */
        flex-direction: column !important; /* Stack vertically */
        align-items: center !important; /* Center horizontally */
        justify-content: center !important; /* Center vertically */
        text-align: center !important; /* Center text */
    }

    .highlight-number {
        font-size: 1.2rem !important; /* Increased by 1 more increment from 1.1rem */
        font-weight: 700 !important;
        margin-bottom: 10px !important; /* Match section 2 feature-card margin */
        color: #fbbf24 !important; /* Restored original yellow color */
        line-height: 1.4 !important;
    }

    .highlight-text {
        font-size: 1.0rem !important; /* Increased by 1 more increment from 0.9rem */
        font-weight: 700 !important; /* Made text bold */
        line-height: 1.4 !important;
        color: rgba(203, 213, 225, 0.9) !important; /* Match section 2 feature-card p color */
        text-transform: none !important; /* Remove uppercase */
        letter-spacing: normal !important; /* Remove letter-spacing */
    }
}

/* === MOBILE SCREENS FIXES - Hero Section === */
@media (max-width: 768px) {
    /* Fix Hero section height and content for mobile */
    .hero {
        background: url('images/morning-city-graffiti-device.PNG?v=2') !important;
        background-size: 100% 100% !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: fixed !important; /* Match desktop behavior - no scrolling */
        background-color: #0f172a !important;
        /* Dynamic height controlled by JavaScript with CSS variables */
        min-height: calc(100vh + var(--mobile-nav-padding, 120px));
        height: calc(100vh + var(--mobile-nav-padding, 120px));
        padding-top: 10vh !important;
        justify-content: flex-start !important;
        /* Base padding - JavaScript will add more if needed */
        padding-bottom: 80px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Hero Section 2 - Use whistler-landscape on mobile */
    .hero-section-2 {
        background: url('images/whistler-landscape.png?v=2') !important;
        background-size: cover !important;
    }

    /* Hide scroll down text on mobile - not needed on touch devices */
    .hero-me-indicator,
    .primers-me-indicator,
    .legals-me-indicator {
        display: none !important;
    }

    .hero-container {
        transform: none !important;
        padding: 20px 20px;
    }
    
    /* Prevent white bar flash during momentum scrolling - minimal approach */
    body {
        background-color: #0f172a !important;
    }
    
    .hero-container h1 {
        font-size: 2.2rem !important; /* One increment bigger (2.0rem → 2.2rem) */
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: var(--width-wider-mobile) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 10px;
    }
    
    .hero-container h2 {
        font-size: 1.4rem !important; /* Smaller than title (2.2rem) but bigger than bullets */
        line-height: 1.2;
        margin-bottom: 20px !important;
        max-width: var(--width-wider-mobile) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .analysis-approach-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 15px !important;
        max-width: var(--width-wider-mobile) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }
    
    .hero-subtitle {
        font-size: 0.5rem !important; /* Reduced by 50% from 1rem */
        margin-bottom: 30px !important;
        max-width: var(--width-wider-mobile) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-subtitle p {
        white-space: normal !important;
        line-height: 1.6 !important;
        margin: 12px 0 !important;
        padding: 0 10px;
    }
    
    .bullet-point {
        font-size: 1.0rem !important; /* Smaller than subtitle (1.4rem) */
        white-space: normal !important;
        line-height: 1.6 !important;
        margin: 12px 0 !important;
        padding: 0 10px;
        font-weight: 700 !important;
        background: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #b91c1c 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        position: relative !important;
        z-index: 2 !important;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
        /* Mobile animations with pronounced effects */
        opacity: 0;
        transform: translateX(-200px);
        transition: all 0.6s ease-out;
    }

    .bullet-point:nth-child(2) {
        transform: translateX(200px);
    }

    .bullet-point:nth-child(3) {
        transform: translateY(150px);
    }

    .bullet-point.animate {
        opacity: 1;
        transform: translateX(0);
    }

    .bullet-point:nth-child(2).animate {
        transform: translateX(0);
    }

    .bullet-point:nth-child(3).animate {
        transform: translateY(0);
    }
    
    
    
    /* Mobile Navigation - Duplicate removed, using earlier definition */
    
    /* Fix About page hero section for mobile */
    .about-hero {
        height: auto !important;
        min-height: 100vh;
        padding: var(--section-padding-hero-mobile) !important; /* Match features section mobile padding */
    }
    
    .about-hero-content {
        margin: 40px 10px 40px -10px !important;
        text-align: left !important;
        max-width: 100% !important;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
        padding: 0 10px !important;
    }
    
    .about-hero-content p {
        font-size: 1.3rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.4 !important;
        padding: 0 10px !important;
    }
    
    /* Fix Daily Updates page hero section for mobile */
    .daily-hero {
        height: auto !important;
        min-height: 100vh;
        padding: var(--section-padding-hero-mobile) !important; /* Match features section mobile padding */
    }
    
    .daily-hero-content {
        margin: 40px 10px 40px -10px !important;
        text-align: left !important;
        max-width: 100% !important;
    }
    
    .daily-hero-content h1 {
        font-size: 2.5rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
        padding: 0 10px !important;
    }
    
    .daily-hero-content p {
        font-size: 1.3rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.4 !important;
        padding: 0 10px !important;
    }
    
    /* Mobile-specific pricing section fixes */
    .pricing .pricing-main-title {
        font-size: 2.2rem !important; /* Match features and performance section title size on mobile (768px) */
        margin-bottom: 40px !important; /* Increased gap between title and pricing cards */
        margin-top: 20px !important; /* Match features section margin */
        text-align: center !important; /* Center the title */
        max-width: var(--width-wider-mobile) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 5px !important; /* Reduced gap for mobile */
    }
    
    /* Mobile title - show on mobile, hide desktop title */
    .pricing .desktop-title {
        display: none !important;
    }
    
    .pricing .mobile-title {
        display: inline !important; /* Display as single line */
        text-align: center !important;
    }
    
    /* Mobile pricing title lines - match features section exactly */
    .pricing .title-line-1,
    .pricing .title-line-2 {
        font-size: 2.2rem !important;
    }
    
    .pricing .title-line-1 {
        font-weight: 800 !important;
    }
    
    /* Add space between title lines when displayed inline */
    .pricing .title-line-1::after {
        content: " ";
    }
    
    .pricing .title-line-2 {
        font-weight: 700 !important;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr) !important; /* 2x2 grid layout */
        max-width: 95% !important; /* Use almost full width */
        gap: 45px 8px !important; /* Larger vertical gap for badges, small horizontal gap */
        padding: 0 10px !important; /* Add horizontal padding */
    }
    
    .pricing-card {
        max-width: 100% !important; /* Cards fill their grid cell */
        width: 100% !important; /* Full width of grid cell */
        margin: 0 !important; /* No extra margins */
        padding: 10px 8px !important; /* Compact padding */
        min-height: auto !important; /* Let content determine height */
    }
    
    /* Reduce font sizes within pricing cards for mobile 2x2 grid */
    .pricing-header {
        margin-bottom: 4px !important; /* Much smaller margin */
    }
    
    .pricing-header h3 {
        font-size: 0.85rem !important; /* Smaller to fit grid */
        margin-bottom: 2px !important;
    }
    
    .price {
        font-size: 1rem !important; /* Smaller price */
        margin-bottom: 2px !important;
    }
    
    .price span {
        font-size: 0.7rem !important; /* Smaller /month text */
    }
    
    .pricing-features {
        margin: 4px 0 !important; /* Reduced margins */
    }
    
    .pricing-features li {
        font-size: 0.65rem !important; /* Smaller text */
        padding: 1px 0 !important;
        line-height: 1.2 !important;
    }
    
    /* Mobile-specific button sizing for 2x2 grid */
    .pricing-card .btn {
        font-size: 0.7rem !important; /* Smaller button text */
        padding: 4px 8px !important; /* Compact button padding */
        margin-top: 4px !important;
    }
    
    .elite-buttons .btn,
    .premium-buttons .btn {
        font-size: 0.65rem !important; /* Even smaller for dual buttons */
        padding: 3px 6px !important;
    }
    
    .elite-buttons,
    .premium-buttons {
        gap: 4px !important; /* Smaller gap between buttons */
        flex-direction: column !important; /* Stack buttons vertically */
    }
    
    .elite-buttons {
        gap: 4px !important; /* Proportional gap between buttons */
        margin-top: 4px !important; /* Proportional margin above buttons */
    }
    
    /* Adjust content positioning for cards with badges */
    .pricing-card.featured .pricing-header,
    .pricing-card.premium .pricing-header {
        margin-top: 15px !important; /* Proportional margin below badge */
    }
    
    /* Mobile-specific badge adjustments */
    .featured-badge,
    .premium-badge {
        font-size: 0.65rem !important; /* Smaller but readable */
        padding: 4px 12px !important; /* Proportional padding */
    }
    
    /* Override featured and premium card transforms on mobile to ensure consistent width */
    .pricing-card.featured {
        transform: none !important; /* Remove scale transform on mobile */
    }
    
    .pricing-card.premium {
        transform: none !important; /* Remove scale transform on mobile */
    }
    
    /* Override hover effects on mobile to prevent width changes */
    .pricing-card:hover {
        transform: translateY(-8px) !important; /* Keep vertical movement but remove scale */
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px) !important; /* Keep vertical movement but remove scale */
    }
    
    .pricing-card.premium:hover {
        transform: translateY(-5px) !important; /* Keep vertical movement but remove scale */
    }
    
    /* Premium box text styling for mobile - make all text bold for better readability */
    .pricing-card.premium h3,
    .pricing-card.premium .price,
    .pricing-card.premium .pricing-features li {
        font-weight: 800 !important; /* Extra bold for better readability against translucent background */
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
        justify-items: center !important;
        text-align: center !important;
    }
    
    .about-text {
        text-align: center !important;
        width: 100% !important;
    }
    
    .about-visual {
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .about-highlights {
        grid-template-columns: repeat(2, 1fr) !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    /* About page responsive adjustments - already handled in medium breakpoint */
}

/* === CONTACT PAGE === */
.contact-hero {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    background: #0f172a;
    z-index: 1;
    padding-top: 25vh;
}

.contact-hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    max-width: 1200px;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.contact-hero-content p {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
    line-height: 1.4;
    position: relative;
    z-index: 10;
    white-space: nowrap;
}

.contact-details-overlay {
    background: url('images/contact-details.png') center/cover no-repeat;
    padding: 30px 80px 30px 20px;
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(var(--blur-radius));
    z-index: 2;
    max-width: 900px;
    min-height: 250px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.contact-details-overlay:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-details-overlay h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 25%, #f7931e 50%, #ea580c 75%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

/* Ensure all text in contact details is readable over background image */
.contact-details-overlay h3,
.contact-details-overlay p {
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
    align-items: flex-start;
    margin-bottom: -20px;
}

.contact-item {
    text-align: left;
}

.contact-item h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 25%, #f7931e 50%, #ea580c 75%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-item p {
    font-size: 1.2rem;
    color: #00ffff;
    font-weight: 500;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Secondary contact details overlay */
.contact-details-overlay-secondary {
    background: rgba(15, 23, 42, 0.8);
    padding: 20px 20px 20px 20px;
    border-radius: var(--radius-lg);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(var(--blur-radius));
    z-index: 2;
    max-width: 675px;
    height: 100px; /* Reduced height for compact layout */
    margin: 75px auto 0 auto; /* 1 inch gap = 96px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.contact-details-overlay-secondary:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-details-overlay-secondary h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 25%, #f7931e 50%, #ea580c 75%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.contact-details-overlay-secondary p {
    font-size: 0.7rem;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 3;
}

.contact-details-overlay-secondary p:last-child {
    margin-bottom: 0;
}

/* === CONTACT PAGE RESPONSIVE === */
@media (max-width: 768px) {
    .contact-hero {
        height: 100vh !important;
        min-height: 100vh;
        padding: 20px;
        padding-top: 15vh;
    }
    
    .contact-hero-content {
        margin: 0 0 40px 0 !important;
        text-align: center !important;
        max-width: 100% !important;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
        padding: 0 10px !important;
    }
    
    .contact-hero-content p {
        font-size: 1.3rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.4 !important;
        padding: 0 10px !important;
    }
    
    .contact-details-overlay {
        margin: 0 20px;
        padding: 30px 20px;
        max-width: calc(100% - 40px);
    }
    
    .contact-details-overlay h2 {
        font-size: 2rem !important;
    }
    
    .contact-item h3 {
        font-size: 1.3rem !important;
    }
    
    .contact-item p {
        font-size: 1.1rem !important;
    }
    
    .contact-details-overlay-secondary {
        margin: 96px 20px 0 20px;
        padding: 30px 20px;
        max-width: calc(75% - 40px);
    }
    
    .contact-details-overlay-secondary h2 {
        font-size: 2rem !important;
    }
    
    .contact-details-overlay-secondary p {
        font-size: 0.7rem !important;
        margin-bottom: 3px !important;
    }
}

/* === CONTACT PAGE SMALL MOBILE === */
@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        padding: 0 15px !important;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        padding: 0 15px !important;
    }
    
    .contact-details-overlay {
        margin: 0 15px;
        padding: 25px 15px;
        max-width: calc(100% - 30px);
    }
    
    .contact-details-overlay h2 {
        font-size: 1.8rem !important;
    }
    
    .contact-item h3 {
        font-size: 1.2rem !important;
    }
    
    .contact-item p {
        font-size: 1rem !important;
    }
    
    .contact-details-overlay-secondary {
        margin: 96px 15px 0 15px;
        padding: 25px 15px;
        max-width: calc(75% - 30px);
    }
    
    .contact-details-overlay-secondary h2 {
        font-size: 1.8rem !important;
    }
    
    .contact-details-overlay-secondary p {
        font-size: 0.65rem !important;
        margin-bottom: 2px !important;
    }
}

/* === MOBILE BROWSER UI ACCOUNTING === */
@media (max-width: 768px) {
    /* Account for mobile browser bars using dynamic viewport units if supported */
    @supports (height: 100dvh) {
        .hero {
            min-height: 100dvh !important;
        }
    }
    /* Fallback for older browsers */
    @supports not (height: 100dvh) {
        .hero {
            min-height: calc(100vh - env(safe-area-inset-bottom)) !important;
        }
    }
}

/* === ULTRA-SMALL SCREENS OPTIMIZATION === */
@media (max-width: 480px) {
    .hero {
        padding-top: 8vh !important;
        padding-bottom: 120px !important;
        background-position: top center !important;
    }
    
    /* Ultra-small mobile pricing section fixes */
    .pricing .pricing-main-title {
        font-size: 1.7rem !important; /* Match features and performance section title size on ultra-small mobile (480px) */
        margin-bottom: 30px !important; /* Increased gap between title and pricing cards for ultra-small screens */
        margin-top: 15px !important; /* Reduced margin for ultra-small screens */
        text-align: center !important; /* Center the title */
        max-width: var(--width-wider-ultra-small) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 3px !important; /* Reduced gap for ultra-small mobile */
    }
    
    /* Ultra-small mobile title - show mobile title, hide desktop title */
    .pricing .desktop-title {
        display: none !important;
    }
    
    .pricing .mobile-title {
        display: inline !important; /* Display as single line */
        text-align: center !important;
    }
    
    /* Ultra-small mobile pricing title lines - match features section exactly */
    .pricing .title-line-1,
    .pricing .title-line-2 {
        font-size: 1.7rem !important;
    }
    
    .pricing .title-line-1 {
        font-weight: 800 !important;
    }
    
    /* Add space between title lines when displayed inline */
    .pricing .title-line-1::after {
        content: " ";
    }
    
    .pricing .title-line-2 {
        font-weight: 700 !important;
    }
    
    /* Ultra-small mobile pricing button reductions */
    .pricing-card .btn {
        margin-top: 3px !important; /* Proportional margin above buttons for ultra-small */
    }
    
    .elite-buttons {
        gap: 3px !important; /* Proportional gap between buttons for ultra-small */
        margin-top: 3px !important; /* Proportional margin above buttons for ultra-small */
    }
    
    /* Features title - match hero section exactly */
    .title-line-1,
    .title-line-2 {
        font-size: 1.7rem !important;
    }

    /* Ultra-small mobile feature cards - even more compact */
    .feature-card {
        max-width: var(--width-wider-ultra-small) !important;
        padding: 15px 10px !important;
        min-height: 110px !important;
    }

    .feature-card h3 {
        font-size: 0.95rem !important;
        margin-bottom: 8px !important;
    }

    .feature-card p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }

    /* Ultra-small mobile quote boxes - even more compact */
    .quote-item {
        max-width: none !important; /* Let grid control the width */
        padding: 15px 10px !important;
    }

    .quote-text {
        font-size: 0.95rem !important;
        margin-bottom: 6px !important;
        line-height: 1.2 !important;
    }

    .quote-author {
        font-size: 0.7rem !important;
    }

    /* Adjust gaps for ultra-small screens */
    .features-grid {
        gap: 15px !important;
    }

    .quotes-section {
        gap: 15px !important;
        margin-top: 20px !important;
        margin-bottom: 0 !important; /* Removed - now using section padding instead */
        max-width: none !important; /* Remove desktop constraint */
        display: grid !important;
        grid-template-columns: 1fr !important; /* 1 column */
        grid-template-rows: repeat(2, auto) !important; /* 2 rows */
    }

    /* Ultra-small mobile performance section fixes */
    .performance .outperform-main-title {
        font-size: 1.7rem !important; /* Match hero section title size on ultra-small mobile (480px) */
        margin-bottom: 2px !important; /* Even further reduced gap for ultra-small screens */
        text-align: center !important; /* Center the title */
        max-width: var(--width-wider-ultra-small) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .performance-metrics-title h2 {
        font-size: 1.7rem !important; /* Match other section titles on ultra-small mobile */
    }
    
    .performance-metrics-title {
        margin-bottom: 20px !important;
        text-align: center !important; /* Center on ultra-small mobile for readability */
    }

    /* Add bottom spacing to match section 2 for ultra-small mobile */
    .performance {
        padding: var(--section-padding-ultra-small) !important; /* Consistent padding for ultra-small mobile */
    }

    .about-main-title {
        margin-bottom: 0 !important; /* Remove negative margin on ultra-small mobile */
        text-align: center !important; /* Center the title container */
    }
    
    /* About page sections - ultra-small mobile */
    .about-section-2,
    .about-section-3,
    .about-section-4,
    .about-section-5,
    .about-section-6,
    .about-section-7,
    .about-section-8,
    .about-section-9 {
        padding: var(--section-padding-ultra-small) !important; /* Match homepage sections 2-4 ultra-small mobile padding */
    }
    
    /* Legals sections - ultra-small mobile */
    .legals-section-1,
    .legals-section-2,
    .legals-section-3 {
        padding: var(--section-padding-ultra-small) !important;
    }
    
    /* About page text boxes - ultra-small mobile */
    .about-section-2 .about-content-box,
    .about-section-3 .about-content-box,
    .about-section-4 .about-content-box,
    .about-section-5 .about-content-box,
    .about-section-6 .about-content-box,
    .about-section-7 .about-content-box,
    .about-section-8 .about-content-box,
    .about-section-9 .about-content-box {
        max-width: var(--width-wider-ultra-small) !important;
        margin: 0 auto !important;
    }
    
    /* About page text - ultra-small mobile */
    .about-section-2 .about-content-box p,
    .about-section-3 .about-content-box p,
    .about-section-4 .about-content-box p,
    .about-section-5 .about-content-box p,
    .about-section-6 .about-content-box p,
    .about-section-7 .about-content-box p,
    .about-section-8 .about-content-box p,
    .about-section-9 .about-content-box p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }
    
    /* Legal disclaimer and terms of service - ultra-small mobile */
    .legal-disclaimer-box p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }
    
    .legal-disclaimer-box ul li,
    .legal-disclaimer-box ol li {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
    }
    
    /* About page text box titles - ultra-small mobile */
    .about-section-2 .about-content-box h3,
    .about-section-3 .about-content-box h3,
    .about-section-4 .about-content-box h3,
    .about-section-5 .about-content-box h3,
    .about-section-6 .about-content-box h3,
    .about-section-7 .about-content-box h3,
    .about-section-8 .about-content-box h3,
    .about-section-9 .about-content-box h3,
    .legal-disclaimer-box h3 {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
    }
    
    /* Daily updates sections - ultra-small mobile zero scrolling */
    .daily-section-1 {
        padding: 10px 0 !important; /* Premium: extreme minimal */
        min-height: 100vh !important;
        height: 100vh !important;
        overflow: hidden !important;
    }

    .daily-section-2 {
        padding: 12px 0 !important; /* Elite: extreme minimal */
        min-height: 100vh !important;
        height: 100vh !important;
        overflow: hidden !important;
    }

    .daily-section-3 {
        padding: 15px 0 !important; /* Advanced: extreme minimal */
        min-height: 100vh !important;
        height: 100vh !important;
        overflow: hidden !important;
    }

    .daily-section-4 {
        padding: 20px 0 !important; /* Essential: extreme minimal */
        min-height: 100vh !important;
        height: 100vh !important;
        overflow: hidden !important;
    }
    
    /* Daily updates header spacing - ultra-small mobile */
    .daily-package-header {
        margin-bottom: 15px !important; /* Very tight for ultra-small */
    }

    .daily-section-1 .daily-package-title,
    .daily-section-2 .daily-package-title,
    .daily-section-3 .daily-package-title,
    .daily-section-4 .daily-package-title {
        margin-bottom: 8px !important; /* Minimal spacing for ultra-small */
        font-size: 2.8rem !important; /* Even larger for ultra-small prominence */
    }

    .daily-section-1 .daily-package-subtitle,
    .daily-section-2 .daily-package-subtitle,
    .daily-section-3 .daily-package-subtitle,
    .daily-section-4 .daily-package-subtitle {
        font-size: 1.4rem !important; /* Much smaller than title for clear hierarchy */
        line-height: 1.2 !important;
        max-width: 320px !important; /* Appropriate width */
        font-weight: 700 !important;
    }

    /* Daily section containers - remove extra padding for proper fit */
    .daily-section-1 .container,
    .daily-section-2 .container,
    .daily-section-3 .container,
    .daily-section-4 .container {
        padding-top: 0 !important; /* Remove extra container padding */
        padding-bottom: 0 !important; /* Remove extra container padding */
    }


    /* Daily Thumbnail Titles - Ultra-small Device (increased by 1 increment) */
    .daily-thumbnail-small h3 {
        font-size: 1rem !important; /* Increased by 1 increment for ultra-small */
        margin-top: -1px !important;
        margin-bottom: 3px !important;
        line-height: 1.1 !important;
    }
    
    
    
    
    /* Ultra-small mobile Grid Layouts - All content visible on screen */
    /* Premium Package (6 boxes): 2 columns × 3 rows (keep for ultra-small) */
    body .daily-section-1 .daily-thumbnails-grid.premium-package-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columns */
        gap: 6px !important; /* Minimal gap for ultra-small */
        max-width: 100% !important;
        padding: 0 8px !important; /* Minimal horizontal padding */
    }

    /* Elite Package (5 boxes): 2 columns × 3 rows (keep for ultra-small) */
    body .daily-section-2 .daily-thumbnails-grid.full-package-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columns */
        gap: 6px !important; /* Minimal gap for ultra-small */
        max-width: 100% !important;
        padding: 0 8px !important; /* Minimal horizontal padding */
    }

    /* Advanced Package (5 boxes): 2 columns (2×2 + 1 row) for ultra-small */
    body .daily-section-1 .daily-thumbnails-grid.advanced-package-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columns */
        gap: 6px !important; /* Minimal gap for ultra-small */
        max-width: 100% !important;
        padding: 0 8px !important; /* Minimal horizontal padding */
    }

    /* Essential Package (3 boxes): 1 column × 3 rows (keep single column for ultra-small) */
    body .daily-section-2 .daily-thumbnails-grid.lite-grid {
        grid-template-columns: 1fr !important; /* 1 column for ultra-small */
        gap: 6px !important; /* Minimal gap for ultra-small */
        max-width: 100% !important;
        padding: 0 8px !important; /* Minimal horizontal padding */
    }
    
    /* Override all desktop grid rules that use --daily-box-width - ultra-small mobile */
    .premium-package-grid,
    .full-package-grid,
    .advanced-package-grid,
    .lite-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }
    
    /* Reduce subtitle font sizes - ultra-small mobile */
    .daily-section-1 .daily-package-subtitle,
    .daily-section-2 .daily-package-subtitle,
    .daily-section-3 .daily-package-subtitle,
    .daily-section-4 .daily-package-subtitle {
        font-size: 0.8rem !important;
        font-weight: 600 !important;
    }

    .about-description {
        margin-top: 6px !important; /* Small gap between title and paragraph for ultra-small mobile */
        text-align: center !important; /* Center the paragraph text */
        max-width: var(--width-wider-ultra-small) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .about-description p {
        font-size: 0.9rem !important; /* Even smaller paragraph font size for ultra-small mobile */
    }

    .about-highlights {
        margin-top: 8px !important; /* Reduced gap between paragraph and first feature tile for ultra-small mobile */
    }

    /* Increase gap between feature tiles and FOI Index title for ultra-small mobile */
    .foi-index-title {
        margin-top: 12px !important; /* Reduced from 15px to save space */
    }

    /* Increase gap above FOI Master title to match FOI Index spacing for ultra-small mobile */
    .foi-master-title {
        margin-top: 6px !important; /* Reduced from 8px to save space */
    }
    
    /* FOI Sentiment title spacing for ultra-small mobile */
    .foi-sentiment-title {
        margin-top: 6px !important; /* Reduced from 8px to save space */
    }

    /* Reduce gap between FOI Index title and description text for ultra-small mobile */
    .strategy-title h3 {
        margin-bottom: -3px !important; /* Reduce gap between title and description */
        font-size: 1.4rem !important; /* Reduced by one increment from 1.6rem */
    }

    .strategy-description {
        margin-top: 2px !important; /* Reduce gap between title and description */
        margin-bottom: 12px !important; /* Add space below subtitle to push tiles lower */
        font-size: 0.9rem !important; /* Reduced by one increment from 1.0rem */
        background: var(--gradient-gold-mobile) !important; /* Subtle mobile gradient for descriptions only */
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important; /* Light shadow for mobile */
    }

    /* Reduce size of performance chart and stats boxes to match feature tiles for ultra-small mobile */
    .performance-thumbnail {
        max-width: 150px !important; /* Increased tile size from 135px */
        margin: 0 auto !important; /* Center the boxes */
        padding: 6px !important; /* Reduced padding for compact height - equal all around */
        height: auto !important; /* Override desktop height of 280px */
        min-height: auto !important; /* Remove any min-height constraints */
    }

    /* Make performance section highlight tiles match section 2 feature cards exactly for ultra-small mobile */
    .performance .highlight {
        max-width: var(--width-narrower-ultra-small) !important; /* Use narrower ultra-small width */
        padding: 6px 6px !important; /* Match section 2 ultra-small mobile feature-card padding */
        min-height: 110px !important; /* Match section 2 ultra-small mobile feature-card min-height */
        border-radius: 14px !important; /* Match section 2 feature-card border-radius */
        background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(51, 65, 85, 0.85) 100%) !important; /* Match section 2 background */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important; /* Match section 2 box-shadow */
        border: 1px solid rgba(255, 255, 255, 0.1) !important; /* Match section 2 border */
        backdrop-filter: blur(10px) !important; /* Match section 2 backdrop-filter */
        margin: 0 auto !important; /* Center the tiles */
        display: flex !important; /* Add flex structure */
        flex-direction: column !important; /* Stack vertically */
        align-items: center !important; /* Center horizontally */
        justify-content: center !important; /* Center vertically */
        text-align: center !important; /* Center text */
    }

    .highlight-number {
        font-size: 1.15rem !important; /* Increased by 1 more increment from 1.05rem */
        font-weight: 700 !important;
        margin-bottom: 8px !important; /* Match section 2 ultra-small mobile feature-card margin */
        color: #fbbf24 !important; /* Restored original yellow color */
        line-height: 1.3 !important; /* Match section 2 ultra-small mobile line-height */
    }

    .highlight-text {
        font-size: 0.95rem !important; /* Increased by 1 more increment from 0.85rem */
        font-weight: 700 !important; /* Made text bold */
        line-height: 1.3 !important;
        color: rgba(203, 213, 225, 0.9) !important; /* Match section 2 feature-card p color */
        text-transform: none !important; /* Remove uppercase */
        letter-spacing: normal !important; /* Remove letter-spacing */
    }
    
    .hero-subtitle p,
    .bullet-point {
        font-size: 1.0rem !important; /* One increment smaller (1.2rem → 1.0rem) */
        padding: 0 15px !important;
        line-height: 1.5 !important;
        font-weight: 700 !important;
        background: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #b91c1c 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        position: relative !important;
        z-index: 2 !important;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
        /* Ultra-small mobile animations with pronounced effects */
        opacity: 0;
        transform: translateX(-150px);
        transition: all 0.5s ease-out;
    }

    .bullet-point:nth-child(2) {
        transform: translateX(150px);
    }

    .bullet-point:nth-child(3) {
        transform: translateY(120px);
    }

    .bullet-point.animate {
        opacity: 1;
        transform: translateX(0);
    }

    .bullet-point:nth-child(2).animate {
        transform: translateX(0);
    }

    .bullet-point:nth-child(3).animate {
        transform: translateY(0);
    }
    
    
    /* About page hero - very small screens */
    .about-hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        padding: 0 15px !important;
    }
    
    .about-hero-content p {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        padding: 0 15px !important;
    }
    
    /* Daily Updates page hero - very small screens */
    .daily-hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        padding: 0 15px !important;
    }
    
    .daily-hero-content p {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        padding: 0 15px !important;
    }
    
    /* Daily Updates responsive adjustments - single column on mobile */
    .premium-package-grid {
        grid-template-columns: 1fr !important;
        gap: var(--daily-box-gap) !important;
        max-width: 100% !important;
    }
    
    .full-package-grid {
        grid-template-columns: 1fr !important;
        gap: var(--daily-box-gap) !important;
        max-width: 100% !important;
    }
    
    .daily-thumbnails-grid {
        grid-template-columns: 1fr;
    }
    
    .daily-thumbnails-grid.lite-grid {
        grid-template-columns: 1fr !important;
        gap: var(--daily-box-gap) !important;
        max-width: 100% !important;
    }
    
    /* Advanced Package grid - single column on very small screens */
    .daily-section-3 .daily-thumbnails-grid.advanced-package-grid {
        grid-template-columns: 1fr !important;
        gap: var(--daily-box-gap) !important;
        max-width: 100% !important;
    }
    
    
    
    }
    
    /* Ensure daily hero section maintains scroll behavior */
    .daily-hero {
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
    }
}

/* === SCROLL INDICATOR === */
body .scroll-indicator {
    position: fixed !important;
    right: 30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important; /* Small vertical gap between dots */
}

.scroll-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid rgba(245, 158, 11, 0.6);
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 8px; /* Small vertical gap between dots */
}

.scroll-dot.active {
    background: rgba(250, 204, 21, 0.9);
    border-color: rgba(250, 204, 21, 0.9);
    box-shadow: 0 0 8px rgba(250, 204, 21, 0.6);
}

.scroll-dot:hover {
    background: rgba(245, 158, 11, 0.8);
    border-color: rgba(245, 158, 11, 0.8);
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.5);
}

/* Hide scroll indicator on contact page */
body.contact-page .scroll-indicator {
    display: none;
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 768px) {
    body .scroll-indicator {
        right: 10px !important; /* Move closer to right edge on devices */
        gap: 20px !important; /* Small vertical gap between dots */
    }

    .scroll-dot {
        width: 8px;
        height: 8px;
        margin-bottom: 8px; /* Small vertical gap between dots on mobile */
    }
}

/* END OF CSS */

/* Gold gradient text (shared) */
.about-content-box h3,
.features h2,
.about-text h2,
.placeholder-content h2,
.contact-details-overlay h2,
.contact-item h3,
.contact-details-overlay-secondary h2,
.daily-thumbnail-large h3,
.daily-thumbnail-small h3,
.strategy-title h3,
.strategy-description {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold gradient text requiring !important */
.pricing .pricing-main-title,
.performance .outperform-main-title,
.performance-metrics-title h2 {
    background: var(--gradient-gold) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}