.who-we-are {
    background: #f8fafc;
    padding: 5rem 1.5rem;
}

.who-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Text */
.who-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
    color: #0f172a;
}

.who-text p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.badge {
    display: inline-block;
    background: rgba(22, 37, 86, 0.1);
    color: #162556;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Media */
.who-media img,
.who-media video {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Animation */
.who-text,
.who-media {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.9s ease forwards;
}

.who-media {
    animation-delay: 0.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .who-container {
        grid-template-columns: 1fr;
    }
}


/* How We Work */
.how-work {
    background: #ffffff;
    padding: 5rem 1.5rem;
}

.how-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

/* Steps */
.how-steps h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.how-steps ol {
    padding-left: 1.2rem;
}

.how-steps li {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.6;
    font-weight: 500;
}

/* QR Card */
.how-qr {
    display: flex;
    justify-content: center;
}

.qr-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    max-width: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.qr-card img {
    width: 180px;
    margin-bottom: 1rem;
}

.qr-card p {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 1rem;
}

.qr-link {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

/* Animation on load */
.how-steps,
.how-qr {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s ease forwards;
}

.how-qr {
    animation-delay: 0.2s;
}

.qr-card {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .how-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .how-steps ol {
        text-align: left;
        max-width: 400px;
        margin: auto;
    }
}