/* ---------- Services Grid ---------- */

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

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    transition: border-color .2s, box-shadow .2s;
}

.service-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 6px 28px rgba(0, 0, 0, .08);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--muted);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    transition: .2s;
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--primary-foreground);
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.service-card .desc {
    font-size: .85rem;
    color: var(--muted-foreground);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.feature-list li {
    display: flex;
    gap: .5rem;
    align-items: flex-start;
    font-size: .8rem;
    color: var(--muted-foreground);
}

.check-icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon svg {
    width: 13px;
    height: 13px;
}

/* ---------- Process ---------- */

.process-section {
    padding: 4rem 0;
    background: var(--muted);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 0 .5rem;
}

.process-connector {
    position: absolute;
    top: 24px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 1px;
    background: var(--border);
}

.process-step:last-child .process-connector {
    display: none;
}

.step-circle {
    width: 48px;
    height: 48px;
    margin: 0 auto .75rem;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--background);
    color: var(--primary);
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

.process-step:hover .step-circle {
    background: var(--primary);
    color: var(--primary-foreground);
}

.process-step h3 {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .3rem;
}

.process-step p {
    font-size: .78rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ---------- Why Us ---------- */

.why-section {
    padding: 4rem 0;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-bottom: 1.75rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.why-check {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-check svg {
    width: 18px;
    height: 18px;
}

/* ---------- CTA ---------- */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 9999px;
    padding: 0.45rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

.btn-primary:hover {
    background: #1f2937;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--border);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.btn-outline:hover {
    background: var(--muted);
}

/* ---------- Responsive ---------- */

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

@media (max-width:800px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-connector {
        display: none;
    }
}

@media (max-width:560px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

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