/* ==========================================================================
   SUITABLE EDGE - ABOUT PAGE CSS (PREMIUM EDITION)
   IMAGE SIZE - THODA CHOTA
   ========================================================================== */

:root {
    --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    --primary-dark: #091527;
    --primary-blue: #1E3A8A;
    --orange-main: #FF6B00;
    --orange-hover: #E56000;
    --orange-light: #FFF0E6;
    --orange-bg: #FFF8F3;
    --text-dark: #0F172A;
    --text-mid: #475569;
    --gray-light: #F8FAFC;
    --gray-border: #E2E8F0;
    --white: #FFFFFF;
    
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 32px rgba(9, 21, 39, 0.07);
    --shadow-lg: 0 24px 48px rgba(9, 21, 39, 0.12);
    --shadow-orange: 0 8px 24px rgba(255, 107, 0, 0.32);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: #FFFFFF;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, 
.logo-text, 
.btn-primary, 
.btn-secondary, 
.btn-nav,
.nav-links a {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

.orange { color: var(--orange-main); }
.text-orange { color: var(--orange-main); }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--orange-main);
    color: var(--white);
    padding: 16px 34px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.98rem;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-orange);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 107, 0, 0.42);
}

.btn-secondary {
    background: #FFFFFF;
    color: var(--primary-dark);
    padding: 16px 34px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--gray-border);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--orange-main);
    color: var(--orange-main);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.btn-nav {
    background: var(--orange-main);
    color: var(--white) !important;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow-orange);
}

.btn-nav:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    padding: 22px 0;
    border-bottom: 1px solid var(--gray-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-text {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1;
}

.logo-text .suitable { color: var(--primary-dark); }
.logo-text .edge { color: var(--orange-main); }

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-mid);
    letter-spacing: 2.5px;
    margin-top: 4px;
}

.logo-tagline span { color: var(--orange-main); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-nav) {
    color: var(--text-mid);
    position: relative;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-main);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:not(.btn-nav):hover,
.nav-links a.active {
    color: var(--orange-main);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 4px 8px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--primary-dark);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.header-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--orange-light);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.page-header h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.page-header h1 .orange {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C38 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    padding: 80px 0 60px;
    background: var(--white);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image-bg {
    position: absolute;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.founder-image-placeholder {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, #091527 0%, #1a365d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border: 4px solid var(--orange-main);
    box-shadow: var(--shadow-lg);
}

.founder-image-placeholder i {
    font-size: 8rem;
    color: var(--orange-main);
    opacity: 0.9;
}

.founder-exp-badge {
    position: absolute;
    bottom: 20px;
    right: 40px;
    background: var(--orange-main);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 16px;
    text-align: center;
    z-index: 2;
    box-shadow: var(--shadow-orange);
    animation: floatAnim 3s ease-in-out infinite alternate;
}

@keyframes floatAnim {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.founder-exp-badge .exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
}

.founder-exp-badge .exp-label {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.9;
}

.founder-content {
    padding: 20px 0;
}

.founder-title {
    display: inline-block;
    color: var(--orange-main);
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.founder-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.founder-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C38 100%);
    border-radius: 2px;
    margin: 16px 0 24px;
}

.founder-description {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 400;
}

.founder-description strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-border);
}

.founder-stat-item {
    text-align: center;
}

.founder-stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--orange-main);
}

.founder-stat-item .stat-label {
    font-size: 0.85rem;
    color: var(--text-mid);
    font-weight: 500;
}

/* ===== ABOUT COMPANY SECTION ===== */
.about-company-section {
    padding: 80px 0;
    background: var(--white);
}

.about-company-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: var(--orange-bg);
    color: var(--orange-main);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-badge.center {
    display: table;
    margin: 0 auto 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C38 100%);
    border-radius: 2px;
    margin: 16px 0 24px;
}

.about-description {
    color: var(--text-mid);
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-description strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* ===== VMA CARDS ===== */
.vma-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.vma-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: 20px;
    border: 1px solid var(--gray-border);
    text-align: center;
    transition: all 0.3s ease;
}

.vma-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 0, 0.3);
}

.vma-highlight {
    background: var(--orange-bg);
    border-color: var(--orange-light);
}

.vma-icon {
    width: 64px;
    height: 64px;
    background: var(--orange-bg);
    color: var(--orange-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px;
}

.vma-highlight .vma-icon {
    background: var(--orange-main);
    color: var(--white);
}

.vma-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.vma-card p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================
   STORY SECTION - IMAGE THODA CHOTA
   ========================================== */
.story-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.story-section .container {
    max-width: 1240px;  /* Normal container */
    width: 90%;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;  /* Image ko 1.1x space - thoda kam */
    gap: 50px;
    align-items: center;
}

/* LEFT SIDE - CONTENT */
.story-text {
    padding-right: 20px;
}

.story-description {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 400;
}

.story-description strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.story-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--gray-border);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.story-badge i {
    color: var(--orange-main);
}

