/* =====================================================
   ABOUT PAGE
===================================================== */

/* ---------- Hero ---------- */

.about {

    padding: 80px 0 60px;

}

.about h1 {

    font-size: 48px;

    margin-bottom: 30px;

    text-align: center;

}

.about__lead {

    max-width: 900px;

    margin: 0 auto;

    text-align: center;

    font-size: 20px;

    line-height: 1.9;

}

/* =====================================================
   SERVICES
===================================================== */

.services {

    padding: 70px 0;

    background: var(--color-light);

}

.services h2 {

    text-align: center;

    font-size: 40px;

    margin-bottom: 50px;

}

.services__grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}

.services article {

    background: white;

    border: 1px solid var(--color-border);

    border-radius: 14px;

    padding: 35px;

    transition: var(--transition);

}

.services article:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 35px rgba(0,0,0,.08);

}

.services h3 {

    font-size: 24px;

    margin-bottom: 15px;

}

.services p {

    line-height: 1.8;

}

/* =====================================================
   WORKFLOW
===================================================== */

.workflow {

    padding: 80px 0;

}

.workflow h2 {

    text-align: center;

    font-size: 40px;

    margin-bottom: 50px;

}

.workflow__steps {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.workflow__steps div {

    background: white;

    border: 1px solid var(--color-border);

    border-radius: 14px;

    padding: 35px 20px;

    text-align: center;

    font-weight: 600;

    font-size: 20px;

    transition: var(--transition);

}

.workflow__steps div:hover {

    background: var(--color-primary);

    color: white;

}

/* =====================================================
   CONTACT BLOCK
===================================================== */

.about-contact {

    padding: 80px 0;

    background: var(--color-light);

    text-align: center;

}

.about-contact h2 {

    font-size: 38px;

    margin-bottom: 25px;

}

.about-contact p {

    max-width: 700px;

    margin: 0 auto 35px;

    line-height: 1.8;

    font-size: 18px;

}

/* =====================================================
   ADAPTIVE
===================================================== */

@media (max-width: 992px) {

    .services__grid {

        grid-template-columns: 1fr;

    }

    .workflow__steps {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width: 768px) {

    .about h1 {

        font-size: 36px;

    }

    .about__lead {

        font-size: 18px;

    }

    .services h2,
    .workflow h2,
    .about-contact h2 {

        font-size: 30px;

    }

    .workflow__steps {

        grid-template-columns: 1fr;

    }

}

@media (max-width: 480px) {

    .about {

        padding: 60px 0 40px;

    }

    .services,
    .workflow,
    .about-contact {

        padding: 60px 0;

    }

}