/* Our Story Page - Sportzey Brand Styling */

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Hide scrollbars but maintain scroll functionality */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

html::-webkit-scrollbar {
    display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}

body::-webkit-scrollbar {
    display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}

/* Hide scrollbars on all elements */
*::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

/* Specific scrollbar hiding for story navigation */
.story-nav::-webkit-scrollbar {
    display: none;
}

.nav-container::-webkit-scrollbar {
    display: none;
}

/* Sportzey Brand Colors & Design Language - Keep Original Beige */
:root {
    --primary-blue: #1b365d;
    --secondary-blue: #2d5aa0;
    --primary-beige: #f5f5dc;
    --secondary-beige: #e8e4c9;
    --accent-beige: #f0ecd6;
    --accent-orange: #ffa500;
    --accent-red: #dc3545;
    --text-dark: #2c3e50;
    --text-medium: #4a5568;
    --text-light: #718096;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-light: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-beige: linear-gradient(135deg, var(--primary-beige) 0%, var(--secondary-beige) 100%);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Base Typography - Keep Sleek Style */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--primary-beige);
}

/* Hero Title - Jersey Font Override */
.story-hero .hero-title {
    font-family: 'Jersey M54', 'Jersey25', 'Arial Black', sans-serif !important;
    color: #000000 !important;
    font-weight: 900 !important;
    text-shadow: none !important;
    -webkit-text-fill-color: #000000 !important;
}

/* Container and Layout Fixes */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    margin: 0 auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Hero Section - Keep Original Beige Branding */
.story-hero {
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.9) 0%, rgba(240, 236, 214, 0.9) 50%, rgba(232, 228, 201, 0.9) 100%), url('../images/our-story_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.story-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(27, 54, 93, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(27, 54, 93, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 8px 32px rgba(255, 255, 255, 0.8);
    line-height: 1.1;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.6);
}

.hero-accent {
    margin-top: 2rem;
}

.accent-image {
    display: none;
}

/* Story Navigation - Keep Original Style */
.story-nav {
    background: var(--primary-beige);
    border-bottom: 2px solid var(--secondary-beige);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(245, 245, 220, 0.95);
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    padding: 0 1rem;
}

.nav-item {
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    background: rgba(27, 54, 93, 0.05);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

/* Story Sections - Keep Original Beige Alternating but Improve Alignment */
.story-section {
    padding: 6rem 0;
    background: var(--primary-beige);
    position: relative;
    width: 100%;
}

.story-section:nth-child(even) {
    background: var(--accent-beige);
}

.story-section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(27, 54, 93, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(27, 54, 93, 0.02) 0%, transparent 50%);
    opacity: 1;
}

.story-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.title-accent {
    width: 80px;
    height: 5px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 3px;
}

.story-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: left;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    text-align: center;
    font-style: italic;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Market Stats - Improved Alignment */
