/* =========================================================
   DIGITECULTRA — Service page styles (Part 3)
   ========================================================= */

/* ---------- Service hero ---------- */
.service-hero {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.service-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 50% at 80% 0%, rgba(34, 224, 120, 0.06), transparent 70%);
    pointer-events: none;
}
.service-hero-inner { position: relative; z-index: 1; max-width: 900px; }
.service-hero-icon {
    width: 64px; height: 64px; border-radius: 14px;
    background: rgba(34, 224, 120, 0.1);
    border: 1px solid rgba(34, 224, 120, 0.25);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 32px; margin-bottom: 24px;
}
.service-hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700; line-height: 1; letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.service-hero h1 .accent { color: var(--accent); }
.service-hero-sub {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-muted); line-height: 1.5;
    max-width: 720px; margin-bottom: 36px;
}
.service-hero-actions {
    display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px;
}

/* ---------- Two-column section ---------- */
.svc-two-col {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 80px; align-items: start;
}
@media (max-width: 900px) { .svc-two-col { grid-template-columns: 1fr; gap: 40px; } }
.svc-two-col-sticky { position: sticky; top: 100px; }

/* ---------- Included list ---------- */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.included-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease;
}
.included-item:hover { border-color: rgba(34, 224, 120, 0.25); }
.included-item-check {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(34, 224, 120, 0.15);
    color: var(--accent); flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; margin-top: 1px;
}
.included-item-text { font-size: 15px; line-height: 1.5; }

/* ---------- Process steps ---------- */
.process-list {
    counter-reset: process-counter;
    display: flex; flex-direction: column; gap: 0;
}
.process-step {
    position: relative;
    padding: 32px 0 32px 80px;
    border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.process-step::before {
    counter-increment: process-counter;
    content: counter(process-counter, decimal-leading-zero);
    position: absolute; left: 0; top: 32px;
    font-family: var(--font-mono); font-size: 14px;
    font-weight: 600; color: var(--accent);
    letter-spacing: 0.08em;
    width: 56px;
}
.process-step h3 {
    font-size: 22px; font-weight: 600;
    margin-bottom: 8px; letter-spacing: -0.01em;
}
.process-step p { color: var(--text-muted); font-size: 15px; line-height: 1.65; }

/* ---------- Timeline ---------- */
.timeline-list {
    display: flex; flex-direction: column; gap: 12px;
}
.timeline-row {
    display: grid; grid-template-columns: 200px 1fr;
    gap: 24px; align-items: baseline;
    padding: 18px 0; border-top: 1px solid var(--border);
}
.timeline-row:last-child { border-bottom: 1px solid var(--border); }
.timeline-when {
    font-family: var(--font-mono); font-size: 12px;
    color: var(--accent); letter-spacing: 0.08em;
    text-transform: uppercase;
}
.timeline-what { font-size: 16px; line-height: 1.5; }
@media (max-width: 600px) {
    .timeline-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- Pricing block ---------- */
.pricing-block {
    background: linear-gradient(135deg, rgba(34, 224, 120, 0.06), transparent 60%), var(--bg-card);
    border: 1px solid rgba(34, 224, 120, 0.25);
    border-radius: var(--radius);
    padding: 40px;
}
.pricing-label {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--accent); letter-spacing: 0.12em;
    text-transform: uppercase; margin-bottom: 12px;
}
.pricing-amount {
    font-family: var(--font-display); font-size: 48px;
    font-weight: 700; line-height: 1; letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.pricing-suffix {
    font-size: 16px; color: var(--text-muted); margin-bottom: 24px;
}
.pricing-note {
    font-size: 13px; color: var(--text-muted);
    padding-top: 20px; border-top: 1px solid var(--border);
    line-height: 1.6;
}

/* ---------- Section subheader ---------- */
.svc-section-header {
    margin-bottom: 40px; max-width: 720px;
}
.svc-section-header .section-label { margin-bottom: 16px; }
.svc-section-header h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700; letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.svc-section-header p { color: var(--text-muted); font-size: 17px; line-height: 1.5; }

/* ---------- Related cases / industries strip ---------- */
.related-strip {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.related-card {
    padding: 24px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: all 0.2s ease;
}
.related-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.related-card-label {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--accent); letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 8px;
}
.related-card-title {
    font-size: 18px; font-weight: 600; line-height: 1.3;
    margin-bottom: 6px;
}
.related-card-meta { font-size: 13px; color: var(--text-muted); }

/* ---------- Service archive grid (overview page) ---------- */
.services-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 24px;
}
.svc-archive-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 36px;
    transition: all 0.25s ease; position: relative;
    overflow: hidden;
}
.svc-archive-card:hover {
    border-color: rgba(34, 224, 120, 0.3);
    transform: translateY(-2px);
}
.svc-archive-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0; transition: opacity 0.3s ease;
}
.svc-archive-card:hover::before { opacity: 1; }
.svc-archive-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: rgba(34, 224, 120, 0.1);
    border: 1px solid rgba(34, 224, 120, 0.25);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 24px;
}
.svc-archive-num {
    position: absolute; top: 24px; right: 28px;
    font-family: var(--font-mono); font-size: 12px;
    color: var(--text-dim); letter-spacing: 0.1em;
}
.svc-archive-title {
    font-size: 24px; font-weight: 600;
    margin-bottom: 12px; line-height: 1.2;
}
.svc-archive-desc {
    color: var(--text-muted); font-size: 14px;
    line-height: 1.6; margin-bottom: 20px;
}
.svc-archive-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-bottom: 28px;
}
.svc-archive-link {
    color: var(--accent); font-family: var(--font-mono);
    font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px;
}
.svc-archive-link::after { content: '→'; transition: transform 0.2s ease; }
.svc-archive-card:hover .svc-archive-link::after { transform: translateX(4px); }

/* ---------- Stats inline (smaller variant for service hero) ---------- */
.stats-grid-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    margin: 0;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-grid-inline .stat-number {
    font-size: 32px;
}