/* ===== STORY IMAGE - THODA CHOTA ===== */
.story-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.story-img {
    width: 100%;
    max-width: 700px;  /* 100% se 700px - thoda chota */
    height: auto;
    display: block;
    /* BILKUL CLEAN - No background, no box, no shadow, no border */
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 80px 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-mid);
    max-width: 650px;
    margin: 0 auto 55px;
    font-size: 1.08rem;
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: 20px;
    border: 1px solid var(--gray-border);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 0, 0.3);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--orange-bg);
    color: var(--orange-main);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ===== ECOSYSTEM ===== */
.ecosystem-section {
    padding: 80px 0 60px;
    background: var(--gray-light);
}

.ecosystem-badge {
    display: inline-block;
    background: var(--orange-bg);
    color: var(--orange-main);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ecosystem-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--gray-border);
    text-align: center;
    transition: all 0.3s ease;
}

.ecosystem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.highlight-card {
    border-color: var(--orange-main);
    background: var(--orange-bg);
}

.ecosystem-icon {
    width: 64px;
    height: 64px;
    background: var(--orange-bg);
    color: var(--orange-main);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.highlight-card .ecosystem-icon {
    background: var(--orange-main);
    color: var(--white);
}

.ecosystem-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.ecosystem-card p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.65;
}

.ecosystem-footer-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding: 24px 32px;
    background: var(--primary-dark);
    border-radius: 16px;
    flex-wrap: wrap;
}

.ecosystem-pill {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ecosystem-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
}

/* ===== STATS ===== */
.stats-section {
    padding: 60px 0;
    background: var(--primary-dark);
    border-top: 4px solid var(--orange-main);
    border-bottom: 4px solid var(--orange-main);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-box .stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--orange-main);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-box .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-weight: 500;
}

/* ===== CTA ===== */
.cta-banner {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0;
    border-top: 4px solid var(--orange-main);
}

.cta-title {
    font-size: 2.7rem;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
    max-width: 700px;
    margin: 0 auto 38px;
    font-weight: 400;
}

.btn-cta {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* ===== WHATSAPP & FOOTER ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

footer {
    background: #060D19;
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 55px;
}

.footer-brand h3 {
    font-size: 1.6rem;
    font-weight: 900;
}

.footer-brand h3 span { color: var(--orange-main); }
.footer-brand .tagline { 
    font-size: 0.72rem; 
    font-weight: 800; 
    font-family: var(--font-heading); 
    color: var(--orange-main); 
    letter-spacing: 2px; 
    margin-bottom: 20px; 
}
.footer-brand p { 
    color: rgba(255, 255, 255, 0.68); 
    font-size: 0.94rem; 
    max-width: 350px; 
    margin-bottom: 26px; 
}

.social-links { 
    display: flex; 
    gap: 12px; 
}
.social-links a {
    width: 42px; 
    height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover { 
    background: var(--orange-main); 
    transform: translateY(-3px);
}

.footer-links h4 { 
    font-size: 1.12rem; 
    font-weight: 800; 
    margin-bottom: 24px; 
    color: var(--white); 
}
.footer-links a { 
    display: block; 
    color: rgba(255, 255, 255, 0.68); 
    margin-bottom: 12px; 
    font-size: 0.94rem; 
}
.footer-links a:hover { 
    color: var(--orange-main); 
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links { 
    display: flex; 
    gap: 24px; 
}
.legal-links a { 
    color: rgba(255, 255, 255, 0.6); 
}
.legal-links a:hover { 
    color: var(--orange-main); 
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .founder-divider {
        margin: 16px auto 24px;
    }
    .founder-stats {
        justify-items: center;
    }
    
    .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .story-img {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    .founder-image-placeholder {
        width: 300px;
        height: 300px;
    }
    .founder-image-placeholder i {
        font-size: 5rem;
    }
    
    .vma-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle { 
        display: block; 
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--gray-border);
        gap: 18px;
    }

    .nav-links.active { 
        display: flex; 
    }

    .page-header {
        padding: 60px 0 40px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .page-header p {
        font-size: 1rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .story-text {
        padding-right: 0;
    }
    
    .story-badges {
        justify-content: center;
    }
    
    .story-img {
        max-width: 100%;
        margin: 0 auto;
    }

    .founder-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .founder-exp-badge {
        display: none;
    }

    .founder-image-placeholder {
        width: 220px;
        height: 220px;
    }
    .founder-image-placeholder i {
        font-size: 3.5rem;
    }

    .vma-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-footer-bar {
        flex-direction: column;
        gap: 12px;
    }
    .ecosystem-divider {
        width: 60%;
        height: 1px;
        background: rgba(255, 255, 255, 0.15);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }

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

    .cta-title {
        font-size: 2rem;
    }
    .cta-desc {
        font-size: 1rem;
    }

    .value-card {
        padding: 28px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .stat-box .stat-number {
        font-size: 2.2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.6rem;
    }
    .founder-content h2 {
        font-size: 2rem;
    }
    .vma-card {
        padding: 24px 20px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .stat-box .stat-number {
        font-size: 1.8rem;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .logo-text {
        font-size: 1.3rem;
    }
}