:root {
    --blue: #062b60;
    --blue-2: #0b4edb;
    --green: #059669;
    --light: #f4f7fb;
    --text: #0b1f3a;
    --muted: #6b7890;
    --radius: 22px;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #eef4fb 0%, #ffffff 40%);
    font-family: Arial, sans-serif;
    color: var(--text);
}

.page-shell {
    max-width: 1440px;
    margin: 28px auto;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(6, 43, 96, .12);
    padding: 22px;
}

.navbar-brand {
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border: 3px solid var(--blue);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--blue);
}

.nav-link {
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
}

.navbar-collapse.collapse {
    visibility: visible;
}

.language-toggle {
    min-height: 48px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.btn-main {
    background: var(--blue-2);
    color: #fff;
    border-radius: 12px;
    padding: 13px 24px;
    font-weight: 700;
    border: 0;
}

.btn-dark-main {
    background: var(--blue);
    color: #fff;
    border-radius: 12px;
    padding: 12px 20px;
    min-height: 48px;
    font-weight: 700;
    border: 0;
}

.insurance-process-shell {
    margin-top: 18px;
}

.process-stepper {
    --step-progress: 0%;
    margin: 22px 0 24px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 12% 0%, rgba(45, 212, 191, .28), transparent 30%),
        radial-gradient(circle at 92% 12%, rgba(96, 165, 250, .28), transparent 34%),
        linear-gradient(135deg, #071a3a 0%, #0a2f66 52%, #092049 100%);
    box-shadow: 0 24px 58px rgba(6, 43, 96, .22);
    padding: 18px;
    overflow: hidden;
    color: #fff;
}

.process-stepper-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 18px;
    align-items: center;
    margin-bottom: 18px;
}

.process-stepper-summary span {
    color: rgba(229, 241, 255, .74);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.process-stepper-summary strong {
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
}

.process-stepper-summary em {
    grid-row: 1 / span 2;
    grid-column: 2;
    min-width: 74px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    padding: 9px 13px;
    color: #d9fff0;
    font-style: normal;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}

.process-stepper-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
    padding-top: 22px;
}

.process-stepper-track::before,
.process-stepper-track::after {
    content: "";
    position: absolute;
    left: calc(100% / 14);
    right: calc(100% / 14);
    top: 42px;
    height: 3px;
    border-radius: 999px;
}

.process-stepper-track::before {
    background: rgba(255, 255, 255, .22);
}

.process-stepper-track::after {
    right: auto;
    width: var(--step-progress);
    max-width: calc(100% - (100% / 7));
    background: linear-gradient(90deg, #34d399 0%, #60a5fa 100%);
    box-shadow: 0 0 22px rgba(52, 211, 153, .3);
}

.process-step {
    position: relative;
    z-index: 1;
    min-height: 118px;
    border: 0;
    border-radius: 22px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
    color: rgba(232, 241, 255, .66);
    font-size: 12px;
    font-weight: 700;
    padding: 0 8px 12px;
    text-align: center;
}

.process-step-icon {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #102d5f;
    border: 2px solid rgba(255, 255, 255, .28);
    color: rgba(229, 241, 255, .78);
    font-size: 18px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
    transition: .2s ease;
}

.process-step-copy {
    display: grid;
    gap: 5px;
    justify-items: center;
    min-width: 0;
    max-width: 128px;
}

.process-step b {
    color: inherit;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
}

.process-step small {
    color: rgba(229, 241, 255, .48);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .03em;
    line-height: 1;
}

.process-step.is-active {
    color: #fff;
}

.process-step.is-active .process-step-icon {
    width: 54px;
    height: 54px;
    margin-top: -6px;
    background: #fff;
    border-color: #93c5fd;
    color: var(--blue-2);
    box-shadow:
        0 0 0 8px rgba(96, 165, 250, .18),
        0 18px 34px rgba(0, 0, 0, .24);
}

.process-step.is-done {
    color: #dffcf1;
}

.process-step.is-done .process-step-icon {
    background: #34d399;
    border-color: #a7f3d0;
    color: #06341f;
}

.process-step.is-done small,
.process-step.is-active small {
    color: rgba(255, 255, 255, .8);
}

.process-hero {
    border-radius: 24px;
    background:
        linear-gradient(105deg, rgba(6, 28, 72, 0.96), rgba(11, 55, 142, 0.86)),
        url("../images/home-road-hero.png");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 34px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    overflow: hidden;
}

.process-hero h1,
.contract-panel h1 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.04;
    font-weight: 900;
    margin: 10px 0;
}

.process-hero p {
    max-width: 650px;
    color: rgba(227, 236, 255, .94);
    margin: 0;
    font-size: 17px;
}

.process-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.contract-panel .process-eyebrow {
    color: var(--blue);
    border-color: #dbe6f4;
    background: #eef4fb;
}

.process-hero-mark {
    width: 104px;
    height: 104px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    font-size: 44px;
    flex: 0 0 auto;
}

.process-card,
.contract-panel {
    margin-top: 18px;
    border: 1px solid #dbe6f4;
    border-radius: 22px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 18px 45px rgba(6, 43, 96, .08);
}

.country-choice-grid,
.product-choice-grid,
.quote-offer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.product-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-tile,
.offer-select-card {
    position: relative;
    min-height: 156px;
    border: 1px solid #dbe6f4;
    border-radius: 18px;
    padding: 18px;
    background: #f8fbff;
    cursor: pointer;
    transition: .2s ease;
}

.country-choice-button {
    width: 100%;
    text-align: left;
}

.product-choice-button {
    width: 100%;
    text-align: left;
}

.country-choice-button i,
.product-choice-button > i {
    position: absolute;
    right: 18px;
    bottom: 18px;
    color: var(--blue-2);
    font-size: 24px;
    opacity: .7;
    transition: .2s ease;
}

.country-choice-button:hover i,
.product-choice-button:hover > i {
    opacity: 1;
    transform: translateX(3px);
}

.product-choice-button-soon > i {
    color: #9aa8be;
}

.choice-tile input,
.offer-select-card input {
    position: absolute;
    inset: 16px 16px auto auto;
    width: 18px;
    height: 18px;
    accent-color: var(--blue-2);
}

.choice-tile:hover,
.offer-select-card:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 78, 219, .45);
}

.choice-tile:has(input:checked),
.offer-select-card:has(input:checked) {
    background: #fff;
    border-color: var(--blue-2);
    box-shadow: 0 16px 36px rgba(11, 78, 219, .12);
}

.choice-flag {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--blue);
    font-size: 28px;
    margin-bottom: 14px;
    box-shadow: 0 10px 22px rgba(6, 43, 96, .08);
}

.choice-tile strong,
.offer-select-card strong {
    display: block;
    color: var(--text);
    font-size: 18px;
    font-weight: 900;
}

.choice-tile small {
    color: var(--muted);
    font-weight: 700;
}

.process-input {
    min-height: 52px;
    border-radius: 14px;
    border-color: #d8e2f0;
    color: var(--text);
}

.process-input:focus {
    border-color: var(--blue-2);
    box-shadow: 0 0 0 .25rem rgba(11, 78, 219, .14);
}

.process-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.process-link {
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
}

.process-link-button {
    border: 0;
    background: transparent;
    padding: 0;
}

.process-alert {
    margin-top: 14px;
    border-radius: 16px;
    padding: 14px 16px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-weight: 700;
}


.success-alert {
    margin-top: 14px;
    border-radius: 16px;
    padding: 14px 16px;
    border: 1px solid #bfe9d8;
    background: #ecfbf4;
    color: #087150;
    font-weight: 700;
}


.error-alert {
    margin-top: 14px;
    border-radius: 16px;
    padding: 14px 16px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    font-weight: 700;
}

.saved-vehicle-panel {
    margin-bottom: 24px;
    padding: 22px;
    border: 1px solid #dce8e3;
    border-radius: 20px;
    background: #f8fcfa;
}

.saved-vehicle-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.saved-vehicle-head strong {
    display: block;
    color: #17372d;
    font-size: 18px;
}

.saved-vehicle-head p {
    margin: 4px 0 0;
    color: #667a73;
}

.saved-vehicle-head > i {
    color: #12966f;
    font-size: 28px;
}

.saved-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.saved-vehicle-card {
    position: relative;
    display: flex;
    min-height: 126px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px;
    border: 1px solid #d8e4df;
    border-radius: 16px;
    background: #fff;
    color: #17372d;
    text-align: left;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.saved-vehicle-card:hover,
.saved-vehicle-card.is-selected {
    border-color: #12966f;
    box-shadow: 0 10px 24px rgba(18, 150, 111, .12);
    transform: translateY(-2px);
}

.saved-vehicle-card > span,
.saved-vehicle-card > small {
    margin-top: 5px;
    color: #667a73;
}

.saved-vehicle-check {
    position: absolute;
    top: 12px;
    right: 12px;
    display: none;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #12966f;
    color: #fff !important;
}

.saved-vehicle-card.is-selected .saved-vehicle-check {
    display: flex;
}

.saved-vehicle-new {
    border-style: dashed;
}

.saved-vehicle-new > i {
    margin-bottom: 10px;
    color: #12966f;
    font-size: 22px;
}

.lookup-panel {
    border: 1px solid #dbe6f4;
    border-radius: 18px;
    background: #f8fbff;
    padding: 18px;
    margin-bottom: 22px;
}

.lookup-panel strong {
    display: block;
    color: var(--blue);
    font-size: 18px;
    font-weight: 900;
}

.lookup-panel p {
    color: var(--muted);
    font-weight: 700;
    margin: 6px 0 16px;
}

.lookup-status {
    display: inline-flex;
    margin-left: 12px;
    color: var(--muted);
    font-weight: 800;
}

.lookup-result-panel {
    position: relative;
    border: 1px solid #d7e2f2;
    border-radius: 26px;
    background:
        radial-gradient(circle at 8% 0%, rgba(52, 211, 153, .18), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 24px 56px rgba(6, 43, 96, .1);
    overflow: hidden;
}

.lookup-result-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.lookup-result-head span {
    display: block;
    color: var(--blue-2);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.lookup-result-head strong {
    display: block;
    color: var(--text);
    font-size: 24px;
    font-weight: 900;
}

.lookup-result-seal {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #ecfdf5;
    color: var(--green);
    border: 1px solid #b7efd8;
    font-size: 24px;
}

.lookup-dossier {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 14px;
}

.lookup-dossier-main,
.lookup-dossier-side,
.lookup-vehicle-strip {
    border: 1px solid #dfe8f5;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(6px);
    box-shadow: 0 14px 32px rgba(6, 43, 96, .06);
}

.lookup-dossier-main {
    min-height: 238px;
    border-radius: 22px;
    padding: 22px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 18px;
}

.lookup-avatar {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0b4edb, #062b60);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 16px 30px rgba(11, 78, 219, .24);
}

.lookup-kicker,
.lookup-metric span,
.lookup-vehicle-title span,
.lookup-vehicle-facts span {
    display: block;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.lookup-dossier-main h3 {
    margin: 0;
    color: var(--text);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.06;
    overflow-wrap: anywhere;
}

.lookup-language-lines {
    display: grid;
    gap: 5px;
    margin-top: 12px;
}

.lookup-language-lines small {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--muted);
}

.lookup-language-lines b {
    min-width: 24px;
    color: var(--blue-2);
    font-size: 11px;
    font-weight: 900;
}

.lookup-language-lines em {
    color: var(--muted);
    font-style: normal;
    font-weight: 800;
}

.lookup-dossier-main p {
    margin: 18px 0 0;
    border-top: 1px solid #e6edf8;
    padding-top: 14px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.lookup-dossier-side {
    border-radius: 22px;
    padding: 14px;
    display: grid;
    gap: 12px;
}

.lookup-metric {
    min-height: 96px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    border-radius: 18px;
    background: #f8fbff;
    padding: 14px;
}

.lookup-metric i,
.lookup-vehicle-title i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #eef4ff;
    color: var(--blue-2);
    font-size: 18px;
}

.lookup-metric strong,
.lookup-vehicle-title strong,
.lookup-vehicle-facts strong {
    display: block;
    color: var(--text);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.lookup-metric small,
.lookup-vehicle-title small,
.lookup-vehicle-facts small {
    display: block;
    color: var(--muted);
    font-weight: 750;
    margin-top: 6px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.lookup-vehicle-strip {
    grid-column: 1 / -1;
    border-radius: 22px;
    padding: 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
    gap: 14px;
    align-items: stretch;
}

.lookup-vehicle-title {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    border-radius: 18px;
    background: linear-gradient(135deg, #f8fbff, #eef7ff);
    padding: 16px;
}

.lookup-vehicle-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.lookup-vehicle-facts > div {
    border-radius: 18px;
    background: #f8fbff;
    padding: 16px;
}

.payout-panel {
    margin-top: 18px;
    border: 1px solid #dbe6f4;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 18px;
    box-shadow: 0 16px 36px rgba(6, 43, 96, .07);
}

.payout-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.payout-panel-head span {
    display: block;
    color: var(--blue-2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.payout-panel-head strong {
    display: block;
    color: var(--text);
    font-size: 20px;
    font-weight: 900;
    margin-top: 4px;
}

.payout-panel-head i {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #eef4ff;
    color: var(--blue-2);
    font-size: 22px;
    flex: 0 0 auto;
}

.payment-note {
    min-height: 52px;
    border: 1px solid #dbe6f4;
    border-radius: 14px;
    background: #f8fbff;
    color: var(--muted);
    padding: 13px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.payment-note i {
    color: var(--blue-2);
    font-size: 18px;
}

.payment-card-choice {
    width: min(360px, 100%);
    aspect-ratio: 1 / .72;
    border: 1px solid rgba(11, 78, 219, .2);
    border-radius: 26px;
    background:
        radial-gradient(circle at 16% 14%, rgba(255, 255, 255, .35), transparent 28%),
        linear-gradient(135deg, #062b60 0%, #0b4edb 62%, #174ea6 100%);
    color: #fff;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    box-shadow: 0 24px 52px rgba(11, 78, 219, .22);
    transition: .2s ease;
}

.payment-card-choice:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 62px rgba(11, 78, 219, .28);
}

.payment-card-choice .bi-arrow-right-circle-fill {
    align-self: flex-end;
    font-size: 30px;
    opacity: .92;
}

.payment-card-mark {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    font-size: 30px;
}

.payment-card-choice strong {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.1;
}

.payment-card-choice small {
    display: block;
    color: rgba(231, 241, 255, .82);
    font-weight: 750;
    margin-top: 8px;
    line-height: 1.35;
}

.payment-footnote {
    max-width: 620px;
    margin-top: 18px;
    border: 1px solid #dbe6f4;
    border-radius: 18px;
    background: #f8fbff;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
}

.payment-footnote i {
    color: var(--green);
    font-size: 21px;
}

.payment-footnote strong,
.payment-footnote span {
    display: block;
}

.payment-footnote strong {
    color: var(--text);
    font-weight: 900;
}

.payment-footnote span {
    font-weight: 750;
    margin-top: 2px;
}


.offer-select-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
}

.offer-badge {
    align-self: flex-start;
    border-radius: 999px;
    background: #e8f2ff;
    color: var(--blue);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

.offer-price {
    display: block;
    margin: 12px 0;
    font-size: 30px;
    font-weight: 900;
    color: var(--blue-2);
}

.offer-select-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 700;
}

.offer-select-card li i {
    color: var(--green);
    margin-right: 6px;
}

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

.insurer-card {
    position: relative;
    min-height: 320px;
    border: 1px solid #dbe6f4;
    border-radius: 24px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 22px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
    box-shadow: 0 18px 44px rgba(6, 43, 96, .07);
    transition: .2s ease;
}

.insurer-card-active {
    cursor: pointer;
}

.insurer-card-active:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 78, 219, .42);
    box-shadow: 0 28px 62px rgba(11, 78, 219, .15);
}

.insurer-card-disabled {
    filter: blur(1.8px);
    opacity: .58;
    pointer-events: none;
    user-select: none;
}

.insurer-badge {
    border-radius: 999px;
    background: #e8f2ff;
    color: var(--blue);
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 900;
}

.insurer-logo {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    margin-top: 8px;
}

.insurer-logo-liga {
    background: #b60612;
    color: #fff;
    clip-path: polygon(12% 0, 88% 0, 100% 18%, 100% 78%, 50% 100%, 0 78%, 0 18%);
    font-weight: 1000;
    letter-spacing: .04em;
    font-size: 24px;
    box-shadow: 0 16px 32px rgba(182, 6, 18, .2);
}

.insurer-logo-muted {
    border-radius: 24px;
    background: #eef4ff;
    color: #8a99b4;
    font-weight: 900;
    font-size: 24px;
}

.insurer-card strong {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
}

.insurer-card small {
    color: var(--muted);
    font-weight: 800;
    margin-top: auto;
}

.insurer-card b {
    display: block;
    color: var(--blue-2);
    font-size: 30px;
    font-weight: 1000;
    line-height: 1;
}

.insurer-card em {
    color: var(--muted);
    font-style: normal;
    font-weight: 900;
}

.insurer-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: var(--blue-2);
    font-size: 30px;
    opacity: .9;
}

.process-summary-card {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: 18px;
    padding: 18px 20px;
    background: #eef7ff;
    color: var(--blue);
}

.process-summary-card span {
    font-weight: 900;
}

.process-summary-card strong,
.process-summary-card b {
    font-size: 22px;
    font-weight: 900;
}

.contract-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 900;
    margin-bottom: 18px;
}

.contract-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.contract-head p {
    color: var(--muted);
    font-weight: 700;
}

.contract-price {
    min-width: 190px;
    border-radius: 18px;
    background: var(--blue);
    color: #fff;
    padding: 18px;
    text-align: right;
}

.contract-price small,
.contract-grid small {
    display: block;
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 6px;
}

.contract-price small {
    color: rgba(255,255,255,.75);
}

.contract-price strong {
    font-size: 24px;
    font-weight: 900;
}

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

.contract-grid div {
    border: 1px solid #dbe6f4;
    border-radius: 16px;
    background: #f8fbff;
    padding: 16px;
}

.contract-grid strong {
    color: var(--text);
    font-weight: 900;
}

.contract-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.contract-download-button {
    border: 1px solid #dbe6f4;
    border-radius: 12px;
    background: #f8fbff;
    color: var(--blue);
    padding: 13px 18px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contract-download-button:hover {
    border-color: rgba(11, 78, 219, .35);
    background: #eef4ff;
}

.hero {
    margin-top: 18px;
    min-height: 430px;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(100deg, rgba(6, 28, 72, 0.92) 0%, rgba(11, 55, 142, 0.82) 42%, rgba(7, 37, 102, 0.62) 100%),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 42px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero h1 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.02;
    font-weight: 900;
    margin-bottom: 18px;
}

.hero p {
    color: rgba(227, 236, 255, 0.95);
    font-size: 18px;
    max-width: 530px;
}

.hero-redesign::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 175, 255, 0.45) 0%, rgba(126, 175, 255, 0) 70%);
    top: -190px;
    right: -130px;
    pointer-events: none;
}

.hero-redesign-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 20px;
    align-items: stretch;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .08em;
    font-weight: 700;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.24);
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.hero-country-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.hero-country {
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.1);
    border-radius: 16px;
    color: #fff;
    padding: 9px 13px;
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    min-width: 58px;
    min-height: 50px;
    display: grid;
    place-items: center;
}

