/* ═══════════════════════════════════════════════════════════
   10K FPO PAGE — fpo-10k-page.css
   Matches Figma: https://taffy-ashen-86771163.figma.site/
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
.fpo-page {
    --fpo-green-dark: #1B5E20;
    --fpo-green: #2E7D32;
    --fpo-green-medium: #388E3C;
    --fpo-green-light: #4CAF50;
    --fpo-green-pale: #E8F5E9;
    --fpo-orange: #F57C00;
    --fpo-orange-dark: #E65100;
    --fpo-orange-light: #FF9800;
    --fpo-orange-bright: #FF6F00;
    --fpo-bg-light: #f0f4f8;
    --fpo-bg-blue-tint: #e8eef6;
    --fpo-bg-sand: #f5f0eb;
    --fpo-text-dark: #1a2e1a;
    --fpo-text-body: #4a5568;
    --fpo-text-muted: #718096;
    --fpo-white: #ffffff;
    --fpo-border: #e2e8f0;
    --fpo-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --fpo-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --fpo-radius: 16px;
    --fpo-radius-sm: 10px;
    --fpo-radius-xs: 6px;
    --fpo-container: 1200px;
    --fpo-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--fpo-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.fpo-page *, .fpo-page *::before, .fpo-page *::after {
    box-sizing: border-box;
}

/* ── SVG Icons ── */
.fpo-page .fpo-icon {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    flex-shrink: 0;
}
.fpo-page .fpo-btn-icon {
    width: 18px;
    height: 18px;
}
.fpo-page .fpo-hierarchy-icon .fpo-icon {
    width: 24px;
    height: 24px;
}
.fpo-page .fpo-vc-icon .fpo-icon {
    width: 32px;
    height: 32px;
}
.fpo-page .fpo-benefit-icon .fpo-icon {
    width: 32px;
    height: 32px;
}
.fpo-page .fpo-service-icon .fpo-icon {
    width: 32px;
    height: 32px;
}
.fpo-page .dash-icon .fpo-icon {
    width: 24px;
    height: 24px;
}
.fpo-page .agency-icon .fpo-icon {
    width: 28px;
    height: 28px;
}
.fpo-page .map-icon .fpo-icon {
    width: 48px;
    height: 48px;
}
.fpo-page .fpo-story-stat .fpo-icon {
    width: 16px;
    height: 16px;
    color: var(--fpo-green);
}
.fpo-page .fpo-story-link .fpo-icon {
    width: 16px;
    height: 16px;
}
.fpo-page .fpo-region-card li .fpo-icon {
    width: 16px;
    height: 16px;
    color: var(--fpo-green);
    flex-shrink: 0;
}
.fpo-page .fpo-service-card li .fpo-icon {
    width: 16px;
    height: 16px;
    color: var(--fpo-green);
    flex-shrink: 0;
}
.fpo-page .fpo-addl-item .fpo-icon {
    width: 16px;
    height: 16px;
    color: var(--fpo-green);
    flex-shrink: 0;
}

/* ── Container ── */
.fpo-container {
    max-width: var(--fpo-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Fade-up animation ── */
.fpo-page .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fpo-page .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Section spacing ── */
.fpo-section {
    padding: 80px 0;
}
.fpo-section-alt {
    padding: 80px 0;
    background: var(--fpo-bg-light);
}
.fpo-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.fpo-section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--fpo-green-dark);
    margin: 0 0 12px 0;
    line-height: 1.2;
}
.fpo-section-header p {
    font-size: 1.1rem;
    color: var(--fpo-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════
   1. HERO
   ══════════════════════════════════════════════ */
.fpo-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 24px 60px;
}
.fpo-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #1B5E20 100%);
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.fpo-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27,94,32,0.88) 0%, rgba(27,94,32,0.92) 100%);
    z-index: 1;
}
.fpo-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.fpo-hero-content h1 {
    font-size: 3.4rem;
    font-weight: 900;
    color: var(--fpo-white);
    margin: 0 0 16px 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.fpo-hero-content .fpo-hero-tagline {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--fpo-orange-light);
    margin-bottom: 16px;
}
.fpo-hero-content .fpo-hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto 36px;
}

