:root {
    --background: #f4f7fb;
    --surface: #ffffff;
    --text: #182235;
    --muted: #64748b;
    --primary: #1f6feb;
    --primary-dark: #174ea6;
    --border: #dbe3ef;
    --success: #177245;
    --warning: #a15c00;
    --danger: #b42318;
    --shadow: 0 12px 35px rgb(30 50 80 / 9%);
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--background);
    color: var(--text);
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--primary-dark);
}

.site-header {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 64px);
    background: #15233b;
    color: #fff;
}

.site-header a {
    color: #fff;
    text-decoration: none;
}

.site-header nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.brand {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: .02em;
}

.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto;
    flex: 1;
}

.site-footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    background: var(--surface);
}

.site-footer a {
    color: inherit;
}

.card,
.maintenance-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: clamp(20px, 3vw, 36px);
    margin-bottom: 24px;
}

.narrow {
    width: min(560px, 100%);
    margin-inline: auto;
}

.maintenance-card {
    min-height: 360px;
    display: grid;
    place-content: center;
    text-align: center;
}

.maintenance-shell {
    display: grid;
    place-items: center;
}

.maintenance-shell .maintenance-card {
    width: min(760px, 100%);
    margin: 0;
}

.maintenance-card h1 {
    font-size: clamp(1.65rem, 4vw, 2.6rem);
}

.logo-mark {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #1f6feb, #7149c6);
    font-weight: 900;
    font-size: 1.45rem;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

h1 {
    margin-top: 0;
}

p {
    line-height: 1.65;
}

.stack {
    display: grid;
    gap: 17px;
}

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

.span-2 {
    grid-column: span 2;
}

label {
    display: grid;
    gap: 7px;
    font-weight: 650;
}

input,
select,
textarea,
button {
    font: inherit;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #bac7d8;
    border-radius: 9px;
    padding: 11px 12px;
    color: var(--text);
    background: #fff;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgb(31 111 235 / 18%);
    border-color: var(--primary);
}

button,
.button,
.button-small,
.button-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 9px;
    padding: 11px 17px;
    color: #fff;
    background: var(--primary);
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
}

button:hover,
.button:hover {
    background: var(--primary-dark);
}

.button-small {
    padding: 7px 11px;
    font-size: .9rem;
}

.button-secondary {
    background: #e7edf6;
    color: var(--text);
}

.button-danger {
    background: var(--danger);
}

.help,
.page-heading p {
    color: var(--muted);
}

.page-heading,
.split,
.customer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.page-heading {
    margin-bottom: 24px;
}