.market-stats {
    margin: 3rem 0;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: rgba(245, 245, 220, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(232, 228, 201, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.stat-item.highlight {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-blue);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.stat-item.highlight .stat-number {
    color: var(--white);
}

.stat-label {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.stat-item.highlight .stat-label {
    color: var(--white);
}

.stat-note {
    font-size: 0.8rem;
    opacity: 0.7;
    font-style: italic;
    color: var(--text-light);
}

.market-insight {
    margin: 3rem 0;
}

.market-insight h3 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.market-insight p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Problem Section - Improved Layout */
.problem-story {
    margin: 2rem 0;
}

.problem-card {
    background: rgba(245, 245, 220, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(232, 228, 201, 0.6);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.problem-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(20px, -20px);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.problem-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.problem-expansion {
    margin: 2rem 0;
}

.problem-expansion p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Problem Grid - Enhanced Layout */
.bigger-problems {
    margin: 3rem 0;
}

.bigger-problems h3 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.problem-item {
    background: rgba(245, 245, 220, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(232, 228, 201, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.problem-item:hover::before {
    transform: scaleX(1);
}

.problem-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.problem-item h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.problem-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.cultural-shift {
    margin: 3rem 0;
}

.cultural-shift h3 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cultural-shift p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Solution Framework - Enhanced Layout */
.vision-statement {
    margin: 2rem 0;
}

.solution-framework {
    margin: 3rem 0;
}

.solution-framework h3 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.solution-item {
    background: rgba(245, 245, 220, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(232, 228, 201, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-item:hover::before {
    transform: scaleX(1);
}

.solution-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.solution-item h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.solution-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.market-opportunity {
    margin: 3rem 0;
}

.market-opportunity h3 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.market-opportunity p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Story Cards - Keep Original Style but Fix Readability */
.story-card {
    background: rgba(245, 245, 220, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(232, 228, 201, 0.6);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 1.2rem;
    box-shadow: 0 4px 20px rgba(27, 54, 93, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(27, 54, 93, 0.1);
}

.icon-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(27, 54, 93, 0.2));
}

.card-content p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Highlight Box - Keep Original Style but Fix Readability */
.highlight-box {
    background: var(--gradient-beige);
    color: var(--primary-blue);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: var(--shadow-large);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary-blue);
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(27,54,93,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    position: relative;
    z-index: 2;
    color: var(--primary-blue);
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

/* Journey Timeline - Keep Original Style */
.journey-timeline {
    margin: 3rem 0;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-medium);
    flex-shrink: 0;
    z-index: 2;
}

.timeline-content {
    background: rgba(245, 245, 220, 0.9);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(232, 228, 201, 0.6);
    margin: 0 2rem;
    flex: 1;
    max-width: 300px;
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.timeline-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Flow Diagram - Keep Original Style */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.flow-step {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    min-width: 120px;
}

.step-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.flow-step p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 900;
}

/* Journey Cards - Keep Original Style */
.journey-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.journey-card {
    background: rgba(245, 245, 220, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(232, 228, 201, 0.6);
    transition: all 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.card-header h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
}

.card-icon {
    font-size: 2rem;
}

.card-insight {
    background: var(--accent-beige);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    border-left: 4px solid var(--primary-blue);
}

.card-insight p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

/* Breakthrough Moment - Keep Original Beige Style */
.breakthrough-moment {
    background: var(--gradient-beige);
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: var(--shadow-large);
    border: 2px solid var(--secondary-beige);
}

.moment-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.breakthrough-moment h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.breakthrough-moment p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Idea Section - Keep Original Style */
.idea-question {
    background: rgba(27, 54, 93, 0.05);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-blue);
}

.idea-question h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.question-list {
    list-style: none;
    padding: 0;
}

.question-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
    color: var(--text-dark);
}

.question-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 900;
    font-size: 1.2rem;
}

.idea-answer {
    margin: 2rem 0;
}

.goal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.goal-item {
    background: rgba(245, 245, 220, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(232, 228, 201, 0.6);
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.goal-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.goal-item p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Validation Stats - Keep Original Style */
.validation-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(245, 245, 220, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(232, 228, 201, 0.6);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.stat-card.highlight {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-blue);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.stat-card.highlight .stat-number {
    color: var(--white);
}

.stat-label {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.stat-card.highlight .stat-label {
    color: var(--white);
}

.stat-note {
    font-size: 0.8rem;
    opacity: 0.7;
    font-style: italic;
    color: var(--text-light);
}

/* Future Section */
.future-approach {
    background: rgba(27, 54, 93, 0.05);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-blue);
}

.future-approach h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}

.challenges-section {
    margin: 3rem 0;
}

.challenges-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}

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

.challenge-item {
    background: rgba(245, 245, 220, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(232, 228, 201, 0.6);
    transition: all 0.3s ease;
}

.challenge-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.challenge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.challenge-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* James Clear Quote */
.james-clear-quote {
    background: var(--gradient-beige);
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: var(--shadow-large);
    border: 2px solid var(--secondary-beige);
}

.james-clear-quote blockquote {
    margin: 0;
}

.james-clear-quote p {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.4;
}

.james-clear-quote cite {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Why Sharing */
.why-sharing {
    margin: 3rem 0;
}

.why-sharing h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
}

.sharing-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.reason-item {
    background: rgba(245, 245, 220, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(232, 228, 201, 0.6);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.reason-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.reason-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Discovery Hope */
.discovery-hope {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: var(--shadow-large);
}

.discovery-hope p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Story Closing */
.story-closing {
    text-align: center;
    margin: 3rem 0;
}

.story-closing p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.closing-cta {
    background: rgba(27, 54, 93, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--secondary-beige);
}

.closing-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Call to Action Section - Keep Original Beige Style */
.story-cta {
    background: var(--gradient-beige);
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.story-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(27, 54, 93, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(27, 54, 93, 0.02) 0%, transparent 50%);
    opacity: 1;
}

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

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles - Keep Original Sleek Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(27, 54, 93, 0.2),
        0 8px 16px rgba(27, 54, 93, 0.15);
}

.btn-secondary {
    background: var(--gradient-beige);
    color: var(--primary-blue);
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(27, 54, 93, 0.15),
        0 8px 16px rgba(27, 54, 93, 0.1);
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* Dashboard Integration - Enhanced Layout */
.dashboard-section {
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(245, 245, 220, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(232, 228, 201, 0.6);
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.dashboard-section h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-align: center;
}

.dashboard-intro {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Chart Containers - Enhanced Layout */
.chart-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--accent-beige);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.chart-container:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.chart-container h4 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.chart-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    text-align: center;
}

/* Chart Iframe Styling - Enhanced Responsive Design */
.chart-iframe {
    margin: 0.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 100%;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.chart-frame {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100% !important;
    height: 400px !important;
    display: block;
    position: relative;
    max-width: 100%;
    min-width: 100%;
}

.chart-frame:hover {
    box-shadow: var(--shadow-medium);
}

/* Download Stats - Enhanced Layout */
.download-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 0 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.download-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-item.fantasy {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.download-item.streaming {
    background: var(--accent-beige);
    color: var(--text-dark);
    border: 2px solid var(--primary-blue);
}

.download-item.news {
    background: var(--gradient-beige);
    color: var(--text-dark);
    border: 2px solid var(--secondary-blue);
}

.download-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.download-item:hover::before {
    transform: scaleX(1);
}

.download-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.download-number {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.download-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Key Insights - Enhanced Layout */
.key-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(245, 245, 220, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(232, 228, 201, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.insight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.insight-item:hover::before {
    transform: scaleY(1);
}

.insight-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.insight-icon {
    font-size: 2rem;
    flex-shrink: 0;
    color: var(--primary-blue);
}

.insight-content h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.insight-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
}

/* ===================================
   MOBILE RESPONSIVENESS
   =================================== */
@media (max-width: 768px) {
    /* Container adjustments for mobile */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero section mobile adjustments */
    .story-hero {
        padding: 3rem 0 2rem 0;
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem) !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-accent {
        margin-top: 1.5rem;
    }
    
    .accent-image {
        max-width: 80%;
        height: auto;
    }
    
    /* Story navigation mobile adjustments */
    .story-nav {
        padding: 1rem 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-container {
        padding: 0 1rem;
        gap: 0.75rem;
        justify-content: flex-start;
        min-width: max-content;
    }
    
    .nav-item {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    /* Story sections mobile adjustments */
    .story-section {
        padding: 2.5rem 0;
    }
    
    .story-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .title-accent {
        width: 60px;
        height: 4px;
        margin: 0 auto;
    }
    
    .story-text {
        padding: 0 0.5rem;
    }
    
    .lead-text {
        font-size: clamp(1rem, 3.5vw, 1.2rem);
        margin-bottom: 2rem;
        text-align: center;
    }
    
    /* Dashboard section mobile adjustments - Premium Feel */
    .dashboard-section {
        margin: 1rem 0.5rem;
        padding: 1.5rem 1rem;
        border-radius: 20px;
        background: rgba(245, 245, 220, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 
            0 20px 40px rgba(27, 54, 93, 0.1),
            0 8px 16px rgba(27, 54, 93, 0.05);
        border: 1px solid rgba(232, 228, 201, 0.8);
        width: 90%;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .dashboard-section h3 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
        font-weight: 800;
        color: var(--primary-blue);
        letter-spacing: 0.5px;
    }
    
    .dashboard-intro {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 3rem;
        color: var(--text-medium);
        font-style: italic;
        line-height: 1.6;
        padding: 0 1rem;
    }
    
    /* Chart containers mobile optimization - Premium Feel */
    .chart-container {
        margin-bottom: 2rem;
        padding: 1rem 0.5rem;
        border-radius: 18px;
        position: relative;
        overflow: hidden;
        background: var(--accent-beige);
        box-shadow: 
            0 10px 30px rgba(27, 54, 93, 0.08),
            0 4px 12px rgba(27, 54, 93, 0.04);
        border: 1px solid rgba(232, 228, 201, 0.6);
        transition: all 0.3s ease;
        width: 100%;
        max-width: 100%;
    }
    
    .chart-container:hover {
        transform: translateY(-2px);
        box-shadow: 
            0 15px 40px rgba(27, 54, 93, 0.12),
            0 6px 16px rgba(27, 54, 93, 0.06);
    }
    
    .chart-container h4 {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 1rem;
        font-weight: 700;
        color: var(--primary-blue);
        letter-spacing: 0.3px;
    }
    
    .chart-description {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
        line-height: 1.6;
        color: var(--text-light);
        font-style: italic;
        padding: 0 0.5rem;
    }
    
    /* Chart iframe mobile optimization - Premium Feel */
    .chart-iframe {
        margin: 0;
        border-radius: 14px;
        overflow: hidden;
        position: relative;
        width: 100%;
        max-width: 100%;
        background: #ffffff;
        border: 1px solid rgba(232, 228, 201, 0.8);
        box-shadow: 
            0 8px 25px rgba(27, 54, 93, 0.06),
            0 3px 10px rgba(27, 54, 93, 0.03);
    }
    
    .chart-frame {
        width: 100% !important;
        height: 300px !important;
        border-radius: 12px;
        display: block;
        position: relative;
        transform: none;
        transform-origin: center;
        max-width: 100%;
        min-width: 100%;
    }
    
    /* Download stats mobile adjustments */
    .download-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .download-item {
        padding: 1rem;
        text-align: center;
        border-radius: 12px;
    }
    
    .download-number {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .download-label {
        font-size: 0.9rem;
    }
    
    /* Market insight mobile adjustments - Premium Feel */
    .market-insight {
        margin-top: 2rem;
        padding: 2rem 1rem;
        border-radius: 20px;
        background: rgba(245, 245, 220, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 10px 30px rgba(27, 54, 93, 0.08);
        border: 1px solid rgba(232, 228, 201, 0.6);
    }
    
    .market-insight h3 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
        color: var(--primary-blue);
        font-weight: 800;
        letter-spacing: 0.5px;
    }
    
    .market-insight p {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 2rem;
        line-height: 1.7;
        color: var(--text-medium);
        padding: 0 0.5rem;
    }
    
    /* Key insights mobile adjustments - Premium Feel */
    .key-insights {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
        padding: 0 0.5rem;
    }
    
    .insight-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 2rem 1.5rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(27, 54, 93, 0.06);
        border: 1px solid rgba(232, 228, 201, 0.8);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .insight-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .insight-item:hover::before {
        transform: scaleX(1);
    }
    
    .insight-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(27, 54, 93, 0.12);
    }
    
    .insight-icon {
        font-size: 3rem;
        margin-bottom: 0.5rem;
        color: var(--primary-blue);
        filter: drop-shadow(0 2px 4px rgba(27, 54, 93, 0.1));
    }
    
    .insight-content h4 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        color: var(--primary-blue);
        font-weight: 700;
        letter-spacing: 0.3px;
    }
    
    .insight-content p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-dark);
        margin: 0;
        padding: 0 0.5rem;
    }
}

@media (max-width: 600px) {
    /* Medium mobile adjustments - Premium Feel */
    .market-insight {
        margin-top: 1.5rem;
        padding: 1.75rem 1rem;
        border-radius: 18px;
    }
    
    .market-insight h3 {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }
    
    .market-insight p {
        font-size: 1.05rem;
        margin-bottom: 1.75rem;
        padding: 0 0.5rem;
    }
    
    .key-insights {
        gap: 1.75rem;
        margin: 1.75rem 0;
        padding: 0 0.5rem;
    }
    
    .insight-item {
        padding: 1.75rem 1.25rem;
        border-radius: 18px;
    }
    
    .insight-icon {
        font-size: 2.75rem;
    }
    
    .insight-content h4 {
        font-size: 1.25rem;
    }
    
    .insight-content p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .container {
        padding: 0 0.75rem;
    }
    
    .story-hero {
        padding: 2.5rem 0 1.5rem 0;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2rem) !important;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }
    
    .accent-image {
        max-width: 90%;
    }
    
    /* Story navigation extra small adjustments */
    .nav-container {
        padding: 0 0.75rem;
        gap: 0.5rem;
    }
    
    .nav-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Story sections extra small adjustments */
    .story-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: clamp(1.6rem, 6vw, 1.8rem);
    }
    
    .lead-text {
        font-size: clamp(0.95rem, 3vw, 1rem);
    }
    
    /* Dashboard section extra small adjustments - Premium Feel */
    .dashboard-section {
        margin: 2.5rem 0.75rem;
        padding: 2.5rem 1.5rem;
        border-radius: 18px;
        background: rgba(245, 245, 220, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 
            0 15px 35px rgba(27, 54, 93, 0.1),
            0 6px 15px rgba(27, 54, 93, 0.05);
        border: 1px solid rgba(232, 228, 201, 0.8);
    }
    
    .dashboard-section h3 {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
        font-weight: 800;
        color: var(--primary-blue);
        letter-spacing: 0.4px;
    }
    
    .dashboard-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        color: var(--text-medium);
        font-style: italic;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
    
    /* Chart containers extra small adjustments - Premium Feel */
    .chart-container {
        padding: 1.75rem 1rem;
        margin-bottom: 2.5rem;
        position: relative;
        overflow: hidden;
        background: var(--accent-beige);
        box-shadow: 
            0 8px 25px rgba(27, 54, 93, 0.08),
            0 3px 10px rgba(27, 54, 93, 0.04);
        border: 1px solid rgba(232, 228, 201, 0.6);
        border-radius: 16px;
    }
    
    .chart-container h4 {
        font-size: 1.3rem;
        text-align: center;
        font-weight: 700;
        color: var(--primary-blue);
        letter-spacing: 0.2px;
        margin-bottom: 0.75rem;
    }
    
    .chart-description {
        font-size: 0.95rem;
        text-align: center;
        color: var(--text-light);
        font-style: italic;
        line-height: 1.5;
        padding: 0 0.25rem;
    }
    
    .chart-iframe {
        margin: 0;
        position: relative;
        width: 100%;
        background: #ffffff;
        border: 1px solid rgba(232, 228, 201, 0.8);
        box-shadow: 
            0 6px 20px rgba(27, 54, 93, 0.06),
            0 2px 8px rgba(27, 54, 93, 0.03);
        border-radius: 12px;
        overflow: hidden;
    }
    
    .chart-frame {
        width: 100% !important;
        height: 250px !important;
        display: block;
        position: relative;
        transform: none;
        border-radius: 12px;
    }
    
    /* Problem Card Mobile Enhancements */
    .problem-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 20px;
    }
    
    .problem-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .problem-card p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0;
    }
    
    .card-icon {
        flex-shrink: 0;
        margin-bottom: 0.5rem;
        padding: 1.2rem;
    }
    
    .icon-image {
        width: 80px;
        height: 80px;
        object-fit: contain;
        filter: drop-shadow(0 4px 15px rgba(27, 54, 93, 0.2));
    }
    
    .problem-expansion {
        margin: 1.5rem 0;
        padding: 0 0.5rem;
    }
    
    .problem-expansion p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .highlight-box {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
        border-radius: 16px;
    }
    
    .highlight-text {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    /* Download stats extra small adjustments */
    .download-item {
        padding: 0.75rem;
    }
    
    .download-number {
        font-size: 1.3rem;
    }
    
    .download-label {
        font-size: 0.85rem;
    }
    
    /* Market insight extra small adjustments - Premium Feel */
    .market-insight {
        padding: 1.5rem 0.75rem;
        margin-top: 1.5rem;
        border-radius: 18px;
    }
    
    .market-insight h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        letter-spacing: 0.3px;
    }
    
    .market-insight p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 0.25rem;
    }
    
    /* Key insights extra small adjustments - Premium Feel */
    .key-insights {
        gap: 1.25rem;
        margin: 1.5rem 0;
        padding: 0 0.25rem;
    }
    
    .insight-item {
        padding: 1.5rem 1rem;
        border-radius: 18px;
        gap: 0.75rem;
    }
    
    .insight-icon {
        font-size: 2.5rem;
        margin-bottom: 0.25rem;
    }
    
    .insight-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.2px;
    }
    
    .insight-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 0.25rem;
    }
    
    /* Problem Card Extra Small Mobile Enhancements */
    .problem-card {
        padding: 1.5rem 1rem;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .problem-card h3 {
        font-size: 1.3rem;
    }
    
    .problem-card p {
        font-size: 0.95rem;
    }
    
    .card-icon {
        padding: 1rem;
    }
    
    .icon-image {
        width: 70px;
        height: 70px;
    }
    
    .highlight-box {
        padding: 1.5rem 1rem;
    }
    
    .highlight-text {
        font-size: 1.1rem;
    }
}

/* ===================================
   CHART LOADING OPTIMIZATION FOR MOBILE
   =================================== */
@media (max-width: 768px) {
    /* Ensure charts load properly on mobile */
    .chart-iframe {
        position: relative;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        min-height: 300px;
        width: 100%;
        overflow: hidden;
    }
    
    .chart-frame {
        position: relative;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 300px !important;
        border: none;
        border-radius: 12px;
        display: block;
    }
    
    /* Loading state for charts */
    .chart-iframe::before {
        content: 'Loading chart...';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #6c757d;
        font-size: 0.9rem;
        z-index: 1;
    }
    
    .chart-iframe.loaded::before {
        display: none;
    }
    
    /* Fallback for iframe loading issues */
    .chart-iframe.error::before {
        content: 'Chart unavailable on this device. Please view on desktop.';
        color: #dc3545;
        text-align: center;
        padding: 0 1rem;
        line-height: 1.4;
    }
}

/* ===================================
   ADDITIONAL RESPONSIVE BREAKPOINTS FOR CHARTS
   =================================== */
@media (max-width: 1024px) {
    .chart-container {
        margin: 2.5rem 0;
        padding: 1.75rem;
    }
    
    .chart-frame {
        height: 350px !important;
    }
}

@media (max-width: 600px) {
    .chart-container {
        margin: 2rem 0;
        padding: 1.5rem 1rem;
    }
    
    .chart-frame {
        height: 280px !important;
    }
}

@media (max-width: 400px) {
    .chart-container {
        margin: 1.5rem 0;
        padding: 1.25rem 0.75rem;
    }
    
    .chart-frame {
        height: 220px !important;
    }
}

/* ===================================
   CHART CONTAINER STABILITY FIXES
   =================================== */
.chart-container {
    box-sizing: border-box;
    max-width: 100%;
}

.chart-iframe {
    box-sizing: border-box;
    max-width: 100%;
}

.chart-frame {
    box-sizing: border-box;
    max-width: 100%;
}


