:root {
    --navy: #10233f;
    --navy-2: #0b1729;
    --gold: #d9a441;
    --light: #f7f9fc;
    --ink: #1f2937;
    --muted: #64748b;
    --line: #e5e7eb;
}

body {
    color: var(--ink);
}

.navbar {
    background: var(--navy);
}

.hero {
    background: linear-gradient(135deg, rgba(16, 35, 63, .97), rgba(16, 35, 63, .78)), url('/assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 95px 0;
}

.hero h1 {
    font-weight: 800;
    letter-spacing: -.02em;
}

.text-white-75 {
    color: rgba(255, 255, 255, .78);
}

.section {
    padding: 70px 0;
}

.service-card,
.dashboard-card,
.form-wrap,
.testimonial-card,
.process-card {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(16, 35, 63, .10);
}

.service-card {
    height: 100%;
    transition: .2s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.badge-soft {
    background: #fff3d6;
    color: #7a5300;
}

.cta {
    background: var(--navy);
    color: white;
    border-radius: 20px;
    padding: 42px;
}

.footer {
    background: var(--navy-2);
    color: #d8e1ef;
}

.footer a {
    color: #fff;
}

.page-header {
    background: var(--light);
    padding: 55px 0;
    border-bottom: 1px solid var(--line);
}

.btn-primary {
    background: var(--navy);
    border-color: var(--navy);
}

.btn-warning {
    background: var(--gold);
    border-color: var(--gold);
    font-weight: 700;
}

.table td {
    vertical-align: middle;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.proof-card,
.process-card {
    background: #fff;
    padding: 22px;
}

.proof-card strong,
.proof-card span {
    display: block;
}

.proof-card span,
.process-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.steps {
    display: grid;
    gap: 16px;
}

.steps div {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.steps span,
.process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 800;
}

.testimonial-card {
    background: #fff;
    padding: 28px;
}

.quote {
    font-size: 1.08rem;
    line-height: 1.7;
}

.eyebrow {
    color: #7a5300;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .08em;
}

.check-list {
    padding-left: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--gold);
}

@media (max-width: 767px) {
    .hero {
        padding: 70px 0;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 28px;
    }
}
