/* OEMDrive — premium B2B design system */
:root {
    --bs-primary: #3874ff;
    --bs-primary-rgb: 56, 116, 255;
    --primary-dark: #003cc7;
    --primary-mid: #2563eb;
    --primary-light: #e8efff;
    --primary-border: #85a9ff;
    --white: #ffffff;
    --bg-light: #f4f7fc;
    --bg-subtle: #eef3ff;
    --dark: #071022;
    --dark-soft: #0f1d3a;
    --text: #1a2431;
    --muted: #5c6778;
    --border: #dde4f0;
    --radius: 0.625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --shadow-sm: 0 1px 2px rgba(7, 16, 34, 0.04);
    --shadow-md: 0 8px 30px rgba(56, 116, 255, 0.12);
    --shadow-nav: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 40px rgba(7, 16, 34, 0.08);
    --shadow-card: 0 1px 2px rgba(7, 16, 34, 0.04), 0 12px 40px rgba(7, 16, 34, 0.06);
    --shadow-card-hover: 0 20px 50px rgba(56, 116, 255, 0.18);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --section-gap: clamp(4rem, 8vw, 6rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--bs-primary);
    color: #fff;
    border-radius: var(--radius);
}

.skip-link:focus { top: 1rem; }

/* ── Buttons ── */
.btn {
    font-weight: 600;
    border-radius: var(--radius);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn-primary {
    --bs-btn-bg: #3874ff;
    --bs-btn-border-color: #3874ff;
    --bs-btn-hover-bg: #2563eb;
    --bs-btn-hover-border-color: #2563eb;
    --bs-btn-active-bg: #003cc7;
    --bs-btn-active-border-color: #003cc7;
    padding: 0.8rem 1.6rem;
    box-shadow: 0 4px 16px rgba(56, 116, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(56, 116, 255, 0.4);
}

.btn-outline-primary {
    --bs-btn-color: var(--primary-dark);
    --bs-btn-border-color: var(--primary-border);
    --bs-btn-hover-bg: var(--primary-light);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--primary-dark);
    padding: 0.8rem 1.6rem;
}

.btn-outline-light {
    --bs-btn-color: #fff;
    --bs-btn-border-color: rgba(255, 255, 255, 0.35);
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.1);
    --bs-btn-hover-border-color: #fff;
    --bs-btn-hover-color: #fff;
}

.text-primary-emphasis { color: var(--primary-dark) !important; }
.bg-primary-subtle { background-color: var(--primary-light) !important; }

/* ── Navigation ── */
.site-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-nav);
    padding-block: 0.85rem;
    z-index: 1040;
    border-bottom: 1px solid rgba(221, 228, 240, 0.8);
}

.navbar-brand { padding: 0; }

