/* ==================================================
   STATIC PAGES
================================================== */

.static-page {
    background: #ffffff;
    color: #5f6f82;

    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 300;
}

.static-page,
.static-page * {
    box-sizing: border-box;
}


/* ==================================================
   STATIC PAGE LAYOUT
================================================== */

.static-page__hero {
    padding: 58px 0 76px;
}

.static-page__content {
    max-width: 900px;
    margin: 0 auto;
}


/* ==================================================
   STATIC PAGE TYPOGRAPHY
================================================== */

.static-page__content h1,
.static-page__content h2,
.static-page__content h3,
.static-page__content p,
.static-page__content a,
.static-page__content li,
.static-page__content span {
    font-weight: 300;
}

.static-page__content h1 {
    margin: 0 0 24px;

    color: #12263d;

    font-size: 30px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.static-page__content h2 {
    margin: 34px 0 12px;

    color: #17304b;

    font-size: 19px;
    line-height: 1.35;
}

.static-page__content h3 {
    margin: 26px 0 10px;

    color: #17304b;

    font-size: 16px;
    line-height: 1.4;
}

.static-page__content p {
    margin: 0;

    color: #66758a;

    font-size: 14px;
    line-height: 1.75;
}

.static-page__content p + p {
    margin-top: 14px;
}

.static-page__content a {
    color: #ef4e5e;

    font-size: 14px;
    text-decoration: none;
}


/* ==================================================
   NOTICE BOX
================================================== */

.static-page__notice {
    margin-top: 24px;
    padding: 16px 18px;

    border: 1px solid #e5eaf0;
    border-radius: 10px;

    background: #f8fafc;
}


/* ==================================================
   STATIC PAGE ACTIONS
================================================== */

.static-page__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;
}

.static-page__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 0 14px;

    border: 1px solid #ef4e5e;
    border-radius: 8px;

    color: #ef4e5e;

    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
}

.static-page__actions a:first-child {
    background: #ef4e5e;
    color: #ffffff;
}


/* ==================================================
   CONTACT PAGE
================================================== */

.static-page__content--contact {
    max-width: 980px;
}

.contact-page__intro {
    max-width: 690px;

    margin-bottom: 34px;
}

.contact-page__eyebrow {
    display: inline-flex;

    margin-bottom: 10px;

    color: #ef4e5e;

    font-size: 12px;
    line-height: 1;
}

.contact-page__intro h1 {
    margin-bottom: 14px;
}

.contact-page__intro p {
    color: #64758a;
}


/* ==================================================
   CONTACT CARDS
================================================== */

.contact-page__grid {
    display: grid;
    grid-template-columns:
        1.35fr
        0.85fr
        1fr;

    gap: 14px;
}

.contact-page__card {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    min-height: 128px;
    padding: 20px;

    border: 1px solid #e0e7ee;
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fafcfd 100%
        );
}

.contact-page__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border-radius: 10px;

    background: #fff1f3;
    color: #ef4e5e;
}

.contact-page__icon svg {
    width: 19px;
    height: 19px;

    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-page__label {
    display: block;

    margin-bottom: 7px;

    color: #17304b;

    font-size: 13px;
}

.contact-page__card p,
.contact-page__card a {
    color: #607286;

    font-size: 14px;
    line-height: 1.65;
}

.contact-page__card a:hover {
    color: #ef4e5e;
}


/* ==================================================
   CONTACT CTA
================================================== */

.contact-page__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    margin-top: 18px;
    padding: 22px 24px;

    border-radius: 14px;

    background: #0b1a27;
}

.contact-page__cta h2 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 17px;
}

.contact-page__cta p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
}

.contact-page__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 118px;
    min-height: 42px;
    padding: 0 16px;

    border-radius: 9px;

    background: #ef4e5e;
    color: #ffffff !important;

    font-size: 13px !important;
    text-decoration: none;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 900px) {

    .contact-page__grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 760px) {

    .static-page__hero {
        padding: 40px 0 52px;
    }

    .static-page__content {
        max-width: 100%;
    }

    .static-page__content h1 {
        font-size: 26px;
    }

    .static-page__content h2 {
        font-size: 18px;
    }

    .static-page__actions {
        flex-direction: column;
    }

    .static-page__actions a {
        width: 100%;
    }

    .contact-page__cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-page__button {
        width: 100%;
    }

}



/* ==================================================
   STATUS PAGES
================================================== */

.static-page__content--status {
    max-width: 760px;

    margin: 0 auto;
    padding: 54px 48px;

    border: 1px solid #e6ebf0;
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fafcfd 100%
        );

    box-shadow:
        0 18px 50px
        rgba(18, 48, 75, 0.06);

    text-align: center;
}

.status-page__code {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 82px;
    min-height: 38px;

    margin-bottom: 20px;
    padding: 0 14px;

    border-radius: 9px;

    background: #fff1f3;
    color: #ef4e5e;

    font-size: 15px;
    line-height: 1;
}

.static-page__content--status h1 {
    margin: 0 0 14px;

    font-size: 30px;
    line-height: 1.25;
}

.static-page__content--status p {
    max-width: 560px;

    margin: 0 auto;

    color: #6c7b8f;

    font-size: 14px;
    line-height: 1.7;
}

.status-page__actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 28px;
}

.status-page__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 16px;

    border: 1px solid #dfe6ee;
    border-radius: 9px;

    background: #ffffff;
    color: #17304b !important;

    font-size: 13px !important;
    text-decoration: none !important;
}

.status-page__button--primary {
    border-color: #ef4e5e;

    background: #ef4e5e;
    color: #ffffff !important;
}

.status-page__button:hover {
    border-color: #ef4e5e;
}

@media (max-width: 760px) {

    .static-page__content--status {
        padding: 36px 20px;
    }

    .status-page__actions {
        flex-direction: column;
    }

    .status-page__button {
        width: 100%;
    }

}

