/* =========================================================
   THE ADVERTISERS
   SERVICES PAGE
========================================================= */

.services-page {
    background: #f8fafc;
    color: #111827;
}


/* =========================================================
   HERO
========================================================= */

.services-hero {
    min-height: 82vh;
    padding-top: 150px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;

    background:
            radial-gradient(
                    circle at 15% 20%,
                    rgba(99, 102, 241, 0.25),
                    transparent 30%
            ),
            radial-gradient(
                    circle at 85% 25%,
                    rgba(79, 70, 229, 0.22),
                    transparent 30%
            ),
            linear-gradient(
                    135deg,
                    #111827 0%,
                    #1e1b4b 50%,
                    #111827 100%
            );

    color: white;
}


.services-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}


.orb-one {
    width: 280px;
    height: 280px;
    right: -80px;
    top: 80px;
    background: rgba(99, 102, 241, 0.12);
    box-shadow:
            0 0 100px rgba(99, 102, 241, 0.25);
}


.orb-two {
    width: 220px;
    height: 220px;
    left: -100px;
    bottom: 80px;
    background: rgba(129, 140, 248, 0.10);
    box-shadow:
            0 0 100px rgba(129, 140, 248, 0.2);
}


.services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 8px 15px;

    border: 1px solid rgba(165, 180, 252, 0.25);
    border-radius: 999px;

    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);

    color: #c7d2fe;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.14em;
}


.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #818cf8;

    box-shadow:
            0 0 12px rgba(129, 140, 248, 0.8);
}


.services-hero-title {
    margin-top: 28px;

    font-size: clamp(
            42px,
            6vw,
            76px
    );

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -0.045em;
}


.services-hero-title span {
    display: block;

    background:
            linear-gradient(
                    90deg,
                    #c7d2fe,
                    #818cf8,
                    #a5b4fc
            );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.services-hero-description {
    max-width: 760px;

    margin: 28px auto 0;

    color: #cbd5e1;

    font-size: 18px;
    line-height: 1.8;
}


.services-hero-actions {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 38px;
}


.services-primary-btn,
.services-secondary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 54px;

    padding: 0 26px;

    border-radius: 999px;

    font-weight: 800;

    transition:
            transform 0.25s ease,
            box-shadow 0.25s ease,
            background 0.25s ease;
}


.services-primary-btn {
    background: #4f46e5;

    color: white;

    box-shadow:
            0 15px 40px rgba(79, 70, 229, 0.3);
}


.services-primary-btn:hover {
    transform: translateY(-3px);

    background: #6366f1;

    box-shadow:
            0 20px 50px rgba(79, 70, 229, 0.4);
}


.services-secondary-btn {
    border: 1px solid rgba(255,255,255,0.16);

    background: rgba(255,255,255,0.07);

    color: white;

    backdrop-filter: blur(10px);
}


.services-secondary-btn:hover {
    transform: translateY(-3px);

    background: rgba(255,255,255,0.12);
}


.services-trust-strip {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 28px;

    margin: 55px auto 0;

    max-width: 760px;

    padding: 20px 26px;

    border:
            1px solid rgba(255,255,255,0.10);

    border-radius: 20px;

    background:
            rgba(255,255,255,0.045);

    backdrop-filter: blur(15px);
}


.trust-item {
    display: flex;

    flex-direction: column;

    gap: 4px;

    text-align: center;
}


.trust-item strong {
    color: white;

    font-size: 15px;

    font-weight: 800;
}


.trust-item span {
    color: #94a3b8;

    font-size: 11px;
}


.trust-divider {
    width: 1px;
    height: 36px;

    background:
            rgba(255,255,255,0.14);
}


.services-hero-wave {
    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 90px;
}


.services-hero-wave svg {
    width: 100%;
    height: 100%;
}


.services-hero-wave path {
    fill: #ffffff;
}



/* =========================================================
   GENERAL SECTION TYPOGRAPHY
========================================================= */

.section-label {
    display: inline-block;

    color: #4f46e5;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.section-label-light {
    color: #a5b4fc;
}


.section-title {
    margin-top: 12px;

    color: #111827;

    font-size: clamp(
            34px,
            4vw,
            52px
    );

    line-height: 1.15;

    font-weight: 900;

    letter-spacing: -0.035em;
}


.section-title span {
    color: #4f46e5;
}


.section-title-light {
    color: white;
}


.section-title-light span {
    color: #a5b4fc;
}


.section-description {
    margin-top: 20px;

    color: #64748b;

    font-size: 17px;

    line-height: 1.8;
}


.section-description-light {
    color: #94a3b8;
}



/* =========================================================
   SERVICE CARDS
========================================================= */

.service-card {
    position: relative;

    overflow: hidden;

    min-height: 100%;

    border:
            1px solid #e5e7eb;

    border-radius: 28px;

    background: white;

    box-shadow:
            0 10px 40px rgba(15, 23, 42, 0.06);

    transition:
            transform 0.35s ease,
            box-shadow 0.35s ease,
            border-color 0.35s ease;
}