.brand-wordmark {
    text-decoration: none !important;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.brand-wordmark:hover .brand-oem { color: var(--bs-primary); }

.brand-lockup {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0.35rem;
    font-family: 'Nunito Sans', 'Inter', sans-serif;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
}

.brand-oem {
    font-size: 1.2rem;
    letter-spacing: 0.14em;
    color: var(--dark);
    transition: color 0.2s;
}

.brand-drive {
    display: inline-flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: #fff;
    background: linear-gradient(135deg, #3874ff 0%, #2563eb 100%);
    padding: 0.18rem 0.65rem 0.18rem 0.55rem;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    box-shadow: 0 4px 12px rgba(56, 116, 255, 0.35);
    transition: box-shadow 0.2s, transform 0.2s;
}

.brand-wordmark:hover .brand-drive {
    box-shadow: 0 6px 16px rgba(56, 116, 255, 0.45);
}

.nav-phone {
    display: none;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
}

.nav-phone:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.nav-phone i { color: var(--bs-primary); }

.site-nav .nav-link {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.55rem 0.95rem !important;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active,
.site-nav .nav-link.show {
    color: var(--primary-dark);
    background: var(--primary-light);
}

.site-nav .dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.65rem;
    min-width: 17rem;
    margin-top: 0.75rem;
    box-shadow: var(--shadow-card);
}

.site-nav .dropdown-item {
    border-radius: calc(var(--radius) - 2px);
    padding: 0.6rem 0.9rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.site-nav .dropdown-item:hover,
.site-nav .dropdown-item.active,
.site-nav .dropdown-item:active {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.site-nav .nav-cta {
    font-weight: 600;
    padding: 0.55rem 1.1rem !important;
    box-shadow: 0 4px 16px rgba(56, 116, 255, 0.35);
}

@media (min-width: 992px) {
    .nav-phone { display: inline-flex; }
}

@media (max-width: 575.98px) {
    .brand-oem, .brand-drive { font-size: 1.05rem; }
}

/* ── Breadcrumbs ── */
.page-header {
    background: linear-gradient(180deg, var(--bg-subtle) 0%, #fff 100%);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0 2rem;
}

.hero-breadcrumb { margin-bottom: 1rem; }

.hero-breadcrumb .breadcrumb {
    --bs-breadcrumb-divider: '›';
    --bs-breadcrumb-item-active-color: var(--dark);
    --bs-breadcrumb-margin-bottom: 0;
    --bs-breadcrumb-padding-x: 0;
    --bs-breadcrumb-padding-y: 0;
    background: transparent;
    font-size: 0.8125rem;
    font-weight: 500;
}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--primary-border); }
.hero-breadcrumb .breadcrumb-item a { color: var(--muted); text-decoration: none; }
.hero-breadcrumb .breadcrumb-item a:hover { color: var(--bs-primary); }
.hero-breadcrumb .breadcrumb-item.active { color: var(--dark); font-weight: 600; }

/* ── Section utilities ── */
.section-padding { padding: var(--section-gap) 0; }
.section-padding-sm { padding: 3rem 0; }

.section-header {
    max-width: 42rem;
    margin-bottom: 3rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bs-primary);
    background: var(--primary-light);
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(56, 116, 255, 0.15);
}

.eyebrow-light {
    color: #93b4ff;
    background: rgba(56, 116, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.12);
}

.section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-lead {
    color: var(--muted);
    max-width: 38rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ── Hero — dark homepage ── */
.home-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(4rem, 8vw, 5rem);
    background: linear-gradient(145deg, #071022 0%, #0c1a38 45%, #122654 100%);
    border-bottom: none;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(56, 116, 255, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 10% 80%, rgba(56, 116, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.home-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 85%);
    pointer-events: none;
}

.home-hero .container-xl { position: relative; z-index: 1; }

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.06;
    color: var(--dark);
}

.hero-title-light {
    color: #fff;
}

.hero-title-light .text-gradient {
    background: linear-gradient(135deg, #93b4ff 0%, #3874ff 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.0625rem;
    color: var(--muted);
    max-width: 34rem;
    line-height: 1.7;
}

.hero-lead-light {
    color: rgba(255, 255, 255, 0.72);
}

.hero-actions { margin-bottom: 2rem; }

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metric strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-metric span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* Hero side panel */
.hero-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.hero-panel-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.25rem;
}

.hero-panel-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hero-panel-item:first-of-type { padding-top: 0; }

.hero-panel-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(56, 116, 255, 0.3) 0%, rgba(56, 116, 255, 0.12) 100%);
    border: 1px solid rgba(56, 116, 255, 0.35);
    color: #93b4ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.hero-panel-item h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.hero-panel-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

.hero-panel-cta {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-cta .btn { width: 100%; }

/* Inner page heroes — match homepage dark treatment */
.inner-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(3rem, 5vw, 4rem);
    background: linear-gradient(145deg, #071022 0%, #0c1a38 45%, #122654 100%);
    border-bottom: none;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(56, 116, 255, 0.2) 0%, transparent 45%),
        radial-gradient(circle at 10% 80%, rgba(56, 116, 255, 0.07) 0%, transparent 40%);
    pointer-events: none;
}

.inner-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 85%);
    pointer-events: none;
}

