/* CARDS */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 15px;
    /*color: #111827;*/
    color: var(--secondary-color);
}

.step-number {
    position: absolute;
    top: -18px;
    right: 10px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--alt-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* NUMBERS */

.numbers {
    background: var(--secondary-color);
    color: white;
}

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

.number-box h3 {
    font-size: 3.5rem;
    color: #f59e0b;
    margin-bottom: 10px;
}

.number-box p {
    color: #d1d5db;
}

/* WORDS */

.word-container {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.word-item {
    background: white;
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}

/* INTRO */

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

.content-img img {
    border-radius: 28px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

.intro-text p {
    margin-bottom: 18px;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .content-img {
        grid-template-columns:1fr;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 70px 0;
    }
}

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

.img-box {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.img-box img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.img-content {
    padding: 20px;
}

.img-content h3 {
    margin-bottom: 10px;
    color: #1f2937;
}