/* ══════════════════════════════════════════════════════════
   SENTINEL AI — Services Page (Architect Edition)
   Premium, cinematic, non-cookie-cutter.
   ══════════════════════════════════════════════════════════ */

/* ═══ HERO: SERVICES ═══ */
.svc-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    z-index: var(--z-base);
}
.svc-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 10%, transparent 70%);
    animation: heroGridDrift 25s ease-in-out infinite;
    pointer-events: none;
}
.svc-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.svc-hero__glow--1 {
    width: 700px; height: 700px;
    top: -250px; left: 30%;
    background: radial-gradient(circle, rgba(var(--purple-rgb), 0.18), transparent 70%);
    animation: glowFloat1 15s ease-in-out infinite;
}
.svc-hero__glow--2 {
    width: 500px; height: 500px;
    bottom: -100px; right: 10%;
    background: radial-gradient(circle, rgba(var(--pink-rgb), 0.10), transparent 70%);
    animation: glowFloat2 20s ease-in-out infinite;
}
.svc-hero__scanline {
    position: absolute;
    left: 0; right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent, rgba(var(--purple-rgb), 0.03), transparent);
    animation: heroScanline 8s linear infinite;
    pointer-events: none;
}
.svc-hero__content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    text-align: center;
}
.svc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border: 1px solid rgba(var(--emerald-rgb), 0.2);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--emerald);
    background: rgba(var(--emerald-rgb), 0.05);
    margin-bottom: 32px;
    opacity: 0;
    animation: heroFadeInDown 0.6s var(--ease) 0.3s forwards;
}
.svc-hero__badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--emerald);
    animation: heroPulse 2s ease-in-out infinite;
}
.svc-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: 24px;
    opacity: 0;
    animation: heroFadeUp 0.7s var(--ease) 0.5s forwards;
}
.svc-hero__title span {
    display: block;
}
.svc-hero__title .gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.svc-hero__sub {
    font-size: var(--text-xl);
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0;
    animation: heroFadeUp 0.7s var(--ease) 0.7s forwards;
}
.svc-hero__metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    animation: heroFadeUp 0.7s var(--ease) 0.9s forwards;
}
.svc-hero__metric {
    text-align: center;
}
.svc-hero__metric-val {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}
.svc-hero__metric-label {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}
.svc-hero__sep {
    width: 1px;
    height: 40px;
    background: var(--border-hover);
}

/* ═══ SERVICE SHOWCASE: Full-width immersive sections ═══ */
.svc-showcase {
    position: relative;
    z-index: var(--z-base);
    padding: 0;
}