.inner-hero .container-xl { position: relative; z-index: 1; }

.inner-hero .eyebrow {
    color: #93b4ff;
    background: rgba(56, 116, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.12);
}

.inner-hero .hero-title {
    color: #fff;
}

.inner-hero .hero-lead {
    color: rgba(255, 255, 255, 0.72);
}

.inner-hero .hero-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.55);
}

.inner-hero .hero-breadcrumb .breadcrumb-item a:hover {
    color: #93b4ff;
}

.inner-hero .hero-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.inner-hero .hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.28);
}

.inner-hero .hero-card {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.inner-hero-compact {
    padding: clamp(2rem, 4vw, 2.75rem) 0 clamp(2.5rem, 4vw, 3rem);
}

.inner-hero-compact .section-title {
    color: #fff;
    margin-bottom: 0.75rem;
}

.inner-hero-compact .section-lead {
    color: rgba(255, 255, 255, 0.68);
}

.inner-hero-compact .section-lead a {
    color: #93b4ff;
}

/* Glass info card on dark heroes */
.hero-info-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.hero-info-card h2,
.hero-info-card strong {
    color: #fff;
}

.hero-info-card .contact-info-item {
    margin-bottom: 1rem;
}

.hero-info-card .contact-info-item:last-child {
    margin-bottom: 0;
}

.hero-info-card .contact-info-item i {
    background: rgba(56, 116, 255, 0.2);
    border-color: rgba(56, 116, 255, 0.35);
    color: #93b4ff;
}

.hero-info-card span,
.hero-info-card .text-muted {
    color: rgba(255, 255, 255, 0.58) !important;
}

.hero-info-card a {
    color: rgba(255, 255, 255, 0.72) !important;
}

.hero-info-card a:hover {
    color: #93b4ff !important;
}

.inner-hero .btn-outline-primary {
    --bs-btn-color: rgba(255, 255, 255, 0.92);
    --bs-btn-border-color: rgba(255, 255, 255, 0.35);
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.1);
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.55);
    --bs-btn-hover-color: #fff;
    --bs-btn-active-bg: rgba(255, 255, 255, 0.15);
    --bs-btn-active-border-color: #fff;
    --bs-btn-active-color: #fff;
}

/* Legacy light hero — kept for fallback */
.hero-section {
    background: linear-gradient(180deg, var(--bg-subtle) 0%, #fff 100%);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(56, 116, 255, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.hero-section .container-xl { position: relative; }

/* Hero cards (service pages) */
.hero-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-border);
}

.hero-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    border: 1px solid rgba(56, 116, 255, 0.12);
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.hero-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.hero-card p {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* ── Trust bar ── */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.trust-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

@media (min-width: 992px) {
    .trust-scroll { justify-content: flex-start; }
    .trust-scroll:has(.trust-pill:only-child) { justify-content: center; }
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 0.45rem 0.95rem;
    white-space: nowrap;
}

.trust-pill i {
    color: var(--bs-primary);
    font-size: 0.85rem;
}

/* legacy trust-item support */
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 600;
    white-space: nowrap;
}

.trust-item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bs-primary);
    flex-shrink: 0;
}

/* ── Service cards ── */
.service-teaser {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    height: 100%;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
}

.service-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), var(--primary-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.service-teaser:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-border);
}

.service-teaser:hover::before { transform: scaleX(1); }

.service-teaser .icon-wrap {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    border: 1px solid rgba(56, 116, 255, 0.15);
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.15rem;
}

.service-teaser h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.65rem;
}

/* ── Stats ── */
.stats-section {
    border-block: 1px solid var(--border);
    background: #fff;
}

.stat-box {
    text-align: center;
    padding: 1.75rem 1rem;
}