.hero-country-disabled {
    cursor: not-allowed;
    opacity: .56;
    filter: grayscale(.35);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-link-action {
    color: #dce8ff;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.hero-right {
    display: grid;
    gap: 12px;
}

.hero-card {
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.1);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.hero-card-main {
    padding: 16px;
    min-height: 180px;
}

.hero-card-main h4 {
    font-weight: 800;
}

.hero-main-price {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3dff99;
    box-shadow: 0 0 12px #3dff99;
}

.hero-card-mini {
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero-card-mini i {
    font-size: 24px;
}

.hero-card-mini strong {
    display: block;
    font-size: 14px;
}

.hero-card-mini p {
    font-size: 12px;
    margin: 0;
    color: rgba(235, 241, 255, 0.9);
}

.flag {
    font-size: 28px;
    margin-right: 10px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 20px 14px;
    border-radius: 14px;
    transition: .2s ease;
}

.feature-item:hover {
    background: #f7faff;
}

.hero-secondary-btn {
    border-color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 700;
}

.hero-mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-mini-stat {
    min-width: 130px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}

.hero-mini-stat strong {
    display: block;
    font-size: 18px;
    line-height: 1.1;
}

.hero-mini-stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.84);
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--blue-2);
    font-size: 26px;
}

.service-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 28px;
    min-height: 428px;
    border: 1px solid #e4ebf5;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(14, 42, 91, 0.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #bfd1f4;
    box-shadow: 0 18px 40px rgba(14, 42, 91, 0.14);
}

.service-card.health {
    background: #effaf8;
}

.service-card h3 {
    font-weight: 800;
    color: var(--blue);
}

.service-pill {
    display: inline-block;
    border-radius: 999px;
    background: #e9f0ff;
    color: #2459c9;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
}

.health-pill {
    background: #ddf7ef;
    color: #0a8a67;
}

.service-main-icon {
    font-size: 32px;
    color: #2c60d8;
}

.health-icon {
    color: #0f9972;
}

.service-list p {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2f476f;
}

.service-card p {
    color: var(--muted);
}

.service-img {
    height: 170px;
    object-fit: contain;
    max-width: 100%;
}

.quick-quote {
    background: var(--blue);
    color: #fff;
    border-radius: 22px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 18px 38px rgba(6, 43, 96, .28);
    border: 1px solid rgba(255,255,255,.12);
}

.quick-quote .form-control,
.quick-quote .form-select {
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    border-radius: 10px;
    min-height: 42px;
}

.quick-quote .form-select option {
    color: #000;
}

.price {
    font-size: 30px;
    font-weight: 900;
}

.quote-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    border-top: 1px dashed rgba(255,255,255,.25);
    padding-top: 10px;
}

.partner-strip {
    background: var(--light);
    border-radius: 18px;
    padding: 18px 24px;
    margin-top: 22px;
}

.partner {
    font-weight: 900;
    color: var(--blue);
    opacity: .75;
}

.partner-logo-card {
    border: 1px solid #dbe6fb;
    background: #fff;
    border-radius: 14px;
    padding: 10px 12px;
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.partner-logo-card:hover {
    transform: translateY(-2px);
    border-color: #bfd3fa;
    box-shadow: 0 10px 20px rgba(16, 46, 99, 0.1);
}

.partner-logo-card-featured {
    border-color: #9fbcf2;
    background: linear-gradient(180deg, #ffffff 0%, #edf4ff 100%);
    box-shadow: 0 10px 22px rgba(16, 46, 99, 0.1);
}

.partner-logo-card-blurred {
    background: rgba(255, 255, 255, .72);
}

.partner-logo-card-blurred .partner-logo-mark,
.partner-logo-card-blurred .partner-logo-name {
    filter: blur(5px);
    opacity: .58;
    user-select: none;
}

.partner-logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(145deg, #1f57c8 0%, #4f8dff 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: grid;
    place-items: center;
    letter-spacing: .04em;
    flex: 0 0 auto;
}

.partner-logo-name {
    font-weight: 800;
    color: #1a3f79;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
}

.mobile-preview-section {
    margin-top: 26px;
    padding: 34px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 86% 18%, rgba(50, 210, 151, .22), transparent 28%),
        linear-gradient(115deg, rgba(247, 251, 255, .98) 0%, rgba(235, 244, 255, .92) 52%, rgba(225, 238, 255, .86) 100%);
    border: 1px solid rgba(13, 82, 171, .1);
    box-shadow: 0 18px 46px rgba(21, 74, 139, .11);
}

.mobile-preview-copy {
    max-width: 520px;
}

.mobile-preview-copy h2 {
    margin: 14px 0 12px;
    color: #12316c;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.05;
}

.mobile-preview-copy p {
    margin: 0 0 20px;
    color: #5e7296;
    font-size: 16px;
    line-height: 1.7;
}

.mobile-preview-points {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.mobile-preview-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 10px 12px;
    border-radius: 16px;
    color: #12316c;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(17, 81, 171, .1);
    box-shadow: 0 12px 24px rgba(15, 61, 128, .08);
    font-weight: 800;
}

.mobile-preview-points i {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #0a55cb;
    background: #eef5ff;
    font-size: 17px;
}

.phone-showcase {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 560px;
}

.phone-showcase::before,
.phone-showcase::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.phone-showcase::before {
    width: 320px;
    height: 320px;
    background: rgba(33, 113, 230, .13);
}

.phone-showcase::after {
    width: 460px;
    height: 460px;
    border: 1px solid rgba(32, 105, 206, .12);
}

.phone-device {
    position: relative;
    z-index: 2;
    width: min(310px, 82vw);
    min-height: 585px;
    padding: 13px;
    border-radius: 42px;
    background: linear-gradient(145deg, #071936 0%, #0b2b62 52%, #041127 100%);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 28px 54px rgba(9, 41, 89, .28);
}

.phone-speaker {
    position: absolute;
    left: 50%;
    top: 16px;
    z-index: 3;
    width: 78px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    transform: translateX(-50%);
}

.phone-screen {
    min-height: 560px;
    overflow: hidden;
    border-radius: 32px;
    background: #f6f9ff;
    border: 1px solid rgba(255, 255, 255, .24);
}

.phone-browser-bar {
    display: grid;
    grid-template-columns: 18px 1fr 18px;
    align-items: center;
    gap: 8px;
    padding: 18px 16px 10px;
    color: #5f7191;
    font-size: 10px;
    font-weight: 800;
}

.phone-browser-bar span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #32d397;
    box-shadow: 12px 0 0 #ffcc4b, 24px 0 0 #ff6b6b;
}

.phone-browser-bar strong {
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.phone-site-shot {
    display: block;
    width: calc(100% - 18px);
    height: 514px;
    margin: 0 9px 9px;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    object-fit: cover;
    object-position: top center;
}

.phone-site-hero {
    margin: 0 12px;
    padding: 18px;
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 8%, rgba(64, 228, 166, .34), transparent 34%),
        linear-gradient(145deg, #093d93 0%, #0b5ddd 100%);
    box-shadow: 0 16px 32px rgba(9, 70, 160, .28);
}

.phone-brand-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 900;
}

.phone-brand-mark {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    color: #0b4dcc;
    background: #fff;
}

.phone-site-hero h3 {
    max-width: 190px;
    margin: 0 0 8px;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.05;
}

.phone-site-hero p {
    max-width: 210px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    line-height: 1.5;
}

.phone-country-row {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.phone-country-row span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .2);
}

.phone-policy-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 14px 12px;
    padding: 14px;
    border-radius: 20px;
    color: #143474;
    background: #fff;
    box-shadow: 0 14px 30px rgba(17, 61, 126, .12);
}

.phone-policy-card small,
.phone-policy-card strong {
    display: block;
}

.phone-policy-card small {
    color: #7a8ca8;
    font-size: 11px;
    font-weight: 750;
}

.phone-policy-card strong {
    margin-top: 3px;
    font-size: 15px;
    font-weight: 900;
}

.phone-policy-card > span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #fff;
    background: #0a55cb;
}

.phone-step-list {
    display: grid;
    gap: 9px;
    padding: 0 12px 16px;
}

.phone-step-list div {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 12px;
    border-radius: 16px;
    color: #28446f;
    background: #fff;
    border: 1px solid rgba(18, 72, 156, .08);
    font-size: 12px;
    font-weight: 800;
}

.phone-step-list i {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    color: #087b50;
    background: #e9fbf4;
}

