/* Project One Future - Elite Professional CSS (Based on IIH Structure) */

/* CSS Variables - Sustainability & Future Theme */
:root {
    /* Elite Project One Future Colors */
    --pof-primary: #059669;           /* Deep Green for Sustainability */
    --pof-secondary: #10b981;         /* Emerald Green */
    --pof-accent: #34d399;            /* Light Green */
    --pof-gold: #f59e0b;              /* Premium Gold */
    --pof-blue: #3b82f6;              /* Strategic Blue */
    
    /* Professional Neutrals */
    --pof-navy: #0f1419;              /* Dark Navy Base */
    --pof-gray-dark: #1f2937;         /* Dark Gray */
    --pof-gray-medium: #374151;       /* Medium Gray */
    --pof-gray-light: #6b7280;        /* Light Gray */
    --pof-white: #ffffff;             /* Pure White */
    
    /* Typography - Standardized to Inter (global standard) */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing & Layout */
    --container-max: 1400px;
    --section-padding: 120px 0;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    /* Text colors for different backgrounds */
    --text-navy-primary: rgba(255, 255, 255, 0.95);
    --text-navy-secondary: rgba(255, 255, 255, 0.85);
    --text-grey-primary: #0f1419;
    --text-grey-secondary: rgba(15, 20, 25, 0.8);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--pof-navy);
    color: var(--pof-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}


/* Elite Header */
.pof-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: var(--transition-smooth);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--pof-primary) 0%, var(--pof-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: white;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--pof-white);
    line-height: 1;
}

.logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--pof-accent);
    line-height: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--pof-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--pof-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pof-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Elite Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pof-primary) 0%, var(--pof-secondary) 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

.btn-primary-future {
    background: linear-gradient(135deg, var(--pof-primary) 0%, var(--pof-secondary) 100%);
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
}

.btn-primary-future:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(16, 185, 129, 0.6);
}

.btn-outline-future {
    background: transparent;
    color: var(--pof-accent);
    border: 2px solid var(--pof-accent);
    padding: 14px 30px;
    font-size: 16px;
}

.btn-outline-future:hover {
    background: var(--pof-accent);
    color: var(--pof-navy);
    transform: translateY(-2px);
}

/* Hero Section - Elite Sustainability Theme */
.pof-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('../images/blue-gradient-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8) 0%, rgba(15, 20, 25, 0.6) 100%);
    z-index: 1;
}

.sustainability-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(52, 211, 153, 0.05) 0%, transparent 60%);
}

.floating-sustainability-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(52, 211, 153, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(5, 150, 105, 0.06) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: particle-float 20s linear infinite;
}

.premium-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: grid-shift 30s linear infinite;
}

.sustainability-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sustainability-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: orb-drift 15s ease-in-out infinite;
}

.sustainability-orbs .orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--pof-secondary) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.sustainability-orbs .orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--pof-accent) 0%, transparent 70%);
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.sustainability-orbs .orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--pof-primary) 0%, transparent 70%);
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.sustainability-orbs .orb-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--pof-gold) 0%, transparent 70%);
    top: 30%;
    right: 30%;
    animation-delay: -7s;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}


/* Hero Text - Center Aligned */
.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-text {
    color: var(--pof-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 6rem);
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 32px;
    font-family: var(--font-primary);
    text-align: center;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.title-line.main {
    color: var(--pof-white);
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--pof-accent) 0%, #fbbf24 50%, var(--pof-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
}

.hero-description {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pof-accent);
    margin-bottom: 24px;
    line-height: 1.3;
    text-align: center;
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.detailed-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin-bottom: 48px;
    max-width: 95%;
    text-align: center;
    font-weight: 400;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Sustainability Statistics */
.sustainability-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pof-accent);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-align: center;
}

/* Elite Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--pof-accent);
    border-radius: 20px;
    position: relative;
    opacity: 0.7;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--pof-accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 12px;
    color: var(--pof-accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vision & Mission Section */
.vision-mission-section {
    position: relative;
    padding: var(--section-padding);
    background: var(--pof-navy);
}

.vision-mission-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.premium-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, transparent 50%, rgba(5, 150, 105, 0.01) 100%);
}

