/* =========================================================
   STICKSPHOTO SERVICES PAGE
   ========================================================= */

body.services-page {
    display: block !important;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #111;
    color: #fff;
}

body.services-page .site-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.services-main {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    padding: 100px 0 120px;
}

.services-introduction {
    max-width: 760px;
    margin-bottom: 50px;
}

.services-eyebrow {
    margin: 0 0 14px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.services-introduction h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.services-introduction > p:last-child {
    max-width: 680px;
    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.7);

    font-size: 1.08rem;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-height: 310px;
    padding: 38px;

    box-sizing: border-box;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );

    color: #fff;
    text-decoration: none;

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.38);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    margin-bottom: 30px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.1);

    font-size: 1.8rem;
}

.service-name {
    font-size: 1.75rem;
    font-weight: 750;
}

.service-description {
    max-width: 420px;
    margin-top: 14px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 1rem;
    line-height: 1.65;
}

.service-action {
    margin-top: auto;
    padding-top: 35px;

    color: #fff;

    font-size: 0.95rem;
    font-weight: 700;
}

.services-security-note {
    margin: 35px 0 0;

    color: rgba(255, 255, 255, 0.48);

    font-size: 0.9rem;
}

@media (max-width: 750px) {

    .services-main {
        padding-top: 70px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 280px;
        padding: 30px;
    }

}
.service-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 110px;
    margin-bottom: 16px;
}

.service-logo {
    display: block;
    max-width: 180px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
}