.page-heading h1,
.page-heading p,
.split h2 {
    margin: 0;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.metrics article {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    display: grid;
    gap: 8px;
}

.metrics strong {
    font-size: 2rem;
}

.metrics span {
    color: var(--muted);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.details-grid div {
    min-width: 0;
    padding: 14px;
    border-radius: 10px;
    background: #f7f9fc;
}

.details-grid dt {
    color: var(--muted);
    margin-bottom: 5px;
}

.details-grid dd {
    margin: 0;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--muted);
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.license-key,
.hash-value,
.secret-value,
.recovery-codes {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.license-key,
.hash-value,
.break-all {
    overflow-wrap: anywhere;
}

.secret-value {
    padding: 14px;
    border: 1px dashed var(--primary);
    border-radius: 9px;
    background: #f5f9ff;
    text-align: center;
    letter-spacing: .08em;
}

.status {
    display: inline-flex;
    border-radius: 999px;
    padding: 5px 10px;
    background: #e8edf5;
    font-weight: 700;
    font-size: .85rem;
}

.status-active {
    color: var(--success);
    background: #dcf7e9;
}

.status-deactivated,
.status-superseded {
    color: var(--danger);
    background: #fee4e2;
}

.filter-row,
.actions,
.action-grid {
    display: flex;
    gap: 12px;
    align-items: end;
    flex-wrap: wrap;
}

.filter-row input {
    min-width: min(360px, 100%);
    flex: 1;
}

.action-grid > div {
    flex: 1;
    min-width: 240px;
}

.inline-confirm {
    display: flex;
    gap: 8px;
}

.inline-confirm input {
    width: 230px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 9px;
}

.checkbox-label input {
    width: auto;
}

.danger-zone {
    border-color: #f5b7b1;
}

.flash {
    margin-bottom: 18px;
    padding: 13px 16px;
    border-radius: 9px;
    border: 1px solid var(--border);
    background: #fff;
}

.flash-success {
    color: var(--success);
    border-color: #75c49d;
}

.flash-error {
    color: var(--danger);
    border-color: #e99b94;
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.health-grid div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 12px;
    background: #f7f9fc;
    border-radius: 8px;
}

.ok {
    color: var(--success);
}

.ko {
    color: var(--warning);
}

.legal-copy {
    max-width: 860px;
    margin-inline: auto;
}

.legal-copy h2 {
    margin-top: 30px;
}

.recovery-codes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 20px 20px 20px 42px;
    background: #f7f9fc;
    border-radius: 10px;
}

@media (max-width: 850px) {
    .metrics,
    .details-grid,
    .health-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-header,
    .page-heading,
    .split,
    .customer-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .page-shell {
        width: min(100% - 20px, 1180px);
        margin-block: 18px;
    }

    .form-grid,
    .metrics,
    .details-grid,
    .health-grid,
    .recovery-codes {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: span 1;
    }

    .inline-confirm {
        flex-direction: column;
        align-items: stretch;
    }

    .inline-confirm input {
        width: 100%;
    }
}

@media print {
    .site-header,
    .site-footer,
    button,
    .button {
        display: none !important;
    }

    body,
    .card {
        background: #fff;
        box-shadow: none;
    }
}

/* Landing page publique EstimaForm. */
.landing-page {
    min-height: 100vh;
    display: block;
    overflow-x: hidden;
    color: #16233b;
    background:
        radial-gradient(circle at 12% 2%, rgb(31 127 255 / 10%), transparent 28rem),
        #f8fbff;
}

.landing-page a {
    transition:
        color .2s ease,
        border-color .2s ease,
        background-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.landing-page a:focus-visible {
    outline: 3px solid rgb(31 127 255 / 35%);
    outline-offset: 4px;
}

.landing-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.landing-skip {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 9px;
    color: #fff;
    background: #0c1b42;
    text-decoration: none;
    transform: translateY(-150%);
}

.landing-skip:focus {
    transform: translateY(0);
}

.landing-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgb(150 170 202 / 20%);
    background: rgb(248 251 255 / 92%);
    backdrop-filter: blur(16px);
}

.landing-nav {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.landing-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #0a1942;
    text-decoration: none;
}

.landing-brand-mark {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(145deg, #092258, #158dff);
    box-shadow: 0 9px 24px rgb(20 115 240 / 25%);
    font-size: 1.32rem;
    font-weight: 850;
}

.landing-brand > span:last-child {
    min-width: 0;
    display: grid;
}

.landing-brand strong {
    color: #0a1942;
    font-size: 1.32rem;
    line-height: 1;
    letter-spacing: -.02em;
}

.landing-brand strong span {
    color: #43bd4b;
}

.landing-brand small {
    margin-top: 5px;
    overflow: hidden;
    color: #71809a;
    font-size: .69rem;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.landing-languages {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #9aa7ba;
    font-size: .81rem;
    font-weight: 780;
}

.landing-languages a {
    padding: 6px 3px;
    color: #71809a;
    text-decoration: none;
}

.landing-languages a[aria-current="page"] {
    color: #126fe8;
}

.landing-login,
.landing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    font-weight: 780;
    text-decoration: none;
}

.landing-login {
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid #cfdbeb;
    color: #0c3472;
    background: #fff;
    box-shadow: 0 7px 20px rgb(24 65 120 / 7%);
}

.landing-login:hover {
    border-color: #98bff2;
    color: #0c62cf;
    box-shadow: 0 10px 25px rgb(24 86 170 / 12%);
    transform: translateY(-1px);
}

.landing-login svg,
.landing-hero-note svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.landing-hero {
    position: relative;
    padding: clamp(70px, 8vw, 116px) 0 74px;
    background:
        linear-gradient(180deg, rgb(248 251 255 / 35%), #f8fbff),
        radial-gradient(circle at 82% 42%, rgb(42 198 90 / 10%), transparent 25rem);
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
    gap: clamp(44px, 7vw, 92px);
    align-items: center;
}

.landing-eyebrow {
    margin: 0 0 16px;
    color: #1672e8;
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .16em;
    line-height: 1.4;
}

.landing-hero h1 {
    max-width: 700px;
    margin: 0;
    color: #0a1738;
    font-size: clamp(2.8rem, 5.7vw, 5.25rem);
    line-height: .99;
    letter-spacing: -.055em;
}

.landing-lead {
    max-width: 660px;
    margin: 28px 0 0;
    color: #56657e;
    font-size: clamp(1.05rem, 1.65vw, 1.22rem);
    line-height: 1.75;
}

.landing-hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.landing-button {
    min-height: 52px;
    padding: 0 21px;
}

.landing-button-primary {
    color: #fff;
    background: linear-gradient(135deg, #116fe5, #1895ff);
    box-shadow: 0 14px 28px rgb(20 115 240 / 24%);
}

.landing-button-primary:hover {
    color: #fff;
    box-shadow: 0 18px 34px rgb(20 115 240 / 32%);
    transform: translateY(-2px);
}

.landing-button-ghost {
    border: 1px solid #cfdaea;
    color: #173863;
    background: rgb(255 255 255 / 70%);
}

.landing-button-ghost:hover {
    border-color: #8bb8ee;
    color: #0e67d7;
    background: #fff;
}

.landing-hero-note {
    margin: 23px 0 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #71809a;
    font-size: .86rem;
    line-height: 1.55;
}

.landing-hero-note svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 1px;
    color: #31a841;
}

.landing-visual {
    position: relative;
    min-width: 0;
}

.landing-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.landing-glow-one {
    width: 190px;
    height: 190px;
    top: -32px;
    right: -50px;
    background: rgb(24 136 255 / 15%);
}

.landing-glow-two {
    width: 150px;
    height: 150px;
    bottom: -35px;
    left: -48px;
    background: rgb(62 197 72 / 14%);
}

.landing-product-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: clamp(22px, 3.1vw, 34px);
    border: 1px solid rgb(184 205 234 / 40%);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgb(18 37 79 / 97%), rgb(8 22 54 / 100%));
    box-shadow:
        0 32px 70px rgb(10 27 65 / 25%),
        inset 0 1px 0 rgb(255 255 255 / 10%);
}

.landing-product-card::before {
    position: absolute;
    content: "";
    width: 310px;
    height: 310px;
    top: -210px;
    right: -120px;
    border-radius: 50%;
    background: rgb(41 139 255 / 22%);
}

.landing-product-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: flex-start;
}

.landing-product-top > div {
    min-width: 0;
}

.landing-product-top span {
    color: #55d45d;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .14em;
}

.landing-product-top h2 {
    max-width: 340px;
    margin: 9px 0 0;
    color: #fff;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.22;
    letter-spacing: -.025em;
}

.landing-product-top img {
    width: 92px;
    height: auto;
    flex: 0 0 92px;
    object-fit: contain;
}

.landing-progress {
    position: relative;
    margin: 37px 0 30px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
}

.landing-progress::before {
    position: absolute;
    content: "";
    z-index: -1;
    height: 2px;
    top: 18px;
    right: 8%;
    left: 8%;
    background: #455473;
}

.landing-progress li {
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 9px;
    color: #8fa0bf;
    font-size: .71rem;
    font-weight: 680;
    text-align: center;
}

.landing-progress li span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 2px solid #566683;
    border-radius: 50%;
    color: #b9c5d9;
    background: #11254c;
}

