:root {
    --brand-dark: #0f172a;
    --brand-blue: #1d4ed8;
    --brand-slate: #334155;
    --brand-light: #f8fafc;
    --brand-accent: #dbeafe;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #0f172a;
}

.navbar-brand {
    font-weight: 700;
}

.site-navbar {
    background-color: rgba(15, 23, 42, 0.96);
}

.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    padding: 7rem 0 5rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
}

.section-title {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.icon-circle {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-accent);
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.service-card,
.process-card,
.industry-card {
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover,
.process-card:hover,
.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.08);
}

.bg-soft {
    background-color: var(--brand-light);
}

.cta-section {
    background-color: #0f172a;
    color: white;
}

.small-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 700;
    color: #93c5fd;
}

.form-note {
    font-size: 0.95rem;
}

footer.site-footer {
    background-color: #020617;
    color: #cbd5e1;
}