/* Hero Stats */
.fpo-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}
.fpo-hero-stat {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--fpo-radius);
    padding: 28px 16px;
    text-align: center;
    transition: var(--fpo-transition);
}
.fpo-hero-stat:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-4px);
}
.fpo-hero-stat .stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--fpo-white);
    line-height: 1.2;
}
.fpo-hero-stat .stat-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
    font-weight: 500;
}

/* Hero Buttons */
.fpo-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.fpo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--fpo-transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.fpo-btn-orange {
    background: var(--fpo-orange);
    color: var(--fpo-white);
    border-color: var(--fpo-orange);
}
.fpo-btn-orange:hover {
    background: var(--fpo-orange-dark);
    border-color: var(--fpo-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,124,0,0.35);
    color: var(--fpo-white);
}
.fpo-btn-ghost {
    background: transparent;
    color: var(--fpo-white);
    border-color: rgba(255,255,255,0.5);
}
.fpo-btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--fpo-white);
    color: var(--fpo-white);
}

/* ══════════════════════════════════════════════
   2. WHAT IS FPO?
   ══════════════════════════════════════════════ */
.fpo-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}
.fpo-about-text h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--fpo-green-dark);
    margin: 0 0 20px 0;
    line-height: 1.2;
}
.fpo-about-text p {
    font-size: 1rem;
    color: var(--fpo-text-body);
    margin-bottom: 16px;
    line-height: 1.7;
}
.fpo-about-image {
    border-radius: var(--fpo-radius);
    overflow: hidden;
    box-shadow: var(--fpo-shadow-lg);
}
.fpo-about-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* Benefit Cards */
.fpo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fpo-benefit-card {
    background: var(--fpo-white);
    border-radius: var(--fpo-radius);
    padding: 32px 24px;
    box-shadow: var(--fpo-shadow);
    transition: var(--fpo-transition);
    border: 1px solid var(--fpo-border);
}
.fpo-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fpo-shadow-lg);
}
.fpo-benefit-icon {
    font-size: 2rem;
    color: var(--fpo-orange);
    margin-bottom: 16px;
    display: block;
}
.fpo-benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fpo-orange);
    margin: 0 0 8px 0;
}
.fpo-benefit-card p {
    font-size: 0.92rem;
    color: var(--fpo-text-body);
    margin: 0;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════
   3. ABOUT THE 10K FPO SCHEME
   ══════════════════════════════════════════════ */

/* Hierarchy Timeline */
.fpo-hierarchy {
    max-width: 700px;
    margin: 0 auto 48px;
    padding: 0 20px;
}
.fpo-hierarchy-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
    position: relative;
}
.fpo-hierarchy-icon {
    width: 48px;
    height: 48px;
    background: var(--fpo-green-dark);
    border-radius: var(--fpo-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fpo-white);
    font-size: 1.3rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.fpo-hierarchy-label {
    flex: 1;
    background: var(--fpo-green-pale);
    padding: 14px 20px;
    border-radius: var(--fpo-radius-xs);
    font-size: 1rem;
    font-weight: 600;
    color: var(--fpo-text-dark);
}
.fpo-hierarchy-line {
    width: 2px;
    height: 24px;
    background: var(--fpo-green-light);
    margin-left: 23px;
    opacity: 0.5;
}

/* Funding Cards */
.fpo-funding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fpo-funding-card {
    background: var(--fpo-green-dark);
    border-radius: var(--fpo-radius);
    padding: 32px 24px;
    color: var(--fpo-white);
    border-left: 4px solid var(--fpo-green-light);
}
.fpo-funding-card .funding-amount {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.fpo-funding-card .funding-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.fpo-funding-card .funding-desc {
    font-size: 0.88rem;
    opacity: 0.8;
}

/* ══════════════════════════════════════════════
   4. FDRVC AS IMPLEMENTING AGENCY
   ══════════════════════════════════════════════ */
.fpo-agency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.fpo-agency-text h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--fpo-green-dark);
    margin: 0 0 20px 0;
    line-height: 1.2;
}
.fpo-agency-text p {
    font-size: 1rem;
    color: var(--fpo-text-body);
    margin-bottom: 16px;
    line-height: 1.7;
}
.fpo-agency-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.fpo-agency-stat-card {
    background: var(--fpo-white);
    border-radius: var(--fpo-radius);
    padding: 24px;
    box-shadow: var(--fpo-shadow);
    border: 1px solid var(--fpo-border);
    transition: var(--fpo-transition);
}
.fpo-agency-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--fpo-shadow-lg);
}
.fpo-agency-stat-card .agency-icon {
    font-size: 1.6rem;
    color: var(--fpo-orange);
    margin-bottom: 8px;
    display: block;
}
.fpo-agency-stat-card .agency-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--fpo-text-dark);
    line-height: 1.2;
}
.fpo-agency-stat-card .agency-label {
    font-size: 0.88rem;
    color: var(--fpo-text-muted);
    margin-top: 4px;
}