.landing-progress li.is-complete span {
    border-color: #1688f7;
    color: #fff;
    background: #1688f7;
}

.landing-progress li.is-current {
    color: #72dc79;
}

.landing-progress li.is-current span {
    border-color: #4bcc56;
    color: #fff;
    background: #3aba46;
    box-shadow: 0 0 0 6px rgb(75 204 86 / 13%);
}

.landing-result-row {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 17px;
    border: 1px solid rgb(101 220 111 / 22%);
    border-radius: 14px;
    background: rgb(60 188 72 / 9%);
}

.landing-result-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: #42bf4d;
    font-weight: 900;
}

.landing-result-row strong,
.landing-result-row span {
    display: block;
}

.landing-result-row strong {
    color: #fff;
    font-size: .91rem;
}

.landing-result-row span {
    margin-top: 4px;
    color: #9fb0cc;
    font-size: .76rem;
    line-height: 1.4;
}

.landing-result-pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #53d65d;
    box-shadow: 0 0 0 6px rgb(83 214 93 / 12%);
}

.landing-benefits {
    border-block: 1px solid #e3eaf3;
    background: #fff;
}

.landing-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-benefit-grid article {
    min-width: 0;
    padding: 27px clamp(18px, 4vw, 48px);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.landing-benefit-grid article + article {
    border-left: 1px solid #e5ebf3;
}

.landing-benefit-grid strong {
    color: #0f6ede;
    font-size: 1.08rem;
}

.landing-benefit-grid span {
    color: #73829a;
    font-size: .88rem;
}

.landing-section {
    padding: clamp(78px, 9vw, 124px) 0;
}

.landing-section-heading {
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
}

.landing-section-heading h2,
.landing-flow-copy h2,
.landing-final-card h2 {
    margin: 0;
    color: #0c1938;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -.04em;
}

.landing-section-heading > p:last-child {
    max-width: 700px;
    margin: 22px auto 0;
    color: #687890;
    font-size: 1.03rem;
}

.landing-feature-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.landing-feature-grid article {
    min-width: 0;
    padding: 30px;
    border: 1px solid #dfe8f3;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 35px rgb(25 54 95 / 6%);
}

.landing-feature-grid article:hover {
    border-color: #c4d8f1;
    box-shadow: 0 20px 45px rgb(25 76 145 / 10%);
    transform: translateY(-3px);
}

.landing-feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
}