.promo-banner {
    border-radius: var(--radius);
    background: linear-gradient(95deg, #0a3eab 0%, #0b4edb 100%);
    color: #fff;
    padding: 28px;
    min-height: 188px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #2f67d9;
}

.promo-banner p {
    color: rgba(255, 255, 255, 0.88);
}

.promo-icon {
    font-size: 56px;
    opacity: .45;
}

.gift-card {
    border: 1px solid #e0e8f6;
    border-radius: var(--radius);
    padding: 24px;
    background: #fff;
    min-height: 188px;
}

.faq-panel,
.contact-panel {
    border: 1px solid #e0e8f6;
    border-radius: var(--radius);
    padding: 24px;
    background: #fff;
}

.faq-panel .accordion-item {
    border: 1px solid #e4ebf5;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 10px;
}

.faq-panel .accordion-button {
    font-weight: 600;
    color: var(--text);
    background: #fff;
}

.faq-panel .accordion-button:not(.collapsed) {
    color: var(--blue);
    background: #f6f9ff;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #e5ecf8;
    color: #374d74;
}

.contact-row:last-child {
    border-bottom: 0;
}

.home-footer {
    background: linear-gradient(180deg, #f7faff 0%, #f1f6ff 100%);
    border: 1px solid #dfe9fb;
    border-radius: 22px;
    padding: 24px;
}

.home-footer h5,
.home-footer h6 {
    color: var(--blue);
    font-weight: 800;
}

.home-footer a {
    display: block;
    text-decoration: none;
    color: #3f5780;
    margin-bottom: 8px;
}

.home-footer a:hover {
    color: var(--blue-2);
}

.footer-top {
    border-bottom: 1px dashed #d6e2fa;
    padding-bottom: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #e8efff;
    color: #2b58c7;
}

.footer-social a:hover {
    background: #2b58c7;
    color: #fff;
}

.footer-contact span {
    display: block;
    font-size: 13px;
    color: #3a547f;
    margin-bottom: 6px;
}

.footer-bottom {
    color: #59709b;
}

.footer-bottom a {
    color: #4569ad;
    text-decoration: none;
    font-size: 13px;
}

.services-row .col-lg-3 {
    display: flex;
}

.services-redesign .service-card,
.services-redesign .quick-quote {
    display: none;
}

.services-showcase {
    border: 1px solid #dbe5fb;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    padding: 26px;
    box-shadow: 0 14px 30px rgba(16, 46, 99, 0.08);
    height: 100%;
}

.services-mini-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #e8f0ff;
    color: #255bca;
    font-weight: 700;
    font-size: 12px;
}

.services-showcase-head h3 {
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: 30px;
    font-weight: 800;
    color: #112f66;
}

.services-showcase-head p {
    color: #61759d;
    margin-bottom: 20px;
}

.services-offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.offer-card {
    border: 1px solid #dbe5fb;
    border-radius: 18px;
    padding: 16px;
    background: #fff;
    display: block;
    position: relative;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.offer-card::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 92, 205, .16) 0%, rgba(41, 92, 205, 0) 72%);
    pointer-events: none;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(15, 45, 98, .14);
    border-color: #a8c3f8;
}

.offer-card-auto {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.offer-card-health {
    background: linear-gradient(180deg, #ffffff 0%, #effaf8 100%);
}

.offer-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 26px;
    background: #eaf1ff;
    color: #1d56cb;
    margin-bottom: 10px;
}

.offer-card-health .offer-icon {
    background: #def6ee;
    color: #0b9f77;
}

.offer-content h4 {
    font-size: 19px;
    font-weight: 800;
    color: #173970;
    margin-bottom: 6px;
}

.offer-content p {
    color: #657ba4;
    margin-bottom: 8px;
}

.offer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 12px;
}

.offer-pills span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #dbe7fa;
    border-radius: 999px;
    background: #f7faff;
    color: #345389;
    font-size: 13px;
    font-weight: 800;
    padding: 7px 10px;
}

.offer-pills i {
    color: #1d56cb;
}

.offer-cta {
    margin-top: auto;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 700;
    color: #1f57c8;
    border-top: 1px dashed rgba(127, 159, 230, 0.45);
    padding-top: 10px;
}

.faq-quick-grid {
    display: grid;
    gap: 10px;
}

.faq-quick-grid a {
    border: 1px solid #e1e9f8;
    border-radius: 14px;
    background: #fff;
    color: #16386d;
    text-decoration: none;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.faq-quick-grid a:hover {
    background: #f4f8ff;
    border-color: #bdd2fa;
    transform: translateY(-1px);
}

.faq-quick-grid i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #eaf1ff;
    color: #1d56cb;
    display: grid;
    place-items: center;
    font-size: 18px;
    flex: 0 0 auto;
}

.contact-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.contact-icon-grid a {
    min-height: 58px;
    border: 1px solid #dfe9fb;
    border-radius: 14px;
    background: #fff;
    color: #1d56cb;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 24px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.contact-icon-grid a:hover {
    background: #eef5ff;
    border-color: #bdd2fa;
    transform: translateY(-1px);
}

.services-kpi-row {
    margin-top: 16px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid #d8e5ff;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.services-kpi-card {
    border-radius: 14px;
    border: 1px solid #dce7fb;
    background: #fff;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.services-kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(16, 46, 99, 0.12);
    border-color: #b9cff7;
}

.services-kpi-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: #fff;
    flex: 0 0 auto;
}