/* ══════════════════════════════════════════════
   5. PROGRAMME IMPACT DASHBOARD
   ══════════════════════════════════════════════ */
.fpo-dashboard-green {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.fpo-dash-card-green {
    background: var(--fpo-green-dark);
    border-radius: var(--fpo-radius);
    padding: 28px 20px;
    color: var(--fpo-white);
    transition: var(--fpo-transition);
}
.fpo-dash-card-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(27,94,32,0.3);
}
.fpo-dash-card-green .dash-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
    opacity: 0.9;
    display: block;
}
.fpo-dash-card-green .dash-num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
}
.fpo-dash-card-green .dash-label {
    font-size: 0.88rem;
    opacity: 0.8;
    margin-top: 4px;
}

.fpo-dashboard-white {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.fpo-dash-card-white {
    background: var(--fpo-white);
    border-radius: var(--fpo-radius);
    padding: 28px 20px;
    box-shadow: var(--fpo-shadow);
    border: 1px solid var(--fpo-border);
    transition: var(--fpo-transition);
}
.fpo-dash-card-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--fpo-shadow-lg);
}
.fpo-dash-card-white .dash-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--fpo-orange);
    line-height: 1.2;
}
.fpo-dash-card-white .dash-label {
    font-size: 0.85rem;
    color: var(--fpo-text-muted);
    margin-top: 4px;
}

/* ══════════════════════════════════════════════
   6. COVERAGE MAP
   ══════════════════════════════════════════════ */
.fpo-map-placeholder {
    background: var(--fpo-green-pale);
    border-radius: var(--fpo-radius);
    padding: 60px 24px;
    text-align: center;
    margin-bottom: 32px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.fpo-map-placeholder .map-icon {
    font-size: 3rem;
    color: var(--fpo-green-dark);
    margin-bottom: 16px;
}
.fpo-map-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fpo-text-dark);
    margin: 0 0 8px 0;
}
.fpo-map-placeholder p {
    font-size: 0.95rem;
    color: var(--fpo-text-muted);
    margin: 0 0 20px 0;
}

/* State Tags */
.fpo-state-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.fpo-state-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--fpo-border);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--fpo-text-body);
    background: var(--fpo-white);
    transition: var(--fpo-transition);
}
.fpo-state-tag:hover {
    border-color: var(--fpo-green);
    color: var(--fpo-green);
    background: var(--fpo-green-pale);
}

/* ══════════════════════════════════════════════
   7. OUR WORKING AREA
   ══════════════════════════════════════════════ */
.fpo-regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.fpo-region-card {
    background: var(--fpo-white);
    border-radius: var(--fpo-radius);
    padding: 28px 24px;
    border: 1px dashed var(--fpo-border);
    transition: var(--fpo-transition);
}
.fpo-region-card:hover {
    border-color: var(--fpo-green);
    box-shadow: var(--fpo-shadow);
}
.fpo-region-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--fpo-green-dark);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--fpo-green-pale);
}
.fpo-region-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fpo-region-card li {
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--fpo-text-body);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ══════════════════════════════════════════════
   8. ALLOCATION JOURNEY
   ══════════════════════════════════════════════ */