/* Individual service block */
.svc-block {
    position: relative;
    padding: clamp(80px, 10vh, 120px) 24px;
    overflow: hidden;
}
.svc-block:nth-child(even) {
    background: rgba(255, 255, 255, 0.01);
}
.svc-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}
.svc-block__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.svc-block:nth-child(even) .svc-block__inner {
    direction: rtl;
}
.svc-block:nth-child(even) .svc-block__inner > * {
    direction: ltr;
}
.svc-block__number {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--purple-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.svc-block__number::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: rgba(var(--purple-rgb), 0.3);
}
.svc-block__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}
.svc-block__desc {
    font-size: var(--text-lg);
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 28px;
}
.svc-block__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.svc-block__feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--text-sm);
    color: var(--text-dim);
    line-height: 1.5;
}
.svc-block__feat-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(var(--emerald-rgb), 0.1);
    border: 1px solid rgba(var(--emerald-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.svc-block__feat-icon svg {
    width: 10px;
    height: 10px;
    stroke: var(--emerald);
    fill: none;
    stroke-width: 3;
}
.svc-block__tag {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 20px;
}
.svc-block__tag--popular {
    background: rgba(var(--emerald-rgb), 0.08);
    color: var(--emerald);
    border: 1px solid rgba(var(--emerald-rgb), 0.15);
}
.svc-block__tag--enterprise {
    background: rgba(var(--purple-rgb), 0.08);
    color: var(--purple-light);
    border: 1px solid rgba(var(--purple-rgb), 0.15);
}
.svc-block__tag--fast {
    background: rgba(var(--amber, 245, 158, 11), 0.08);
    color: var(--amber);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

/* ═══ VISUAL PANELS: Browser/Terminal mockups ═══ */
.svc-visual {
    position: relative;
}
.svc-browser {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.svc-browser:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(var(--purple-rgb), 0.08);
}
.svc-browser__chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
}
.svc-browser__dots {
    display: flex;
    gap: 6px;
}
.svc-browser__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.svc-browser__url {
    flex: 1;
    margin-left: 12px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.svc-browser__body {
    padding: 24px;
    min-height: 260px;
    position: relative;
}

/* Landing page mockup */
.mock-landing {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mock-landing__hero-block {
    height: 80px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.12), rgba(var(--pink-rgb), 0.08));
    border: 1px solid rgba(var(--purple-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mock-landing__hero-text {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: -0.02em;
}
.mock-landing__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.mock-landing__card {
    height: 60px;
    border-radius: var(--radius-xs);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}
.mock-landing__cta-bar {
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--gradient-subtle);
    border: 1px solid rgba(var(--purple-rgb), 0.08);
}

/* Business site mockup */
.mock-business {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
    min-height: 240px;
}
.mock-business__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.mock-business__nav-item {
    height: 10px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
    width: 80%;
}
.mock-business__nav-item:first-child {
    background: rgba(var(--purple-rgb), 0.2);
    width: 60%;
}
.mock-business__main {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mock-business__header {
    height: 24px;
    width: 60%;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
}
.mock-business__text {
    height: 8px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.04);
}
.mock-business__text:nth-child(3) { width: 90%; }
.mock-business__text:nth-child(4) { width: 75%; }
.mock-business__text:nth-child(5) { width: 85%; }
.mock-business__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: auto;
}
.mock-business__card {
    height: 50px;
    border-radius: var(--radius-xs);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
}

/* E-commerce mockup */
.mock-ecom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.mock-ecom__product {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}
.mock-ecom__img {
    height: 80px;
    background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.06), rgba(var(--blue-rgb), 0.06));
}
.mock-ecom__info {
    padding: 10px;
}
.mock-ecom__name {
    height: 8px;
    width: 70%;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 6px;
}
.mock-ecom__price {
    height: 8px;
    width: 40%;
    border-radius: 2px;
    background: rgba(var(--emerald-rgb), 0.15);
}
.mock-ecom__btn {
    margin: 0 10px 10px;
    height: 24px;
    border-radius: var(--radius-xs);
    background: var(--gradient-subtle);
    border: 1px solid rgba(var(--purple-rgb), 0.1);
}

/* SaaS mockup */
.mock-saas {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.mock-saas__topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.mock-saas__logo {
    width: 24px; height: 24px;
    border-radius: var(--radius-xs);
    background: var(--gradient-subtle);
    border: 1px solid rgba(var(--purple-rgb), 0.15);
}
.mock-saas__nav-pills {
    display: flex;
    gap: 8px;
}
.mock-saas__nav-pill {
    height: 8px;
    width: 48px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
}
.mock-saas__nav-pill:first-child {
    background: rgba(var(--purple-rgb), 0.15);
}
.mock-saas__hero-area {
    text-align: center;
    padding: 20px 0;
}
.mock-saas__headline {
    height: 14px;
    width: 60%;
    margin: 0 auto 10px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.10);
}
.mock-saas__subline {
    height: 8px;
    width: 40%;
    margin: 0 auto;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.04);
}
.mock-saas__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.mock-saas__feat-card {
    height: 50px;
    border-radius: var(--radius-xs);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
}

/* Terminal/deploy mockup */
.mock-terminal {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    line-height: 1.8;
    color: var(--text-muted);
    padding: 4px 0;
}
.mock-terminal__line {
    display: flex;
    gap: 8px;
}
.mock-terminal__prompt {
    color: var(--emerald);
    flex-shrink: 0;
}
.mock-terminal__cmd {
    color: var(--text-dim);
}
.mock-terminal__output {
    color: var(--text-faint);
    padding-left: 20px;
}
.mock-terminal__success {
    color: var(--emerald);
    padding-left: 20px;
}
.mock-terminal__accent {
    color: var(--purple-light);
}

/* Portfolio mockup */
.mock-portfolio {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    min-height: 240px;
}
.mock-portfolio__item {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}
.mock-portfolio__item:first-child {
    grid-row: span 2;
}
.mock-portfolio__img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.06), rgba(var(--cyan-rgb), 0.04));
}
.mock-portfolio__item:nth-child(2) .mock-portfolio__img {
    background: linear-gradient(135deg, rgba(var(--pink-rgb), 0.06), rgba(var(--purple-rgb), 0.04));
}
.mock-portfolio__item:nth-child(3) .mock-portfolio__img {
    background: linear-gradient(135deg, rgba(var(--blue-rgb), 0.06), rgba(var(--emerald-rgb), 0.04));
}
.mock-portfolio__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 10px;
    background: linear-gradient(transparent, rgba(5, 5, 8, 0.8));
}
.mock-portfolio__label {
    height: 8px;
    width: 50%;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.15);
}