.services-kpi-card-time .services-kpi-icon {
    background: linear-gradient(140deg, #1f57c8 0%, #5b9cff 100%);
}

.services-kpi-card-trust .services-kpi-icon {
    background: linear-gradient(140deg, #0d7fdf 0%, #40c1ff 100%);
}

.services-kpi-card-support .services-kpi-icon {
    background: linear-gradient(140deg, #0b8f79 0%, #35c6a4 100%);
}

.services-kpi-content {
    min-width: 0;
}

.services-kpi-content strong {
    display: block;
    color: #163f96;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 4px;
}

.services-kpi-content span {
    color: #5a729f;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
}

.services-showcase {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border-color: #d5e3fb;
    background:
        radial-gradient(circle at 82% 12%, rgba(43, 101, 244, .12), transparent 30%),
        radial-gradient(circle at 96% 42%, rgba(20, 184, 166, .11), transparent 25%),
        linear-gradient(135deg, #fff 0%, #f7faff 52%, #f1f8ff 100%);
    box-shadow: 0 22px 52px rgba(16, 46, 99, .1);
}

.services-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(44, 100, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44, 100, 255, .03) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.sg-insurance-pattern {
    position: absolute;
    right: -180px;
    top: -190px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(37, 99, 235, .1);
    border-radius: 50%;
}

.sg-insurance-pattern::before,
.sg-insurance-pattern::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(37, 99, 235, .08);
    border-radius: 50%;
}

.sg-insurance-pattern::before {
    inset: 65px;
}

.sg-insurance-pattern::after {
    inset: 132px;
}

.sg-insurance-layout,
.sg-insurance-stats,
.services-showcase > .row {
    position: relative;
    z-index: 2;
}

.sg-insurance-layout {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: 18px;
}

.sg-insurance-intro {
    min-width: 0;
}

.sg-insurance-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid #cbdcff;
    border-radius: 999px;
    color: #245dde;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 10px 28px rgba(37, 99, 235, .08);
    font-size: 11px;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.sg-insurance-label i {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(145deg, #2867f2, #5f8eff);
}

.sg-insurance-title {
    display: grid;
    grid-template-columns: 5px minmax(0, 1fr);
    gap: 16px;
    margin-top: 38px;
}

.sg-insurance-title > span {
    width: 5px;
    height: 104px;
    border-radius: 99px;
    background: linear-gradient(180deg, #1f63ff, #28cbb1);
    box-shadow: 0 0 22px rgba(37, 99, 235, .2);
}

.sg-insurance-title h3 {
    max-width: 330px;
    margin: 0;
    color: #09265e;
    font-size: 35px;
    font-weight: 950;
    line-height: 1.06;
    letter-spacing: 0;
}

.sg-insurance-intro > p {
    margin: 24px 0 0 21px;
    color: #687a98;
    font-size: 14px;
    line-height: 1.7;
}

.sg-trust-note {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    margin-top: 64px;
    padding: 16px;
    border: 1px solid rgba(188, 209, 247, .75);
    border-radius: 18px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 16px 38px rgba(16, 50, 110, .07);
    backdrop-filter: blur(12px);
}

.sg-trust-note > span {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #2b6af2, #0b45c8);
    box-shadow: 0 10px 22px rgba(37, 99, 235, .23), 0 0 0 8px rgba(37, 99, 235, .07);
    font-size: 22px;
}

.sg-trust-note strong,
.sg-trust-note small {
    display: block;
}

.sg-trust-note strong {
    color: #12366f;
    font-size: 13px;
}

.sg-trust-note small {
    margin-top: 4px;
    color: #7b8aa3;
    font-size: 10px;
}

.sg-product-cards {
    position: relative;
    min-height: 570px;
}

.sg-product-card {
    position: absolute;
    width: 300px;
    overflow: hidden;
    border: 1px solid #cbdcf8;
    border-radius: 24px;
    color: inherit;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 28px 58px rgba(18, 55, 130, .14);
    backdrop-filter: blur(14px);
    transition: transform .25s ease, box-shadow .25s ease;
}

.sg-product-card:hover {
    box-shadow: 0 34px 70px rgba(18, 55, 130, .2);
}

.sg-product-card-auto {
    left: 18px;
    top: 28px;
    z-index: 2;
    transform: rotate(-2deg);
}

.sg-product-card-auto:hover {
    transform: translateY(-6px) rotate(0);
}

.sg-product-card-health {
    right: 0;
    top: 82px;
    z-index: 3;
    border-color: #a9dfd4;
    transform: rotate(2deg);
}

.sg-product-card-health:hover {
    transform: translateY(-6px) rotate(0);
}

.sg-product-visual {
    position: relative;
    height: 174px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 15%, rgba(37, 99, 235, .18), transparent 36%),
        linear-gradient(135deg, #f8fbff, #eaf3ff);
}

.sg-product-card-health .sg-product-visual {
    background:
        radial-gradient(circle at 80% 18%, rgba(20, 184, 166, .2), transparent 38%),
        linear-gradient(135deg, #f7fffc, #e8fbf6);
}

.sg-product-visual::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -76px;
    width: 330px;
    height: 150px;
    border: 15px solid rgba(37, 99, 235, .07);
    border-radius: 50%;
    transform: rotate(-10deg);
}

.sg-product-card-health .sg-product-visual::after {
    border-color: rgba(20, 184, 166, .09);
}

.sg-product-round-icon {
    position: absolute;
    left: 25px;
    top: 25px;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #6598ff, #1556e8);
    box-shadow: 0 13px 28px rgba(37, 99, 235, .27), 0 0 0 9px rgba(37, 99, 235, .07);
    font-size: 23px;
    z-index: 3;
}

.sg-product-card-health .sg-product-round-icon {
    background: linear-gradient(145deg, #62e6c9, #0b9a7d);
    box-shadow: 0 13px 28px rgba(20, 184, 166, .25), 0 0 0 9px rgba(20, 184, 166, .07);
}

.sg-product-shield {
    position: absolute;
    right: 66px;
    top: 26px;
    color: rgba(37, 99, 235, .1);
    font-size: 92px;
}

.sg-car-art {
    position: absolute;
    right: 18px;
    bottom: 29px;
    width: 166px;
    height: 72px;
    z-index: 2;
}

.sg-car-body {
    position: absolute;
    left: 0;
    bottom: 13px;
    width: 166px;
    height: 40px;
    border-radius: 34px 42px 14px 14px;
    background: linear-gradient(145deg, #2268f2, #092f9d);
    box-shadow: 0 14px 28px rgba(18, 82, 220, .22);
}

.sg-car-roof {
    position: absolute;
    left: 42px;
    bottom: 45px;
    width: 80px;
    height: 30px;
    border-radius: 40px 40px 7px 7px;
    background: linear-gradient(145deg, #6aa7ff, #1553da);
}

.sg-car-art i {
    position: absolute;
    bottom: 1px;
    width: 27px;
    height: 27px;
    border: 5px solid #d8e5fa;
    border-radius: 50%;
    background: #08235d;
}

.sg-car-art i:nth-of-type(1) {
    left: 31px;
}

.sg-car-art i:nth-of-type(2) {
    right: 24px;
}

.sg-health-art {
    position: absolute;
    right: 45px;
    top: 32px;
    width: 108px;
    height: 120px;
    z-index: 2;
}

.sg-health-art i {
    color: rgba(18, 183, 151, .2);
    font-size: 112px;
}

.sg-health-art strong {
    position: absolute;
    left: 38px;
    top: 24px;
    color: #17b996;
    font-size: 54px;
}

.sg-health-orb {
    position: absolute;
    border-radius: 50%;
    background: #55d8bc;
    opacity: .45;
}

.sg-health-orb-one {
    right: 180px;
    top: 78px;
    width: 24px;
    height: 24px;
}

.sg-health-orb-two {
    right: 212px;
    top: 116px;
    width: 12px;
    height: 12px;
}

.sg-product-body {
    padding: 23px 24px 24px;
}

.sg-product-body h4 {
    margin: 0 0 14px;
    color: #0b2b65;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
}

.sg-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.sg-product-tags span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 9px;
    border: 1px solid #d7e5fb;
    border-radius: 10px;
    color: #2457c6;
    background: #f4f8ff;
    font-size: 10px;
    font-weight: 850;
}

.sg-product-card-health .sg-product-tags span {
    color: #078b72;
    border-color: #c8eee6;
    background: #f0fcf8;
}

.sg-product-body p {
    min-height: 50px;
    margin: 0 0 17px;
    color: #6f7e96;
    font-size: 11px;
    line-height: 1.55;
}

.sg-product-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(145deg, #245fff, #0d3bd5);
    box-shadow: 0 12px 22px rgba(37, 99, 235, .2);
    font-size: 13px;
    font-weight: 900;
}

.sg-product-action i {
    margin-left: auto;
    margin-right: 16px;
}

.sg-product-card-health .sg-product-action {
    background: linear-gradient(145deg, #17b998, #07846d);
    box-shadow: 0 12px 22px rgba(20, 184, 166, .2);
}

.sg-insurance-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
    padding: 20px;
    border: 1px solid #cbdcf4;
    border-radius: 20px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 20px 48px rgba(18, 55, 130, .09);
    backdrop-filter: blur(14px);
}

.sg-insurance-stats article {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding: 4px 20px;
}

.sg-insurance-stats article + article {
    border-left: 1px solid #dbe5f3;
}

.sg-stat-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}

.sg-stat-icon-blue {
    background: linear-gradient(145deg, #76a1ff, #245fff);
    box-shadow: 0 12px 25px rgba(37, 99, 235, .24), 0 0 0 8px rgba(37, 99, 235, .06);
}

.sg-stat-icon-green {
    background: linear-gradient(145deg, #68e5ca, #13a989);
    box-shadow: 0 12px 25px rgba(20, 184, 166, .22), 0 0 0 8px rgba(20, 184, 166, .06);
}

.sg-stat-icon-indigo {
    background: linear-gradient(145deg, #91a0ff, #4e5ee9);
    box-shadow: 0 12px 25px rgba(79, 91, 255, .2), 0 0 0 8px rgba(79, 91, 255, .06);
}

.sg-insurance-stats strong,
.sg-insurance-stats small {
    display: block;
}

.sg-insurance-stats strong {
    color: #0b2a64;
    font-size: 28px;
    line-height: 1;
    font-weight: 950;
}

.sg-insurance-stats small {
    margin-top: 7px;
    color: #75849c;
    font-size: 9px;
    line-height: 1.3;
}

.sg-insurance-stats article div > i {
    display: block;
    width: 36px;
    height: 3px;
    margin-top: 9px;
    border-radius: 99px;
    background: #245fff;
}

.sg-insurance-stats article:nth-child(2) div > i {
    background: #16b596;
}

.sg-insurance-stats article:nth-child(3) div > i {
    background: #5967ed;
}

@media (max-width: 1199px) {
    .sg-insurance-layout {
        grid-template-columns: 1fr;
    }

    .sg-trust-note {
        margin-top: 28px;
    }

    .sg-product-cards {
        min-height: 530px;
    }
}

@media (max-width: 991px) {
    .services-showcase {
        padding: 28px;
    }

    .sg-product-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        min-height: auto;
    }

    .sg-product-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        transform: none;
    }

    .sg-insurance-stats article {
        grid-template-columns: 54px minmax(0, 1fr);
        padding: 4px 14px;
    }

    .sg-stat-icon {
        width: 54px;
        height: 54px;
        font-size: 21px;
    }
}

@media (max-width: 767px) {
    .sg-insurance-title h3 {
        font-size: 36px;
    }

    .sg-product-cards,
    .sg-insurance-stats {
        grid-template-columns: 1fr;
    }

    .sg-insurance-stats {
        gap: 14px;
    }

    .sg-insurance-stats article {
        padding: 9px;
    }

    .sg-insurance-stats article + article {
        border-top: 1px solid #dbe5f3;
        border-left: 0;
    }
}

@media (max-width: 575px) {
    .services-showcase {
        padding: 20px;
        border-radius: 18px;
    }

    .sg-insurance-title {
        gap: 12px;
        margin-top: 28px;
    }

    .sg-insurance-title h3 {
        font-size: 31px;
    }

    .sg-insurance-title > span {
        height: 82px;
    }

    .sg-insurance-intro > p {
        margin-left: 17px;
    }

    .sg-trust-note {
        grid-template-columns: 50px minmax(0, 1fr);
    }

    .sg-trust-note > span {
        width: 50px;
        height: 50px;
    }

    .sg-product-visual {
        height: 160px;
    }
}

/* Floating, morphing site header */
.site-header {
    position: sticky;
    top: 12px;
    z-index: 1050;
    width: 100%;
    margin-bottom: 16px;
    transition: padding .3s ease, transform .3s ease;
}

.header-navbar {
    min-height: 76px;
    padding: 10px 12px;
    border: 1px solid rgba(207, 221, 241, .92);
    border-radius: 21px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(247, 251, 255, .91));
    box-shadow:
        0 15px 38px rgba(17, 50, 101, .09),
        inset 0 1px 0 rgba(255, 255, 255, .9);
    backdrop-filter: blur(20px) saturate(150%);
    transition: min-height .3s ease, padding .3s ease, border-radius .3s ease, box-shadow .3s ease, background .3s ease;
}

.site-header.is-scrolled {
    top: 8px;
    padding-inline: clamp(0px, 2vw, 22px);
}

.site-header.is-scrolled .header-navbar {
    min-height: 62px;
    padding: 7px 10px;
    border-color: rgba(188, 208, 235, .82);
    border-radius: 17px;
    background: rgba(255, 255, 255, .88);
    box-shadow:
        0 18px 45px rgba(11, 43, 94, .15),
        inset 0 1px 0 rgba(255, 255, 255, .88);
}

.header-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: #102d5c;
    text-decoration: none;
}

.header-brand:hover {
    color: #102d5c;
}

.header-brand-logo {
    display: block;
    width: auto;
    height: 38px;
    max-width: min(210px, 40vw);
    transition: height .3s ease;
}

.site-header.is-scrolled .header-brand-logo {
    height: 33px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
}

.footer-brand img {
    display: block;
    width: min(230px, 100%);
    height: auto;
}

.header-collapse {
    min-width: 0;
}

.header-nav {
    align-items: center;
    gap: 4px;
    margin-inline: auto;
}

.header-nav .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 43px;
    padding: 0 13px !important;
    border-radius: 12px;
    color: #526b90;
    font-size: 12px;
    font-weight: 820;
    transition: color .2s ease, background .2s ease;
}

.header-nav .nav-link::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 5px;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #0b4edb, #10a27d);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.header-nav .nav-link:hover,
.header-nav .nav-link.is-active {
    color: #0b4edb;
    background: #edf4ff;
}

.header-nav .nav-link:hover::after,
.header-nav .nav-link.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    min-height: 46px;
    padding: 0 15px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease, height .3s ease, min-height .3s ease;
}

.site-header.is-scrolled .header-control {
    height: 42px;
    min-height: 42px;
}

.header-control:hover {
    transform: translateY(-1px);
}

.header-control i {
    margin: 0;
    font-size: 15px;
}

.language-toggle {
    width: 52px;
    min-width: 52px;
    padding: 0;
    color: #294970;
    border-color: #d8e2ef;
    background: rgba(247, 250, 255, .92);
}

.language-toggle:hover,
.language-toggle:focus {
    color: #0b4edb;
    border-color: #b8cef1;
    background: #edf4ff;
}

.header-primary {
    color: #fff;
    background: linear-gradient(135deg, #0b4edb, #174fe0);
    box-shadow: 0 9px 19px rgba(11, 78, 219, .18);
}

.header-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #073da9, #0b4edb);
}

.header-secondary {
    color: #526b90;
    border-color: #d8e2ef;
    background: rgba(255, 255, 255, .9);
}

.header-secondary:hover {
    color: #a33b45;
    border-color: #efcbd0;
    background: #fff3f4;
}

.header-logout-form {
    margin: 0;
}

.header-language .dropdown-menu {
    min-width: 64px;
    margin-top: 9px;
    padding: 7px;
    border: 1px solid #dce6f4;
    border-radius: 14px;
    box-shadow: 0 20px 44px rgba(20, 54, 105, .16);
}

.header-language .dropdown-item {
    display: grid;
    place-items: center;
    padding: 9px 10px;
    border-radius: 9px;
    color: #526b90;
    font-size: 11px;
    font-weight: 750;
    font-size: 20px;
}

.header-language .dropdown-item:hover,
.header-language .dropdown-item.active {
    color: #0b4edb;
    background: #edf4ff;
}

.header-burger {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid #d8e2ef;
    border-radius: 14px;
    place-content: center;
    gap: 5px;
    background: #f7faff;
    box-shadow: none;
}

.header-burger span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #102d5c;
    transition: transform .25s ease, opacity .2s ease, width .25s ease;
}

.header-burger span:nth-child(2) {
    width: 14px;
    margin-left: auto;
}

.header-burger.is-open span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.header-burger.is-open span:nth-child(2) {
    opacity: 0;
    transform: translateX(6px);
}

.header-burger.is-open span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.header-burger:focus {
    box-shadow: 0 0 0 3px rgba(11, 78, 219, .1);
}

@media (max-width: 991px) {
    .site-header {
        top: 7px;
        margin-bottom: 12px;
    }

    .header-navbar,
    .site-header.is-scrolled .header-navbar {
        min-height: 64px;
        padding: 8px;
        border-radius: 17px;
    }

    .header-burger {
        display: grid;
    }

    .header-collapse {
        margin-top: 9px;
        padding: 10px;
        overflow: hidden;
        border-top: 1px solid #e5ebf4;
        border-radius: 0 0 14px 14px;
        background: rgba(249, 252, 255, .96);
    }

    .header-collapse.collapsing {
        transition: height .32s cubic-bezier(.4, 0, .2, 1);
    }

    .header-nav {
        align-items: stretch;
        gap: 4px;
        margin: 0 0 10px;
    }

    .header-nav .nav-link {
        width: 100%;
        min-height: 44px;
        justify-content: flex-start;
        padding: 0 13px !important;
    }

    .header-nav .nav-link::after {
        top: 9px;
        right: auto;
        bottom: 9px;
        left: 3px;
        width: 3px;
        height: auto;
        transform: scaleY(0);
    }

    .header-nav .nav-link:hover::after,
    .header-nav .nav-link.is-active::after {
        transform: scaleY(1);
    }

    .header-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .header-language,
    .header-logout-form,
    .header-control {
        width: 100%;
    }

    .header-control,
    .site-header.is-scrolled .header-control {
        height: 45px;
        min-height: 45px;
    }

    .header-language .dropdown-menu {
        position: static !important;
        width: 100%;
        transform: none !important;
    }
}

@media (max-width: 575px) {
    .site-header {
        top: 4px;
    }

    .header-brand-logo,
    .site-header.is-scrolled .header-brand-logo {
        height: 29px;
        max-width: 155px;
    }

    .header-burger {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .header-navbar,
    .header-brand-logo,
    .header-control,
    .header-burger span {
        transition: none;
    }
}

/* Full-width service cards without the introductory column or overlap. */
.sg-insurance-layout {
    display: block;
}

.sg-product-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
    min-height: 0;
}

.sg-product-card,
.sg-product-card-auto,
.sg-product-card-health {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transform: none;
}

.sg-product-card:hover,
.sg-product-card-auto:hover,
.sg-product-card-health:hover {
    transform: translateY(-5px);
}

.sg-product-visual {
    height: 230px;
}

.sg-car-image {
    position: absolute;
    right: -8px;
    bottom: 5px;
    z-index: 2;
    width: 78%;
    height: 80%;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 18px 18px rgba(16, 55, 130, .2));
}

.sg-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

.sg-product-body h4 {
    font-size: 24px;
}

.sg-product-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.sg-product-heading h4 {
    margin: 0;
}

.sg-product-heading > i {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #1d59d8;
    background: #edf4ff;
    font-size: 16px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.sg-product-card-health .sg-product-heading > i {
    color: #078a71;
    background: #e8f9f4;
}

.sg-product-card:hover .sg-product-heading > i {
    color: #fff;
    background: #1d59d8;
    transform: translate(2px, -2px);
}

.sg-product-card-health:hover .sg-product-heading > i {
    background: #078a71;
}

.sg-product-body p {
    min-height: 0;
    margin-bottom: 22px;
    font-size: 13px;
}

.sg-product-click-hint {
    display: block;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #e2eaf6;
    color: #647997;
    font-size: 11px;
    font-weight: 750;
}

.sg-product-card-health .sg-product-click-hint {
    border-color: #d8eee9;
    color: #5b7e78;
}

.sg-product-card:hover .sg-product-visual {
    filter: saturate(1.05);
}

.sg-product-card:hover .sg-car-image {
    transform: translateX(4px) scale(1.02);
}

.sg-car-image {
    transition: transform .25s ease;
}

.sg-product-action {
    min-height: 54px;
    margin-top: auto;
    padding-left: 18px;
    font-size: 13px;
    text-align: center;
}

.sg-product-card-health .sg-health-art {
    right: 65px;
    top: 43px;
    transform: scale(1.18);
}

@media (max-width: 767px) {
    .sg-product-cards {
        grid-template-columns: 1fr;
    }

    .sg-product-visual {
        height: 210px;
    }
}

.insurance-section {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid #d9e5f6;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(39, 120, 255, .14), transparent 32%),
        radial-gradient(circle at bottom left, rgba(38, 184, 150, .1), transparent 30%),
        #f7faff;
}

.insurance-section .insurance-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, .04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent);
    pointer-events: none;
}

.insurance-section .insurance-head,
.insurance-section .insurance-grid,
.insurance-section .stats-grid {
    position: relative;
    z-index: 1;
}

.insurance-section .insurance-head {
    max-width: 680px;
    margin-bottom: 28px;
}

.insurance-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    color: #2563eb;
    background: rgba(37, 99, 235, .1);
    font-size: 12px;
    font-weight: 800;
}

.insurance-section .insurance-head h2 {
    margin: 16px 0 0;
    color: #112b63;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
}

.insurance-section .insurance-head p {
    max-width: 560px;
    margin: 14px 0 0;
    color: #62708a;
    font-size: 15px;
    line-height: 1.65;
}

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

.insurance-section .insurance-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(190, 210, 255, .78);
    border-radius: 22px;
    color: inherit;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 44px rgba(30, 73, 140, .09);
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.insurance-section .insurance-card:hover {
    border-color: rgba(37, 99, 235, .35);
    box-shadow: 0 26px 58px rgba(30, 73, 140, .15);
    transform: translateY(-6px);
}