.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(16, 185, 129, 0.05) 1px, transparent 0);
    background-size: 60px 60px;
    animation: pattern-drift 40s linear infinite;
}

.section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--pof-white);
    margin-bottom: 20px;
    font-family: var(--font-primary);
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    line-height: 1.6;
    text-align: center;
}

/* Vision Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 2;
}

.vision-mission-card {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.vision-mission-card:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--pof-primary) 0%, var(--pof-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pof-white);
    font-family: var(--font-primary);
}

.card-content {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.mission-list {
    list-style: none;
    margin-top: 20px;
}

.mission-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.mission-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--pof-accent);
    font-weight: 600;
}

/* Key Features Section */
.features-section {
    position: relative;
    padding: var(--section-padding);
    background: var(--pof-white);
    color: var(--pof-navy);
}

.features-section .section-title {
    color: var(--pof-navy) !important;
}

.features-section .section-subtitle {
    color: rgba(15, 20, 25, 0.7) !important;
}

.features-section .feature-title {
    color: var(--pof-navy) !important;
}

.features-section .feature-description {
    color: rgba(15, 20, 25, 0.8) !important;
}

/* Ensure proper text contrast in all white background sections */
.wef-section-grey-light,
.features-section,
.strategic-agenda-section {
    color: var(--pof-navy) !important;
}

.wef-section-grey-light h2,
.wef-section-grey-light h3,
.wef-section-grey-light h4,
.features-section h2,
.features-section h3,
.features-section h4,
.strategic-agenda-section h2,
.strategic-agenda-section h3,
.strategic-agenda-section h4 {
    color: var(--pof-navy) !important;
}

.wef-section-grey-light p,
.features-section p,
.strategic-agenda-section p {
    color: rgba(15, 20, 25, 0.8) !important;
}

.features-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.1);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pof-white);
    margin-bottom: 12px;
    text-align: center;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-align: center;
}

/* Ecosystem Section */
.ecosystem-section {
    position: relative;
    padding: var(--section-padding);
    background: var(--pof-navy);
}

.ecosystem-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.elite-mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(5, 150, 105, 0.08) 0%, transparent 50%);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(52, 211, 153, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 120px 120px, 80px 80px;
    animation: floating-drift 25s linear infinite;
}

.ecosystem-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ecosystem-text {
    text-align: center;
}

.ecosystem-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--pof-white);
    margin-bottom: 32px;
    font-family: var(--font-primary);
    text-align: center;
}

.ecosystem-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    text-align: center;
}

.ecosystem-description p {
    margin-bottom: 20px;
}

.ecosystem-image {
    position: relative;
}

.ecosystem-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

/* Enhanced Footer - scoped to .pof-footer only to avoid interfering with base.html footer */
.pof-footer {
    background: var(--pof-gray-dark);
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding: 60px 0 30px;
    position: relative;
}

.pof-footer .footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.pof-footer .footer-brand {
    text-align: center;
}

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

.pof-footer .footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    text-align: center;
}

.pof-footer .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pof-footer .footer-section h4 {
    color: var(--pof-white);
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

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

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

.pof-footer .footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    text-align: center;
}

.pof-footer .footer-section ul li a:hover {
    color: var(--pof-accent);
}

.pof-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes particle-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes grid-shift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes logo-pulse {
    0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.25; transform: translate(-50%, -50%) scale(1.1); }
}

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

@keyframes pulse-glow {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

@keyframes pattern-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes floating-drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(120px, 120px) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .ecosystem-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left; /* Maintain left alignment on mobile */
    }
    
    .sustainability-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        text-align: left; /* Maintain left alignment on mobile */
    }
    
    .sustainability-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        margin-bottom: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pof-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pof-footer .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* Vision Layout - Half Photo, Half Text */
.vision-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 60px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.1);
    position: relative;
    z-index: 2;
}

.vision-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vision-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.1) 100%);
    z-index: 1;
}

.vision-content {
    background: linear-gradient(135deg, var(--pof-primary) 0%, var(--pof-secondary) 100%);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    min-height: 500px;
}

.vision-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.vision-header {
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.vision-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    text-align: left;
    line-height: 1.1;
}

