/* ==========================================
   IMPORT FONT
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* ==========================================
   COLOR PALETTE & DESIGN TOKENS
   ========================================== */
:root {
    /* Brand Colors */
    --primary-btn: #FFCFD4;        /* Button color */
    --bg-light: #F0F7FF;           /* Main background */
    --text-dark: #1D3666;          /* Text color */
    --accent-pink: #E5717E;        /* Accent pink */
    --accent-green: #8ABDB3;       /* Accent green */
    
    /* Neutrals */
    --white: #FFFFFF;
    --text-secondary: #4B5563;
    --border-light: #E5E7EB;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    text-align: center;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: .85rem;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-btn);
    color: var(--text-dark);
    border: 2px solid var(--primary-btn);
}

.btn-primary:hover {
    background: #FFB3BD;
    border-color: #FFB3BD;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-btn);
}

.btn-outline:hover {
    background: var(--primary-btn);
    color: var(--text-dark);
}

/* ==========================================
   LAYOUT CONTAINERS
   ========================================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: var(--bg-light);
    padding: 8rem 2rem;
    margin-bottom: 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(229, 113, 126, 0.15);
}

.hero-label {
    display: inline-block;
    color: var(--accent-pink);
    font-size: 0.95rem;
    font-weight: 600;
    
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-box {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, rgba(229, 113, 126, 0.1) 0%, rgba(168, 213, 186, 0.1) 100%);
    border-radius: 1.5rem;
    border: 2px solid var(--primary-btn);
}

/* ==========================================
   PROBLEMS SECTION
   ========================================== */
.problems {
    padding: 5rem 2rem;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card {
    background: var(--white);
    border: 2px solid var(--primary-btn);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 113, 126, 0.15);
    border-color: var(--accent-pink);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.card-icon.capital {
    background: var(--accent-pink);
}

.card-icon.margins {
    background: #F4A66A;
}

.card-icon.operations {
    background: var(--accent-green);
}

.card-icon.leakages {
    background: #A8D5BA;
}

.card-icon.stock {
    background: #B8D8E8;
}

.card-icon.decision {
    background: #7C6AE6;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.problem-card ul {
    list-style: none;
}

.problem-card li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.problem-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-btn);
    font-weight: bold;
}

/* ==========================================
   GOVERNANCE GAP SECTION
   ========================================== */
.governance-gap {
    background: linear-gradient(135deg, rgba(224, 247, 255, 0.8), rgba(245, 230, 232, 0.8));
    padding: 3rem;
    border-radius: 1.5rem;
    border: 2px solid var(--primary-btn);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.governance-gap h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.governance-gap span {
    color: var(--accent-pink);
    font-weight: 700;
}

.governance-gap p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.gap-point {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

/* ==========================================
   SOLUTION SECTION
   ========================================== */
.solution-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.5), rgba(229, 113, 126, 0.05));
}

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

.solution-item {
    background: var(--white);
    border-left: 4px solid var(--accent-pink);
    padding: 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.solution-item:hover {
    box-shadow: 0 8px 20px rgba(229, 113, 126, 0.1);
    transform: translateX(5px);
}

.solution-list-inline {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-item-inline {
    background: var(--white);
    border-left: 4px solid var(--accent-pink);
    padding: 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.solution-item-inline:hover {
    box-shadow: 0 8px 20px rgba(229, 113, 126, 0.1);
    transform: translateY(-5px);
}

/* ==========================================
   WHAT IS HIGP SECTION
   ========================================== */
.what-is {
    padding-top: 0.2rem;
    padding-bottom: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    background: var(--white);
}

.what-content {
    max-width: 1200px;
    margin: 0 auto;
}

.what-text {
    margin-bottom: 3rem;
}

.what-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.what-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.what-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.what-card {
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.8), rgba(245, 230, 232, 0.4));
    padding: 2.5rem;
    border-radius: 1.2rem;
    border: 2px solid var(--primary-btn);
    transition: all 0.3s ease;
}

.what-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(229, 113, 126, 0.15);
}

.what-card.highlight {
    background: linear-gradient(135deg, var(--primary-btn), rgba(229, 113, 126, 0.1));
    border-color: var(--accent-pink);
}

.what-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.what-card span {
    color: var(--accent-pink);
    font-weight: 800;
}

.what-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   OUTCOMES SECTION
   ========================================== */
.outcomes {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.5), rgba(229, 113, 126, 0.03));
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.outcomes-inline {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.outcome-item-inline {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.2rem;
    border: 2px solid var(--primary-btn);
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
    max-width: 210px;
}

.outcome-item-inline:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(229, 113, 126, 0.15);
}

.outcome-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.2rem;
    border: 2px solid var(--primary-btn);
    position: relative;
    transition: all 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(229, 113, 126, 0.15);
}

.outcome-num {
    width: 70px;
    height: 70px;
    background: var(--primary-btn);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.outcome-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.outcome-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.outcome-item-inline h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.outcome-item-inline p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================
   METRICS SECTION
   ========================================== */
.metrics {
    padding: 2.5rem 2rem;
    background: var(--bg-light);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.metric-card {
    background: var(--white);
    padding: 1.5rem 1.2rem;
    border-radius: 0.8rem;
    text-align: center;
    border: 1px solid var(--primary-btn);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(229, 113, 126, 0.1);
}

.metric-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: #e48d94;
    margin-bottom: 0.4rem;
    line-height: 1;
}

.metric-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.3;
}