.insurance-section .health-insurance-card {
    border-color: rgba(113, 208, 188, .65);
}

.insurance-section .card-visual {
    position: relative;
    height: 220px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 16%, rgba(37, 99, 235, .18), transparent 36%),
        linear-gradient(135deg, #f8fbff, #e9f2ff);
}

.insurance-section .health-insurance-card .card-visual {
    background:
        radial-gradient(circle at 78% 18%, rgba(20, 184, 166, .2), transparent 38%),
        linear-gradient(135deg, #f7fffc, #e6faf5);
}

.insurance-section .card-visual::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 310px;
    height: 150px;
    border: 14px solid rgba(37, 99, 235, .07);
    border-radius: 50%;
    transform: rotate(-10deg);
}

.insurance-section .health-insurance-card .card-visual::after {
    border-color: rgba(20, 184, 166, .09);
}

.insurance-section .icon-box {
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    color: #fff;
    font-size: 24px;
}

.insurance-section .icon-box.blue {
    background: linear-gradient(135deg, #2563eb, #4f8dff);
    box-shadow: 0 14px 30px rgba(37, 99, 235, .25);
}

.insurance-section .icon-box.green {
    background: linear-gradient(135deg, #18a77f, #35d3aa);
    box-shadow: 0 14px 30px rgba(24, 167, 127, .25);
}

.insurance-section .card-visual > img {
    position: absolute;
    right: -4px;
    bottom: 3px;
    z-index: 2;
    width: 78%;
    height: 80%;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 15px 16px rgba(16, 55, 130, .2));
    transition: transform .25s ease;
}

.insurance-section .insurance-card:hover .card-visual > img {
    transform: translateX(4px) scale(1.02);
}

.insurance-section .health-card-art {
    position: absolute;
    right: 52px;
    top: 42px;
    z-index: 2;
    width: 125px;
    height: 135px;
}

.insurance-section .health-card-art i {
    color: rgba(20, 184, 166, .2);
    font-size: 126px;
}

.insurance-section .health-card-art strong {
    position: absolute;
    left: 44px;
    top: 27px;
    color: #16b894;
    font-size: 60px;
}

.insurance-section .card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.insurance-section .card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.insurance-section .card-title-row h3 {
    margin: 0;
    color: #142f67;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: 0;
}

.insurance-section .arrow-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #2563eb;
    background: rgba(37, 99, 235, .08);
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.insurance-section .health-insurance-card .arrow-icon {
    color: #108c70;
    background: rgba(20, 184, 166, .1);
}

.insurance-section .insurance-card:hover .arrow-icon {
    color: #fff;
    background: #2563eb;
    transform: translate(2px, -2px);
}

.insurance-section .health-insurance-card:hover .arrow-icon {
    background: #18a77f;
}

.insurance-section .insurance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.insurance-section .insurance-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid #dbe8ff;
    border-radius: 999px;
    color: #315ba9;
    background: #f4f8ff;
    font-size: 11px;
    font-weight: 800;
}

.insurance-section .health-insurance-card .insurance-tags span {
    color: #0b8f74;
    border-color: #caeee5;
    background: #effbf7;
}

.insurance-section .insurance-card p {
    margin: 0 0 20px;
    color: #65748d;
    font-size: 13px;
    line-height: 1.6;
}

.insurance-section .card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #2563eb;
    font-size: 13px;
    font-weight: 900;
}

.insurance-section .card-action i {
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    color: #fff;
    background: #2563eb;
    font-size: 11px;
    transition: transform .2s ease;
}

.insurance-section .health-insurance-card .card-action {
    color: #108c70;
}

.insurance-section .health-insurance-card .card-action i {
    background: #18a77f;
}

.insurance-section .insurance-card:hover .card-action i {
    transform: translateX(4px);
}

.insurance-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.insurance-section .stat-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(190, 210, 255, .75);
    border-radius: 17px;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 12px 30px rgba(30, 73, 140, .06);
}

.insurance-section .stat-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #5b8fff);
    font-size: 21px;
}

.insurance-section .stat-icon.green {
    background: linear-gradient(135deg, #18a77f, #35d3aa);
}

.insurance-section .stat-icon.indigo {
    background: linear-gradient(135deg, #5967ed, #8390ff);
}

.insurance-section .stat-card strong,
.insurance-section .stat-card span {
    display: block;
}

.insurance-section .stat-card strong {
    color: #15326b;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.insurance-section .stat-card div > span {
    margin-top: 6px;
    color: #687891;
    font-size: 9px;
    font-weight: 650;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .insurance-section {
        padding: 26px;
    }

    .insurance-section .insurance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .insurance-section .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .insurance-section {
        padding: 20px;
        border-radius: 18px;
    }

    .insurance-section .insurance-head h2 {
        font-size: 31px;
    }

    .insurance-section .card-visual {
        height: 190px;
    }

    .insurance-section .card-content {
        padding: 20px;
    }
}

/* Insurance experience — 3D glass redesign */
.insurance-section {
    --insurance-ink: #f6f9ff;
    --insurance-muted: #a9b9d4;
    --insurance-line: rgba(190, 220, 255, .18);
    isolation: isolate;
    position: relative;
    overflow: hidden;
    padding: 38px;
    border: 1px solid rgba(184, 218, 255, .2);
    border-radius: 34px;
    color: var(--insurance-ink);
    background:
        radial-gradient(circle at 8% 2%, rgba(51, 120, 255, .32), transparent 31%),
        radial-gradient(circle at 92% 18%, rgba(28, 222, 200, .18), transparent 28%),
        linear-gradient(145deg, #061634 0%, #08234c 48%, #071a3b 100%);
    box-shadow:
        0 42px 90px rgba(4, 22, 54, .34),
        inset 0 1px 0 rgba(255, 255, 255, .14);
}

.insurance-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(135deg, #000 0%, transparent 72%);
}

.insurance-section::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 33px;
    pointer-events: none;
}

.insurance-aurora {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .8;
    pointer-events: none;
}

.insurance-aurora.aurora-one {
    top: -180px;
    right: -130px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(42, 217, 219, .24), transparent 67%);
}

.insurance-aurora.aurora-two {
    left: -190px;
    bottom: -230px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(81, 80, 255, .28), transparent 68%);
}

.insurance-noise {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .26;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .18) 0 1px, transparent 1.5px),
        radial-gradient(circle at 72% 62%, rgba(255, 255, 255, .12) 0 1px, transparent 1.5px);
    background-size: 47px 47px, 61px 61px;
    pointer-events: none;
}

.insurance-command-head {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 30px;
}

.insurance-command-head > div:first-child {
    max-width: 650px;
}

.insurance-command-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(122, 226, 255, .24);
    border-radius: 999px;
    color: #a9efff;
    background: rgba(85, 186, 255, .09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    backdrop-filter: blur(16px);
}

.insurance-command-label i {
    color: #66e7d1;
}

.insurance-command-head h2 {
    max-width: 620px;
    margin: 16px 0 0;
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    line-height: .98;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.insurance-command-head p {
    max-width: 520px;
    margin: 15px 0 0;
    color: var(--insurance-muted);
    font-size: 14px;
    line-height: 1.65;
}

.insurance-live {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-width: 180px;
    padding: 12px 14px;
    border: 1px solid var(--insurance-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .065);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
}

.insurance-live > span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #55e8be;
    box-shadow: 0 0 0 5px rgba(85, 232, 190, .1), 0 0 18px #55e8be;
    animation: insurance-live-pulse 2.2s ease-in-out infinite;
}

.insurance-live strong,
.insurance-live small {
    display: block;
}

.insurance-live strong {
    color: #f7fbff;
    font-size: 11px;
}

.insurance-live small {
    margin-top: 2px;
    color: #91a8ca;
    font-size: 8px;
}

.insurance-portals {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
    gap: 18px;
}

.insurance-portal {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 440px;
    overflow: hidden;
    border: 1px solid rgba(192, 221, 255, .21);
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 66%, rgba(54, 142, 255, .22), transparent 43%),
        linear-gradient(155deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .045));
    box-shadow:
        0 24px 45px rgba(2, 14, 38, .2),
        inset 0 1px 0 rgba(255, 255, 255, .16);
    text-decoration: none;
    backdrop-filter: blur(22px);
    transform: translateZ(0);
    transition: transform .38s cubic-bezier(.2, .8, .2, 1), border-color .3s ease, box-shadow .3s ease;
}

.insurance-portal::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg, rgba(255, 255, 255, .14), transparent 24%, transparent 70%, rgba(110, 226, 255, .07));
    pointer-events: none;
}

.insurance-portal::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px;
    z-index: 3;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(154, 213, 255, .38), transparent);
}

.insurance-portal:hover {
    color: #fff;
    border-color: rgba(111, 222, 255, .55);
    box-shadow:
        0 34px 65px rgba(0, 12, 40, .35),
        0 0 38px rgba(44, 149, 255, .11),
        inset 0 1px 0 rgba(255, 255, 255, .2);
    transform: translateY(-8px) perspective(1000px) rotateX(1.2deg);
}

.health-portal {
    background:
        radial-gradient(circle at 65% 72%, rgba(34, 217, 182, .2), transparent 44%),
        radial-gradient(circle at 98% 2%, rgba(135, 92, 255, .2), transparent 35%),
        linear-gradient(155deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04));
}

.portal-copy {
    position: relative;
    z-index: 5;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
}

.portal-index {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 28px;
}

.portal-index span {
    color: rgba(255, 255, 255, .42);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
}

.portal-index i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    color: #a8edff;
    background: rgba(255, 255, 255, .09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
    font-size: 18px;
    backdrop-filter: blur(16px);
}

.health-portal .portal-index i {
    color: #7af1cd;
}

.portal-kicker {
    color: #81dff8;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.health-portal .portal-kicker {
    color: #73e5bd;
}

