/* ==========================================
   SERVICES PAGE — Premium Dark SaaS
   ========================================== */

/* ---- Hero ---- */

.svc-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.svc-hero__orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    filter: blur(60px);
}

.svc-hero__orb--secondary {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    top: auto;
    bottom: -180px;
    left: 30%;
    filter: blur(80px);
}

.svc-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.svc-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 14px;
}

.svc-breadcrumb a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: var(--transition);
}

.svc-breadcrumb a:hover {
    color: var(--primary-teal-light);
}

.svc-breadcrumb span {
    color: var(--text-muted);
}

.svc-hero__title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.svc-hero__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

/* ---- Offerings Section ---- */

.svc-offerings {
    background: transparent;
}

.svc-offerings__header {
    text-align: center;
    margin-bottom: 72px;
}

/* ---- Alternating Service Blocks ---- */

.svc-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid var(--border-color);
}

.svc-block:last-child {
    border-bottom: none;
}

.svc-block--flipped .svc-block__content {
    order: 2;
}

.svc-block--flipped .svc-block__visual {
    order: 1;
}

.svc-block__num {
    display: inline-block;
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -2px;
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.35;
}

.svc-block__title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.svc-block__desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 460px;
}

.svc-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-block__list li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.svc-block__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-teal);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

/* Visual / Shape Column */

.svc-block__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-block__shape {
    width: 220px;
    height: 220px;
    opacity: 0.85;
    transition: var(--transition);
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.08));
}

.svc-block:hover .svc-block__shape {
    opacity: 1;
    filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.15));
    transform: scale(1.04);
}

/* ---- Tech Stack Strip ---- */

.svc-stack {
    background: var(--bg-surface);
}

.svc-stack__header {
    text-align: center;
    margin-bottom: 48px;
}

.svc-stack__strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.svc-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    letter-spacing: 0.3px;
    cursor: default;
}

.svc-pill:hover {
    color: var(--text-primary);
    border-color: rgba(16, 185, 129, 0.35);
    background: rgba(16, 185, 129, 0.06);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

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

@media (max-width: 1024px) {
    .svc-block {
        gap: 48px;
    }

    .svc-block__shape {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .svc-hero {
        padding: 110px 0 56px;
    }

    .svc-hero__title {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .svc-hero__subtitle {
        font-size: 16px;
    }

    .svc-block {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 0;
    }

    .svc-block--flipped .svc-block__content {
        order: 1;
    }

    .svc-block--flipped .svc-block__visual {
        order: 2;
    }

    .svc-block__visual {
        justify-content: flex-start;
    }

    .svc-block__shape {
        width: 150px;
        height: 150px;
    }

    .svc-block__title {
        font-size: 24px;
    }

    .svc-block__num {
        font-size: 40px;
    }

    .svc-stack__strip {
        gap: 10px;
    }

    .svc-pill {
        padding: 8px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .svc-hero {
        padding: 100px 0 40px;
    }

    .svc-hero__title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .svc-block {
        padding: 36px 0;
    }

    .svc-block__title {
        font-size: 20px;
    }

    .svc-block__desc {
        font-size: 15px;
    }

    .svc-block__shape {
        width: 120px;
        height: 120px;
    }
}
