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

        .about-section {
            display: flex;
            min-height: 90vh;
            font-family: 'Poppins', sans-serif;
        }

        /* ── LEFT ── */
        .about-left {
            flex: 1;
            background: #f8f8f6;
            padding: 90px 6%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .about-tag {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #F4600A;
            margin-bottom: 8px;
        }

        .about-tag-line {
            width: 36px;
            height: 3px;
            background: #F4600A;
            border-radius: 2px;
            margin-bottom: 28px;
        }

        .about-title {
            font-size: 40px;
            font-weight: 700;
            color: #111;
            line-height: 1.25;
            margin-bottom: 24px;
        }

        .about-title span { color: #F4600A; }

        .about-text {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 16px;
            max-width: 460px;
        }

        /* Stats */
        .about-stats {
            display: flex;
            align-items: center;
            margin-top: 44px;
            border-top: 1px solid #e5e5e5;
            padding-top: 36px;
        }

        .stat {
            flex: 1;
            text-align: center;
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid #F4600A;
            color: #F4600A;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
        }

        .stat-num {
            font-size: 26px;
            font-weight: 700;
            color: #111;
            line-height: 1;
            margin-bottom: 4px;
        }

        .stat-lbl {
            font-size: 12px;
            color: #999;
            line-height: 1.4;
        }

        .stat-div {
            width: 1px;
            height: 55px;
            background: #ddd;
            flex-shrink: 0;
        }

        /* ── RIGHT ── */
        .about-right {
            flex: 1.7;
            position: relative;
            overflow: hidden;
            clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
        }

        .about-right img {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .about-section { flex-direction: column; min-height: unset; }
            .about-right { clip-path: none; height: 320px; position: relative; }
            .about-right img { position: absolute; }
            .about-title { font-size: 30px; }
        }

        @media (max-width: 500px) {
            .about-stats { flex-wrap: wrap; gap: 24px; }
            .stat-div { display: none; }
            .stat { min-width: 40%; }
        }