.service-card:hover {
    transform: translateY(-7px);

    border-color: #c7d2fe;

    box-shadow:
            0 25px 60px rgba(15, 23, 42, 0.11);
}


.service-card-content {
    position: relative;

    z-index: 2;

    padding: 36px;
}


.service-card-featured {
    border:
            1px solid #c7d2fe;

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


.service-card-glow {
    position: absolute;

    width: 240px;
    height: 240px;

    right: -90px;
    top: -100px;

    border-radius: 50%;

    background:
            rgba(99, 102, 241, 0.13);

    filter: blur(20px);
}


.service-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;
}


.service-icon {
    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    flex-shrink: 0;
}


.service-icon-indigo {
    color: #4f46e5;

    background: #eef2ff;
}


.service-icon-purple {
    color: #7c3aed;

    background: #f5f3ff;
}


.service-icon-green {
    color: #059669;

    background: #ecfdf5;
}


.service-icon-orange {
    color: #ea580c;

    background: #fff7ed;
}


.service-icon-pink {
    color: #db2777;

    background: #fdf2f8;
}


.service-icon-blue {
    color: #2563eb;

    background: #eff6ff;
}


.service-badge,
.service-small-label {
    display: inline-block;

    width: fit-content;

    margin-top: 22px;

    padding: 6px 10px;

    border-radius: 999px;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.13em;
}


.service-badge {
    margin-top: 0;

    color: #4f46e5;

    background: #eef2ff;
}


.service-small-label {
    color: #64748b;

    background: #f8fafc;
}


.service-title {
    margin-top: 18px;

    color: #111827;

    font-size: 28px;

    line-height: 1.2;

    font-weight: 900;

    letter-spacing: -0.025em;
}


.service-description {
    margin-top: 14px;

    color: #64748b;

    font-size: 15px;

    line-height: 1.75;
}


.service-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 11px 20px;

    margin-top: 25px;
}


.service-feature-grid div,
.service-feature-list div {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: #374151;

    font-size: 13px;

    line-height: 1.5;

    font-weight: 600;
}


.service-feature-grid span,
.service-feature-list span {
    color: #4f46e5;

    font-weight: 900;
}


.service-feature-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 11px 20px;

    margin-top: 25px;
}


.service-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 30px;

    color: #4f46e5;

    font-size: 14px;

    font-weight: 800;

    transition:
            gap 0.25s ease,
            color 0.25s ease;
}


.service-link:hover {
    gap: 13px;

    color: #3730a3;
}



/* =========================================================
   WHY US
========================================================= */

.why-services-section {
    position: relative;

    overflow: hidden;

    padding: 100px 0;

    background:
            radial-gradient(
                    circle at 10% 20%,
                    rgba(99,102,241,0.13),
                    transparent 25%
            ),
            radial-gradient(
                    circle at 90% 80%,
                    rgba(79,70,229,0.12),
                    transparent 25%
            ),
            #111827;

    color: white;
}


.why-card {
    padding: 30px;

    min-height: 240px;

    border:
            1px solid rgba(255,255,255,0.09);

    border-radius: 24px;

    background:
            rgba(255,255,255,0.045);

    backdrop-filter: blur(15px);

    transition:
            transform 0.3s ease,
            background 0.3s ease,
            border-color 0.3s ease;
}


.why-card:hover {
    transform: translateY(-7px);

    background:
            rgba(255,255,255,0.07);

    border-color:
            rgba(129,140,248,0.35);
}


.why-number {
    color: #818cf8;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 0.15em;
}


.why-card h3 {
    margin-top: 24px;

    color: white;

    font-size: 21px;

    line-height: 1.3;

    font-weight: 800;
}


.why-card p {
    margin-top: 12px;

    color: #94a3b8;

    font-size: 14px;

    line-height: 1.7;
}



/* =========================================================
   PROCESS
========================================================= */

.process-grid {
    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 18px;
}


.process-step {
    text-align: center;
}


.process-number {
    width: 66px;
    height: 66px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    border-radius: 50%;

    color: white;

    background: #4f46e5;

    font-size: 24px;

    font-weight: 900;

    box-shadow:
            0 12px 30px rgba(79,70,229,0.25);
}


.process-step h3 {
    color: #111827;

    font-size: 20px;

    font-weight: 800;
}


.process-step p {
    max-width: 280px;

    margin: 10px auto 0;

    color: #64748b;

    font-size: 14px;

    line-height: 1.7;
}


.process-line {
    width: 70px;
    height: 2px;

    background:
            linear-gradient(
                    90deg,
                    #c7d2fe,
                    #4f46e5,
                    #c7d2fe
            );
}



/* =========================================================
   FAQ
========================================================= */

.faq-item {
    overflow: hidden;

    border:
            1px solid #e5e7eb;

    border-radius: 20px;

    background: white;

    transition:
            border-color 0.3s ease,
            box-shadow 0.3s ease;
}


.faq-item:hover {
    border-color: #c7d2fe;
}


.faq-item.open {
    border-color: #818cf8;

    box-shadow:
            0 12px 35px rgba(79,70,229,0.08);
}