.vision-underline {
    width: 80px;
    height: 6px;
    background: linear-gradient(135deg, var(--pof-accent) 0%, var(--pof-gold) 100%);
    border-radius: 3px;
}

.vision-text {
    position: relative;
    z-index: 2;
}

.vision-text p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-align: left;
    font-weight: 400;
}

/* Mission Card Container */
.mission-card-container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .vision-layout {
        grid-template-columns: 1fr;
    }
    
    .vision-content {
        padding: 40px 30px;
    }
    
    /* Mobile Hamburger Menu */
    .main-nav {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .header-actions {
        margin-left: auto;
        margin-right: 10px;
    }
}

/* Strategic Agenda Section - Professional WEF Style with Light Background */
.strategic-agenda-section {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    color: var(--pof-navy);
}

.strategic-agenda-section .section-title {
    color: #0f1419 !important;
    font-weight: 700 !important;
}

.strategic-agenda-section .section-subtitle {
    color: rgba(15, 20, 25, 0.75) !important;
    font-weight: 500 !important;
}

.agenda-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.4;
}

.agenda-background .premium-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
}

.agenda-background .section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.02) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
}

.strategic-agenda-section .container {
    position: relative;
    z-index: 2;
}

.strategic-agenda-section .wef-section-container {
    position: relative;
    z-index: 2;
}

/* Agenda Grid Layout */
.agenda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding: 0 1rem;
}

/* Individual Agenda Cards */
.agenda-card {
    position: relative;
    background: #000000;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(255, 255, 255, 0.1);
}

.agenda-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.6),
        0 8px 16px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Agenda Image Section */
.agenda-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.agenda-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.agenda-card:hover .agenda-image img {
    transform: scale(1.1);
}

.agenda-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(5, 150, 105, 0.1) 60%,
        rgba(15, 20, 25, 0.8) 100%
    );
    transition: var(--transition-smooth);
}

.agenda-card:hover .agenda-image .image-overlay {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(5, 150, 105, 0.2) 60%,
        rgba(15, 20, 25, 0.9) 100%
    );
}

/* Agenda Content Section */
.agenda-content {
    padding: 32px;
    position: relative;
    z-index: 2;
}

.agenda-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pof-white);
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: var(--font-primary);
    position: relative;
    display: block;
    width: 100%;
}

.agenda-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--pof-accent) 0%, var(--pof-gold) 100%);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.agenda-card:hover .agenda-title::after {
    width: 80px;
}

.agenda-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-family: var(--font-secondary);
    text-align: left;
}

/* Responsive Design for Agenda Section */
@media (max-width: 1024px) {
    .agenda-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
    }
    
    .agenda-content {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .strategic-agenda-section {
        padding: 80px 0;
    }
    
    .agenda-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }
    
    .agenda-image {
        height: 200px;
    }
    
    .agenda-content {
        padding: 24px;
    }
    
    .agenda-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .agenda-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .agenda-content {
        padding: 20px;
    }
    
    .agenda-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .agenda-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* WEF-Style Section Background Alternation System */
:root {
    --wef-navy-dark: #0a1a33;           /* Dark navy for primary sections */
    --wef-navy-light: #12294f;          /* Lighter navy for contrast sections */
    --wef-navy-medium: hsl(217, 91%, 18%);
    --wef-light-grey: #f8fafc;          /* Light grey sections */
    --wef-medium-grey: #f1f5f9;         /* Slightly darker grey for cards */
    --wef-blue: hsl(216, 100%, 50%);
    --wef-light-blue: hsl(213, 97%, 87%);
    --wef-accent-blue: hsl(213, 100%, 96%);
    --wef-charcoal: hsl(217, 19%, 16%);
    --wef-slate: hsl(215, 16%, 47%);
    --wef-gray: hsl(210, 9%, 71%);
    --wef-white: hsl(0, 0%, 100%);
    --wef-gold: hsl(45, 93%, 58%);

    /* Text colors for different backgrounds */
    --text-navy-primary: rgba(255, 255, 255, 0.95);
    --text-navy-secondary: rgba(255, 255, 255, 0.85);
    --text-grey-primary: #2a2a2a;
    --text-grey-secondary: #525252;
}