.fpo-timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}
.fpo-timeline-grid::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 16.67%;
    right: 16.67%;
    height: 2px;
    background: var(--fpo-border);
    z-index: 0;
}
.fpo-timeline-card {
    background: var(--fpo-white);
    border-radius: var(--fpo-radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--fpo-border);
    position: relative;
    z-index: 1;
    transition: var(--fpo-transition);
}
.fpo-timeline-card:hover {
    box-shadow: var(--fpo-shadow-lg);
    transform: translateY(-3px);
}
.fpo-timeline-number {
    width: 40px;
    height: 40px;
    background: var(--fpo-green-dark);
    color: var(--fpo-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 auto 20px;
}
.fpo-timeline-card .fy-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--fpo-text-dark);
    margin-bottom: 8px;
}
.fpo-timeline-card .fy-allocation {
    font-size: 2rem;
    font-weight: 800;
    color: var(--fpo-orange);
    line-height: 1.2;
}
.fpo-timeline-card .fy-type {
    font-size: 0.85rem;
    color: var(--fpo-text-muted);
    margin-bottom: 16px;
}
.fpo-timeline-cumulative {
    background: var(--fpo-green-pale);
    border-radius: var(--fpo-radius-xs);
    padding: 10px 16px;
    margin-top: 12px;
}
.fpo-timeline-cumulative .cum-label {
    font-size: 0.78rem;
    color: var(--fpo-text-muted);
}
.fpo-timeline-cumulative .cum-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fpo-green-dark);
}

/* ══════════════════════════════════════════════
   9. VALUE CHAIN ICONS
   ══════════════════════════════════════════════ */
.fpo-value-chain-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    text-align: center;
}
.fpo-vc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.fpo-vc-icon {
    width: 80px;
    height: 80px;
    background: var(--fpo-green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fpo-white);
    font-size: 1.8rem;
    transition: var(--fpo-transition);
}
.fpo-vc-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(27,94,32,0.3);
}
.fpo-vc-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--fpo-text-dark);
}
.fpo-vc-item-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.fpo-vc-arrow {
    display: none;
}
.fpo-vc-arrow .fpo-icon {
    width: 20px;
    height: 20px;
    color: var(--fpo-green-light);
}

/* ══════════════════════════════════════════════
   10. SUCCESS STORIES
   ══════════════════════════════════════════════ */
.fpo-stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.fpo-story-card {
    background: var(--fpo-white);
    border-radius: var(--fpo-radius);
    overflow: hidden;
    box-shadow: var(--fpo-shadow);
    border: 1px solid var(--fpo-border);
    transition: var(--fpo-transition);
}
.fpo-story-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fpo-shadow-lg);
}
.fpo-story-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.fpo-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.fpo-story-card:hover .fpo-story-img img {
    transform: scale(1.05);
}
.fpo-story-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--fpo-orange);
    color: var(--fpo-white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}
.fpo-story-body {
    padding: 20px;
}
.fpo-story-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fpo-green-dark);
    margin: 0 0 6px 0;
}
.fpo-story-body .story-subtitle {
    font-size: 0.85rem;
    color: var(--fpo-text-body);
    margin-bottom: 12px;
    line-height: 1.5;
}
.fpo-story-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--fpo-text-body);
    margin-bottom: 6px;
}
.fpo-story-stat .story-stat-icon {
    color: var(--fpo-green);
    font-size: 0.9rem;
}
.fpo-story-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--fpo-green-dark);
    text-decoration: none;
    margin-top: 12px;
    transition: var(--fpo-transition);
}
.fpo-story-link:hover {
    color: var(--fpo-orange);
    gap: 10px;
}

/* ══════════════════════════════════════════════
   11. SERVICES
   ══════════════════════════════════════════════ */
.fpo-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.fpo-service-card {
    background: var(--fpo-white);
    border-radius: var(--fpo-radius);
    padding: 28px 24px;
    box-shadow: var(--fpo-shadow);
    border: 1px solid var(--fpo-border);
    transition: var(--fpo-transition);
}
.fpo-service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--fpo-shadow-lg);
}
.fpo-service-icon {
    font-size: 2rem;
    color: var(--fpo-orange);
    margin-bottom: 14px;
    display: block;
}
.fpo-service-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fpo-orange);
    margin: 0 0 12px 0;
}
.fpo-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fpo-service-card li {
    padding: 5px 0;
    font-size: 0.88rem;
    color: var(--fpo-text-body);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Additional Services */
.fpo-addl-services {
    background: var(--fpo-green-pale);
    border-radius: var(--fpo-radius);
    padding: 32px;
    border: 1px dashed rgba(46,125,50,0.3);
}
.fpo-addl-services h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--fpo-orange);
    margin: 0 0 20px 0;
}
.fpo-addl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.fpo-addl-item {
    background: var(--fpo-white);
    border-radius: var(--fpo-radius-xs);
    padding: 14px 18px;
    font-size: 0.88rem;
    color: var(--fpo-text-body);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--fpo-border);
}