.faq-btn {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 23px 25px;

    text-align: left;

    color: #1f2937;

    font-size: 16px;

    font-weight: 800;

    cursor: pointer;
}


.faq-btn:hover {
    color: #4f46e5;
}


.faq-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #4f46e5;

    background: #eef2ff;

    transition:
            transform 0.3s ease,
            background 0.3s ease;
}


.faq-item.open .faq-icon {
    transform: rotate(45deg);

    color: white;

    background: #4f46e5;
}


.faq-content {
    max-height: 0;

    overflow: hidden;

    transition:
            max-height 0.4s ease;
}


.faq-content p {
    padding:
            0 25px 24px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.8;
}



/* =========================================================
   FINAL CTA
========================================================= */

.services-final-cta {
    position: relative;

    overflow: hidden;

    padding: 100px 0;

    color: white;

    background:
            linear-gradient(
                    135deg,
                    #111827,
                    #312e81,
                    #1e1b4b
            );
}


.cta-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(20px);

    pointer-events: none;
}


.cta-glow-one {
    width: 350px;
    height: 350px;

    top: -180px;
    left: -100px;

    background:
            rgba(129,140,248,0.18);
}


.cta-glow-two {
    width: 350px;
    height: 350px;

    bottom: -200px;
    right: -100px;

    background:
            rgba(99,102,241,0.18);
}


.cta-label {
    display: inline-block;

    color: #c7d2fe;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 0.15em;
}


.services-final-cta h2 {
    margin-top: 18px;

    color: white;

    font-size: clamp(
            35px,
            5vw,
            58px
    );

    line-height: 1.1;

    font-weight: 900;

    letter-spacing: -0.04em;
}


.services-final-cta h2 span {
    display: block;

    color: #a5b4fc;
}


.services-final-cta p {
    max-width: 700px;

    margin: 20px auto 0;

    color: #cbd5e1;

    font-size: 17px;

    line-height: 1.8;
}


.cta-primary,
.cta-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 54px;

    padding: 0 28px;

    border-radius: 999px;

    font-weight: 800;

    transition:
            transform 0.25s ease,
            background 0.25s ease;
}


.cta-primary {
    color: #312e81;

    background: white;

    box-shadow:
            0 15px 40px rgba(0,0,0,0.18);
}


.cta-primary:hover {
    transform: translateY(-3px);

    background: #eef2ff;
}


.cta-secondary {
    border:
            1px solid rgba(255,255,255,0.18);

    color: white;

    background:
            rgba(255,255,255,0.06);
}


.cta-secondary:hover {
    transform: translateY(-3px);

    background:
            rgba(255,255,255,0.12);
}



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

@media (max-width: 1024px) {

    .services-hero {
        min-height: auto;

        padding-top: 145px;
        padding-bottom: 120px;
    }


    .process-grid {
        grid-template-columns:
            1fr;

        gap: 35px;
    }


    .process-line {
        width: 2px;
        height: 40px;

        margin: -10px auto;
    }

}


@media (max-width: 768px) {

    .services-hero-title {
        font-size: 44px;
    }


    .services-hero-description {
        font-size: 16px;
    }


    .services-trust-strip {
        flex-direction: column;

        gap: 18px;

        padding: 20px;
    }


    .trust-divider {
        width: 50px;
        height: 1px;
    }


    .service-card-content {
        padding: 28px;
    }


    .service-feature-grid,
    .service-feature-list {
        grid-template-columns: 1fr;
    }


    .service-title {
        font-size: 25px;
    }


    .why-services-section {
        padding: 80px 0;
    }


    .services-final-cta {
        padding: 80px 0;
    }

}


@media (max-width: 480px) {

    .services-hero {
        padding-top: 125px;
        padding-bottom: 100px;
    }


    .services-eyebrow {
        font-size: 9px;

        letter-spacing: 0.10em;

        padding: 7px 10px;
    }


    .services-hero-title {
        font-size: 37px;
    }


    .services-hero-actions {
        flex-direction: column;
    }


    .services-primary-btn,
    .services-secondary-btn {
        width: 100%;
    }


    .service-card-content {
        padding: 23px;
    }


    .service-card-top {
        align-items: flex-start;
    }


    .service-badge {
        font-size: 8px;
    }


    .section-title {
        font-size: 34px;
    }


    .section-description {
        font-size: 15px;
    }


    .faq-btn {
        padding: 20px;

        font-size: 14px;
    }


    .faq-content p {
        padding:
                0 20px 20px;

        font-size: 13px;
    }

}

/* =========================================
   TRUST STRIP ICONS
========================================= */

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #a5b4fc;

    font-size: 19px;

    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    background: rgba(99, 102, 241, 0.18);
    border-color: rgba(129, 140, 248, 0.35);

    transform: translateY(-2px);
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.trust-content strong {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
}

.trust-content span {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}


/* Divider */

.trust-divider {
    width: 1px;
    height: 38px;

    background: rgba(255, 255, 255, 0.12);
}


/* Mobile */

@media (max-width: 768px) {

    .services-trust-strip {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .trust-divider {
        width: 100%;
        height: 1px;
    }

    .trust-item {
        justify-content: flex-start;
    }

}