.landing-feature-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.landing-feature-icon-blue {
    color: #147af2;
    background: #eaf4ff;
}

.landing-feature-icon-green {
    color: #279f37;
    background: #eaf9ed;
}

.landing-feature-icon-violet {
    color: #7149c6;
    background: #f2edff;
}

.landing-feature-grid h3 {
    margin: 24px 0 11px;
    color: #14213d;
    font-size: 1.2rem;
}

.landing-feature-grid p {
    margin: 0;
    color: #69788f;
    font-size: .94rem;
}

.landing-flow-section {
    padding: clamp(70px, 8vw, 108px) 0;
    border-block: 1px solid #dfebf7;
    background:
        linear-gradient(135deg, rgb(239 247 255 / 90%), rgb(243 252 245 / 78%));
}

.landing-flow-grid {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
    gap: clamp(46px, 8vw, 110px);
    align-items: center;
}

.landing-flow {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    list-style: none;
}

.landing-flow li {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 17px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid rgb(200 216 235 / 80%);
    border-radius: 16px;
    background: rgb(255 255 255 / 78%);
}

.landing-flow li > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #176ede;
    background: #eaf4ff;
    font-size: .76rem;
    font-weight: 850;
}

.landing-flow h3,
.landing-flow p {
    margin: 0;
}

.landing-flow h3 {
    color: #172540;
    font-size: 1.04rem;
}

.landing-flow p {
    margin-top: 4px;
    color: #718098;
    font-size: .88rem;
}

.landing-final {
    padding: clamp(76px, 9vw, 118px) 0;
}

.landing-final-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    padding: clamp(34px, 6vw, 66px);
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgb(69 210 85 / 25%), transparent 17rem),
        linear-gradient(135deg, #0b1a3e, #123e77);
    box-shadow: 0 28px 65px rgb(11 33 75 / 20%);
}

.landing-final-card::after {
    position: absolute;
    content: "";
    width: 240px;
    height: 240px;
    right: -140px;
    bottom: -150px;
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 50%;
    box-shadow:
        0 0 0 34px rgb(255 255 255 / 3%),
        0 0 0 68px rgb(255 255 255 / 2%);
}