/* ═══ DEPLOYMENT CATEGORIES: Industry modules ═══ */
.dep-cats {
    position: relative;
    padding: clamp(80px, 10vh, 120px) 24px;
    z-index: var(--z-base);
}
.dep-cats__inner {
    max-width: 1000px;
    margin: 0 auto;
}
.dep-cats__header {
    text-align: center;
    margin-bottom: 64px;
}

/* Individual category card */
.dep-cat {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0;
    margin-bottom: 24px;
    overflow: hidden;
    transition: border-color 0.4s var(--ease);
}
.dep-cat:last-child { margin-bottom: 0; }
.dep-cat:hover {
    border-color: var(--border-hover);
}

/* Header row */
.dep-cat__head {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    border-bottom: 1px solid var(--border);
}
.dep-cat__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(var(--purple-rgb), 0.08);
    border: 1px solid rgba(var(--purple-rgb), 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dep-cat__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--purple-light);
    stroke-linecap: round;
    stroke-linejoin: round;
}
.dep-cat__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.dep-cat__sub {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Body: two columns */
.dep-cat__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.dep-cat__col {
    padding: 24px 32px;
}
.dep-cat__col:first-child {
    border-right: 1px solid var(--border);
}
.dep-cat__col-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

/* Industry tags */
.dep-cat__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dep-cat__tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-dim);
    white-space: nowrap;
}

/* Deploy list */
.dep-cat__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dep-cat__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-sm);
    color: var(--text-dim);
    line-height: 1.4;
}
.dep-cat__list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-light);
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .dep-cat__head {
        padding: 20px 20px;
        gap: 14px;
    }
    .dep-cat__body {
        grid-template-columns: 1fr;
    }
    .dep-cat__col:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .dep-cat__col {
        padding: 20px;
    }
}

/* ═══ DEPLOYMENT SPEC: Technical capabilities strip ═══ */
.svc-spec {
    position: relative;
    padding: clamp(80px, 10vh, 120px) 24px;
    overflow: hidden;
    z-index: var(--z-base);
}
.svc-spec::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(var(--purple-rgb), 0.06), transparent),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(var(--blue-rgb), 0.04), transparent);
    pointer-events: none;
}
.svc-spec__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.svc-spec__header {
    text-align: center;
    margin-bottom: 64px;
}
.svc-spec__label {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--purple-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}
.svc-spec__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.svc-spec__desc {
    font-size: var(--text-lg);
    color: var(--text-dim);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Stats Bar ── */
.svc-spec__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    padding: 32px 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.svc-spec__stat {
    flex: 1;
    text-align: center;
}
.svc-spec__stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}
.svc-spec__stat-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.svc-spec__stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}

/* ── Featured Card (design system spotlight) ── */
.svc-spec__featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    transition: border-color 0.4s var(--ease);
}
.svc-spec__featured:hover {
    border-color: var(--border-hover);
}
.svc-spec__featured-content {
    padding: 48px 40px;
}
.svc-spec__featured-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.svc-spec__featured-tag--purple {
    color: var(--purple-light);
    background: rgba(var(--purple-rgb), 0.1);
    border: 1px solid rgba(var(--purple-rgb), 0.2);
}
.svc-spec__featured-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
}
.svc-spec__featured-content p {
    font-size: var(--text-base);
    color: var(--text-dim);
    line-height: 1.7;
}
.svc-spec__featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(var(--purple-rgb), 0.03);
    border-left: 1px solid var(--border);
}
.svc-spec__code-block {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 2;
    width: 100%;
}
.svc-spec__code-line {
    padding: 2px 0;
    color: var(--text-muted);
}
.svc-spec__code-key {
    color: var(--cyan);
}
.svc-spec__code-val {
    color: var(--purple-light);
}

/* ── 2x2 Pillar Grid ── */
.svc-spec__pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.svc-spec__pillar {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.svc-spec__pillar:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
}
.svc-spec__pillar-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}
.svc-spec__pillar-accent--cyan { background: linear-gradient(90deg, transparent 10%, var(--cyan) 50%, transparent 90%); }
.svc-spec__pillar-accent--emerald { background: linear-gradient(90deg, transparent 10%, var(--emerald) 50%, transparent 90%); }
.svc-spec__pillar-accent--blue { background: linear-gradient(90deg, transparent 10%, var(--blue) 50%, transparent 90%); }
.svc-spec__pillar-accent--pink { background: linear-gradient(90deg, transparent 10%, var(--pink) 50%, transparent 90%); }