.wef-section-navy-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e293b 100%);
    color: var(--text-navy-primary);
    position: relative;
    padding: 5rem 0;
    min-height: auto;
}

.wef-section-navy-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    pointer-events: none;
}

.wef-section-navy-light {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e293b 100%);
    color: var(--text-navy-primary);
    position: relative;
    padding: 5rem 0;
    min-height: auto;
}

.wef-section-navy-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.02) 2px, transparent 2px);
    background-size: 40px 40px, 60px 60px;
    pointer-events: none;
}

.wef-section-grey-light {
    background: var(--wef-light-grey);
    color: var(--text-grey-primary);
    position: relative;
    padding: 5rem 0;
    min-height: auto;
}

.wef-section-grey-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.01) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    pointer-events: none;
}

/* WEF Container and Headers */
.wef-section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

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

.wef-heading-2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.wef-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Ensure headings are visible on navy backgrounds */
.wef-section-navy-light .wef-heading-2,
.wef-section-navy-dark .wef-heading-2 {
    color: #ffffff;
    font-weight: 700;
}

.wef-section-navy-light .wef-subtitle,
.wef-section-navy-dark .wef-subtitle {
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
}

/* WEF Card System */
.wef-card-grey {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.wef-card-grey:hover {
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.12);
}

.wef-card-navy {
    background: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 8px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.wef-card-navy:hover {
    background: #ffffff;
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.08),
        0 12px 24px rgba(59, 130, 246, 0.15);
}

/* WEF Responsive Utilities */
.wef-split-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .wef-split-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

.wef-card-image {
    width: 100%;
    border-radius: 0.5rem;
    object-fit: cover;
}

.wef-card-title {
    color: #0f1419;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.wef-card-text {
    color: rgba(15, 20, 25, 0.8);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.wef-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.wef-card-icon {
    background: var(--wef-blue);
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wef-mission-list {
    color: var(--text-grey-secondary);
    line-height: 1.6;
    padding-left: 1rem;
    margin: 0;
}

.wef-mission-list li {
    margin-bottom: 0.5rem;
}

/* WEF Utility Classes */
.wef-mb-lg {
    margin-bottom: 1.5rem;
}

/* Hero Palette Fix - Align with WEF Navy Theme */
.pof-hero.wef-section-navy-dark .sustainability-gradient-mesh {
    background: linear-gradient(135deg, 
        rgba(10, 26, 51, 0.8) 0%, 
        rgba(18, 41, 79, 0.6) 50%, 
        rgba(59, 130, 246, 0.3) 100%) !important;
}

.pof-hero.wef-section-navy-dark .floating-sustainability-particles {
    background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 2px, transparent 2px),
                radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 1px, transparent 1px) !important;
}

.pof-hero.wef-section-navy-dark .orb {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.4) 0%, 
        rgba(18, 41, 79, 0.6) 100%) !important;
}

.pof-hero.wef-section-navy-dark .premium-grid-pattern {
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 1px, transparent 1px) !important;
}

/* Override any green tones in hero */
.pof-hero.wef-section-navy-dark .sustainability-orbs .orb {
    background: linear-gradient(135deg, var(--wef-blue) 0%, var(--wef-navy-light) 100%) !important;
}

/* Override POF green colors with WEF navy/blue for hero */
.pof-hero.wef-section-navy-dark {
    --pof-primary: hsl(216, 100%, 50%);     /* Change to WEF blue */
    --pof-secondary: hsl(217, 91%, 18%);    /* Change to WEF navy */
    --pof-accent: hsl(213, 97%, 87%);       /* Change to WEF light blue */
}

/* Ensure all green rgba values are replaced with navy/blue */
.pof-hero.wef-section-navy-dark *[style*="16, 185, 129"],
.pof-hero.wef-section-navy-dark *[class*="green"] {
    color: var(--wef-blue) !important;
    background-color: var(--wef-navy-light) !important;
}

/* ========================================
   POF VISION/MISSION GRID (platforms version)
   Mobile-first: stacked by default, 2-col on desktop
   ======================================== */
