/* ===== ABOUT HERO ===== */
        .about-hero {
            position: relative;
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #0b1120 0%, #19223f 50%, #2d1b4b 100%);
            overflow: hidden;
        }

        .about-hero .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            color: white;
            position: relative;
            z-index: 2;
        }

        .about-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 40px;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }

        .about-badge i {
            color: #ffd700;
        }

        .about-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .about-title span {
            background: linear-gradient(135deg, #ffd700, #ff8a5c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-description {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255,255,255,0.9);
            line-height: 1.6;
        }

        /* ===== MAIN CONTENT ===== */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

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

        .stat-card {
            background: white;
            padding: 30px;
            border-radius: 30px;
            text-align: center;
            box-shadow: 0 10px 30px -15px rgba(0,0,0,0.1);
            border: 1px solid #e9edf3;
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px -15px rgba(218,11,78,0.2);
            border-color: rgba(218,11,78,0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #da0b4e;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #64748b;
            font-weight: 500;
        }

        /* About Sections */
        .about-section {
            margin-bottom: 80px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0b1120;
            margin-bottom: 15px;
        }

        .section-header .underline {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #da0b4e, #4f46e5);
            margin: 0 auto;
            border-radius: 2px;
        }

        .section-header p {
            color: #64748b;
            max-width: 700px;
            margin: 20px auto 0;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .content-text p {
            color: #475569;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .content-text h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #0b1120;
        }

        .content-image {
            background: linear-gradient(135deg, rgba(218,11,78,0.1), rgba(79,70,229,0.1));
            border-radius: 40px;
            padding: 40px;
            text-align: center;
        }

        .content-image i {
            font-size: 5rem;
            color: #da0b4e;
            margin-bottom: 20px;
        }

        .ssl-badge-large {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: #10b981;
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            margin-top: 20px;
        }

        /* Founder Section */
        .founder-section {
            background: linear-gradient(135deg, #0b1120, #19223f);
            border-radius: 50px;
            padding: 60px;
            margin: 80px 0;
            color: white;
        }

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

        .founder-image {
            text-align: center;
        }

        .founder-avatar {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto;
            box-shadow: 0 20px 40px -15px rgba(0,0,0,0.3);
            border: 3px solid rgba(255,215,0,0.3);
            transition: all 0.3s;
        }

        .founder-avatar:hover {
            transform: scale(1.02);
            border-color: #ffd700;
        }

        .founder-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .founder-name {
            font-size: 2rem;
            font-weight: 800;
            margin-top: 20px;
        }

        .founder-title {
            color: #ffd700;
            margin-bottom: 15px;
        }

        .founder-quote {
            font-size: 1.2rem;
            font-style: italic;
            margin: 20px 0;
            padding-left: 20px;
            border-left: 3px solid #ffd700;
            color: rgba(255,255,255,0.9);
        }

        .founder-stats {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .founder-stat {
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
        }

        /* Selection Process */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin: 50px 0;
        }

        .process-card {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 30px;
            border: 1px solid #e9edf3;
            transition: all 0.3s;
        }

        .process-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);
        }

        .process-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #da0b4e, #4f46e5);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .process-card h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #0b1120;
        }

        .process-card p {
            color: #64748b;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #da0b4e, #4f46e5);
            border-radius: 50px;
            padding: 60px;
            text-align: center;
            color: white;
            margin-top: 60px;
        }

        .cta-section h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .cta-section p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn_primary, .btn_secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn_primary {
            background: white;
            color: #da0b4e;
        }

        .btn_secondary {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .btn_primary:hover, .btn_secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -10px rgba(0,0,0,0.3);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .founder-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
            }
            
            .about-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .process-grid {
                grid-template-columns: 1fr;
            }
            
            .founder-section {
                padding: 40px 25px;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .cta-section {
                padding: 40px 25px;
            }
            
            .cta-section h3 {
                font-size: 1.5rem;
            }
            
            .founder-avatar {
                width: 200px;
                height: 200px;
            }
            
            .founder-name {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .about-title {
                font-size: 1.8rem;
            }
            
            .founder-avatar {
                width: 180px;
                height: 180px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stat-card, .process-card {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        .stat-card:nth-child(1) { animation-delay: 0.1s; }
        .stat-card:nth-child(2) { animation-delay: 0.2s; }
        .stat-card:nth-child(3) { animation-delay: 0.3s; }
        .stat-card:nth-child(4) { animation-delay: 0.4s; }