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

:root {
    /* Brand Colors */
    --color-primary-blue: #236092;
    --color-dark-blue: #082036;
    --color-red: #d8322b;
    --color-dark-red: #a73439;
    --color-gold: #eba900;
    --color-light-gold: #f3cb66;
    --color-pale-gold: #fae9bf;

    /* Text Colors */
    --color-black: #000000;
    --color-near-black: #231f20;
    --color-dark-brown: #282223;
    --color-gray-dark: #53575a;
    --color-gray-medium: #939697;
    --color-gray-light-medium: #b6b8b7;

    /* Background Colors */
    --color-white: #ffffff;
    --color-bg-light: #f5f5f5;
    --color-gray-100: #f7f7f7;
    --color-gray-200: #f2f2f2;
    --color-gray-300: #ededed;
    --color-gray-400: #e8e8e8;
    --color-gray-500: #dbdbdb;
    --color-gray-600: #cfcfcf;
    --color-gray-700: #c7c7c7;
    --color-gray-800: #b3b3b3;
    --color-gray-900: #989a9c;
    --color-gray-950: #9e9e9e;

    /* Typography */
    --font-primary: Verdana, sans-serif;
    --font-secondary: Helvetica, Arial, sans-serif;

    --font-size-hero: 45px;
    --font-size-body-large: 35px;
    --font-size-large: 18px;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-tiny: 11px;

    --line-height-hero: 54.69px;
    --line-height-tight: 40px;
    --line-height-relaxed: 38px;
    --line-height-base: 25px;
    --line-height-small: 18px;
    --line-height-mini: 16.1px;

    --letter-spacing-xtight: -4.5px;
    --letter-spacing-tight: -2.25px;
    --letter-spacing-small: -0.9px;
    --letter-spacing-mini: -0.8px;

    /* Effects */
    --border-radius: 10px;
    --shadow-standard: 0 4px 4px rgba(0, 0, 0, 0.25);
    --overlay-dark: rgba(0, 0, 0, 0.20);

    /* Stroke Widths */
    --stroke-thin: 1px;
    --stroke-light: 1.75px;
    --stroke-medium: 4px;
    --stroke-bold: 7px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-gray-dark);
    margin: 0;
    padding: 0;
}

/* Smooth scrolling handled by Lenis */
@media (prefers-reduced-motion: no-preference) {
    html {
        /* scroll-behavior: smooth; - Disabled in favor of Lenis */
    }
}

html {
    margin: 0;
    padding: 0;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-primary-blue) 100%);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Paid Content Banner */
.paid-content-banner {
    background-color: var(--color-white);
    color: var(--color-gray-dark);
    font-family: var(--font-primary);
    font-size: var(--font-size-tiny);
    font-weight: 400;
    text-align: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-gray-400);
}

/* Skip Link for Keyboard Navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary-blue);
    color: var(--color-white);
    padding: 10px 15px;
    text-decoration: none;
    z-index: 100;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--color-gold);
    outline-offset: 2px;
}

/* Screen Reader Only Text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Focus Indicators */
a:focus-visible, button:focus-visible, [tabindex="0"]:focus-visible {
    outline: 3px solid var(--color-primary-blue);
    outline-offset: 2px;
}

