/* ================================================
   Service Sub-Pages — Shared Styles
   ================================================ */

/* ---- Back / Breadcrumb ---- */
.svc-back {
    display: block;
    padding-top: 8rem;
    padding-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.svc-back::before { content: '← '; }
.svc-back:hover { color: var(--accent); }

/* ---- Hero ---- */
.svc-hero {
    padding: 1.5rem 0 8vh;
}
.svc-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    background: var(--accent);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 2.5rem;
}
.svc-title {
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 1.0;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}
.svc-desc {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.85;
    margin-bottom: 3rem;
}

/* ---- Divider ---- */
.svc-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin: 6rem 0;
}

/* ---- Section label ---- */
.svc-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

/* ---- Two col ---- */
.svc-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 6rem;
}
.svc-two-col h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.svc-two-col p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.9;
}

/* ---- Feature Grid ---- */
.svc-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 4rem 0 6rem;
}
.svc-feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: border-color 0.3s, transform 0.3s;
}
.svc-feature-card:hover {
    border-color: rgba(44,252,163,0.3);
    transform: translateY(-4px);
}
.svc-feature-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    display: block;
}
.svc-feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.svc-feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- Process / Steps ---- */
.svc-steps {
    counter-reset: svc-step;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 4rem 0 6rem;
    max-width: 820px;
}
.svc-step {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 2rem;
    padding-bottom: 3.5rem;
    position: relative;
}
.svc-step::before {
    content: '';
    position: absolute;
    left: 1.4rem;
    top: 2.5rem;
    bottom: 0;
    width: 2px;
    background: rgba(44,252,163,0.15);
}
.svc-step:last-child::before { display: none; }
.svc-step-num {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--accent);
    flex-shrink: 0;
    background: var(--bg-color);
    z-index: 1;
}
.svc-step-body h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    padding-top: 0.55rem;
}
.svc-step-body p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ---- Tech Tags ---- */
.svc-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 2rem 0 4rem;
}
.svc-tech-tag {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    color: var(--text-muted);
}

/* ---- CTA Strip ---- */
.svc-cta {
    text-align: center;
    padding: 8rem 0 10rem;
    background: radial-gradient(ellipse at center, rgba(44,252,163,0.06) 0%, transparent 65%);
    border-top: 1px solid rgba(44,252,163,0.1);
}
.svc-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}
.svc-cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .svc-two-col { grid-template-columns: 1fr; gap: 3rem; }
    .svc-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .svc-features { grid-template-columns: 1fr; }
    .svc-title { font-size: clamp(3rem, 12vw, 5rem); }
}
