﻿:root {
    --brand: #083b72;
    --brand-deep: #052c57;
    --accent: #20a9ce;
    --ink: #121d28;
    --muted: #53616f;
    --line: #d9e4ec;
    --soft: #edf5fa;
    --white: #fff;
}

* {
    box-sizing: border-box;
}

.finance-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    margin: 30px;
    padding: 28px 28px 20px 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background-color: var(--white);
    box-shadow: 0 14px 38px rgba(14,39,62,.15);
}

    .finance-card::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 6px;
        background: linear-gradient(180deg, var(--accent), var(--brand));
    }

.status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
}

    .status svg {
        width: 19px;
        height: 19px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
    }

.content {
    display: grid;
    grid-template-columns: minmax(0,1fr) 220px;
    gap: 20px;
    min-height: 0;
    align-items: center;
}

.message {
    min-width: 0;
    padding-top: 4px;
}

h1 {
    margin: 0;
    max-width: 345px;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -.03em;
}

.intro {
    margin: 13px 0 0;
    max-width: 345px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.48;
}

.actions {
    display: grid;
    grid-template-columns: minmax(0,1.28fr) minmax(0,1fr);
    gap: 10px;
    margin-top: 23px;
}


.ready {
    align-self: center;
    min-height: 200px;
    margin-top: 12px;
    padding: 22px 18px;
    border: 1px solid #deebf3;
    border-radius: 14px;
    background: var(--soft);
}

    .ready h2 {
        margin: 0;
        font-size: 18px;
        line-height: 1.2;
        letter-spacing: -.015em;
    }

    .ready ul {
        display: grid;
        gap: 17px;
        margin: 18px 0 0;
        padding: 0;
        list-style: none;
    }

    .ready li {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.35;
    }

.tick {
    flex: 0 0 auto;
    color: var(--brand);
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
}

.footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    margin-top:10px;
}

.legal, .vehicle {
    margin: 0;
    color: #74808a;
    font-size: 9.5px;
    line-height: 1.3;
}

.legal {
    max-width: 330px;
}

.vehicle {
    max-width: 190px;
    color: var(--brand-deep);
    font-weight: 700;
    text-align: right;
}

a:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}