/* Remove outline for mouse users, keep for keyboard */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
[tabindex="0"]:focus:not(:focus-visible) {
    outline: none;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

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

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

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-in,
    .slide-in-left,
    .slide-in-right {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .bar-percentage,
    .bar-underline,
    .bar-visual {
        transition: none;
    }

    .section-divider {
        transition: none;
        width: 100%;
    }
}

.container {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Header Section */
.header {
    margin-bottom: 40px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    margin-bottom: 0;
}

.header-logos {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-logo {
    height: 50px;
    width: auto;
}

.header-logo-cu {
    height: 35px;
    width: auto;
}

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

.header-nav-item {
    font-family: var(--font-primary);
    font-size: var(--font-size-small);
    color: var(--color-dark-brown);
}

.header-subscribe {
    font-family: var(--font-primary);
    font-size: var(--font-size-small);
    color: var(--color-dark-brown);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-subscribe:hover {
    color: var(--color-primary-blue);
}

.header-hero {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.header-presented-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(35, 96, 146, 0.9);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: 400;
    letter-spacing: var(--letter-spacing-mini);
    text-align: center;
    padding: 15px 40px;
    white-space: nowrap;
    width: auto;
}

.header-presented-bar em {
    font-style: italic;
}

.header-content-box {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px 60px;
    max-width: 500px;
    border-radius: 0;
}

.header-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-hero);
    font-weight: 700;
    color: var(--color-primary-blue);
    letter-spacing: var(--letter-spacing-tight);
    line-height: 1.1;
    margin-bottom: 20px;
}

.header-subtitle {
    font-family: var(--font-primary);
    font-size: var(--font-size-body-large);
    font-weight: 400;
    color: var(--color-gray-dark);
    line-height: var(--line-height-relaxed);
    letter-spacing: 0;
}

.header-down-arrow {
    position: absolute;
    bottom: 40px;
    left: 80px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
    text-decoration: none;
    display: block;
}

.header-down-arrow img {
    width: 100px;
    height: auto;
    display: block;
}

.header-down-arrow:hover {
    transform: translateY(5px);
}

/* Intro Section */
.intro-section {
    margin-bottom: 30px;
    padding: 0;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text {
    font-family: var(--font-primary);
    font-size: var(--font-size-large);
    font-weight: 400;
    color: var(--color-gray-dark);
    line-height: var(--line-height-base);
    letter-spacing: 0;
    max-width: 100%;
}

/* Quote Section */
.quote-section {
    background-color: var(--color-bg-light);
    padding: 50px 60px 50px 60px;
    margin: 40px auto;
    border-radius: var(--border-radius);
    position: relative;
    max-width: 1080px;
}

.quote-content {
    max-width: 90%;
    padding-right: 100px;
}

.quote-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.quote-text {
    font-family: var(--font-primary);
    font-size: var(--font-size-hero);
    font-weight: 400;
    font-style: normal;
    color: var(--color-primary-blue);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 30px;
}

.quote-author {
    font-family: var(--font-primary);
    font-size: var(--font-size-large);
    font-weight: 400;
    color: var(--color-gray-medium);
    line-height: 22px;
    letter-spacing: var(--letter-spacing-small);
}

.quote-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 30px;
    right: 50px;
    box-shadow: var(--shadow-standard);
    border: 4px solid var(--color-white);
}

/* Section Divider */
.section-divider {
    height: 8px;
    background-color: var(--color-primary-blue);
    margin: 20px auto;
    width: 0;
    max-width: 1280px;
    transition: width 1.2s ease;
}

.section-divider.visible {
    width: 100%;
}

.section-divider.gold {
    background-color: var(--color-gold);
}

.section-divider.light {
    background-color: var(--color-gray-400);
}

/* Chart Section */
.chart-section {
    margin: 40px auto;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1280px;
    padding: 0 100px;
}

.chart-section.reverse {
    flex-direction: row-reverse;
}

.chart-section.full-width {
    background-color: var(--color-white);
    margin: 40px auto;
    padding: 0;
    border-radius: var(--border-radius);
    display: block;
    max-width: 1280px;
}

.chart-section.full-width .chart-inner {
    width: 100%;
    padding: 50px 60px;
}

.chart-header {
    max-width: 600px;
    margin: 0 0 40px 0;
}

.section-title.blue {
    color: #236092;
    text-align: left;
    margin-bottom: 10px;
}

.section-subtitle.left {
    text-align: left;
    font-weight: 400;
    color: #53575a;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.chart-wrapper {
    flex: 1;
}

.text-wrapper {
    flex: 1;
}

.section-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-hero);
    font-weight: 700;
    color: var(--color-primary-blue);
    letter-spacing: var(--letter-spacing-tight);
    line-height: var(--line-height-tight);
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: var(--font-size-hero);
    font-weight: 400;
    color: var(--color-gray-dark);
    letter-spacing: var(--letter-spacing-tight);
    line-height: 1.6;
    margin-bottom: 30px;
}