.portal-copy h3 {
    max-width: 310px;
    margin: 8px 0 14px;
    color: #fff;
    font-size: clamp(25px, 3.2vw, 36px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.portal-copy > p {
    max-width: 270px;
    margin: 0 0 14px;
    color: #aabbd5;
    font-size: 11px;
    line-height: 1.55;
}

.portal-pills {
    position: relative;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    max-width: 330px;
}

.portal-pills span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 29px;
    padding: 0 10px;
    border: 1px solid rgba(173, 217, 255, .17);
    border-radius: 999px;
    color: #c9d9ee;
    background: rgba(4, 25, 59, .4);
    font-size: 9px;
    font-weight: 750;
    backdrop-filter: blur(12px);
}

.portal-pills i {
    color: #65dfc3;
}

.portal-action {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 7;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 42px;
    padding: 0 8px 0 15px;
    border: 1px solid rgba(176, 221, 255, .22);
    border-radius: 999px;
    color: #f4f9ff;
    background: rgba(7, 35, 76, .72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
    font-size: 10px;
    font-weight: 850;
    backdrop-filter: blur(14px);
}

.portal-action i {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #06204a;
    background: linear-gradient(135deg, #a7efff, #63d6fb);
    font-size: 13px;
    transition: transform .3s ease;
}

.health-portal .portal-action i {
    background: linear-gradient(135deg, #a7ffe2, #58dcb4);
}

.insurance-portal:hover .portal-action i {
    transform: rotate(12deg) scale(1.08);
}

.portal-visual {
    position: absolute;
    right: -11%;
    bottom: 14px;
    z-index: 2;
    width: 96%;
    height: 61%;
    pointer-events: none;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.health-portal .portal-visual {
    right: -15%;
    bottom: 4px;
    width: 108%;
    height: 57%;
}

.portal-visual::after {
    content: "";
    position: absolute;
    right: 6%;
    bottom: 0;
    width: 72%;
    height: 23%;
    border-radius: 50%;
    background: rgba(25, 156, 255, .2);
    filter: blur(28px);
}

.health-portal .portal-visual::after {
    background: rgba(38, 218, 179, .16);
}

.portal-visual img {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 26px 25px rgba(1, 12, 35, .44));
}

.insurance-portal:hover .portal-visual {
    transform: translate3d(-5px, -4px, 0) scale(1.035);
}

.visual-orbit {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(90, 211, 255, .28);
    border-radius: 50%;
}

.visual-orbit::before {
    content: "";
    position: absolute;
    top: 13%;
    left: 9%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #67e6d0;
    box-shadow: 0 0 14px #67e6d0;
}

.visual-orbit.orbit-one {
    inset: 2% 8% 6% 12%;
    transform: rotate(-8deg);
    animation: insurance-orbit 12s linear infinite;
}

.visual-orbit.orbit-two {
    inset: 18% 4% 1% 26%;
    border-color: rgba(137, 126, 255, .2);
    transform: rotate(14deg);
    animation: insurance-orbit 16s linear reverse infinite;
}

.floating-glass-badge {
    position: absolute;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 12px;
    color: #eaf7ff;
    background: rgba(13, 49, 91, .62);
    box-shadow: 0 12px 30px rgba(1, 13, 36, .22), inset 0 1px 0 rgba(255, 255, 255, .14);
    font-size: 8px;
    font-weight: 800;
    backdrop-filter: blur(14px);
}

.floating-glass-badge i {
    color: #62e4c4;
}

.floating-glass-badge.badge-top {
    top: 8%;
    right: 7%;
    animation: insurance-float 4.2s ease-in-out infinite;
}

.floating-glass-badge.badge-bottom {
    right: 10%;
    bottom: 11%;
    animation: insurance-float 4.6s ease-in-out .5s infinite;
}

.insurance-metrics {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-top: 18px;
    border: 1px solid var(--insurance-line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
}

.insurance-metrics article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 15px 17px;
    background: rgba(4, 22, 52, .48);
}

.insurance-metrics article + article {
    border-left: 1px solid var(--insurance-line);
}

.insurance-metrics article > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(153, 218, 255, .2);
    border-radius: 13px;
    color: #7ce8d0;
    background: rgba(96, 196, 255, .08);
}

.insurance-metrics strong,
.insurance-metrics small {
    display: block;
}

.insurance-metrics strong {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.insurance-metrics small {
    margin-top: 5px;
    color: #91a5c4;
    font-size: 8px;
    line-height: 1.3;
}

@keyframes insurance-live-pulse {
    50% { opacity: .55; transform: scale(.78); }
}

@keyframes insurance-orbit {
    to { transform: rotate(352deg); }
}

@keyframes insurance-float {
    50% { transform: translateY(-7px); }
}

@media (max-width: 1100px) {
    .insurance-portals {
        grid-template-columns: 1fr;
    }

    .insurance-portal {
        min-height: 400px;
    }

    .portal-visual,
    .health-portal .portal-visual {
        right: -5%;
        width: 72%;
        height: 68%;
    }
}

@media (max-width: 767px) {
    .insurance-section {
        padding: 26px;
        border-radius: 26px;
    }

    .insurance-command-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .insurance-command-head h2 {
        font-size: 40px;
    }

    .insurance-live {
        min-width: min(100%, 240px);
    }

    .insurance-portal {
        min-height: 430px;
    }

    .portal-visual,
    .health-portal .portal-visual {
        right: -15%;
        width: 105%;
        height: 55%;
    }

    .insurance-metrics {
        grid-template-columns: 1fr;
    }

    .insurance-metrics article + article {
        border-top: 1px solid var(--insurance-line);
        border-left: 0;
    }
}

@media (max-width: 575px) {
    .insurance-section {
        padding: 19px;
        border-radius: 22px;
    }

    .insurance-section::after {
        border-radius: 21px;
    }

    .insurance-command-head {
        margin-bottom: 22px;
    }

    .insurance-command-head h2 {
        font-size: 34px;
    }

    .insurance-command-head p {
        font-size: 12px;
    }

    .insurance-portal {
        min-height: 420px;
        border-radius: 22px;
    }

    .portal-copy {
        padding: 19px;
    }

    .portal-copy h3 {
        max-width: 255px;
        font-size: 28px;
    }

    .portal-action {
        left: 19px;
        bottom: 19px;
    }

    .portal-visual,
    .health-portal .portal-visual {
        right: -23%;
        bottom: 23px;
        width: 125%;
        height: 52%;
    }

    .floating-glass-badge {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .insurance-live > span,
    .visual-orbit,
    .floating-glass-badge {
        animation: none;
    }

    .insurance-portal,
    .portal-visual,
    .portal-action i {
        transition: none;
    }
}

.route-roadmap-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 24px;
    padding: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 8%, rgba(63, 222, 164, .34), transparent 28%),
        radial-gradient(circle at 85% 22%, rgba(88, 150, 255, .35), transparent 30%),
        linear-gradient(145deg, #07265f 0%, #0b4296 54%, #1267d8 100%);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 22px 44px rgba(7, 37, 85, .28);
    isolation: isolate;
}

.route-roadmap-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    pointer-events: none;
    z-index: -1;
}

.route-roadmap-head {
    position: relative;
    z-index: 2;
}

.route-roadmap-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 6px 10px;
    color: #bdf9df;
    background: rgba(36, 222, 151, .14);
    border: 1px solid rgba(36, 222, 151, .42);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.route-roadmap-head h4 {
    margin: 14px 0 8px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.12;
}

.route-roadmap-head p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    line-height: 1.55;
}

.route-roadmap-visual {
    position: relative;
    min-height: 260px;
    margin: 18px 0;
}

.route-roadmap-track {
    position: absolute;
    left: 11%;
    right: 10%;
    top: 48%;
    height: 84px;
    border-top: 3px dashed rgba(255, 255, 255, .62);
    border-radius: 50%;
    transform: rotate(-10deg);
}

.route-roadmap-track::after {
    content: "";
    position: absolute;
    right: -8px;
    top: -12px;
    width: 18px;
    height: 18px;
    border-top: 3px solid rgba(255, 255, 255, .72);
    border-right: 3px solid rgba(255, 255, 255, .72);
    transform: rotate(38deg);
}

.route-roadmap-car {
    position: absolute;
    left: 42%;
    top: 41%;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    color: #062961;
    background: #fff;
    box-shadow: 0 14px 24px rgba(0, 0, 0, .24);
    transform: rotate(-10deg);
    z-index: 3;
}

.route-node {
    position: absolute;
    display: grid;
    justify-items: center;
    gap: 5px;
    width: 82px;
    text-align: center;
    z-index: 4;
}

.route-node-am {
    left: 0;
    top: 50%;
}

.route-node-ge {
    left: 24%;
    top: 18%;
}

.route-node-ru {
    right: 24%;
    top: 54%;
}

.route-node-kz {
    right: -3px;
    top: 12%;
}

.route-node-pin {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 22px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .34);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
    backdrop-filter: blur(12px);
}

.route-node.is-ready .route-node-pin {
    background: #fff;
    border-color: rgba(255, 255, 255, .88);
}

.route-node strong {
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.15;
}

.route-node small {
    color: rgba(255, 255, 255, .66);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.route-roadmap-services {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.route-service-chip {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(14px);
}

.route-service-chip > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #062961;
    background: #fff;
    font-size: 19px;
}

.route-service-chip strong,
.route-service-chip small {
    display: block;
}

.route-service-chip strong {
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
}

.route-service-chip small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.35;
}

.route-roadmap-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
    border-radius: 16px;
    color: #0a3c8f;
    background: #fff;
    font-weight: 900;
    box-shadow: 0 14px 24px rgba(0, 0, 0, .18);
    transition: transform .18s ease, box-shadow .18s ease;
}

.route-roadmap-action:hover {
    color: #073073;
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, .2);
}

@media (max-width: 575px) {
    .route-roadmap-card {
        padding: 18px;
        border-radius: 20px;
    }

    .route-roadmap-head h4 {
        font-size: 21px;
    }

    .route-roadmap-visual {
        min-height: 230px;
        margin: 14px 0;
    }

    .route-roadmap-track {
        left: 8%;
        right: 8%;
        top: 49%;
    }

    .route-roadmap-car {
        left: 40%;
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }

    .route-node {
        width: 72px;
    }

    .route-node-ge {
        left: 21%;
    }

    .route-node-ru {
        right: 21%;
    }

    .route-node-pin {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 20px;
    }

    .route-node strong {
        font-size: 11px;
    }

    .route-service-chip {
        grid-template-columns: 38px 1fr;
    }

    .route-service-chip > span {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }
}

@media (max-width: 991px) {
    .page-shell {
        margin: 0;
        border-radius: 0;
    }

    .hero {
        padding: 28px 20px;
        min-height: auto;
    }

    .hero-redesign-grid {
        grid-template-columns: 1fr;
    }

    .hero-main-price {
        font-size: 34px;
    }

    .services-row .col-lg-3 {
        display: block;
    }

    .services-offer-grid {
        grid-template-columns: 1fr;
    }

    .services-kpi-row {
        grid-template-columns: 1fr;
    }

    .mobile-preview-section {
        padding: 24px;
    }

    .mobile-preview-copy {
        max-width: none;
    }

    .phone-showcase {
        min-height: 520px;
    }

    .phone-device {
        min-height: 535px;
    }

    .phone-screen {
        min-height: 510px;
    }

    .phone-site-shot {
        height: 464px;
    }

    .hero-mini-stat {
        min-width: 31%;
    }

    .promo-banner,
    .gift-card {
        min-height: auto;
    }

    .service-card {
        min-height: auto;
    }
}

/* Shared inner pages redesign */
.sf-page-wrap {
    margin-top: 18px;
    border: 1px solid #dde7f8;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    padding: 24px;
    box-shadow: 0 12px 30px rgba(16, 42, 90, .07);
}

.sf-page-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.sf-page-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #12366d;
    margin: 0;
}

.sf-muted { color: #647a9f; }

.sf-grid-2 {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px;
}

.sf-card {
    border: 1px solid #dae4f7;
    border-radius: 16px;
    background: #fff;
    padding: 16px;
}

.sf-card-soft {
    border: 1px solid #dae4f7;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
    padding: 16px;
}

.sf-stepper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.sf-step {
    border: 1px solid #d5e2fb;
    background: #fff;
    color: #4c6490;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.sf-step.active {
    background: #e9f0ff;
    color: #1b4fbf;
    border-color: #bdd2ff;
}

.sf-quote-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.sf-quote-eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #eef5ff;
    color: #1f57c8;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 11px;
    margin-bottom: 8px;
}

.sf-quote-secure {
    border: 1px solid #cfe7dc;
    border-radius: 999px;
    background: #effbf6;
    color: #0a7a5b;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 900;
    padding: 8px 12px;
    white-space: nowrap;
}

.sf-quote-card {
    height: 100%;
    border: 1px solid #e0e8f6;
    border-radius: 20px;
    background:
        radial-gradient(circle at 85% 12%, rgba(186, 0, 15, .12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    padding: 18px;
    box-shadow: 0 14px 30px rgba(16, 46, 99, .08);
}

.sf-quote-provider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.sf-quote-logo-wrap {
    width: 78px;
    height: 78px;
    border: 1px solid #f0d9dc;
    border-radius: 18px;
    background: #fff;
    display: grid;
    place-items: center;
    overflow: hidden;
    flex: 0 0 auto;
}

.sf-quote-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.sf-quote-provider span,
.sf-quote-price-box span {
    display: block;
    color: #667b9f;
    font-size: 13px;
    font-weight: 700;
}

.sf-quote-provider h2 {
    color: #12366d;
    font-size: 23px;
    font-weight: 900;
    margin: 3px 0 0;
}

.sf-quote-price-box {
    border-radius: 16px;
    background: #fff;
    border: 1px solid #dbe6f6;
    padding: 14px;
    margin-bottom: 14px;
}

.sf-quote-price-box strong {
    display: block;
    color: #b0000f;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.05;
    font-weight: 900;
    margin-top: 4px;
}

.sf-quote-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.sf-quote-meta span {
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e0e8f6;
    color: #31517f;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    padding: 7px 10px;
}

.sf-country-redesign {
    margin-top: 18px;
    border: 1px solid #dce7f8;
    border-radius: 24px;
    background:
        radial-gradient(circle at 86% 12%, rgba(32, 88, 201, .16), transparent 32%),
        radial-gradient(circle at 12% 86%, rgba(19, 181, 138, .12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    padding: 24px;
    box-shadow: 0 16px 36px rgba(16, 42, 90, .08);
    overflow: hidden;
}

.sf-country-hero {
    min-height: 190px;
    border-radius: 20px;
    background:
        linear-gradient(115deg, rgba(7, 38, 97, .9) 0%, rgba(10, 78, 219, .76) 56%, rgba(14, 166, 137, .62) 100%),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1500&q=80') center/cover;
    color: #fff;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.sf-country-hero .sf-page-title {
    color: #fff;
}

.sf-country-hero p {
    color: rgba(255,255,255,.82);
    margin: 8px 0 0;
    max-width: 520px;
}

.sf-country-kicker {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 11px;
    margin-bottom: 10px;
}

.sf-country-hero-icon {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.25);
    display: grid;
    place-items: center;
    font-size: 42px;
    flex: 0 0 auto;
}

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

.sf-country-card {
    min-height: 230px;
    border: 1px solid #d7e3fb;
    border-radius: 20px;
    background: #fff;
    padding: 18px;
    color: #143769;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.sf-country-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.68) 0%, rgba(244,248,255,.96) 100%);
    z-index: 0;
}

.sf-country-card > * {
    position: relative;
    z-index: 1;
}

.sf-country-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(13, 43, 93, .14);
    border-color: #a9c3f4;
}

.sf-country-bg-flag {
    position: absolute;
    right: -12px;
    top: 22px;
    font-size: 112px;
    opacity: .12;
    z-index: 0;
}

.sf-country-flag {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e2eaf7;
    display: grid;
    place-items: center;
    font-size: 38px;
    box-shadow: 0 12px 24px rgba(16, 46, 99, .09);
    margin-bottom: 18px;
}

.sf-country-arrow {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #eef5ff;
    color: #2b59c7;
    display: grid;
    place-items: center;
}

.sf-country-card-body {
    margin-top: auto;
}

.sf-country-card-body span {
    display: inline-flex;
    color: #6b7fa0;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    margin-bottom: 4px;
}

.sf-country-card-body h3 {
    color: #12366d;
    font-size: 22px;
    font-weight: 900;
    margin: 0;
}

.sf-country-card-footer {
    border-top: 1px dashed #d5e2f5;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
    padding-top: 12px;
}

.sf-country-card-footer span,
.sf-country-mini-row span {
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    border: 1px solid #e1e9f6;
    color: #31517f;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 9px;
}

.sf-country-mini-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.sf-country-card-am {
    background:
        linear-gradient(160deg, rgba(255,255,255,.88), rgba(240,246,255,.96)),
        linear-gradient(135deg, rgba(217, 40, 54, .18), rgba(0, 51, 160, .12), rgba(242, 168, 0, .14));
}

.sf-country-card-ge {
    background:
        linear-gradient(160deg, rgba(255,255,255,.88), rgba(240,246,255,.96)),
        linear-gradient(135deg, rgba(218, 41, 28, .2), rgba(255,255,255,.2));
}

.sf-country-card-ru {
    background:
        linear-gradient(160deg, rgba(255,255,255,.88), rgba(240,246,255,.96)),
        linear-gradient(135deg, rgba(255,255,255,.28), rgba(0, 57, 166, .13), rgba(213, 43, 30, .15));
}

.sf-country-card-kz {
    background:
        linear-gradient(160deg, rgba(255,255,255,.88), rgba(240,246,255,.96)),
        linear-gradient(135deg, rgba(0, 171, 194, .18), rgba(255, 205, 0, .14));
}

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

.sf-insurance-option-card {
    border: 1px solid rgba(127, 159, 230, 0.35);
    border-radius: 18px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.78) 0%, rgba(241, 247, 255, 0.58) 100%);
    padding: 22px;
    color: #16386d;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(7px);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.sf-insurance-option-card::before {
    content: "";
    position: absolute;
    top: -32px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 97, 216, 0.2) 0%, rgba(44, 97, 216, 0) 74%);
    pointer-events: none;
}

