@import url("_shared.css");

/* ======================================================
   SERVICES PAGE - Corporate
   Theme: Deep slate with restrained indigo accent
   ====================================================== */

:root {
    --accent: oklch(58% 0.15 275);
    --accent-secondary: oklch(62% 0.12 300);

    --gradient-primary: linear-gradient(
        135deg,
        oklch(52% 0.15 270) 0%,
        oklch(58% 0.13 280) 50%,
        oklch(62% 0.12 300) 100%
    );
    --gradient-text: linear-gradient(135deg, oklch(100% 0 0), oklch(90% 0.01 275));
    --gradient-mesh:
        radial-gradient(ellipse at 20% 0%, oklch(18% 0.02 275 / 0.7) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 100%, oklch(16% 0.015 290 / 0.5) 0%, transparent 55%),
        oklch(11% 0.01 275);

    --text-primary: oklch(96% 0 0);
    --text-body: oklch(82% 0.01 275);
    --text-muted: oklch(62% 0.01 275);
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--gradient-mesh);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.7;
}

/* Static background — no animation */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 25% 15%, oklch(22% 0.03 275 / 0.25) 0%, transparent 45%),
        radial-gradient(circle at 75% 85%, oklch(20% 0.02 290 / 0.15) 0%, transparent 45%);
    z-index: -1;
}

/* ======================================================
   SECTION HEADERS
   ====================================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 50ch;
    margin-inline: auto;
}

/* ======================================================
   PILLAR CARDS
   ====================================================== */
.pillars-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (width >= 900px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pillar-card {
    background: oklch(14% 0.01 275);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: clamp(1.75rem, 3vw, 2.25rem);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-color: oklch(100% 0 0 / 0.12);
    box-shadow: 0 8px 20px -8px oklch(0% 0 0 / 0.3);
}

.pillar-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--r-sm);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.pillar-icon i {
    color: white;
    width: 1.25rem;
    height: 1.25rem;
}

.pillar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pillar-card > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.pillar-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pillar-card li {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
}

.pillar-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: oklch(62% 0.12 300);
    font-weight: 700;
    font-size: 0.8rem;
}

.pillar-card li a {
    color: oklch(72% 0.1 275);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.pillar-card li a:hover {
    color: var(--text-primary);
}

.pillar-card .button {
    align-self: flex-start;
    margin-top: auto;
}