.stat-display {
    font-family: var(--font-primary);
    font-size: var(--font-size-large);
    font-weight: 400;
    letter-spacing: var(--letter-spacing-small);
    line-height: 22px;
    margin: 20px 0;
    transition: color 0.3s ease, opacity 0.3s ease;
    min-height: 44px;
}

.description-text {
    font-family: var(--font-primary);
    font-size: var(--font-size-large);
    font-weight: 400;
    color: var(--color-gray-dark);
    letter-spacing: var(--letter-spacing-small);
    line-height: 22px;
    transition: opacity 0.3s ease;
    min-height: 66px;
}

/* Horizontal Bar Chart Styles */
.horizontal-bar-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.horizontal-bar-item {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    width: 100%;
}

.horizontal-bar-visual {
    width: 0;
    height: 72px;
    border-radius: 0;
    transition: width 1.2s ease;
    position: relative;
}

.horizontal-bar-visual.animate {
    width: calc(var(--bar-width) * 1%);
}

.horizontal-bar-label {
    font-family: Verdana;
    font-size: 18px;
    font-weight: 400;
    color: #53575A;
    letter-spacing: 0;
    line-height: 18px;
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
    white-space: nowrap;
    word-wrap: break-word;
}

.horizontal-bar-divider {
    width: 4px;
    height: 72px;
    background-color: #a73439;
    margin-left: 0;
}

.horizontal-bar-percentage {
    font-family: Verdana;
    font-size: 38px;
    font-weight: 700;
    color: black;
    letter-spacing: 0;
    line-height: 40px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    min-width: 90px;
    text-align: left;
    padding-left: 15px;
    white-space: nowrap;
}

.horizontal-bar-percentage.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Bar Chart Styles - Vertical Layout */
.bar-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 60px 0 40px 0;
    gap: 80px;
    height: 500px;
    position: relative;
}

.bar-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 150px;
    cursor: pointer;
    transition: all 0.8s ease;
    background: transparent;
    border: none;
    padding: 0;
    font: inherit;
}

.bar-item:focus {
    outline: 3px solid var(--color-primary-blue);
    outline-offset: 5px;
}

.bar-item:hover {
    opacity: 0.9;
}

.bar-percentage {
    font-family: Verdana;
    font-size: 45px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0;
    line-height: 40px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    word-wrap: break-word;
}

.bar-percentage.animate {
    opacity: 1;
    transform: translateY(0);
}

.bar-underline {
    width: 100%;
    max-width: 100px;
    height: 5px;
    margin-bottom: 25px;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.bar-underline.animate {
    opacity: 1;
    transform: scaleX(1);
}

.bar-label {
    font-family: Verdana;
    font-size: 18px;
    font-weight: 400;
    color: #53575A;
    letter-spacing: 0;
    line-height: 18px;
    margin-bottom: 20px;
    max-width: 150px;
    text-align: left;
    word-wrap: break-word;
}

.bar-visual {
    width: 100%;
    border-radius: 0;
    height: 0;
    transition: height 1.2s ease;
    position: relative;
    max-height: 400px;
}

.bar-visual.animate {
    height: calc(var(--bar-height) * 5px);
}

/* Collapsed state - keep percentage visible */
.bar-item.collapsed .bar-visual {
    height: calc(var(--bar-height) * 0.5px) !important;
    opacity: 0.6;
    transition: height 0.8s ease, opacity 0.8s ease;
}

.bar-item.collapsed .bar-percentage {
    opacity: 1;
    visibility: visible;
    margin-bottom: 5px;
    transition: opacity 0.8s ease, margin-bottom 0.8s ease;
}

.bar-item.collapsed .bar-underline,
.bar-item.collapsed .bar-label {
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin: 0;
    transition: opacity 0.8s ease, height 0.8s ease, margin 0.8s ease;
}

/* Expanded state */
.bar-item.expanded .bar-visual {
    height: calc(var(--bar-height) * 5px) !important;
    opacity: 1;
    background-color: #EBA900 !important;
    transition: height 0.8s ease, opacity 0.8s ease, background-color 0.8s ease;
}

.bar-item.expanded .bar-underline {
    background-color: #EBA900 !important;
    transition: background-color 0.8s ease;
}

.bar-item.expanded .bar-percentage,
.bar-item.expanded .bar-underline,
.bar-item.expanded .bar-label {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease;
}

/* Timeline Styles */
.timeline-section {
    background-color: #f5f5f5;
    padding: 50px 60px;
    border-radius: 12px;
}

.timeline-section .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    margin: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    min-height: 350px;
}