.sf-insurance-option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(15, 45, 98, .16);
    border-color: #96b8f5;
}

.sf-insurance-option-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 30px;
    margin-bottom: 14px;
}

.sf-insurance-option-icon-auto {
    background: #eaf1ff;
    color: #1d56cb;
}

.sf-insurance-option-icon-health {
    background: #e2f8ef;
    color: #0a916b;
}

.sf-insurance-option-cta {
    margin-top: auto;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 700;
    color: #1f57c8;
    border-top: 1px dashed rgba(127, 159, 230, 0.45);
    padding-top: 12px;
}

.sf-insurance-option-card:hover .sf-insurance-option-cta {
    color: #0c43ad;
}

.sf-vehicle-choice,
.sf-vehicle-empty,
.sf-vehicle-contact {
    border: 1px solid #dbe5fb;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    padding: 16px;
}

.sf-vehicle-empty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sf-vehicle-toggle {
    display: inline-flex;
    gap: 4px;
    border: 1px solid #d5e2fb;
    border-radius: 13px;
    background: #eef4ff;
    padding: 4px;
}

.sf-vehicle-toggle button {
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #345389;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 11px;
}

.sf-vehicle-toggle button.active {
    background: #0b4edb;
    color: #fff;
    box-shadow: 0 8px 18px rgba(11, 78, 219, 0.2);
}

.sf-vehicle-select {
    min-height: 46px;
    border-radius: 12px;
    border-color: #d8e2f0;
}

.sf-vehicle-contact .form-label {
    color: #173a70;
    font-size: 14px;
    font-weight: 800;
}

.sf-vehicle-contact .form-control {
    min-height: 46px;
    border-radius: 12px;
    border-color: #d8e2f0;
}

.sf-vehicle-list {
    display: grid;
    gap: 8px;
}

.sf-vehicle-option {
    border: 1px solid #dce7fa;
    border-radius: 14px;
    background: #fff;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.sf-vehicle-option:hover {
    border-color: #b8ccf5;
    background: #f7faff;
    transform: translateY(-1px);
}

.sf-vehicle-option.active {
    border-color: #9dbbf4;
    background: #eef5ff;
}

.sf-vehicle-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(140deg, #2058c9 0%, #57a0ff 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    flex: 0 0 auto;
}

.sf-vehicle-option strong,
.sf-vehicle-option span,
.sf-vehicle-option em {
    display: block;
}

.sf-vehicle-option strong {
    color: #143769;
    font-weight: 900;
}

.sf-vehicle-option span {
    color: #647a9f;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.sf-vehicle-option em {
    margin-left: auto;
    border-radius: 999px;
    background: #e2f8ef;
    color: #0a8a67;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    padding: 5px 9px;
    white-space: nowrap;
}

.sf-form-progress {
    height: 10px;
    width: 100%;
    background: #e9f0ff;
    border-radius: 999px;
    overflow: hidden;
}

.sf-form-progress-bar {
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, #0b4edb 0%, #20b486 100%);
    transition: width .25s ease;
}

.sf-form-step {
    display: none;
}

.sf-form-step.active {
    display: block;
}

.sf-side-menu {
    border: 1px solid #d7e2f8;
    border-radius: 16px;
    background: #0f2f84;
    padding: 12px;
}

.sf-side-menu a {
    display: block;
    text-decoration: none;
    color: rgba(255,255,255,.93);
    padding: 8px 10px;
    border-radius: 10px;
    margin-bottom: 4px;
}

.sf-side-menu a:hover, .sf-side-menu a.active { background: rgba(255,255,255,.16); }

.sf-table thead th {
    background: #f3f7ff;
    color: #345389;
    border-bottom: 0;
}

.sf-table td, .sf-table th { vertical-align: middle; }

@media (max-width: 991px) {
    .sf-grid-2 { grid-template-columns: 1fr; }
    .sf-country-grid,
    .sf-insurance-option-grid {
        grid-template-columns: 1fr;
    }

    .sf-country-redesign {
        padding: 14px;
        border-radius: 20px;
    }

    .sf-country-hero {
        min-height: auto;
        padding: 20px;
        align-items: flex-start;
    }

    .sf-country-hero-icon {
        display: none;
    }

    .sf-country-card {
        min-height: 190px;
    }

    .sf-vehicle-empty,
    .sf-vehicle-option {
        align-items: flex-start;
    }

    .sf-vehicle-option em {
        margin-left: 0;
    }
}

.sf-about-redesign {
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.sf-about-hero {
    border-radius: 18px;
    overflow: hidden;
    min-height: 240px;
    background:
        linear-gradient(108deg, rgba(8, 31, 80, 0.9) 0%, rgba(13, 67, 176, 0.82) 50%, rgba(12, 79, 219, 0.58) 100%),
        url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sf-about-hero-content {
    width: 100%;
    padding: 22px;
    color: #fff;
}

.sf-about-hero .sf-page-title {
    color: #fff;
}

.sf-about-hero .sf-muted {
    color: rgba(231, 239, 255, 0.95) !important;
    max-width: 720px;
}

.sf-about-badge {
    display: inline-block;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 6px 12px;
    margin-bottom: 10px;
}

.sf-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sf-about-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #d8e5fb;
    min-height: 250px;
}

.sf-about-photo-lg {
    min-height: 320px;
}

.sf-about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sf-about-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 35, 94, 0.02) 0%, rgba(7, 35, 94, 0.72) 100%);
}

.sf-about-photo-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 1;
    color: #fff;
}

.sf-about-photo-caption h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.sf-about-photo-caption p {
    font-size: 13px;
    color: rgba(236, 242, 255, 0.94);
}

.sf-about-card {
    border: 1px solid #d9e6fb;
    border-radius: 16px;
    background: #fff;
    padding: 16px;
}

.sf-about-prose p {
    color: #48638f;
    margin-bottom: 12px;
    line-height: 1.65;
}

.sf-about-prose p:last-child {
    margin-bottom: 0;
}

.sf-about-value-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.sf-about-value-list li {
    display: flex;
    align-items: start;
    gap: 10px;
    border: 1px dashed #d4e2fa;
    border-radius: 12px;
    padding: 10px;
    color: #466189;
    font-weight: 600;
}

.sf-about-value-list i {
    color: #1f57c8;
    font-size: 18px;
    margin-top: 1px;
}

.sf-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sf-about-stat {
    border: 1px solid #d9e6fb;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
    padding: 14px;
    text-align: center;
}

.sf-about-stat strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    color: #16459e;
    margin-bottom: 6px;
}

.sf-about-stat span {
    color: #5b739f;
    font-size: 13px;
    font-weight: 600;
}

