/* ──────────────────────────────────────────────────
   /services page — visual styles
────────────────────────────────────────────────── */

/* Page-specific: solid green accent for "Build Best." — overrides the global gradient */
#pg-h1 .text-grad {
    background: none;
    color: #10B981;
    -webkit-text-fill-color: #10B981;
}

/* Hero breadcrumb */
.breadcrumb a,
.breadcrumb span {
    font-size: .75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: none;
    transition: color .25s;
}

.breadcrumb a:hover {
    color: rgba(255, 255, 255, .7);
}

.breadcrumb .sep {
    margin: 0 .5rem;
    color: rgba(255, 255, 255, .2);
}

.breadcrumb .current {
    color: rgba(255, 255, 255, .6);
}

/* Service row */
.srv-row {
    border-top: 1px solid rgba(10, 22, 40, .07);
    padding: 5rem 0;
    transition: background .4s;
}

.srv-row:last-child {
    border-bottom: 1px solid rgba(10, 22, 40, .07);
}

.srv-row:hover {
    background: rgba(37, 99, 235, .025);
}

.srv-row-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: rgba(37, 99, 235, .35);
    letter-spacing: .06em;
}

.srv-row-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    color: var(--midnight, #040C1E);
    letter-spacing: -.035em;
    line-height: 1.1;
}

.srv-row-desc {
    font-size: .95rem;
    line-height: 1.8;
    color: rgba(10, 22, 40, .5);
    font-weight: 400;
    max-width: 440px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .875rem;
    color: rgba(10, 22, 40, .6);
    font-weight: 400;
    line-height: 1.5;
}

.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2563EB;
    flex-shrink: 0;
    margin-top: .45rem;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(37, 99, 235, .06);
    border: 1px solid rgba(37, 99, 235, .14);
    color: var(--ink, #0A1628);
    border-radius: 8px;
    padding: 5px 12px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: background .25s, border-color .25s, color .25s;
    cursor: default;
}

.tech-badge:hover {
    background: rgba(37, 99, 235, .12);
    border-color: rgba(37, 99, 235, .3);
    color: #2563EB;
}

.srv-row-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .15);
    flex-shrink: 0;
}

/* SVG icons inside service rows — page-specific blue accent */
#srv-detail .srv-row-icon svg {
    color: #2563EB;
}

.quote-card {
    background: linear-gradient(135deg, #040C1E 0%, #0d1833 100%);
    border-radius: 24px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(37, 99, 235, .2), transparent);
}