.timeline .line {
    display: none;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Inactive state - small circles */
.timeline-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.4s ease,
                box-shadow 0.4s ease;
    position: relative;
    will-change: width, height, background-color;
}

.timeline-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Hover state for inactive circles - mimic active state */
.timeline-item:not(.active):hover .timeline-circle {
    width: 140px;
    height: 140px;
    background-color: var(--active-color, #989A9C);
    box-shadow: 0 0 0 12px rgba(var(--active-color-rgb), 0.15), 0 0 0 24px rgba(var(--active-color-rgb), 0.08);
}

.timeline-item:not(.active):hover .timeline-circle img {
    opacity: 0;
}

.timeline-item:not(.active):hover .timeline-circle::before {
    content: attr(data-percentage);
    position: absolute;
    font-family: Verdana;
    font-size: 48px;
    font-weight: 700;
    color: white;
    z-index: 2;
    opacity: 1;
    transform: scale(1);
}

/* Active state - large circle with rings and percentage */
.timeline-item.active .timeline-circle {
    width: 140px;
    height: 140px;
    background-color: var(--active-color, #989A9C);
    box-shadow: 0 0 0 12px rgba(var(--active-color-rgb), 0.15), 0 0 0 24px rgba(var(--active-color-rgb), 0.08);
}

.timeline-item.active .timeline-circle img {
    opacity: 0;
}

/* Hide active state when another circle is hovered */
.timeline-item.active.hover-hidden .timeline-circle {
    width: 80px;
    height: 80px;
    background-color: transparent;
    box-shadow: none;
}

.timeline-item.active.hover-hidden .timeline-circle img {
    opacity: 1;
}

.timeline-item.active.hover-hidden .timeline-circle::before {
    opacity: 0;
    font-size: 16px;
    font-weight: 400;
}

.timeline-item.active.hover-hidden .timeline-label {
    font-weight: 400;
    color: #53575A;
    opacity: 0.7;
}

.timeline-circle::before {
    content: attr(data-percentage);
    position: absolute;
    font-family: Verdana;
    font-size: 16px;
    font-weight: 400;
    color: white;
    z-index: 2;
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.3s ease, font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1), font-weight 0.3s ease;
}

.timeline-item.active .timeline-circle::before,
.timeline-item:not(.active):hover .timeline-circle::before {
    font-size: 48px;
    font-weight: 700;
    opacity: 1;
}

.timeline-label {
    margin-top: 30px;
    font-family: Verdana;
    font-size: 14px;
    font-weight: 400;
    color: #53575A;
    text-align: center;
    width: 240px;
    line-height: 1.4;
    transition: font-weight 0.3s ease, color 0.4s ease, opacity 0.4s ease;
    opacity: 0.7;
}

.timeline-item.active .timeline-label,
.timeline-item:not(.active):hover .timeline-label {
    font-weight: 700;
    color: #000000;
    opacity: 1;
}

/* Source Citation */
.source {
    font-family: var(--font-primary);
    font-size: var(--font-size-tiny);
    font-weight: 400;
    font-style: italic;
    color: var(--color-gray-dark);
    line-height: var(--line-height-small);
    letter-spacing: 0;
    margin-top: 10px;
}

.source.left {
    text-align: left;
}

.source.spaced {
    margin-top: 40px;
}

/* Everyday Gains Accent Bar */
.everyday-gains-accent {
    height: 8px;
    background-color: var(--color-gold);
    width: 100%;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

/* Video Section */
.video-section {
    margin: 80px auto;
    position: relative;
    max-width: 1280px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.video-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-embed-container iframe {
    border: none;
}

/* CTA Section - Retain Talent Faster */
.cta-section {
    margin: 80px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 500px;
    max-width: 1280px;
}

.cta-background {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

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

.cta-content {
    background-color: var(--color-bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    gap: 20px;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-hero);
    font-weight: 700;
    color: var(--color-primary-blue);
    letter-spacing: var(--letter-spacing-tight);
    line-height: 50px;
    text-align: center;
    margin: 0;
}

.cta-subtitle {
    font-family: var(--font-primary);
    font-size: var(--font-size-hero);
    font-weight: 700;
    color: var(--color-primary-blue);
    letter-spacing: var(--letter-spacing-tight);
    line-height: 50px;
    text-align: center;
    margin: 0;
}

.cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.cta-arrow:hover {
    transform: scale(1.1);
}

/* Footer Yellow Bar */
.footer-yellow-bar {
    height: 8px;
    background-color: var(--color-gold);
    width: 100%;
    margin-top: 80px;
}

/* Footer Section */
.footer-section {
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    height: 48px;
    width: auto;
}

.footer-logo-cu {
    height: 40px;
    width: auto;
}

.footer-social {
    font-family: var(--font-primary);
    font-size: var(--font-size-small);
    color: var(--color-gray-dark);
}

.footer-social a {
    color: var(--color-black);
    text-decoration: none;
}

.footer-social a:hover {
    text-decoration: underline;
}

.footer-social span {
    margin: 0 8px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-gray-500);
}

.footer-copyright p {
    margin: 0 0 10px 0;
    font-size: var(--font-size-small);
    color: var(--color-gray-dark);
}

.footer-legal-links {
    font-size: var(--font-size-small);
    color: var(--color-gray-dark);
}

.footer-legal-links a {
    color: var(--color-black);
    text-decoration: none;
    margin: 0 5px;
}

.footer-legal-links a:hover {
    text-decoration: underline;
}

.footer-legal-links span {
    margin: 0 5px;
    color: var(--color-gray-medium);
}

/* Stats Grid Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 80px 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-dark-blue) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-standard);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: var(--font-size-large);
    color: var(--color-white);
    line-height: 1.4;
    font-weight: 500;
}

/* Responsive - Updated mobile chart centering */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0;
        margin: 0 auto;
        width: 100%;
    }

    .header-top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding: 20px;
    }

    .header-logos {
        gap: 10px;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .header-logo {
        height: auto;
        width: 90%;
        max-width: none;
        object-fit: contain;
    }

    .header-logo-cu {
        height: auto;
        width: 45%;
        max-width: none;
        object-fit: contain;
    }

    .header-nav {
        gap: 20px;
        width: 100%;
        justify-content: center;
    }

    .header-nav-item {
        display: none;
    }

    .header-hero {
        border-radius: 0;
        position: relative;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-presented-bar {
        position: absolute;
        transform: none;
        font-size: 14px;
        padding: 15px 20px;
        white-space: normal;
        background-color: rgba(35, 96, 146, 1);
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 2;
    }

    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .header-content-box {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 30px 20px;
        margin: 0;
        border-radius: 0;
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
    }

    .header-title {
        font-size: 32px;
        line-height: 36px;
        color: var(--color-primary-blue);
        margin-bottom: 15px;
    }

    .header-subtitle {
        font-size: var(--font-size-large);
        line-height: 24px;
        color: var(--color-gray-dark);
    }

    .header-down-arrow {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .header-down-arrow img {
        width: 80px;
        height: auto;
    }

    .intro-section {
        padding: 0 20px;
    }

    .chart-section {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        margin: 40px 0;
        display: flex;
        align-items: center;
    }

    .chart-section svg path {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .chart-wrapper {
        touch-action: manipulation;
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .chart-wrapper svg {
        display: block;
    }

    .text-wrapper {
        position: relative;
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }


    .chart-section.full-width {
        margin: 40px 0;
        padding: 0;
    }

    .chart-section.full-width > div {
        padding: 40px 20px !important;
    }

    .quote-section {
        padding: 40px 20px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        display: flex;
        position: relative;
        margin: 40px 20px;
    }

    .quote-content {
        max-width: 100%;
        padding-right: 0;
        padding-bottom: 0;
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .quote-text {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0;
        width: 100%;
    }

    .quote-author {
        font-size: 14px;
        line-height: 20px;
        width: 50%;
    }

    .quote-image {
        position: static;
        width: calc(50% - 10px);
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
        margin: -80px 0 0 auto;
        display: block;
    }

    .section-title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .stat-display {
        font-size: 18px;
        line-height: 22px;
        min-height: auto;
        margin: 10px 0;
    }

    .description-text {
        font-size: 12px;
        line-height: 16px;
        min-height: auto;
        display: none;
    }

    .source {
        font-size: 9px;
        line-height: 12px;
    }

    .bar-percentage {
        font-size: 36px;
    }

    .bar-container {
        flex-wrap: nowrap;
        height: 450px;
        gap: 8px;
        padding: 0 15px;
        justify-content: space-between;
        overflow-x: auto;
        overflow-y: visible;
    }

    .bar-item {
        width: auto;
        min-width: 65px;
        max-width: 80px;
        flex: 1;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        padding: 20px 8px;
        margin: -20px -8px;
    }

    .bar-percentage {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .bar-underline {
        width: 30px;
        margin: 6px auto;
    }

    .bar-label {
        font-size: 11px;
        line-height: 1.2;
        max-width: 80px;
    }

    .bar-visual {
        width: 30px;
    }

    /* Keep accordion behavior on mobile */
    .bar-item.collapsed .bar-visual {
        height: calc(var(--bar-height) * 0.4px) !important;
    }

    .bar-item.expanded .bar-visual {
        height: calc(var(--bar-height) * 3.5px) !important;
    }

    /* Timeline mobile styles */
    .timeline-section {
        padding: 30px 20px;
    }

    .timeline {
        flex-direction: column;
        gap: 25px;
        margin: 30px 0;
        min-height: auto;
    }

    .timeline-item {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        gap: 20px;
    }

    .timeline-circle {
        flex-shrink: 0;
    }

    .timeline-label {
        margin-top: 0;
        text-align: left;
        font-size: 13px;
        width: auto;
        max-width: none;
    }

    .timeline-item.active .timeline-circle,
    .timeline-item:not(.active):hover .timeline-circle {
        width: 100px;
        height: 100px;
    }

    .timeline-item.active .timeline-circle::before,
    .timeline-item:not(.active):hover .timeline-circle::before {
        font-size: 32px;
    }

    /* Disable hover effects on mobile */
    .timeline-item:not(.active):hover .timeline-circle {
        width: 80px;
        height: 80px;
        background-color: transparent;
        box-shadow: none;
    }

    .timeline-item:not(.active):hover .timeline-circle img {
        opacity: 1;
    }

    .timeline-item:not(.active):hover .timeline-circle::before {
        opacity: 0;
    }

    .timeline-item:not(.active):hover .timeline-label {
        font-weight: 400;
        color: #53575A;
        opacity: 0.7;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 16px;
    }

    .video-section {
        margin: 40px auto;
    }

    .cta-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .cta-title {
        font-size: 28px;
        line-height: 32px;
    }

    .cta-arrow svg {
        width: 50px;
        height: 50px;
    }

    .intro-text {
        font-size: 16px;
        line-height: 24px;
    }

    .section-divider {
        margin: 40px auto;
    }

    .footer-section {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-logos {
        flex-direction: column;
        gap: 20px;
    }

    .horizontal-bar-container {
        gap: 20px;
    }

    .horizontal-bar-item {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .horizontal-bar-visual {
        height: 40px;
        flex-shrink: 1;
        min-width: 0;
    }

    .horizontal-bar-visual.animate {
        width: calc(var(--bar-width) * 0.7%);
    }

    .horizontal-bar-label {
        font-size: 11px;
        line-height: 13px;
        padding-left: 8px;
        padding-right: 8px;
        max-width: 120px;
        flex-shrink: 0;
    }

    .horizontal-bar-divider {
        height: 40px;
        width: 3px;
        margin-left: 0;
    }

    .horizontal-bar-percentage {
        font-size: 22px;
        line-height: 26px;
        min-width: 55px;
        padding-left: 8px;
    }
}