.pof-vision-mission-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.agenda-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pof-vision-mission-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    .agenda-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* ========================================
   POF SPOTLIGHT SECTION
   ======================================== */
.pof-spotlight {
    padding: 5rem 0;
    background: #0f172a;
}

.pof-spotlight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pof-spotlight-header {
    margin-bottom: 3rem;
}

.pof-spotlight-header h2 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.pof-spotlight-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    line-height: 1.6;
}

.pof-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .pof-spotlight-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.pof-spotlight-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pof-spotlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pof-spotlight-card--catalyst {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.7) 50%, rgba(59, 130, 246, 0.5) 100%),
        linear-gradient(45deg, #0f172a 0%, #1e3a8a 50%, #3b82f6 100%);
}

.pof-spotlight-card--ecosystem {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(5, 150, 105, 0.7) 50%, rgba(16, 185, 129, 0.5) 100%),
        linear-gradient(45deg, #0f172a 0%, #065f46 50%, #10b981 100%);
}

.pof-spotlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.pof-spotlight-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 1;
    pointer-events: none;
}

.pof-spotlight-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    width: 100%;
}

.pof-spotlight-label {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    backdrop-filter: blur(8px);
}

.pof-spotlight-card--catalyst .pof-spotlight-label {
    background: rgba(59, 130, 246, 0.25);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.pof-spotlight-card--ecosystem .pof-spotlight-label {
    background: rgba(16, 185, 129, 0.25);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.pof-spotlight-content h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.pof-spotlight-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ========================================
   MOBILE RESPONSIVE - PROFESSIONAL WEF STYLE
   ======================================== */
@media (max-width: 767px) {

    /* HERO SECTION - LOGO ON TOP, CENTERED */
    .pof-hero {
        min-height: 100vh !important;
        padding: 2rem 1rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .pof-hero .hero-container {
        padding: 0 0.5rem !important;
        width: 100% !important;
    }

    /* Stack logo and title vertically */
    .pof-hero .hero-container > div:first-child {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1rem !important;
    }

    /* Logo on top - centered */
    .pof-hero .hero-logo {
        margin: 0 auto 1rem auto !important;
        width: 160px !important;
    }

    .pof-hero .hero-logo img {
        width: 160px !important;
        height: auto !important;
    }

    /* Title centered below logo */
    .pof-hero .hero-title-container {
        text-align: center !important;
    }

    .pof-hero .hero-title-container h1 {
        font-size: 3rem !important;
        text-align: center !important;
        line-height: 1.1 !important;
    }

    .pof-hero .hero-title-container h1 span {
        display: block !important;
        text-align: center !important;
    }

    /* Hero content */
    .pof-hero .hero-content {
        text-align: center !important;
        padding: 0 0.5rem !important;
    }

    .pof-hero .hero-badge {
        margin-bottom: 1rem !important;
    }

    .pof-hero .hero-badge .badge-text {
        font-size: 0.8rem !important;
        padding: 0.4rem 1rem !important;
    }

    .pof-hero .hero-description {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }

    .pof-hero .detailed-description p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .pof-hero .hero-actions {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
        align-items: center !important;
    }

    .pof-hero .btn-primary-future,
    .pof-hero .btn-outline-future {
        width: 100% !important;
        padding: 0.9rem 1.5rem !important;
        font-size: 0.95rem !important;
        text-align: center !important;
    }

    /* ALL SECTIONS - PROPER SPACING */
    .wef-section-grey-light,
    .wef-section-navy-light,
    .wef-section-navy-dark,
    .vision-mission-section,
    .strategic-agenda-section,
    .features-section,
    .ecosystem-section {
        padding: 2.5rem 0 !important;
        min-height: auto !important;
    }

    .wef-section-container,
    .container {
        padding: 0 1rem !important;
    }

    /* SECTION HEADERS */
    .wef-section-header,
    .section-header {
        margin-bottom: 1.5rem !important;
    }

    .wef-heading-2,
    .section-title {
        font-size: 1.8rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.5rem !important;
    }

    .wef-subtitle,
    .section-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }

    /* VISION & MISSION - STACK FULL WIDTH ON MOBILE */
    .vision-mission-section .wef-section-container {
        padding: 0 1rem !important;
    }

    .vision-mission-section .wef-section-header {
        padding: 0 !important;
    }

    .vision-mission-section .wef-card-grey {
        margin: 0 0 1rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .vision-mission-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        grid-template-columns: 1fr !important;
    }

    .vision-mission-card {
        min-width: 100% !important;
        width: 100% !important;
    }

    /* POF Vision/Mission grid (platforms version with inline styles) */
    .pof-vision-mission-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        grid-template-columns: 1fr !important;
    }

    .pof-vm-card {
        width: 100% !important;
        min-width: 100% !important;
    }

    .wef-card-grey,
    .wef-card-navy {
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }

    .wef-card-header {
        margin-bottom: 1rem !important;
    }

    .wef-card-title {
        font-size: 1.3rem !important;
    }

    .wef-card-text {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .wef-mission-list {
        font-size: 0.9rem !important;
    }

    .wef-mission-list li {
        margin-bottom: 0.5rem !important;
    }

    /* STRATEGIC AGENDA - STACK VERTICALLY ON MOBILE */
    .strategic-agenda-section .wef-section-container {
        padding: 0 1rem !important;
    }

    .strategic-agenda-section .wef-section-header {
        padding: 0 !important;
    }

    .agenda-grid {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
        padding: 0 !important;
        margin-top: 1.5rem !important;
        overflow: visible !important;
        grid-template-columns: 1fr !important;
    }

    .agenda-grid .wef-card-navy,
    .agenda-grid > div {
        flex: none !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 16px !important;
    }

    .agenda-grid .agenda-image,
    .agenda-image {
        height: 180px !important;
        margin-bottom: 0 !important;
    }

    .agenda-content {
        padding: 1.2rem !important;
    }

    .agenda-title {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem !important;
    }

    .agenda-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* KEY FEATURES - STACK VERTICALLY ON MOBILE */
    .features-section .container {
        padding: 0 1rem !important;
    }

    .features-section .section-header {
        padding: 0 !important;
    }

    .features-grid {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
        padding: 0 !important;
        overflow: visible !important;
        grid-template-columns: 1fr !important;
    }

    .feature-card {
        flex: none !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 16px !important;
        padding: 1.2rem !important;
    }

    .feature-image {
        height: 180px !important;
        margin-bottom: 1rem !important;
        border-radius: 12px !important;
    }

    .feature-title {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .feature-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* ECOSYSTEM SECTION */
    .ecosystem-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .ecosystem-text {
        text-align: left !important;
    }

    .ecosystem-title {
        font-size: 1.8rem !important;
        text-align: left !important;
    }

    .ecosystem-description {
        font-size: 0.95rem !important;
        text-align: left !important;
    }

    .ecosystem-description p {
        margin-bottom: 1rem !important;
        text-align: left !important;
    }

    .ecosystem-image img {
        max-height: 250px !important;
        object-fit: contain !important;
    }

    /* POF SPOTLIGHT - STACK ON MOBILE */
    .pof-spotlight {
        padding: 3rem 0 !important;
    }

    .pof-spotlight-container {
        padding: 0 1rem !important;
    }

    .pof-spotlight-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .pof-spotlight-card {
        min-height: 280px !important;
    }

    .pof-spotlight-content {
        padding: 1.5rem !important;
    }

    .pof-spotlight-content h3 {
        font-size: 1.3rem !important;
    }

    .pof-spotlight-content p {
        font-size: 0.9rem !important;
    }

    /* FOOTER - Same as home */
    .main-footer {
        padding: 2rem 1rem 1rem !important;
    }

    .main-footer .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .main-footer .footer-section {
        text-align: center !important;
    }

    .main-footer .footer-logo {
        justify-content: center !important;
        display: flex !important;
    }

    .main-footer .footer-description {
        text-align: center !important;
    }

    .main-footer .footer-social {
        justify-content: center !important;
    }

    .main-footer .footer-title {
        text-align: center !important;
    }

    .main-footer .footer-links {
        text-align: center !important;
    }

    .main-footer .footer-bottom {
        padding-top: 1rem !important;
        font-size: 0.85rem !important;
    }

    .main-footer .footer-bottom-content {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
}
