/* ---- Hero ---- */
.svc-hero {
    background: linear-gradient(135deg, var(--c-dark1), var(--c-dark2));
    color: var(--c-text-light);
    padding: 9vh 0 8vh 0;
    border-bottom: 3px solid var(--c-accent);
}
.svc-hero-inner { max-width: 760px; margin: 0 auto; padding: 0 22px; }

.svc-hero .eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 14px;
}
.svc-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(30px, 4.6vw, 50px);
    font-weight: 800;
    line-height: 1.08;
    margin: 0 0 16px 0;
}
.svc-hero p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.6;
    margin: 0;
}

/* ---- Blocks ---- */
.svc-block { padding: 7vh 0; text-align: left; }
.svc-block.--tint { background: var(--c-light2); }
.svc-wrap { width: min(1080px, 92vw); margin: 0 auto; }

.svc-head { margin-bottom: 32px; text-align: center; }
.svc-head .kicker {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 8px;
}
.svc-head h2 {
    font-family: var(--font-head);
    font-size: clamp(24px, 3.4vw, 34px);
    font-weight: 700;
    color: var(--c-text-dark);
    margin: 0;
}

/* ---- Cards / columns ---- */
.svc-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.svc-cols--3 { grid-template-columns: repeat(3, 1fr); }

@media only screen and (max-width: 760px) {
    .svc-cols, .svc-cols--3 { grid-template-columns: 1fr; }
}

.svc-card {
    background: #ffffff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
}
.svc-block.--tint .svc-card { box-shadow: var(--shadow-md); }

.svc-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-text-dark);
    margin: 0 0 14px 0;
}
.svc-card p {
    color: var(--c-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}
.svc-card strong { color: var(--c-text-dark); }

.svc-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.svc-card ul li {
    position: relative;
    padding: 7px 0 7px 24px;
    color: var(--c-text-muted);
    font-size: 1rem;
    line-height: 1.4;
    border-bottom: 1px solid var(--c-light2);
}
.svc-card ul li:last-child { border-bottom: none; }
.svc-card ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--c-accent);
    border-radius: 2px;
    transform: rotate(45deg);
}

/* ---- Process steps ---- */
.svc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media only screen and (max-width: 860px) { .svc-steps { grid-template-columns: repeat(2, 1fr); } }
@media only screen and (max-width: 480px) { .svc-steps { grid-template-columns: 1fr; } }

.step {
    background: #ffffff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 26px 22px;
    text-align: left;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-bold2), var(--c-accent));
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 14px;
}
.step h4 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-text-dark);
    margin: 0 0 8px 0;
}
.step p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ---- CTA ---- */
.svc-cta {
    background: var(--c-dark2);
    color: var(--c-text-light);
    padding: 8vh 0;
    text-align: center;
}
.svc-cta h2 {
    font-family: var(--font-head);
    font-size: clamp(24px, 3.4vw, 36px);
    font-weight: 700;
    margin: 0 0 10px 0;
}
.svc-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin: 0 0 8px 0;
}