/* ==========================================
   APPROACH SECTION
   ========================================== */
.approach {
    padding: 5rem 2rem;
    background: var(--white);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    background: linear-gradient(135deg, var(--primary-btn), rgba(245, 230, 232, 0.6));
    padding: 2.5rem;
    border-radius: 1.2rem;
    border: 2px solid var(--primary-btn);
    text-align: center;
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(229, 113, 126, 0.15);
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-pink);
    margin-bottom: 1rem;
}

.approach-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.approach-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   MODULES SECTION
   ========================================== */
.modules {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.8), rgba(255, 207, 212, 0.1));
}

.modules-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.module-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 1.2rem;
    border: 2px solid var(--primary-btn);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-btn);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.module-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(229, 113, 126, 0.25);
}

.module-card:hover::before {
    opacity: 0.05;
}

.module-card:hover h4 {
    color: var(--primary-btn);
}

.module-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.module-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-btn);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.module-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.module-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.4;
}

/* ==========================================
   WORKS WITH SECTION
   ========================================== */
.works-with {
    background: var(--white);
    padding: 3rem;
    border-radius: 1.2rem;
    border: 2px solid var(--primary-btn);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.works-with h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.works-with p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.works-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.works-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.works-item .label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.works-item .value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-pink);
}

.works-separator {
    font-size: 2rem;
    color: var(--primary-btn);
    font-weight: 300;
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-btn), rgba(229, 113, 126, 0.08));
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.final-cta p {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.final-cta p span {
    color: var(--accent-pink);
    font-weight: 800;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem !important;
    font-weight: 500;
}

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

/* ==========================================
   RESPONSIVE DESIGN - TABLET & MEDIUM SCREENS
   ========================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .section-container {
        padding: 0 1.5rem;
    }

    .problems-grid,
    .what-cards-grid,
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE SCREENS
   ========================================== */
@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-label {
        font-size: 0.85rem;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Typography */
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }

    p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Sections */
    .problems,
    .solution-section,
    .what-is,
    .outcomes,
    .approach,
    .modules,
    .final-cta {
        padding: 3rem 1.5rem;
    }

    /* Grids */
    .problems-grid,
    .what-cards-grid,
    .outcomes-grid,
    .approach-grid,
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .outcomes-inline,
    .solution-list-inline {
        gap: 1rem;
    }

    .outcome-item-inline,
    .solution-item-inline {
        min-width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
    }

    /* Buttons */
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .btn-primary:hover,
    .btn-outline:hover {
        transform: translateY(-1px);
    }

    /* Problem Cards */
    .problem-card {
        padding: 1.5rem;
    }

    .problem-card h3 {
        font-size: 1.2rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Outcome Cards */
    .outcome-num {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    /* Approach Cards */
    .approach-card {
        padding: 1.8rem;
    }

    .step-num {
        font-size: 2rem;
    }

    /* Module Cards */
    .module-card {
        padding: 1.5rem;
        min-height: 100px;
        font-size: 0.9rem;
    }

    /* Gap Points */
    .gap-points {
        flex-direction: column;
        gap: 1rem;
    }

    .gap-point {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    /* Works Items */
    .works-items {
        flex-direction: column;
        gap: 1rem;
    }

    .works-separator {
        display: none;
    }

    /* Final CTA */
    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta p {
        font-size: 1.3rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    /* Governance Gap */
    .governance-gap {
        padding: 2rem;
        margin: 2rem 0;
    }

    .governance-gap h3 {
        font-size: 1.5rem;
    }

    /* Works With Box */
    .works-with {
        padding: 2rem;
    }

    .works-with h3 {
        font-size: 1.4rem;
    }
}

/* ==========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ========================================== */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero {
        padding: 2.5rem 1rem;
    }

    .hero-text h1 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-label {
        font-size: 0.75rem;
        margin-top:2rem;
        margin-bottom: 0.8rem;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1.05rem;
    }

    p {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-container {
        padding: 0 1rem;
    }

    .problems,
    .solution-section,
    .outcomes,
    .approach,
    .modules,
    .final-cta {
        padding: 2rem 1rem;
    }

    .what-is {
        padding-top: 0.1rem;
        padding-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .problem-card,
    .outcome-item-inline,
    .solution-item-inline {
        padding: 1.2rem;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .outcome-num {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .module-card {
        padding: 1rem;
        min-height: 90px;
        font-size: 0.8rem;
    }

    .approach-card {
        padding: 1.5rem;
    }

    .step-num {
        font-size: 1.6rem;
    }

    .final-cta h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .final-cta p {
        font-size: 1.1rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .governance-gap {
        padding: 1.5rem;
    }

    .governance-gap h3 {
        font-size: 1.25rem;
    }

    .works-with {
        padding: 1.5rem;
    }

    .works-with h3 {
        font-size: 1.2rem;
    }

    .works-item .value {
        font-size: 1.1rem;
    }

    .works-item .label {
        font-size: 0.8rem;
    }
}