/* ==========================
   SERVICES
========================== */

.services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px;
    background: transparent;
}

/* ==========================
   HEADER
========================== */

.services-header {

    text-align: center;

    max-width: 850px;

    margin: 0 auto 70px;
}

.services-header h2 {

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    line-height: 1.1;

    margin: 20px 0;

    font-weight: 700;
}

.services-header h2 span {

    display: block;

    background: linear-gradient(
        135deg,
        var(--orange),
        var(--purple)
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-header p {

    color: rgba(255,255,255,.75);

    line-height: 1.8;

    max-width: 700px;

    margin: 0 auto;
}

/* ==========================
   GRID
========================== */

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

/* ==========================
   CARD
========================== */

.service-card {

    position: relative;

    padding: 35px;

    border-radius: 24px;

    background: rgba(255,255,255,.05);

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    border: 1px solid rgba(255,255,255,.08);

    overflow: hidden;

    transition: all .4s ease;
}

.service-card:hover {

    transform: translateY(-10px);

    border-color: rgba(247,148,29,.3);

    box-shadow:
        0 25px 60px rgba(128,0,128,.15);
}

/* ==========================
   NUMBER
========================== */

.service-number {

    position: absolute;

    top: 20px;
    right: 25px;

    font-size: 80px;

    font-weight: 700;

    line-height: 1;

    color: rgba(255,255,255,.04);

    pointer-events: none;
}

/* ==========================
   CONTENT
========================== */

.service-content {

    position: relative;

    z-index: 2;
}

.service-content h3 {

    font-size: 2rem;

    margin-bottom: 15px;
}

.service-content p {

    color: rgba(255,255,255,.7);

    line-height: 1.8;

    margin-bottom: 25px;
}

/* ==========================
   LIST
========================== */

.service-content ul {

    list-style: none;
}

.service-content li {

    position: relative;

    padding-left: 20px;

    margin-bottom: 12px;

    color: rgba(255,255,255,.85);
}

.service-content li::before {

    content: "";

    position: absolute;

    left: 0;
    top: 10px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--orange),
        var(--purple)
    );
}

/* ==========================
   GLOW EFFECTS
========================== */

.service-card::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    top: -120px;
    right: -120px;

    background: radial-gradient(
        circle,
        rgba(247,148,29,.12),
        transparent 70%
    );

    pointer-events: none;
}

.service-card::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -110px;
    left: -110px;

    background: radial-gradient(
        circle,
        rgba(128,0,128,.15),
        transparent 70%
    );

    pointer-events: none;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 992px) {

    .services-grid {

        grid-template-columns: 1fr;
    }

    .services {

        padding: 80px 20px;
    }

    .service-card {

        padding: 30px;
    }

    .service-content h3 {

        font-size: 1.7rem;
    }
}