.landing-final-card > * {
    position: relative;
    z-index: 2;
}

.landing-final-card > div {
    max-width: 740px;
}

.landing-final-card h2 {
    color: #fff;
}

.landing-final-card p {
    max-width: 670px;
    margin: 19px 0 0;
    color: #c3d3ea;
    font-size: 1rem;
}

.landing-button-light {
    flex: 0 0 auto;
    color: #0d3472;
    background: #fff;
    box-shadow: 0 14px 28px rgb(0 0 0 / 16%);
}

.landing-button-light:hover {
    color: #0d65cf;
    background: #f3f8ff;
    transform: translateY(-2px);
}

.landing-footer {
    padding: 30px 0;
    border-top: 1px solid #dfe7f1;
    background: #fff;
}

.landing-footer .landing-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.landing-footer .landing-container > div {
    display: grid;
    gap: 5px;
}

.landing-footer strong {
    color: #182945;
    font-size: .9rem;
}

.landing-footer span,
.landing-footer a {
    color: #7a8799;
    font-size: .79rem;
}

.landing-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 19px;
}

.landing-footer a {
    text-decoration: none;
}

.landing-footer a:hover {
    color: #176fe1;
}

@media (max-width: 980px) {
    .landing-hero-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero-copy {
        max-width: 760px;
    }

    .landing-visual {
        width: min(650px, 100%);
        margin-inline: auto;
    }

    .landing-feature-grid {
        grid-template-columns: 1fr;
    }

    .landing-feature-grid article {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 20px;
    }

    .landing-feature-grid article h3 {
        align-self: end;
        margin: 0 0 4px;
    }

    .landing-feature-grid article p {
        grid-column: 2;
    }

    .landing-flow-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

@media (max-width: 720px) {
    .landing-container {
        width: min(100% - 28px, 1180px);
    }

    .landing-nav {
        min-height: 74px;
    }

    .landing-brand small {
        display: none;
    }

    .landing-nav-actions {
        gap: 12px;
    }

    .landing-login {
        width: 43px;
        min-width: 43px;
        height: 43px;
        overflow: hidden;
        padding: 0;
        color: transparent;
        gap: 0;
        white-space: nowrap;
    }

    .landing-login svg {
        flex: 0 0 19px;
        color: #0c3472;
    }

    .landing-hero {
        padding-top: 58px;
    }

    .landing-benefit-grid {
        grid-template-columns: 1fr;
        padding-block: 8px;
    }

    .landing-benefit-grid article {
        justify-content: flex-start;
        padding-block: 16px;
    }

    .landing-benefit-grid article + article {
        border-top: 1px solid #e5ebf3;
        border-left: 0;
    }

    .landing-final-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .landing-footer .landing-container {
        align-items: flex-start;
        flex-direction: column;
    }

    .landing-footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 500px) {
    .landing-brand {
        gap: 9px;
    }

    .landing-brand-mark {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        border-radius: 12px;
    }

    .landing-brand strong {
        font-size: 1.08rem;
    }

    .landing-languages {
        gap: 4px;
    }

    .landing-hero h1 {
        font-size: clamp(2.55rem, 13vw, 3.5rem);
    }

    .landing-hero-actions,
    .landing-button {
        width: 100%;
    }

    .landing-product-top img {
        width: 64px;
        flex-basis: 64px;
    }

    .landing-progress {
        margin-inline: -8px;
    }

    .landing-progress li {
        font-size: .61rem;
    }

    .landing-progress li span {
        width: 32px;
        height: 32px;
    }

    .landing-progress::before {
        top: 15px;
    }

    .landing-result-row {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .landing-result-pulse {
        display: none;
    }

    .landing-feature-grid article {
        display: block;
        padding: 25px;
    }

    .landing-feature-grid article h3 {
        margin: 20px 0 9px;
    }

    .landing-flow li {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 13px;
        padding: 15px;
    }

    .landing-flow li > span {
        width: 42px;
        height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-page *,
    .landing-page *::before,
    .landing-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
