
:root {
    --cy-primary: #0d6efd;
    --cy-dark: #101827;
    --cy-muted: #6c757d;
    --cy-light: #f6f8fb;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1f2937;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: .55rem;
    background: var(--cy-primary);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
}

.hero-section {
    background:
        radial-gradient(circle at top right, rgba(13, 110, 253, .35), transparent 35%),
        linear-gradient(135deg, #101827 0%, #172033 55%, #0b1220 100%);
}

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

.hero-card {
    background: rgba(255,255,255,.96);
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,.3);
}

.hero-card-header {
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.hero-row {
    display: flex;
    justify-content: space-between;
    padding: .85rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.hero-row span { color: #6b7280; }
.hero-row strong { color: #111827; }

.hero-status {
    margin-top: 1rem;
    padding: 1rem;
    background: #eef5ff;
    border-left: 4px solid var(--cy-primary);
    border-radius: .5rem;
    color: #1e3a8a;
    font-size: .95rem;
}

.feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-weight: 800;
}

.page-header {
    background: var(--cy-light);
}

.process-list {
    display: grid;
    gap: 1rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 .25rem 1rem rgba(15, 23, 42, .05);
}

.process-step span {
    flex: 0 0 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cy-primary);
    color: #fff;
    border-radius: 999px;
    font-weight: 800;
}

.process-step p { margin: .25rem 0 0; color: #6b7280; }

.service-card {
    transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, .1) !important;
}

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

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: .65rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--cy-primary);
    font-weight: 800;
}

.check-list.large li { margin-bottom: .9rem; }

.mapping-diagram {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e5e7eb;
}

.mapping-layer {
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid #dbe3ef;
    border-radius: .9rem;
    font-weight: 800;
    text-align: center;
}

.mapping-layer small {
    font-weight: 500;
    color: #6b7280;
}

.mapping-arrow {
    text-align: center;
    color: var(--cy-primary);
    font-weight: 900;
    font-size: 1.25rem;
    padding: .45rem 0;
}

.info-tile {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 .25rem 1rem rgba(15, 23, 42, .04);
}

.info-tile p {
    color: #6b7280;
    margin-bottom: 0;
}

.quote-box {
    background: #101827;
    color: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

.quote-box p { margin-bottom: 0; }

.profile-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
}

.profile-initials {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #0d6efd, #003d99);
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
}

.contact-box {
    padding: 2rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
}

.legal-text {
    max-width: 920px;
}

.legal-text h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: .75rem;
}

.accordion-button:not(.collapsed) {
    background: #eef5ff;
    color: #0b5ed7;
}

@media (max-width: 991.98px) {
    .display-5 { font-size: 2.35rem; }
    .hero-section { text-align: left; }
}