.stat-box.border {
    border-color: var(--border) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-box.border:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.stat-number {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--bs-primary);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.45;
    font-weight: 500;
}

/* ── Pillar / feature cards ── */
.pillar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.85rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.pillar-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-border);
    transform: translateY(-4px);
}

.pillar-card.featured {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 1px var(--bs-primary), var(--shadow-md);
}

.pillar-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--bs-primary);
    color: #fff;
    padding: 0.3rem 0.7rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    width: fit-content;
}

.pillar-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    border: 1px solid rgba(56, 116, 255, 0.12);
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.pillar-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--dark);
}

.pillar-card > p {
    font-size: 0.9rem;
    color: var(--muted);
    flex: 1;
    line-height: 1.6;
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
}

.pillar-list li {
    font-size: 0.85rem;
    color: var(--muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pillar-list li:last-child { border-bottom: none; }
.pillar-list li i { color: var(--bs-primary); margin-top: 0.15rem; flex-shrink: 0; }

.pillar-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s, gap 0.2s;
}

.pillar-link:hover {
    color: var(--bs-primary);
    gap: 0.45rem;
}

/* ── Misc components ── */
.lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.lifecycle-step {
    padding: 1.75rem 1.25rem;
    border-right: 1px solid var(--border);
    background: #fff;
}

.lifecycle-step:nth-child(even) { background: var(--bg-light); }
.lifecycle-step:last-child { border-right: none; }

.lifecycle-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--bs-primary);
    margin-bottom: 0.75rem;
}

.lifecycle-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.lifecycle-step ul { list-style: none; padding: 0; margin: 0; }

.lifecycle-step li {
    font-size: 0.78rem;
    color: var(--muted);
    padding: 0.2rem 0;
    display: flex;
    gap: 0.4rem;
}

.lifecycle-step li::before { content: '–'; flex-shrink: 0; }

.cap-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.15rem 1.2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.cap-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-border);
}

.cap-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--dark);
}

.cap-card p {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.feature-row {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.35rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-row:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-border);
}

.feature-row-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    border: 1px solid rgba(56, 116, 255, 0.12);
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.feature-row h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.feature-row p {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

.method-stage {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.method-stage:nth-child(even) { background: var(--bg-light); }
.method-stage:last-child { border-bottom: none; }

.stage-num {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--bs-primary);
    border: 1px solid var(--primary-border);
    border-radius: 0.35rem;
    padding: 0.25rem 0.5rem;
    flex-shrink: 0;
    background: #fff;
}

.rt-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.rt-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.rt-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bs-primary);
    margin-bottom: 0.75rem;
    box-shadow: 0 0 8px rgba(56, 116, 255, 0.5);
}

.rt-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.rt-card p {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
}

.onboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.onboard-step {
    padding: 1.75rem 1.35rem;
    border-right: 1px solid var(--border);
    background: #fff;
}

.onboard-step:nth-child(even) { background: var(--bg-light); }
.onboard-step:last-child { border-right: none; }

.onboard-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bs-primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.onboard-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.onboard-step p {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0;
}

.fw-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.15rem 0.85rem;
    text-align: center;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.fw-card:hover {
    border-color: var(--primary-border);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.fw-card strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark);
}

.fw-card span {
    display: block;
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

.sector-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 0.5rem 1.05rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}

.sector-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bs-primary);
}

.sector-pill:hover {
    border-color: var(--primary-border);
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

/* ── CTA band ── */
.cta-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #071022 0%, #003cc7 50%, #3874ff 100%);
    color: #fff;
    padding: clamp(4rem, 8vw, 5.5rem) 0;
    text-align: center;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.cta-band .container-xl { position: relative; }

.cta-band h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.cta-band p {
    opacity: 0.82;
    max-width: 34rem;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.65;
}

.cta-band .btn-primary {
    background: #fff;
    border-color: #fff;
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-band .btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--primary-dark);
}

.cta-band .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: transparent;
}