/* ══════════════════════════════════════════════
   12. PARTNERS
   ══════════════════════════════════════════════ */
.fpo-partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.fpo-partner-card {
    background: var(--fpo-white);
    border-radius: var(--fpo-radius);
    padding: 28px 16px;
    text-align: center;
    box-shadow: var(--fpo-shadow);
    border: 1px solid var(--fpo-border);
    transition: var(--fpo-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}
.fpo-partner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--fpo-shadow-lg);
}
.fpo-partner-card span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--fpo-text-body);
    text-align: center;
}

/* ══════════════════════════════════════════════
   13. CTA BANNER
   ══════════════════════════════════════════════ */
.fpo-cta {
    position: relative;
    padding: 80px 24px;
    text-align: center;
    overflow: hidden;
}
.fpo-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #1B5E20 100%);
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.fpo-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27,94,32,0.9) 0%, rgba(27,94,32,0.95) 100%);
    z-index: 1;
}
.fpo-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.fpo-cta-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--fpo-white);
    margin: 0 0 16px 0;
    line-height: 1.2;
}
.fpo-cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .fpo-hero-content h1 { font-size: 2.6rem; }
    .fpo-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .fpo-about-grid { grid-template-columns: 1fr; }
    .fpo-agency-grid { grid-template-columns: 1fr; }
    .fpo-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .fpo-funding-grid { grid-template-columns: repeat(2, 1fr); }
    .fpo-dashboard-green { grid-template-columns: repeat(2, 1fr); }
    .fpo-dashboard-white { grid-template-columns: repeat(2, 1fr); }
    .fpo-regions-grid { grid-template-columns: repeat(2, 1fr); }
    .fpo-timeline-grid { grid-template-columns: 1fr; }
    .fpo-timeline-grid::before { display: none; }
    .fpo-value-chain-grid { grid-template-columns: repeat(3, 1fr); }
    .fpo-stories-grid { grid-template-columns: repeat(2, 1fr); }
    .fpo-services-grid { grid-template-columns: repeat(2, 1fr); }
    .fpo-addl-grid { grid-template-columns: repeat(2, 1fr); }
    .fpo-partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .fpo-section { padding: 50px 0; }
    .fpo-section-alt { padding: 50px 0; }
    .fpo-section-header h2 { font-size: 2rem; }
    .fpo-hero { min-height: auto; padding: 80px 16px 50px; }
    .fpo-hero-content h1 { font-size: 2rem; }
    .fpo-hero-content .fpo-hero-tagline { font-size: 1.1rem; }
    .fpo-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .fpo-hero-stat .stat-num { font-size: 1.8rem; }
    .fpo-hero-stat { padding: 20px 12px; }
    .fpo-about-text h2 { font-size: 1.8rem; }
    .fpo-benefits-grid { grid-template-columns: 1fr; }
    .fpo-funding-grid { grid-template-columns: 1fr; }
    .fpo-agency-text h2 { font-size: 1.8rem; }
    .fpo-agency-stats { grid-template-columns: repeat(2, 1fr); }
    .fpo-dashboard-green { grid-template-columns: 1fr 1fr; }
    .fpo-dashboard-white { grid-template-columns: 1fr 1fr; }
    .fpo-regions-grid { grid-template-columns: 1fr; }
    .fpo-value-chain-grid { grid-template-columns: repeat(3, 1fr); }
    .fpo-stories-grid { grid-template-columns: 1fr; }
    .fpo-services-grid { grid-template-columns: 1fr; }
    .fpo-addl-grid { grid-template-columns: 1fr; }
    .fpo-partners-grid { grid-template-columns: repeat(2, 1fr); }
    .fpo-cta-content h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .fpo-hero-content h1 { font-size: 1.6rem; }
    .fpo-hero-stats { grid-template-columns: 1fr 1fr; }
    .fpo-hero-btns { flex-direction: column; align-items: center; }
    .fpo-value-chain-grid { grid-template-columns: repeat(2, 1fr); }
    .fpo-dashboard-green { grid-template-columns: 1fr; }
    .fpo-dashboard-white { grid-template-columns: 1fr; }
    .fpo-partners-grid { grid-template-columns: 1fr 1fr; }
}
