/* === WHY CHOOSE US SECTION === */
.why-us-section {
    background-color: #ffffff;
    /* White background */
    padding: 8rem var(--padding-page) 10rem;
    position: relative;
    z-index: 5;
}

.why-header {
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.why-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #121212;
    letter-spacing: -2px;
    line-height: 1.1;
}

.why-title span {
    color: #888;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Asymmetric grid like reference */
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Card General Styles */
.why-card {
    border-radius: 4px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

/* Card Themes */
.card-dark {
    background-color: #f5f5f5;
    /* Light gray for cards */
    color: #121212;
}

.card-light {
    background-color: #e8e8e8;
    /* Slightly darker gray for variation */
    color: #121212;
}

/* Card Content */
.card-top-label {
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plus-icon {
    font-size: 1.2rem;
    font-weight: 300;
    color: #ff5f56;
    /* Accent color */
}

.card-stat {
    font-family: 'Inter', sans-serif;
    font-size: 6rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.5rem;
}

.card-desc {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 300px;
    opacity: 0.8;
}

/* Specific Card Adjustments */
.card-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.card-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    mix-blend-mode: overlay;
}

.card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Grid Placement */
.why-card:nth-child(1) {
    grid-column: 1 / 2;
    /* Big card left */
}

.why-card:nth-child(2) {
    grid-column: 2 / 3;
}

.why-card:nth-child(3) {
    grid-column: 1 / 2;
}

.why-card:nth-child(4) {
    grid-column: 2 / 3;
    background: linear-gradient(135deg, #222, #111);
    color: #f5f5f5;
}


@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: 300px;
        grid-column: auto !important;
    }
}