.cta-band .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.cta-detail { font-size: 0.85rem; opacity: 0.75; }

/* ── Contact ── */
.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    box-shadow: var(--shadow-card);
}

.contact-info-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contact-info-item i {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    border: 1px solid rgba(56, 116, 255, 0.12);
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-control, .form-select {
    border-color: var(--border);
    border-radius: var(--radius);
    padding: 0.8rem 1rem;
    font-size: 0.9375rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(56, 116, 255, 0.12);
}

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark);
}

/* Contact page */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

.contact-sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.contact-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.15rem;
}

.contact-sidebar-lead {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-sidebar-card a {
    color: var(--primary-dark);
    text-decoration: none;
}

.contact-sidebar-card a:hover {
    color: var(--bs-primary);
}

.contact-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.contact-service-list li i {
    color: var(--bs-primary);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.contact-form-card {
    padding: 0;
    overflow: hidden;
}

.contact-form-header {
    padding: 2rem 2rem 0;
}

.contact-form {
    padding: 1.5rem 2rem 2rem;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form-card .alert {
    margin-left: 2rem;
    margin-right: 2rem;
}

@media (max-width: 575.98px) {
    .contact-form-header,
    .contact-form {
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }

    .contact-form-card .alert {
        margin-left: 1.35rem;
        margin-right: 1.35rem;
    }
}

/* ── Section backgrounds ── */
.section-muted {
    background: var(--bg-light);
}

.section-accent {
    background: linear-gradient(180deg, var(--primary-light) 0%, #fff 100%);
    border-block: 1px solid var(--border);
}

/* ── Footer ── */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.72);
    padding: clamp(3.5rem, 6vw, 4.5rem) 0 5.5rem;
}

.footer-grid {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-oem {
    font-size: 1rem;
    color: #fff;
}

.footer-brand .brand-drive { font-size: 1rem; }

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
    max-width: 22rem;
    line-height: 1.65;
}

.footer-heading {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.15rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-meta { color: rgba(255, 255, 255, 0.5); }

.footer-meta a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.footer-meta a:hover { color: #fff; }

.footer-bottom { padding-top: 1.75rem; }

.footer-copy {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.8125rem;
}

.footer-cta-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.65rem;
}

.footer-cta-text {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.15rem;
}

.site-footer .text-muted {
    color: rgba(255, 255, 255, 0.55) !important;
}

/* ── Sitemap ── */
.sitemap-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.sitemap-card:hover {
    border-color: var(--primary-border);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.sitemap-card h2 a { color: var(--dark); text-decoration: none; }
.sitemap-card h2 a:hover { color: var(--bs-primary); }

.sitemap-sections {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.sitemap-sections a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.sitemap-sections a:hover { color: var(--bs-primary); }

/* ── Mobile bar ── */
.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    display: flex;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
    box-shadow: 0 -4px 24px rgba(7, 16, 34, 0.08);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .lifecycle-grid { grid-template-columns: repeat(2, 1fr); }
    .lifecycle-step:nth-child(2n) { border-right: none; }
    .lifecycle-step:nth-last-child(-n+2) { border-top: 1px solid var(--border); }
    .onboard-grid { grid-template-columns: repeat(2, 1fr); }
    .onboard-step:nth-child(2n) { border-right: none; }
    .onboard-step:nth-child(n+3) { border-top: 1px solid var(--border); }
    .hero-section { padding: 2rem 0 3rem; }
}

@media (max-width: 575.98px) {
    .lifecycle-grid, .onboard-grid { grid-template-columns: 1fr; }
    .lifecycle-step, .onboard-step {
        border-right: none !important;
        border-top: 1px solid var(--border);
    }
    .lifecycle-step:first-child, .onboard-step:first-child { border-top: none; }
    .trust-pill, .trust-item { white-space: normal; }
    .hero-metrics { gap: 1rem; }
}

@media (min-width: 992px) {
    .site-footer { padding-bottom: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