.svc-spec__pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.svc-spec__pillar-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.svc-spec__pillar-icon--cyan { background: rgba(var(--cyan-rgb), 0.1); border: 1px solid rgba(var(--cyan-rgb), 0.15); }
.svc-spec__pillar-icon--cyan svg { stroke: var(--cyan); }
.svc-spec__pillar-icon--emerald { background: rgba(var(--emerald-rgb), 0.1); border: 1px solid rgba(var(--emerald-rgb), 0.15); }
.svc-spec__pillar-icon--emerald svg { stroke: var(--emerald); }
.svc-spec__pillar-icon--blue { background: rgba(var(--blue-rgb), 0.1); border: 1px solid rgba(var(--blue-rgb), 0.15); }
.svc-spec__pillar-icon--blue svg { stroke: var(--blue); }
.svc-spec__pillar-icon--pink { background: rgba(var(--pink-rgb), 0.1); border: 1px solid rgba(var(--pink-rgb), 0.15); }
.svc-spec__pillar-icon--pink svg { stroke: var(--pink); }

.svc-spec__pillar h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.svc-spec__pillar p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.65;
}

/* ═══ PROCESS TIMELINE: Vertical cinematic flow ═══ */
.svc-process {
    position: relative;
    padding: clamp(80px, 10vh, 120px) 24px;
    overflow: hidden;
    z-index: var(--z-base);
}
.svc-process__inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.svc-process__header {
    text-align: center;
    margin-bottom: 72px;
}
.svc-process__line {
    position: absolute;
    left: 24px;
    top: 200px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(180deg, rgba(var(--purple-rgb), 0.3), rgba(var(--purple-rgb), 0.05));
}
.svc-process__step {
    position: relative;
    padding-left: 72px;
    margin-bottom: 64px;
}
.svc-process__step:last-child {
    margin-bottom: 0;
}
.svc-process__node {
    position: absolute;
    left: 16px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(var(--purple-rgb), 0.4);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.svc-process__node::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-light);
}
.svc-process__step-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--purple-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}
.svc-process__step-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.svc-process__step-desc {
    font-size: var(--text-base);
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 600px;
}
.svc-process__step-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--text-faint);
}
.svc-process__step-time svg {
    width: 12px;
    height: 12px;
    stroke: var(--text-faint);
    fill: none;
    stroke-width: 2;
}

/* ═══ TRUST BAR: Social proof strip ═══ */
.svc-trust {
    position: relative;
    padding: 48px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    z-index: var(--z-base);
}
.svc-trust__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 5vw, 64px);
    flex-wrap: wrap;
}
.svc-trust__item {
    text-align: center;
}
.svc-trust__val {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}
.svc-trust__label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: 4px;
}

/* ═══ CTA: Premium close ═══ */
.svc-cta {
    position: relative;
    padding: clamp(100px, 14vh, 160px) 24px;
    text-align: center;
    overflow: hidden;
    z-index: var(--z-base);
}
.svc-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(var(--purple-rgb), 0.08), transparent);
    pointer-events: none;
}
.svc-cta__inner {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}
.svc-cta__label {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--purple-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}
.svc-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.1;
}
.svc-cta__desc {
    font-size: var(--text-lg);
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 36px;
}
.svc-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .svc-block__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .svc-block:nth-child(even) .svc-block__inner {
        direction: ltr;
    }
    .svc-spec__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .svc-hero {
        min-height: auto;
        padding: 140px 20px 60px;
    }
    .svc-hero__metrics {
        flex-direction: column;
        gap: 20px;
    }
    .svc-hero__sep {
        width: 40px;
        height: 1px;
    }
    .svc-spec__stats {
        flex-wrap: wrap;
        gap: 20px;
        padding: 24px 20px;
    }
    .svc-spec__stat-divider {
        display: none;
    }
    .svc-spec__stat {
        flex: 0 0 auto;
        min-width: 80px;
    }
    .svc-spec__featured {
        grid-template-columns: 1fr;
    }
    .svc-spec__featured-visual {
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .svc-spec__pillars {
        grid-template-columns: 1fr;
    }
    .svc-block {
        padding: 60px 20px;
    }
    .svc-process__line {
        display: none;
    }
    .svc-process__step {
        padding-left: 40px;
    }
    .svc-process__node {
        left: 4px;
    }
    .mock-business {
        grid-template-columns: 1fr;
    }
    .mock-ecom {
        grid-template-columns: repeat(2, 1fr);
    }
    .mock-portfolio {
        grid-template-columns: 1fr 1fr;
    }
    .svc-trust__inner {
        gap: 24px;
    }
}
@media (max-width: 480px) {
    .mock-ecom {
        grid-template-columns: 1fr;
    }
    .mock-portfolio {
        grid-template-columns: 1fr;
    }
    .mock-portfolio__item:first-child {
        grid-row: span 1;
    }
    .svc-cta__actions {
        flex-direction: column;
    }
}
