:root {
    --navy: #0a1929;
    --dark-navy: #001e3c;
    --sky-blue: #1976d2;
    --light-sky: #42a5f5;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #f5f5f5;
    --line: #e5e7eb;
    --soft: #f6f7fb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--navy);
    background: linear-gradient(180deg, #081126 0%, #0b1734 28%, #f3f5f9 28%, #f3f5f9 100%);
    line-height: 1.6;
}

main {
    background: #f3f5f9;
    min-height: 70vh;
}

.bg-dark-blue {
    background-color: var(--dark-navy) !important;
}

.text-sky-blue {
    color: var(--sky-blue) !important;
}

.bg-sky-blue {
    background-color: var(--sky-blue) !important;
}

.btn-sky-blue {
    background-color: var(--sky-blue);
    border-color: var(--sky-blue);
    color: white;
}

.btn-sky-blue:hover {
    background-color: var(--light-sky);
    border-color: var(--light-sky);
    color: white;
}

/* Topbar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
    background: rgba(5, 10, 20, 0.58) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: white !important;
}

.brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--light-sky), var(--sky-blue));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(25, 118, 210, 0.24);
}

.brand-logo i {
    color: white;
    font-size: 1rem;
}

.brand-title-wrap {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title-wrap strong {
    font-size: 1.05rem;
    color: white;
}

.brand-title-wrap small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
}

.nav-actions {
    gap: 0.45rem;
}

.action-link {
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    padding: 0.42rem 0.78rem !important;
    font-size: 0.9rem;
}

.action-link:hover {
    background: rgba(255, 255, 255, 0.09);
}

.action-link-cta {
    background: rgba(25, 118, 210, 0.18);
    border-color: rgba(66, 165, 245, 0.5);
}

.action-link-primary {
    background: #6366f1;
    border-color: #6366f1;
}

/* Hero */
.hero-section {
    padding: 3.2rem 0 2.2rem;
    color: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.85rem;
}

.hero-copy h1 {
    font-size: 2.65rem;
    line-height: 1.12;
    margin: 0.75rem 0 0.9rem;
    letter-spacing: -0.02em;
}

.hero-copy p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    max-width: 55ch;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.btn-hero-primary,
.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

.btn-hero-primary {
    background: var(--sky-blue);
    color: white;
    border: 1px solid var(--sky-blue);
}

.btn-hero-primary:hover {
    background: var(--light-sky);
    color: white;
}

.btn-hero-ghost {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.mock {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    padding: 1rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.browserbar {
    height: 28px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    margin-bottom: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.browser-label {
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.mock-inner {
    background: white;
    border-radius: 16px;
    padding: 14px;
    color: var(--navy);
    box-shadow: 0 12px 30px rgba(2, 8, 23, 0.12);
}

.dash-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 12px;
}

.card {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
}

.card h4 {
    margin: 0 0 8px;
    font-size: 0.72rem;
    color: #334155;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.meter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ring {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
}

.ring::after {
    content: "";
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: white;
    position: absolute;
}

.ring span {
    position: relative;
    font-weight: 800;
    font-size: 14px;
}

.mini-bar {
    height: 46px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.bar {
    width: 10px;
    border-radius: 6px;
    background: #94a3b8;
}

.bar:nth-child(1) { height: 14px; }
.bar:nth-child(2) { height: 20px; }
.bar:nth-child(3) { height: 28px; }
.bar:nth-child(4) { height: 40px; background: #22c55e; }

.heat {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-top: 6px;
}

.cell { height: 14px; border-radius: 6px; background: #e5e7eb; }
.cell:nth-child(2) { background: #bbf7d0; }
.cell:nth-child(3) { background: #86efac; }
.cell:nth-child(4) { background: #fef08a; }
.cell:nth-child(5) { background: #fdba74; }
.cell:nth-child(6) { background: #fca5a5; }

/* Sections */
.section {
    padding: 2rem 0;
}

.section h2 {
    font-size: 1.9rem;
    margin: 0 0 0.45rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.section .sub {
    margin: 0 auto 1rem;
    text-align: center;
    max-width: 70ch;
    color: var(--gray);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 1rem;
}

.feature {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 10px 22px rgba(2, 8, 23, 0.05);
}

.feature h4 { margin: 0 0 8px; font-size: 0.9rem; }
.feature p { margin: 0; color: var(--gray); font-size: 0.84rem; }

.icon-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 1rem;
}

.icon-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 10px 22px rgba(2, 8, 23, 0.06);
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border: 1px solid #dbeafe;
    display: grid;
    place-items: center;
}

.icon i {
    color: var(--sky-blue);
    font-size: 1.2rem;
}

.icon-item h3 { margin: 0 0 6px; font-size: 1rem; }
.icon-item p { margin: 0; color: var(--gray); font-size: 0.88rem; }

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.metric {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
    text-align: center;
}

.metric strong {
    display: block;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    color: var(--sky-blue);
}

.metric span {
    color: var(--gray);
    font-size: 0.84rem;
}

.how {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 1rem;
}

.step {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 10px 22px rgba(2, 8, 23, 0.05);
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    border: 1px solid #dbeafe;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
}

.step-icon i {
    color: var(--sky-blue);
    font-size: 1.25rem;
}

.step h3 { margin: 0 0 6px; font-size: 1rem; }
.step p { margin: 0; color: var(--gray); font-size: 0.84rem; }
.step .num { font-weight: 800; margin-right: 6px; }

.cta-band {
    margin-top: 0.6rem;
    background: linear-gradient(135deg, #0b1734, #0b2a5d);
    color: white;
    padding: 2.7rem 0;
}

.cta-band h2 {
    color: white;
    text-align: center;
    margin-bottom: 0.9rem;
}

.cta-band .cta-row {
    justify-content: center;
}

/* Existing app utilities */
.metric-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid var(--sky-blue);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sky-blue);
    white-space: nowrap;
    line-height: 1.2;
}

.metric-label {
    color: var(--gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.case-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.feature-tile {
    background: white;
    border: 1px solid #e7edf5;
    border-radius: 12px;
    height: 100%;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-open { background-color: #e3f2fd; color: #1976d2; }
.status-in-progress { background-color: #fff3e0; color: #f57c00; }
.status-escalated { background-color: #ffebee; color: #d32f2f; }
.status-resolved { background-color: #e8f5e9; color: #388e3c; }

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--sky-blue);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sky-blue);
    border: 2px solid white;
    box-shadow: 0 0 0 2px var(--sky-blue);
}

.form-control:focus {
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--navy);
}

.table {
    background: white;
}

.table thead {
    background-color: var(--dark-navy);
    color: white;
}

.table tbody tr:hover {
    background-color: var(--light-gray);
}

.dashboard-header {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    border-top: 1px solid #dfe6ef;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-copy {
        text-align: center;
    }

    .cta-row {
        justify-content: center;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metrics,
    .how,
    .icon-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-copy h1 {
        font-size: 2rem;
    }
}
:root {
    --navy: #0a1929;
    --dark-navy: #001e3c;
    --sky-blue: #1976d2;
    --light-sky: #42a5f5;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #f3f5f9;
    --line: #e5e7eb;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    background: linear-gradient(180deg, #081126 0%, #0b1734 28%, var(--light-gray) 28%, var(--light-gray) 100%);
}

main {
    background: var(--light-gray);
    min-height: 70vh;
}

.text-sky-blue { color: var(--sky-blue) !important; }
.bg-sky-blue { background-color: var(--sky-blue) !important; }
.bg-dark-blue { background-color: var(--dark-navy) !important; }

.btn-sky-blue {
    background-color: var(--sky-blue);
    border-color: var(--sky-blue);
    color: #fff;
}
.btn-sky-blue:hover {
    background-color: var(--light-sky);
    border-color: var(--light-sky);
    color: #fff;
}

/* Header */
.topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(5, 10, 20, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--light-sky), var(--sky-blue));
    box-shadow: 0 8px 18px rgba(25, 118, 210, 0.35);
}

.brand-title-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.brand-title-wrap strong {
    font-size: 18px;
    color: #fff;
}
.brand-title-wrap small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
}

.nav-actions { gap: 8px; }
.action-link {
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    padding: 6px 12px !important;
    font-weight: 600;
    font-size: 0.9rem;
}
.action-link:hover { background: rgba(255, 255, 255, 0.1); }
.action-link-primary {
    background: #6366f1;
    border-color: #6366f1;
}
.action-link-cta {
    background: var(--sky-blue);
    border-color: var(--sky-blue);
}

/* Home hero */
.hero-section {
    color: #fff;
    padding: 56px 0 38px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}

.hero-copy h1 {
    margin: 12px 0;
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.hero-copy p {
    color: rgba(255, 255, 255, 0.86);
    max-width: 54ch;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.btn-hero-primary,
.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

.btn-hero-primary {
    background: #f97316;
    color: #fff;
}

.btn-hero-ghost {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}
.btn-hero-ghost:hover { background: rgba(255, 255, 255, 0.1); }

.mock {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.browserbar {
    height: 28px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    margin-bottom: 12px;
}
.browser-label {
    margin-left: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}
.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.mock-inner {
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    color: var(--navy);
    box-shadow: 0 12px 30px rgba(2, 8, 23, 0.12);
}

.dash-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 12px;
}

.card {
    background: #f6f7fb;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
}

.card h4 {
    margin: 0 0 8px;
    font-size: 12px;
    text-transform: uppercase;
    color: #334155;
}

.meter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ring {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
}
.ring::after {
    content: "";
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
}
.ring span {
    z-index: 1;
    font-weight: 800;
    font-size: 14px;
}

.mini-bar { height: 46px; display: flex; align-items: flex-end; gap: 6px; }
.bar { width: 10px; border-radius: 6px; background: #94a3b8; }
.bar:nth-child(1) { height: 14px; }
.bar:nth-child(2) { height: 20px; }
.bar:nth-child(3) { height: 28px; }
.bar:nth-child(4) { height: 40px; background: #22c55e; }

.heat { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; margin-top: 6px; }
.cell { height: 14px; border-radius: 6px; background: #e5e7eb; }
.cell:nth-child(2) { background: #bbf7d0; }
.cell:nth-child(3) { background: #86efac; }
.cell:nth-child(4) { background: #fef08a; }
.cell:nth-child(5) { background: #fdba74; }
.cell:nth-child(6) { background: #fca5a5; }

/* Landing sections */
.section { padding: 34px 0; }
.section h2 {
    text-align: center;
    margin: 0 0 10px;
    font-size: 28px;
    letter-spacing: -0.01em;
}
.section .sub {
    margin: 0 auto 18px;
    text-align: center;
    max-width: 68ch;
    color: var(--gray);
}

.icon-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.icon-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(2, 8, 23, 0.05);
}

.icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border: 1px solid #dbeafe;
    display: grid;
    place-items: center;
}
.icon i { color: var(--sky-blue); font-size: 24px; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 20px rgba(2, 8, 23, 0.04);
}
.feature h4 { margin: 0 0 8px; font-size: 14px; }
.feature p { margin: 0; color: var(--gray); font-size: 13px; }

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.metric {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
    text-align: center;
}
.metric strong { display: block; font-size: 26px; color: var(--sky-blue); }
.metric span { color: var(--gray); font-size: 13px; }

.how {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
}
.step-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
    border: 1px solid #dbeafe;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
}
.step-icon i { color: var(--sky-blue); font-size: 24px; }
.num { font-weight: 800; }

.cta-band {
    background: linear-gradient(135deg, #0b1734, #0b2a5d);
    color: #fff;
    padding: 46px 0;
    margin-top: 8px;
}
.cta-band h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 14px;
}
.cta-band .cta-row { justify-content: center; }

/* Existing app components */
.case-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.status-open { background-color: #e3f2fd; color: #1976d2; }
.status-in-progress { background-color: #fff3e0; color: #f57c00; }
.status-escalated { background-color: #ffebee; color: #d32f2f; }
.status-resolved { background-color: #e8f5e9; color: #388e3c; }

.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--sky-blue);
}
.timeline-item { position: relative; margin-bottom: 2rem; padding-left: 2rem; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sky-blue);
}

.form-control:focus {
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.25);
}

.table { background: #fff; }
.table thead {
    background-color: var(--dark-navy);
    color: #fff;
}

.dashboard-header {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 100%);
    color: #fff;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

footer.bg-dark-blue {
    border-top: 1px solid #153357;
}

footer.bg-dark-blue,
footer.bg-dark-blue h5,
footer.bg-dark-blue h6,
footer.bg-dark-blue p,
footer.bg-dark-blue .small,
footer.bg-dark-blue .text-muted,
footer.bg-dark-blue .text-center {
    color: rgba(255, 255, 255, 0.86) !important;
}

footer.bg-dark-blue hr {
    border-color: rgba(255, 255, 255, 0.22) !important;
}

@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .icon-row, .metrics, .how, .dash-grid { grid-template-columns: 1fr; }
    .hero-copy h1 { font-size: 34px; }
}

@media (max-width: 768px) {
    .brand-title-wrap small { display: none; }
    .nav-actions { margin-top: 10px; }
}

/* Hero default gradient (no !important — JS animation must override) */
.hero-section {
    background: linear-gradient(135deg, #001e3c 0%, #0a1929 55%, #1976d2 100%);
    transition: background 1.5s ease;
}

/* Keep non-home pages on clean light background */
body {
    background: #f3f5f9 !important;
}

body.home-page {
    background: linear-gradient(180deg, #081126 0%, #0b1734 28%, #f3f5f9 28%, #f3f5f9 100%) !important;
}