.sf-about-cta {
    border: 1px solid #d8e5fb;
    border-radius: 16px;
    background: linear-gradient(100deg, #f8fbff 0%, #edf4ff 100%);
    padding: 18px;
}

.sf-about-cta p {
    color: #5a739f;
}

.sf-policy-content h2 {
    font-size: 20px;
    color: #163d87;
    font-weight: 800;
    margin: 18px 0 8px;
}

.sf-policy-content h2:first-child {
    margin-top: 0;
}

.sf-policy-content p {
    color: #49638d;
    line-height: 1.68;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .sf-about-grid {
        grid-template-columns: 1fr;
    }

    .sf-about-stats {
        grid-template-columns: 1fr;
    }
}

.sf-dash-redesign {
    padding: 18px;
}

.sf-dash-hero {
    border: 1px solid #dbe7fb;
    border-radius: 18px;
    background: linear-gradient(120deg, #ffffff 0%, #eef4ff 100%);
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.sf-dash-hero-kicker {
    font-size: 12px;
    font-weight: 700;
    color: #3566bf;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.sf-dash-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sf-dash-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 14px;
}

.sf-dash-sidebar-modern {
    border-radius: 16px;
    background: linear-gradient(180deg, #0e317e 0%, #0f4fc7 100%);
    padding: 14px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    position: sticky;
    top: 16px;
    align-self: start;
}

.sf-dash-sidebar-modern h3 {
    color: #fff;
}

.sf-dash-sidebar-modern a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
    padding: 9px 10px;
    margin-bottom: 6px;
    font-weight: 600;
}

.sf-dash-sidebar-modern a:hover,
.sf-dash-sidebar-modern a.active {
    background: rgba(255, 255, 255, 0.16);
}

.sf-dash-main {
    min-width: 0;
}

.sf-dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sf-dash-stat-card {
    border: 1px solid #dae5fa;
    border-radius: 14px;
    background: #fff;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sf-dash-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(140deg, #2058c9 0%, #57a0ff 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
}

.sf-dash-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 10px;
}

.sf-dash-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.sf-dash-action-card {
    border: 1px solid #dce7fa;
    border-radius: 12px;
    padding: 10px;
    background: #f7faff;
    color: #1e467f;
    text-decoration: none;
    display: grid;
    justify-items: start;
    gap: 8px;
    min-height: 88px;
}

.sf-dash-action-card i {
    font-size: 20px;
    color: #2a5dca;
}

.sf-dash-action-card span {
    font-size: 13px;
    font-weight: 700;
}

.sf-dash-action-card:hover {
    background: #edf4ff;
    border-color: #c5d8fb;
}

.sf-dash-help-card {
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.sf-profile-hero {
    border: 1px solid #dbe7fb;
    border-radius: 18px;
    background:
        linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 246, 255, 0.9) 56%, rgba(225, 237, 255, 0.88) 100%),
        url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.sf-profile-identity {
    min-width: 260px;
    border: 1px solid #d8e5fb;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 28px rgba(16, 46, 99, 0.08);
    backdrop-filter: blur(8px);
}

.sf-profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: linear-gradient(145deg, #0b4edb 0%, #20b486 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 22px;
}

.sf-profile-identity strong,
.sf-profile-identity span {
    display: block;
}

.sf-profile-identity strong {
    color: #12366d;
    font-weight: 800;
}

.sf-profile-identity span {
    color: #60779f;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.sf-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.sf-profile-summary {
    border: 1px solid #dae5fa;
    border-radius: 14px;
    background: #fff;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sf-profile-summary-icon,
.sf-profile-section-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(140deg, #2058c9 0%, #57a0ff 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    flex: 0 0 auto;
}

.sf-profile-summary span,
.sf-profile-summary strong {
    display: block;
}

.sf-profile-summary span {
    color: #647a9f;
    font-size: 13px;
    font-weight: 600;
}

.sf-profile-summary strong {
    color: #143769;
    font-weight: 800;
}

.sf-profile-panel {
    border: 1px solid #dae4f7;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    padding: 18px;
    box-shadow: 0 12px 28px rgba(16, 46, 99, 0.06);
}

.sf-profile-danger-panel {
    background: linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
    border-color: #f0d4d8;
}

.sf-profile-section-head {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 18px;
}

.sf-profile-section-head h2 {
    font-size: 20px;
    font-weight: 900;
    color: #12366d;
    margin: 0 0 4px;
}

.sf-profile-section-head p {
    color: #647a9f;
    margin: 0;
}

.sf-profile-section-icon-green {
    background: linear-gradient(140deg, #059669 0%, #31c48d 100%);
}

.sf-profile-section-icon-danger {
    background: linear-gradient(140deg, #d92d20 0%, #f97366 100%);
}

.sf-profile-form {
    display: grid;
    gap: 16px;
}

.sf-profile-form .form-label {
    color: #173a70;
    font-size: 14px;
    font-weight: 800;
}

.sf-profile-control {
    min-height: 48px;
    border-radius: 12px;
    border-color: #d8e2f0;
    color: #0b1f3a;
    box-shadow: 0 6px 16px rgba(16, 46, 99, 0.04);
}

.sf-profile-control:focus {
    border-color: #0b4edb;
    box-shadow: 0 0 0 .2rem rgba(11, 78, 219, .12);
}

.sf-profile-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.sf-profile-saved {
    color: #0a8a67;
    font-weight: 800;
    font-size: 14px;
}

.sf-profile-error {
    margin-top: 8px;
    color: #c0323b;
    font-size: 13px;
    font-weight: 700;
}

.sf-profile-alert,
.sf-profile-success {
    border-radius: 14px;
    padding: 12px;
    font-size: 14px;
}

.sf-profile-alert {
    border: 1px solid #f4d596;
    background: #fff8e8;
    color: #725018;
    display: flex;
    gap: 10px;
}

.sf-profile-success {
    border: 1px solid #bfe9d8;
    background: #ecfbf4;
    color: #087150;
    font-weight: 700;
}

.sf-link-button {
    border: 0;
    background: transparent;
    color: #0b4edb;
    font-weight: 800;
    padding: 0;
}

.sf-profile-danger-box {
    border: 1px dashed #efb7bc;
    border-radius: 16px;
    background: #fff;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.sf-profile-danger-box strong,
.sf-profile-danger-box span {
    display: block;
}

.sf-profile-danger-box strong {
    color: #9f1f2b;
    font-weight: 900;
}

.sf-profile-danger-box span {
    color: #7b5b60;
    font-size: 14px;
}

.sf-profile-modal {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .sf-dash-layout {
        grid-template-columns: 1fr;
    }

    .sf-dash-stats {
        grid-template-columns: 1fr;
    }

    .sf-dash-grid {
        grid-template-columns: 1fr;
    }

    .sf-dash-actions {
        grid-template-columns: 1fr;
    }

    .sf-profile-hero,
    .sf-profile-identity,
    .sf-profile-danger-box {
        align-items: stretch;
        flex-direction: column;
    }

    .sf-profile-identity {
        min-width: 0;
        width: 100%;
    }

    .sf-profile-grid {
        grid-template-columns: 1fr;
    }

    .sf-profile-panel {
        padding: 14px;
    }

    .process-stepper {
        padding: 16px;
    }

    .process-stepper-summary {
        grid-template-columns: 1fr;
    }

    .process-stepper-summary em {
        grid-row: auto;
        grid-column: auto;
        justify-self: start;
    }

    .process-stepper-track {
        grid-template-columns: repeat(7, 112px);
        overflow-x: auto;
        padding: 20px 4px 4px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .process-stepper-track::before,
    .process-stepper-track::after {
        left: 56px;
        right: 56px;
        top: 40px;
    }

    .process-step {
        min-height: 104px;
        scroll-snap-align: center;
    }

    .country-choice-grid,
    .product-choice-grid,
    .quote-offer-grid,
    .insurer-choice-grid,
    .contract-grid {
        grid-template-columns: 1fr;
    }

    .lookup-dossier,
    .lookup-vehicle-strip,
    .lookup-vehicle-facts {
        grid-template-columns: 1fr;
    }

    .process-hero,
    .contract-head,
    .process-actions,
    .process-summary-card {
        align-items: stretch;
        flex-direction: column;
    }

    .process-hero-mark {
        width: 72px;
        height: 72px;
        border-radius: 20px;
        font-size: 32px;
    }

    .contract-price {
        min-width: 0;
        text-align: left;
    }

}

@media (max-width: 575px) {
    .process-stepper {
        margin-top: 16px;
        border-radius: 18px;
    }

    .process-hero,
    .process-card,
    .contract-panel {
        padding: 18px;
        border-radius: 18px;
    }

    .process-step {
        min-height: 98px;
    }

    .process-step-icon {
        width: 40px;
        height: 40px;
    }

    .process-step.is-active .process-step-icon {
        width: 48px;
        height: 48px;
    }

    .lookup-result-panel {
        padding: 14px;
        border-radius: 20px;
    }

    .lookup-result-head {
        align-items: flex-start;
    }

    .lookup-dossier-main {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .lookup-dossier-main h3 {
        font-size: 24px;
    }

    .lookup-vehicle-title {
        grid-template-columns: 1fr;
    }
}

@media print {
    body {
        background: #fff;
    }

    .navbar,
    .process-stepper,
    .process-actions,
    .page-shell > footer,
    .process-hero {
        display: none !important;
    }

    .page-shell {
        max-width: none;
        margin: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }

    .contract-panel {
        border: 0;
        box-shadow: none;
        margin: 0;
    }
}

/* Insurance cards matched to the supplied light visual reference. */
.services-showcase .insurance-section {
    position: relative;
    isolation: isolate;
    overflow: visible;
    padding: 12px 0 8px;
    border: 0;
    border-radius: 0;
    color: #102b68;
    background:
        radial-gradient(circle at 86% 8%, rgba(32, 202, 175, .08), transparent 25%),
        radial-gradient(circle at 10% 9%, rgba(45, 92, 255, .07), transparent 27%);
    box-shadow: none;
}

.services-showcase .insurance-section::before {
    content: "";
    position: absolute;
    inset: -20px -12px 40%;
    z-index: -1;
    background:
        linear-gradient(155deg, transparent 36%, rgba(65, 108, 231, .055) 36.2%, transparent 36.5%),
        linear-gradient(145deg, transparent 62%, rgba(34, 199, 169, .055) 62.2%, transparent 62.5%);
    background-size: auto;
    mask-image: none;
    pointer-events: none;
}

.services-showcase .insurance-section::after {
    display: none;
}

.services-showcase .insurance-portals {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.services-showcase .insurance-portal {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #c9d9fb;
    border-radius: 25px;
    color: #102b68;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 42px rgba(37, 74, 145, .12);
    text-decoration: none;
    backdrop-filter: blur(12px);
    transform: none;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.services-showcase .insurance-portal::before,
.services-showcase .insurance-portal::after {
    display: none;
}

.services-showcase .health-portal {
    border-color: #a8e6dc;
    background: rgba(255, 255, 255, .95);
}

.services-showcase .insurance-portal:hover {
    color: #102b68;
    border-color: #819ff8;
    box-shadow: 0 25px 52px rgba(37, 74, 145, .17);
    transform: translateY(-5px);
}

.services-showcase .health-portal:hover {
    border-color: #55ceb8;
}

.services-showcase .portal-visual {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: 100%;
    height: 225px;
    flex: 0 0 225px;
    overflow: hidden;
    border-bottom: 1px solid #e3ebfb;
    background:
        radial-gradient(ellipse at 66% 78%, rgba(55, 104, 237, .14), transparent 34%),
        linear-gradient(155deg, #fbfdff 4%, #eef4ff 100%);
    pointer-events: none;
    transform: none;
}

.services-showcase .health-portal .portal-visual {
    right: auto;
    bottom: auto;
    width: 100%;
    height: 225px;
    flex-basis: 225px;
    background:
        radial-gradient(circle at 73% 60%, rgba(39, 205, 170, .18), transparent 34%),
        linear-gradient(155deg, #fbfffe 4%, #eafaf6 100%);
}

.services-showcase .portal-visual::before {
    content: "";
    position: absolute;
    right: -14%;
    bottom: -30%;
    width: 92%;
    height: 68%;
    border: 2px solid rgba(62, 104, 232, .08);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.services-showcase .health-portal .portal-visual::before {
    border-color: rgba(28, 186, 154, .12);
}

.services-showcase .portal-visual::after {
    content: "";
    position: absolute;
    right: 3%;
    bottom: 3%;
    width: 68%;
    height: 20%;
    border-radius: 50%;
    background: rgba(50, 87, 204, .1);
    filter: blur(16px);
}

.services-showcase .health-portal .portal-visual::after {
    background: rgba(25, 186, 153, .12);
}

.services-showcase .portal-visual img {
    position: absolute;
    inset: auto -7% -7% auto;
    z-index: 3;
    width: 84%;
    height: 82%;
    object-fit: contain;
    filter: drop-shadow(0 13px 15px rgba(35, 63, 130, .18));
    transition: transform .25s ease;
}

.services-showcase .health-portal .portal-visual img {
    right: -5%;
    bottom: -11%;
    width: 82%;
    height: 90%;
}

.services-showcase .insurance-portal:hover .portal-visual,
.services-showcase .insurance-portal:hover .portal-visual img {
    transform: none;
}

.services-showcase .insurance-portal:hover .portal-visual img {
    transform: translateY(-3px) scale(1.02);
}

.services-showcase .portal-round-icon {
    position: absolute;
    top: 28px;
    left: 25px;
    z-index: 6;
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(59, 99, 240, .36);
    border-radius: 50%;
    color: #fff;
    background:
        radial-gradient(circle at 35% 28%, #6c96ff, #294be8 68%),
        #3158ef;
    box-shadow:
        0 0 0 8px rgba(49, 88, 239, .07),
        0 12px 26px rgba(43, 73, 211, .28),
        inset 0 0 0 8px rgba(255, 255, 255, .09);
    font-size: 26px;
}

.services-showcase .portal-round-icon::before,
.services-showcase .portal-round-icon::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.services-showcase .portal-round-icon::before {
    inset: -9px;
    border: 1px solid rgba(49, 88, 239, .22);
    border-top-color: #5277ff;
}

.services-showcase .portal-round-icon::after {
    top: -8px;
    right: 4px;
    width: 7px;
    height: 7px;
    background: #4267ef;
}

.services-showcase .health-portal .portal-round-icon {
    border-color: rgba(25, 184, 151, .38);
    background: radial-gradient(circle at 35% 28%, #53dfc3, #15a984 70%);
    box-shadow:
        0 0 0 8px rgba(24, 177, 145, .07),
        0 12px 26px rgba(19, 155, 125, .24),
        inset 0 0 0 8px rgba(255, 255, 255, .1);
}

.services-showcase .health-portal .portal-round-icon::before {
    border-color: rgba(25, 184, 151, .22);
    border-top-color: #2ec6a7;
}

.services-showcase .health-portal .portal-round-icon::after {
    background: #20bd9d;
}

.services-showcase .portal-watermark {
    position: absolute;
    top: 35px;
    left: 44%;
    z-index: 1;
    color: rgba(49, 89, 226, .1);
    font-size: 105px;
    line-height: 1;
}

.services-showcase .health-portal .portal-watermark {
    left: 55%;
    color: rgba(24, 180, 147, .13);
}

.services-showcase .portal-copy {
    position: relative;
    z-index: 4;
    display: flex;
    min-height: 0;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 27px 25px;
    color: #102b68;
    background: rgba(255, 255, 255, .97);
}

.services-showcase .portal-copy h3 {
    max-width: none;
    margin: 0 0 14px;
    color: #102b68;
    font-size: clamp(20px, 2.3vw, 27px);
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -.025em;
}

.services-showcase .portal-copy > p {
    max-width: none;
    margin: 0 0 18px;
    color: #71809c;
    font-size: 11px;
    line-height: 1.62;
}

.services-showcase .portal-pills {
    position: static;
    z-index: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    max-width: none;
    margin-bottom: 16px;
}

.services-showcase .portal-pills span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid #dbe5fb;
    border-radius: 11px;
    color: #315ad7;
    background: #f5f8ff;
    font-size: 10px;
    font-weight: 800;
    backdrop-filter: none;
}

.services-showcase .portal-pills i {
    color: #315fe9;
    font-size: 13px;
}

.services-showcase .health-portal .portal-pills span {
    border-color: #cbeee6;
    color: #159578;
    background: #effaf7;
}

.services-showcase .health-portal .portal-pills i {
    color: #13a584;
}

.services-showcase .portal-action {
    position: static;
    left: auto;
    bottom: auto;
    z-index: auto;
    display: flex;
    min-height: 45px;
    width: 100%;
    margin-top: auto;
    padding: 0 16px;
    border: 0;
    border-radius: 11px;
    justify-content: center;
    color: #fff;
    background: linear-gradient(90deg, #2443dc, #344af0);
    box-shadow: 0 10px 22px rgba(45, 65, 222, .22);
    font-size: 12px;
    font-weight: 850;
    backdrop-filter: none;
}

.services-showcase .health-portal .portal-action {
    background: linear-gradient(90deg, #15a982, #15b68b);
    box-shadow: 0 10px 22px rgba(20, 169, 131, .2);
}

.services-showcase .portal-action i,
.services-showcase .health-portal .portal-action i {
    position: absolute;
    right: 15px;
    width: auto;
    height: auto;
    color: rgba(255, 255, 255, .9);
    background: transparent;
    font-size: 15px;
}

.services-showcase .insurance-portal:hover .portal-action i {
    transform: translateX(3px);
}

.services-showcase .insurance-metrics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    margin-top: 22px;
    border: 1px solid #dbe5f5;
    border-radius: 22px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 14px 36px rgba(40, 77, 143, .11);
    backdrop-filter: blur(12px);
}

.services-showcase .insurance-metrics article {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-width: 0;
    min-height: 118px;
    padding: 20px 22px;
    background: transparent;
}

.services-showcase .insurance-metrics article + article {
    border-top: 0;
    border-left: 1px solid #e1e8f5;
}

.services-showcase .metric-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border: 1px solid rgba(53, 91, 232, .3);
    border-radius: 50%;
    color: #fff;
    background: radial-gradient(circle at 35% 28%, #678eff, #2948e7 70%);
    box-shadow:
        0 0 0 8px rgba(46, 80, 226, .06),
        0 11px 22px rgba(45, 71, 207, .2),
        inset 0 0 0 7px rgba(255, 255, 255, .08);
    font-size: 24px;
}

.services-showcase .metric-icon.green {
    border-color: rgba(25, 178, 143, .3);
    background: radial-gradient(circle at 35% 28%, #4bd8bb, #16a47f 72%);
    box-shadow:
        0 0 0 8px rgba(22, 164, 127, .06),
        0 11px 22px rgba(18, 144, 112, .18),
        inset 0 0 0 7px rgba(255, 255, 255, .09);
}

.services-showcase .metric-icon.indigo {
    background: radial-gradient(circle at 35% 28%, #758bff, #4452ec 72%);
}

.services-showcase .insurance-metrics strong {
    display: block;
    color: #102b68;
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 900;
    line-height: 1;
}

.services-showcase .insurance-metrics small {
    display: block;
    margin-top: 8px;
    color: #79869e;
    font-size: 9px;
    line-height: 1.35;
}

.services-showcase .insurance-metrics article > div > i {
    display: block;
    width: 34px;
    height: 2px;
    margin-top: 12px;
    border-radius: 2px;
    background: #3c60ec;
}

.services-showcase .insurance-metrics article:nth-child(2) > div > i {
    background: #1ab28c;
}

.services-showcase .insurance-metrics article:nth-child(3) > div > i {
    background: #5364ef;
}

@media (max-width: 900px) {
    .services-showcase .insurance-portals {
        grid-template-columns: 1fr;
    }

    .services-showcase .insurance-portal {
        max-width: 520px;
        margin-inline: auto;
    }

    .services-showcase .insurance-metrics {
        grid-template-columns: 1fr;
    }

    .services-showcase .insurance-metrics article + article {
        border-top: 1px solid #e1e8f5;
        border-left: 0;
    }
}

@media (max-width: 575px) {
    .services-showcase .insurance-section {
        padding: 4px 0;
    }

    .services-showcase .insurance-portals {
        gap: 15px;
    }

    .services-showcase .insurance-portal {
        border-radius: 20px;
    }

    .services-showcase .portal-visual,
    .services-showcase .health-portal .portal-visual {
        height: 205px;
        flex-basis: 205px;
    }

    .services-showcase .portal-round-icon {
        top: 22px;
        left: 20px;
        width: 62px;
        height: 62px;
        font-size: 22px;
    }

    .services-showcase .portal-copy {
        min-height: 0;
        padding: 21px;
    }

    .services-showcase .portal-copy h3 {
        font-size: 23px;
    }

    .services-showcase .insurance-metrics article {
        grid-template-columns: 60px minmax(0, 1fr);
        min-height: 100px;
        padding: 16px 19px;
    }

    .services-showcase .metric-icon {
        width: 56px;
        height: 56px;
        font-size: 21px;
    }
}
