/* =========================================
   PROVIDENTIA GRATIA LLC
   Main Website Styles
   ========================================= */


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: #1d2630;

    background: #ffffff;

    line-height: 1.7;
}


/* =========================================
   GENERAL
   ========================================= */


.container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    padding-left: 25px;
    padding-right: 25px;
}


.narrow {
    max-width: 800px;
}


a {
    color: inherit;
}


h1,
h2,
h3 {
    line-height: 1.2;
}


h1 {
    font-size: 52px;
    margin-top: 0;
    margin-bottom: 25px;
}


h2 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 25px;
}


h3 {
    font-size: 22px;
    margin-top: 0;
}


p {
    margin-top: 0;
    margin-bottom: 20px;
}


.eyebrow {
    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 15px;

    color: #637080;
}


/* =========================================
   HEADER
   ========================================= */


header {
    background: #ffffff;

    border-bottom: 1px solid #e7eaed;

    position: relative;
}


.nav-container {
    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


.logo {
    text-decoration: none;

    font-weight: 700;

    font-size: 18px;

    letter-spacing: -0.3px;

    white-space: nowrap;
}


nav {
    display: flex;

    align-items: center;

    gap: 25px;
}


nav a {
    text-decoration: none;

    font-size: 14px;

    color: #4d5965;

    transition: color 0.2s ease;
}


nav a:hover {
    color: #111820;
}


/* =========================================
   HERO
   ========================================= */


.hero {
    padding-top: 120px;
    padding-bottom: 120px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #f5f7fa 0%,
            #ffffff 100%
        );
}


.hero-text {
    max-width: 700px;

    margin-left: auto;
    margin-right: auto;

    margin-bottom: 35px;

    font-size: 19px;

    color: #53606d;
}


/* =========================================
   BUTTONS
   ========================================= */


.button {
    display: inline-block;

    padding: 12px 24px;

    background: #1d2630;

    color: #ffffff;

    text-decoration: none;

    border-radius: 6px;

    font-weight: 600;

    font-size: 14px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.button:hover {
    opacity: 0.9;

    transform: translateY(-1px);
}


.button-light {
    background: #ffffff;

    color: #1d2630;
}


/* =========================================
   SECTIONS
   ========================================= */


.section {
    padding-top: 90px;

    padding-bottom: 90px;
}


.section.light {
    background: #f7f8fa;
}


.section p {
    color: #596572;
}


/* =========================================
   PAGE HEADER
   ========================================= */


.page-header {
    padding-top: 90px;

    padding-bottom: 90px;

    background: #f5f7fa;
}


.page-header p:last-child {
    font-size: 18px;

    color: #596572;

    margin-bottom: 0;
}


/* =========================================
   CARDS
   ========================================= */


.cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    margin-top: 40px;
}


.card {
    padding: 35px;

    background: #ffffff;

    border: 1px solid #e3e7eb;

    border-radius: 10px;
}


.section.light .card {
    background: #ffffff;
}


.card p {
    font-size: 15px;

    margin-bottom: 0;
}


.card-number {
    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #7a8794;

    margin-bottom: 20px;
}


/* =========================================
   CTA
   ========================================= */


.cta {
    padding-top: 90px;

    padding-bottom: 90px;

    text-align: center;

    background: #1d2630;

    color: #ffffff;
}


.cta p {
    max-width: 600px;

    margin-left: auto;

    margin-right: auto;

    color: #d6dce2;

    margin-bottom: 30px;
}


/* =========================================
   APP PAGE
   ========================================= */


.app-placeholder {
    display: flex;

    align-items: center;

    gap: 40px;

    max-width: 850px;

    margin: 0 auto;

    padding: 45px;

    background: #ffffff;

    border: 1px solid #e1e5e9;

    border-radius: 12px;
}


.app-icon {
    width: 90px;

    height: 90px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background: #1d2630;

    color: #ffffff;

    font-size: 25px;

    font-weight: 700;
}


/* =========================================
   CONTACT
   ========================================= */


.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: start;
}


.contact-email {
    font-size: 18px;

    font-weight: 600;
}


.contact-email a {
    text-decoration: none;
}


.contact-box {
    padding: 35px;

    background: #f7f8fa;

    border: 1px solid #e1e5e9;

    border-radius: 10px;
}


/* =========================================
   PRIVACY POLICY
   ========================================= */


.policy h2 {
    font-size: 25px;

    margin-top: 45px;

    margin-bottom: 15px;
}


.policy h2:first-of-type {
    margin-top: 30px;
}


.policy p {
    color: #505c68;
}


/* =========================================
   FOOTER
   ========================================= */


footer {
    background: #f5f7f9;

    border-top: 1px solid #e2e6e9;

    padding-top: 45px;

    padding-bottom: 25px;
}


.footer-container {
    display: flex;

    justify-content: space-between;

    gap: 40px;
}


.footer-container p {
    color: #6b7680;

    font-size: 14px;

    margin-top: 8px;
}


.footer-links {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    align-content: flex-start;
}


.footer-links a {
    font-size: 13px;

    color: #596572;

    text-decoration: none;
}


.copyright {
    margin-top: 35px;

    padding-top: 20px;

    border-top: 1px solid #dfe3e6;
}


.copyright p {
    margin: 0;

    font-size: 12px;

    color: #7a848d;
}


/* =========================================
   MOBILE
   ========================================= */


@media (max-width: 750px) {


    .nav-container {
        flex-direction: column;

        align-items: flex-start;

        padding-top: 20px;

        padding-bottom: 20px;
    }


    nav {
        flex-wrap: wrap;

        gap: 15px;
    }


    nav a {
        font-size: 13px;
    }


    h1 {
        font-size: 38px;
    }


    h2 {
        font-size: 30px;
    }


    .hero {
        padding-top: 80px;

        padding-bottom: 80px;
    }


    .section {
        padding-top: 65px;

        padding-bottom: 65px;
    }


    .page-header {
        padding-top: 65px;

        padding-bottom: 65px;
    }


    .cards {
        grid-template-columns: 1fr;
    }


    .app-placeholder {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px;
    }


    .contact-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .footer-container {
        flex-direction: column;

        gap: 25px;
    }


    .footer-links {
        flex-direction: column;

        gap: 10px;
    }

}