.services {
    padding: 100px 24px;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 60% at 0% 30%, rgba(72, 32, 159, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 30% 40% at 100% 80%, rgba(224, 49, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.services-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 64px;
}

.services-header .section-eyebrow {
    justify-content: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    flex-shrink: 0;
}

.services .section-eyebrow { color: var(--color-orange); }
.services .section-eyebrow::before { background: var(--color-orange); }
.services .section-heading { color: #111111; }
.services .section-sub { color: #666666; }

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
    text-align: center;
}

.section-heading em {
    font-style: italic;
    color: var(--color-orange);
}

.section-sub {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    max-width: 520px;
    line-height: 1.7;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.service-card {
    position: relative;
    background: #ffffff;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: default;
    border: 1px solid rgba(0,0,0,0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.3s ease;
}

.service-card:hover {
    background: #fafafa;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.service-card:hover::before {
    background: var(--color-orange);
}

.service-icon { width: 48px; height: 48px; flex-shrink: 0; }
.service-icon svg { width: 100%; height: 100%; }

.service-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: #999999;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    gap: 6px;
}

.service-tag::before {
    content: '';
    display: block;
    width: 4px; height: 4px;
    background: var(--color-orange);
    flex-shrink: 0;
}

.service-desc {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.7;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
    margin-top: auto;
}

.service-link svg { flex-shrink: 0; transition: transform 0.3s ease; }
.service-card:hover .service-link { color: var(--color-orange); gap: 12px; }
.service-card:hover .service-link svg { transform: translateX(4px); }

.services-cta { display: flex; justify-content: center; margin-top: 56px; }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 767px) {
    .services { padding: 72px 20px; }
    .services-grid { grid-template-columns: 1fr; gap: 2px; }
    .service-card { padding: 32px 24px; }
    .services-header { margin-bottom: 40px; }
}

@media (max-width: 374px) { .service-card { padding: 28px 20px; } }