:root {
    --mvp-ink: #17243a;
    --mvp-ink-soft: #48566b;
    --mvp-blue: #175cd3;
    --mvp-blue-dark: #0c3f9b;
    --mvp-blue-soft: #eaf2ff;
    --mvp-green: #14805e;
    --mvp-green-soft: #e9f7f2;
    --mvp-coral: #e76042;
    --mvp-coral-soft: #fff0ec;
    --mvp-border: #d9e2ec;
    --mvp-surface: #ffffff;
    --mvp-surface-soft: #f5f8fb;
    --mvp-shadow: 0 16px 38px rgba(27, 51, 84, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--mvp-ink);
    background: var(--mvp-surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
    letter-spacing: 0;
}

a {
    color: var(--mvp-blue);
}

.container {
    max-width: 1180px;
}

.mvp-navbar {
    min-height: 92px;
    border-bottom: 1px solid rgba(23, 36, 58, 0.09);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: none;
}

.mvp-navbar .navbar-brand {
    min-width: 260px;
    color: var(--mvp-ink);
}
.mvp-navbar .navbar-brand img {
    height: 76px;
    width: auto;
    max-width: 315px;
}
@media (max-width: 991px) {
    .mvp-navbar { min-height: 80px; }
    .mvp-navbar .navbar-brand { min-width: 0; }
    .mvp-navbar .navbar-brand img { height: 64px; max-width: 260px; }
}
@media (max-width: 575px) {
    .mvp-navbar { min-height: 68px; }
    .mvp-navbar .navbar-brand img { height: 52px; max-width: 215px; }
}

.mvp-brand-fallback {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--mvp-ink);
    font-size: 1.28rem;
    font-weight: 800;
}

.mvp-brand-symbol {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--mvp-blue);
    font-size: 1rem;
}

.mvp-navbar .nav-link {
    color: #39475b;
    font-weight: 600;
    padding: 0.75rem 0.9rem !important;
}

.mvp-navbar .nav-link:hover,
.mvp-navbar .nav-link:focus {
    color: var(--mvp-blue);
}

.btn {
    min-height: 44px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
    transform: none;
}

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

.btn-primary:hover,
.btn-primary:focus {
    border-color: var(--mvp-blue-dark);
    background: var(--mvp-blue-dark);
}

.btn-outline-primary {
    border-color: #9db9e8;
    color: var(--mvp-blue-dark);
}

.btn-outline-primary:hover {
    border-color: var(--mvp-blue);
    background: var(--mvp-blue-soft);
    color: var(--mvp-blue-dark);
}

.form-control,
.form-select {
    min-height: 50px;
    border-color: #c9d6e3;
    border-radius: 6px;
    color: var(--mvp-ink);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--mvp-blue);
    box-shadow: 0 0 0 3px rgba(23, 92, 211, 0.13);
}

.mvp-home-hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background-color: #f7fbfd;
    background-image: url('/assets/img/hero/visa-finder-hero-v2.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

.mvp-home-hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(23, 36, 58, 0.12);
    content: '';
}

.mvp-home-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 680px;
    align-items: center;
    padding-top: 52px;
    padding-bottom: 58px;
}

.mvp-hero-copy {
    width: min(790px, 67%);
}

.mvp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--mvp-blue-dark);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mvp-eyebrow::before {
    width: 24px;
    height: 3px;
    background: var(--mvp-coral);
    content: '';
}

.mvp-home-hero h1 {
    max-width: 610px;
    margin: 0 0 18px;
    color: #10203a;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.02;
}

.mvp-home-hero .mvp-hero-lead {
    max-width: 590px;
    margin-bottom: 28px;
    color: #3e4e63;
    font-size: 1.2rem;
    line-height: 1.6;
}

.mvp-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 24px;
    color: #2c4059;
    font-size: 0.92rem;
    font-weight: 650;
}

.mvp-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.mvp-hero-points i {
    color: var(--mvp-green);
}

.mvp-route-finder {
    width: min(790px, 100%);
    padding: 20px;
    border: 1px solid rgba(23, 36, 58, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--mvp-shadow);
}

.mvp-route-finder-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.05fr 1.15fr auto;
    gap: 12px;
    align-items: end;
}

.mvp-field-label {
    display: block;
    margin-bottom: 7px;
    color: #34445a;
    font-size: 0.78rem;
    font-weight: 800;
}

.mvp-route-finder .btn {
    min-width: 138px;
    min-height: 50px;
}

.mvp-geo-context {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
    color: #5f6f81;
    font-size: 0.8rem;
}

.mvp-geo-context i {
    color: var(--mvp-coral);
}

.mvp-hero-note {
    max-width: 700px;
    margin-top: 17px;
    color: #5b6878;
    font-size: 0.78rem;
}

.mvp-trust-band {
    border-bottom: 1px solid var(--mvp-border);
    background: #fff;
}

.mvp-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.mvp-trust-item {
    display: flex;
    min-height: 98px;
    gap: 15px;
    align-items: center;
    padding: 20px 22px;
    border-right: 1px solid var(--mvp-border);
}

.mvp-trust-item:last-child {
    border-right: 0;
}

.mvp-trust-icon {
    display: grid;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 8px;
    color: var(--mvp-blue);
    background: var(--mvp-blue-soft);
}

.mvp-trust-icon i {
    display: block;
    color: inherit;
    font-size: 1.45rem;
    line-height: 1;
}

.mvp-trust-icon-routes {
    color: #c84834;
    background: #fff0ec;
}

.mvp-trust-icon-destinations {
    color: #1f5fcf;
    background: #eaf1ff;
}

.mvp-trust-icon-checkout {
    color: #08765a;
    background: #e7f7f1;
}

.mvp-trust-icon-support {
    color: #8a5a00;
    background: #fff4d8;
}

.mvp-trust-item > div > strong,
.mvp-trust-item > div > span {
    display: block;
}

.mvp-trust-item > div > strong {
    color: var(--mvp-ink);
    font-size: 0.96rem;
    line-height: 1.25;
}

.mvp-trust-item > div > span {
    margin-top: 4px;
    color: #657486;
    font-size: 0.8rem;
    line-height: 1.35;
}

.mvp-section {
    padding: 80px 0;
}

.mvp-section-soft {
    background: var(--mvp-surface-soft);
}

.mvp-section-head {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
}

.mvp-section-head h2 {
    max-width: 700px;
    margin: 0;
    font-size: 2.35rem;
    font-weight: 800;
}

.mvp-section-head p {
    max-width: 580px;
    margin: 10px 0 0;
    color: var(--mvp-ink-soft);
}

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

.mvp-route-card {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--mvp-border);
    border-radius: 8px;
    color: var(--mvp-ink);
    background: #fff;
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mvp-route-card:hover {
    border-color: #91afe1;
    color: var(--mvp-ink);
    box-shadow: 0 12px 26px rgba(35, 65, 103, 0.1);
    transform: translateY(-2px);
}

.mvp-route-card-top {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}

.mvp-flag-image {
    width: 44px;
    height: 32px;
    flex: 0 0 auto;
    border: 1px solid rgba(23, 36, 58, 0.12);
    border-radius: 4px;
    object-fit: cover;
}

.mvp-route-arrow {
    margin-left: auto;
    color: #8391a4;
}

.mvp-route-card h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 800;
}

.mvp-route-meta {
    margin-bottom: 18px;
    color: #647386;
    font-size: 0.84rem;
}

.mvp-route-price {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e5ebf1;
}

.mvp-route-price span {
    color: #6a788a;
    font-size: 0.76rem;
}

.mvp-route-price strong {
    display: block;
    color: var(--mvp-blue-dark);
    font-size: 1.1rem;
}

.mvp-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.mvp-service-grid-single {
    grid-template-columns: 1fr;
}

.mvp-service-grid-single .mvp-service-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    column-gap: 64px;
    align-items: start;
}

.mvp-service-grid-single .mvp-service-label,
.mvp-service-grid-single .mvp-service-panel h3,
.mvp-service-grid-single .mvp-service-panel > p {
    grid-column: 1;
}

.mvp-service-grid-single .mvp-check-list {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
}

.mvp-service-panel {
    position: relative;
    padding: 34px;
    border: 1px solid var(--mvp-border);
    border-radius: 8px;
    background: #fff;
}

.mvp-service-panel.is-featured {
    border-top: 4px solid var(--mvp-coral);
}

.mvp-service-label {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--mvp-blue-dark);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mvp-service-panel h3 {
    margin-bottom: 10px;
    font-size: 1.65rem;
    font-weight: 800;
}

.mvp-service-panel p {
    color: var(--mvp-ink-soft);
}

.mvp-check-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.mvp-check-list li {
    display: flex;
    gap: 10px;
}

.mvp-check-list i {
    color: var(--mvp-green);
}

.mvp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--mvp-border);
    border-bottom: 1px solid var(--mvp-border);
}

.mvp-step {
    min-height: 210px;
    padding: 32px;
    border-right: 1px solid var(--mvp-border);
}

.mvp-step:last-child {
    border-right: 0;
}

.mvp-step-number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 50%;
    color: #fff;
    background: var(--mvp-blue);
    font-weight: 800;
}

.mvp-step h3 {
    font-size: 1.12rem;
    font-weight: 800;
}

.mvp-step p {
    margin-bottom: 0;
    color: var(--mvp-ink-soft);
    font-size: 0.92rem;
}

.mvp-faq-list {
    max-width: 850px;
    margin: 0 auto;
    border-top: 1px solid var(--mvp-border);
}

.mvp-faq-item {
    border-bottom: 1px solid var(--mvp-border);
}

.mvp-faq-item summary {
    display: flex;
    min-height: 68px;
    cursor: pointer;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-weight: 750;
}

.mvp-faq-item summary::-webkit-details-marker {
    display: none;
}

.mvp-faq-item summary::after {
    content: '+';
    color: var(--mvp-blue);
    font-size: 1.3rem;
}

.mvp-faq-item[open] summary::after {
    content: '-';
}

.mvp-faq-answer {
    max-width: 760px;
    padding: 0 0 22px;
    color: var(--mvp-ink-soft);
}

.mvp-final-cta {
    background: #17243a;
    color: #fff;
}

.mvp-final-cta-inner {
    display: flex;
    min-height: 235px;
    gap: 36px;
    justify-content: space-between;
    align-items: center;
}

.mvp-final-cta h2 {
    max-width: 720px;
    font-size: 2.35rem;
    font-weight: 800;
}

.mvp-footer {
    padding: 58px 0 28px;
    color: #d9e3ef;
    background: #101a2b;
}

.mvp-footer h2,
.mvp-footer h3 {
    color: #fff;
}

.mvp-footer a {
    color: #d9e3ef;
    text-decoration: none;
}

.mvp-footer a:hover {
    color: #fff;
}

.mvp-footer-links {
    display: grid;
    gap: 9px;
    padding: 0;
    list-style: none;
}

.mvp-footer-disclaimer {
    color: #9eacbe;
    font-size: 0.76rem;
    line-height: 1.6;
}

.mvp-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9eacbe;
    font-size: 0.78rem;
}

.mvp-page-hero {
    border-bottom: 1px solid var(--mvp-border);
    background: #eef5ff;
}

.mvp-page-hero-inner {
    display: flex;
    min-height: 360px;
    gap: 60px;
    justify-content: space-between;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 64px;
}

.mvp-page-hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: 3.55rem;
    font-weight: 800;
    line-height: 1.04;
}

.mvp-page-hero p {
    max-width: 740px;
    margin: 0;
    color: var(--mvp-ink-soft);
    font-size: 1.08rem;
    line-height: 1.7;
}

.mvp-page-hero-stat {
    display: grid;
    flex: 0 0 210px;
    min-height: 180px;
    align-content: center;
    padding-left: 36px;
    border-left: 1px solid #b9cae4;
}

.mvp-page-hero-stat strong {
    color: var(--mvp-blue-dark);
    font-size: 3.8rem;
    line-height: 1;
}

.mvp-page-hero-stat span {
    max-width: 160px;
    margin-top: 12px;
    color: #53657d;
    font-size: 0.88rem;
    line-height: 1.5;
}

.mvp-directory-band {
    position: sticky;
    z-index: 10;
    top: 0;
    padding: 20px 0 14px;
    border-bottom: 1px solid var(--mvp-border);
    background: rgba(255, 255, 255, 0.98);
}

.mvp-directory-filter {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: end;
}

.mvp-directory-filter .btn {
    display: inline-flex;
    min-width: 48px;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.mvp-directory-result-count {
    margin-top: 10px;
    color: #6b7888;
    font-size: 0.78rem;
}

.mvp-market-group + .mvp-market-group {
    margin-top: 58px;
}

.mvp-market-title {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.mvp-market-title h2 {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 800;
}

.mvp-market-title p {
    margin: 3px 0 0;
    color: #6a788a;
    font-size: 0.84rem;
}

.mvp-directory-routes {
    border-top: 1px solid var(--mvp-border);
}

.mvp-directory-route {
    display: grid;
    grid-template-columns: minmax(280px, 1.3fr) minmax(230px, 0.85fr) auto;
    gap: 24px;
    align-items: center;
    min-height: 112px;
    padding: 18px 0;
    border-bottom: 1px solid var(--mvp-border);
}

.mvp-directory-route-main {
    display: flex;
    min-width: 0;
    gap: 16px;
    align-items: center;
    color: var(--mvp-ink);
    text-decoration: none;
}

.mvp-directory-route-main:hover {
    color: var(--mvp-blue-dark);
}

.mvp-directory-flag {
    width: 58px;
    height: 42px;
    flex: 0 0 auto;
    border: 1px solid rgba(23, 36, 58, 0.14);
    border-radius: 4px;
    object-fit: cover;
}

.mvp-directory-route h3 {
    margin: 0 0 5px;
    font-size: 1.02rem;
    font-weight: 800;
}

.mvp-directory-route p {
    margin: 0;
    color: #6b7888;
    font-size: 0.82rem;
}

.mvp-directory-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.mvp-directory-prices span,
.mvp-directory-prices strong {
    display: block;
}

.mvp-directory-prices span {
    color: #738094;
    font-size: 0.74rem;
}

.mvp-directory-prices strong {
    margin-top: 3px;
    color: var(--mvp-ink);
    font-size: 0.88rem;
}

.mvp-empty-state {
    max-width: 560px;
    margin: 30px auto;
    padding: 56px 20px;
    text-align: center;
}

.mvp-empty-state i {
    color: var(--mvp-blue);
    font-size: 2.2rem;
}

.mvp-empty-state h2 {
    margin-top: 15px;
    font-size: 1.6rem;
    font-weight: 800;
}

.mvp-empty-state p {
    color: var(--mvp-ink-soft);
}

.mvp-editorial-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.mvp-editorial-grid h2 {
    font-size: 2.45rem;
    font-weight: 800;
}

.mvp-editorial-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
}

.mvp-editorial-columns h3 {
    font-size: 1.15rem;
    font-weight: 800;
}

.mvp-editorial-columns p {
    color: var(--mvp-ink-soft);
    line-height: 1.7;
}

.mvp-route-hero {
    padding: 28px 0 72px;
    border-bottom: 1px solid var(--mvp-border);
    background: #f8fbff;
}

.mvp-breadcrumb {
    display: flex;
    min-height: 46px;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 34px;
    color: #6c7889;
    font-size: 0.78rem;
}

.mvp-breadcrumb a {
    color: #586a80;
    text-decoration: none;
}

.mvp-breadcrumb i {
    font-size: 0.64rem;
}

.mvp-route-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr);
    gap: 80px;
    align-items: center;
}

.mvp-route-hero h1 {
    max-width: 760px;
    margin: 0 0 20px;
    font-size: 3.65rem;
    font-weight: 800;
    line-height: 1.04;
}

.mvp-route-hero-copy > p {
    max-width: 690px;
    margin-bottom: 24px;
    color: var(--mvp-ink-soft);
    font-size: 1.12rem;
    line-height: 1.7;
}

.mvp-route-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 28px;
    color: #34465d;
    font-size: 0.88rem;
    font-weight: 700;
}

.mvp-route-hero-points span {
    display: inline-flex;
    gap: 7px;
    align-items: center;
}

.mvp-route-hero-points i {
    color: var(--mvp-green);
}

.mvp-route-summary {
    padding: 30px;
    border: 1px solid var(--mvp-border);
    border-top: 4px solid var(--mvp-coral);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(32, 55, 85, 0.08);
}

.mvp-route-flags {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 24px;
}

.mvp-route-flags img {
    width: 58px;
    height: 42px;
    border: 1px solid rgba(23, 36, 58, 0.14);
    border-radius: 4px;
    object-fit: cover;
}

.mvp-route-flags i {
    color: #8390a1;
}

.mvp-route-summary dl,
.mvp-route-help-panel dl {
    margin: 0;
}

.mvp-route-summary dl > div,
.mvp-route-help-panel dl > div {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #e4eaf0;
}

.mvp-route-summary dt,
.mvp-route-help-panel dt {
    color: #718095;
    font-size: 0.76rem;
    font-weight: 650;
}

.mvp-route-summary dd,
.mvp-route-help-panel dd {
    margin: 0;
    text-align: right;
    font-size: 0.82rem;
    font-weight: 800;
}

.mvp-route-summary > a {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    margin-top: 20px;
    font-size: 0.8rem;
    font-weight: 750;
    text-decoration: none;
}

.mvp-route-trust {
    border-bottom: 1px solid var(--mvp-border);
    background: #fff;
}

.mvp-route-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.mvp-route-trust-grid > div {
    display: flex;
    min-height: 92px;
    gap: 12px;
    align-items: center;
    padding: 16px 20px;
    border-right: 1px solid var(--mvp-border);
}

.mvp-route-trust-grid > div:last-child {
    border-right: 0;
}

.mvp-route-trust-grid i {
    color: var(--mvp-blue);
    font-size: 1.25rem;
}

.mvp-trustpilot-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00b67a 0%, #009567 100%);
    flex-shrink: 0;
}

.mvp-trustpilot-icon i {
    color: #fff;
    font-size: 1rem;
}

.mvp-route-trust-grid span,
.mvp-route-trust-grid strong {
    display: block;
}

.mvp-route-trust-grid span {
    color: #718095;
    font-size: 0.72rem;
}

.mvp-route-trust-grid strong {
    margin-bottom: 3px;
    color: var(--mvp-ink);
    font-size: 0.82rem;
}

.mvp-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.mvp-product-grid-single {
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
}

.mvp-product-card {
    display: flex;
    min-height: 700px;
    flex-direction: column;
    padding: 34px;
    border: 1px solid var(--mvp-border);
    border-radius: 8px;
    background: #fff;
}

.mvp-product-card.is-featured {
    border-top: 4px solid var(--mvp-coral);
    box-shadow: 0 18px 40px rgba(37, 60, 92, 0.1);
}

.mvp-product-topline {
    display: flex;
    min-height: 44px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.mvp-product-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    color: var(--mvp-blue);
    background: var(--mvp-blue-soft);
    font-size: 1.15rem;
}

.mvp-product-badge {
    padding: 6px 9px;
    border-radius: 4px;
    color: #98391f;
    background: var(--mvp-coral-soft);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mvp-product-card h3 {
    margin-bottom: 10px;
    font-size: 1.7rem;
    font-weight: 800;
}

.mvp-product-summary {
    min-height: 78px;
    color: var(--mvp-ink-soft);
    line-height: 1.6;
}

.mvp-product-price {
    margin: 18px 0 22px;
    padding: 18px 0;
    border-top: 1px solid #e3e9ef;
    border-bottom: 1px solid #e3e9ef;
}

.mvp-product-price span {
    display: block;
}

.mvp-product-price-value {
    color: var(--mvp-ink);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.1;
}

.mvp-product-price-value + span {
    margin-top: 6px;
    color: #728095;
    font-size: 0.76rem;
}

.mvp-applicant-label {
    color: #36465a;
    font-size: 0.78rem;
    font-weight: 800;
}

.mvp-applicant-label .form-select {
    margin-top: 7px;
}

.mvp-additional-price {
    margin: 7px 0 0;
    color: #768398;
    font-size: 0.72rem;
}

.mvp-product-features {
    display: grid;
    gap: 12px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.mvp-product-features li {
    display: flex;
    gap: 9px;
    color: #34465b;
    font-size: 0.84rem;
}

.mvp-product-features i {
    color: var(--mvp-green);
    font-size: 1rem;
}

.mvp-product-card > .btn {
    margin-top: auto;
}

.mvp-product-fineprint {
    margin: 10px 0 0;
    color: #7c899a;
    font-size: 0.68rem;
    text-align: center;
}

.mvp-campaign-note {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin: 0 0 18px;
    padding: 11px;
    border: 1px solid #f2c6ba;
    border-radius: 6px;
    color: #8b331d;
    background: var(--mvp-coral-soft);
    font-size: 0.74rem;
}

.mvp-route-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
    gap: 80px;
    align-items: start;
}

.mvp-route-content-main h2 {
    margin: 38px 0 14px;
    font-size: 1.75rem;
    font-weight: 800;
}

.mvp-route-content-main .mvp-eyebrow + h2 {
    margin-top: 0;
}

.mvp-route-content-main > p {
    color: var(--mvp-ink-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.mvp-prep-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border: 1px solid var(--mvp-border);
    background: var(--mvp-border);
}

.mvp-prep-list > div {
    display: flex;
    min-height: 135px;
    gap: 14px;
    padding: 22px;
    background: #fff;
}

.mvp-prep-list > div > span {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--mvp-blue);
    font-size: 0.76rem;
    font-weight: 800;
}

.mvp-prep-list p,
.mvp-prep-list strong {
    display: block;
}

.mvp-prep-list p {
    margin: 0;
    color: #607086;
    font-size: 0.82rem;
    line-height: 1.6;
}

.mvp-prep-list strong {
    margin-bottom: 5px;
    color: var(--mvp-ink);
}

.mvp-route-help-panel {
    position: sticky;
    top: 24px;
    padding: 28px;
    border: 1px solid var(--mvp-border);
    border-radius: 8px;
    background: #fff;
}

.mvp-route-help-panel h2 {
    font-size: 1.25rem;
    font-weight: 800;
}

.mvp-route-help-panel .btn {
    margin-top: 20px;
}

.mvp-route-help-panel > p {
    margin: 14px 0 0;
    color: #778498;
    font-size: 0.7rem;
    line-height: 1.6;
}

.mvp-destination-hero {
    padding: 28px 0 72px;
    border-bottom: 1px solid var(--mvp-border);
    background: #eef5ff;
}

.mvp-destination-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 80px;
    align-items: center;
}

.mvp-destination-hero h1 {
    max-width: 780px;
    margin: 0 0 20px;
    font-size: 3.7rem;
    font-weight: 800;
    line-height: 1.04;
}

.mvp-destination-hero-grid > div:first-child > p {
    max-width: 690px;
    margin-bottom: 28px;
    color: var(--mvp-ink-soft);
    font-size: 1.1rem;
    line-height: 1.7;
}

.mvp-destination-flag-panel {
    display: grid;
    min-height: 260px;
    place-items: center;
    align-content: center;
    padding: 32px;
    border-left: 1px solid #b9cae4;
    text-align: center;
}

.mvp-destination-flag-panel img {
    width: 130px;
    height: 92px;
    margin-bottom: 20px;
    border: 1px solid rgba(23, 36, 58, 0.14);
    border-radius: 5px;
    object-fit: cover;
}

.mvp-destination-flag-panel strong,
.mvp-destination-flag-panel span {
    display: block;
}

.mvp-destination-flag-panel strong {
    font-size: 1.25rem;
}

.mvp-destination-flag-panel span {
    margin-top: 5px;
    color: #63738a;
    font-size: 0.78rem;
}

.mvp-destination-facts {
    padding: 38px 0;
    border-bottom: 1px solid var(--mvp-border);
    background: #fff;
}

.mvp-destination-facts-head {
    display: flex;
    gap: 48px;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 22px;
}

.mvp-destination-facts-head h2 {
    margin: 7px 0 0;
    font-size: 1.65rem;
    font-weight: 800;
}

.mvp-destination-facts-head > p {
    max-width: 520px;
    margin: 0;
    color: var(--mvp-ink-soft);
    font-size: 0.9rem;
    line-height: 1.65;
}

.mvp-destination-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--mvp-border);
    border-bottom: 1px solid var(--mvp-border);
}

.mvp-destination-facts-grid > div {
    display: flex;
    min-height: 96px;
    gap: 14px;
    align-items: center;
    padding: 18px 22px;
    border-right: 1px solid var(--mvp-border);
}

.mvp-destination-facts-grid > div:last-child {
    border-right: 0;
}

.mvp-destination-facts-grid i {
    color: var(--mvp-blue);
    font-size: 1.25rem;
}

.mvp-destination-facts-grid span,
.mvp-destination-facts-grid strong {
    display: block;
}

.mvp-destination-facts-grid span {
    color: #6b7b90;
    font-size: 0.72rem;
    line-height: 1.45;
}

.mvp-destination-facts-grid strong {
    margin-bottom: 2px;
    color: var(--mvp-ink);
    font-size: 1rem;
}

.mvp-researched-section {
    border-top: 1px solid var(--mvp-border);
    border-bottom: 1px solid var(--mvp-border);
    background: #f8fafc;
}

.mvp-researched-heading,
.mvp-researched-content {
    max-width: 880px;
    margin-right: auto;
    margin-left: auto;
}

.mvp-researched-heading {
    margin-bottom: 38px;
}

.mvp-researched-heading h2 {
    margin: 8px 0 12px;
    font-size: 2.2rem;
    font-weight: 800;
}

.mvp-researched-heading > p,
.mvp-researched-content p,
.mvp-researched-content li {
    color: var(--mvp-ink-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.mvp-researched-content h2 {
    margin: 42px 0 14px;
    font-size: 1.65rem;
    font-weight: 800;
}

.mvp-researched-content h3 {
    margin: 28px 0 10px;
    font-size: 1.2rem;
    font-weight: 800;
}

.mvp-researched-content ul,
.mvp-researched-content ol {
    display: grid;
    gap: 9px;
    padding-left: 22px;
}

.mvp-researched-content a {
    font-weight: 700;
}

.mvp-destination-market + .mvp-destination-market {
    margin-top: 52px;
}

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

.mvp-destination-route {
    display: flex;
    min-height: 205px;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--mvp-border);
    border-radius: 8px;
    color: var(--mvp-ink);
    background: #fff;
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mvp-destination-route:hover {
    border-color: #91afe1;
    color: var(--mvp-ink);
    box-shadow: 0 12px 26px rgba(35, 65, 103, 0.1);
    transform: translateY(-2px);
}

.mvp-destination-route-title {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mvp-destination-route-title > i {
    margin-left: auto;
    color: #8190a3;
}

.mvp-location-icon {
    display: grid;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    color: var(--mvp-blue);
    background: var(--mvp-blue-soft);
}

.mvp-destination-route h3 {
    margin: 0 0 3px;
    font-size: 1rem;
    font-weight: 800;
}

.mvp-destination-route p {
    margin: 0;
    color: #718095;
    font-size: 0.76rem;
}

.mvp-destination-route-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #e4eaf0;
}

.mvp-destination-route-prices span,
.mvp-destination-route-prices strong {
    display: block;
}

.mvp-checkout-page {
    min-height: 100vh;
    padding: 44px 0 80px;
    background: var(--mvp-surface-soft);
}

.mvp-checkout-progress {
    display: flex;
    max-width: 760px;
    align-items: center;
    margin: 0 auto 48px;
}

.mvp-checkout-progress span {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #8490a1;
    font-size: 0.76rem;
    font-weight: 750;
    white-space: nowrap;
}

.mvp-checkout-progress span b {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid #c9d5e2;
    border-radius: 50%;
    color: #6d7b8e;
    background: #fff;
    font-size: 0.72rem;
}

.mvp-checkout-progress span.is-active {
    color: var(--mvp-blue-dark);
}

.mvp-checkout-progress span.is-active b {
    border-color: var(--mvp-blue);
    color: #fff;
    background: var(--mvp-blue);
}

.mvp-checkout-progress > i {
    width: 100%;
    height: 1px;
    margin: 0 14px;
    background: #cbd6e2;
}

.mvp-checkout-heading {
    max-width: 820px;
    margin-bottom: 38px;
}

.mvp-checkout-heading h1 {
    margin: 0 0 14px;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.08;
}

.mvp-checkout-heading p {
    max-width: 720px;
    margin: 0;
    color: var(--mvp-ink-soft);
    line-height: 1.7;
}

.mvp-form-errors {
    max-width: 790px;
    margin-bottom: 24px;
    padding: 18px 20px;
    border: 1px solid #efb9b9;
    border-radius: 7px;
    color: #8c2727;
    background: #fff1f1;
}

.mvp-form-errors ul {
    margin: 8px 0 0;
}

.mvp-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
}

.mvp-checkout-form {
    display: grid;
    gap: 20px;
}

.mvp-form-section {
    padding: 30px;
    border: 1px solid var(--mvp-border);
    border-radius: 8px;
    background: #fff;
}

.mvp-form-section-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.mvp-form-section-head > span {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--mvp-blue);
    font-size: 0.76rem;
    font-weight: 800;
}

.mvp-form-section-head h2 {
    margin: 0 0 3px;
    font-size: 1.18rem;
    font-weight: 800;
}

.mvp-form-section-head p {
    margin: 0;
    color: #748195;
    font-size: 0.78rem;
}

.mvp-service-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mvp-service-switch-option {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 92px;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border: 1px solid #cdd8e4;
    border-radius: 7px;
    color: var(--mvp-ink);
    background: #fff;
    text-align: left;
}

.mvp-service-switch-option.is-selected {
    border: 2px solid var(--mvp-blue);
    background: #f5f9ff;
}

.mvp-service-switch-option > i {
    color: var(--mvp-blue);
    font-size: 1.2rem;
}

.mvp-service-switch-option span,
.mvp-service-switch-option strong,
.mvp-service-switch-option small {
    display: block;
}

.mvp-service-switch-option strong {
    font-size: 0.84rem;
}

.mvp-service-switch-option small {
    margin-top: 3px;
    color: #718095;
    font-size: 0.66rem;
}

.mvp-service-switch-option > b {
    font-size: 0.82rem;
}

.mvp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.mvp-form-field {
    min-width: 0;
    margin: 0;
    color: #37475c;
    font-size: 0.78rem;
    font-weight: 800;
}

.mvp-form-field small {
    color: #7b8798;
    font-weight: 500;
}

.mvp-form-field .form-control,
.mvp-form-field .form-select {
    margin-top: 7px;
    font-weight: 500;
}

.mvp-form-field.is-wide,
.mvp-check-field.is-wide {
    grid-column: 1 / -1;
}

fieldset.mvp-form-field {
    padding: 0;
    border: 0;
}

fieldset.mvp-form-field legend {
    margin: 0 0 8px;
    color: #37475c;
    font-size: 0.78rem;
    font-weight: 800;
}

.mvp-segmented-control {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 4px;
    border: 1px solid #c9d6e3;
    border-radius: 7px;
    background: #f5f7fa;
}

.mvp-segmented-control input,
.mvp-weekday-grid input {
    position: absolute;
    opacity: 0;
}

.mvp-segmented-control span {
    display: grid;
    min-height: 42px;
    cursor: pointer;
    place-items: center;
    border-radius: 5px;
    color: #68778b;
    font-size: 0.76rem;
}

.mvp-segmented-control input:checked + span {
    color: var(--mvp-blue-dark);
    background: #fff;
    box-shadow: 0 1px 4px rgba(30, 50, 75, 0.12);
}

.mvp-weekday-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 7px;
}

.mvp-weekday-grid span {
    display: grid;
    min-height: 42px;
    cursor: pointer;
    place-items: center;
    border: 1px solid #c9d6e3;
    border-radius: 6px;
    color: #657488;
    background: #fff;
    font-size: 0.7rem;
}

.mvp-weekday-grid input:checked + span {
    border-color: var(--mvp-blue);
    color: #fff;
    background: var(--mvp-blue);
}

.mvp-check-field,
.mvp-consent-field {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: #46566b;
    font-size: 0.78rem;
}

.mvp-check-field input,
.mvp-consent-field input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 1px;
    accent-color: var(--mvp-blue);
}

.mvp-check-field strong,
.mvp-check-field small {
    display: block;
}

.mvp-check-field strong {
    color: #33455c;
}

.mvp-check-field small {
    margin-top: 2px;
    color: #7a8799;
}

.mvp-consent-field {
    margin-bottom: 20px;
    line-height: 1.55;
}

.mvp-payment-unavailable {
    margin: 12px 0 0;
    color: #826020;
    font-size: 0.76rem;
    text-align: center;
}

.mvp-checkout-summary {
    position: sticky;
    top: 24px;
    padding: 28px;
    border: 1px solid var(--mvp-border);
    border-top: 4px solid var(--mvp-coral);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(35, 56, 82, 0.08);
}

.mvp-checkout-route h2 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    font-weight: 800;
}

.mvp-checkout-route p {
    margin: 0 0 22px;
    color: #718095;
    font-size: 0.76rem;
}

.mvp-order-lines {
    margin: 0;
    padding: 15px 0;
    border-top: 1px solid #e3e9ef;
    border-bottom: 1px solid #e3e9ef;
}

.mvp-order-lines > div {
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 7px 0;
}

.mvp-order-lines dt,
.mvp-order-lines dd {
    font-size: 0.76rem;
}

.mvp-order-lines dt {
    color: #728095;
    font-weight: 600;
}

.mvp-order-lines dd {
    margin: 0;
    text-align: right;
    font-weight: 800;
}

.mvp-order-lines .is-discount dd {
    color: var(--mvp-green);
}

.mvp-order-total {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 20px 0;
}

.mvp-order-total span {
    font-weight: 750;
}

.mvp-order-total strong {
    font-size: 1.75rem;
}

.mvp-checkout-assurance {
    display: grid;
    gap: 9px;
    padding: 18px;
    border-radius: 7px;
    background: var(--mvp-green-soft);
}

.mvp-checkout-assurance span {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #315d4d;
    font-size: 0.72rem;
    font-weight: 700;
}

.mvp-checkout-summary > p {
    margin: 16px 0 0;
    color: #7b8798;
    font-size: 0.66rem;
    line-height: 1.55;
}

.mvp-access-page {
    min-height: 100vh;
    padding: 72px 0 90px;
    background: var(--mvp-surface-soft);
}

.mvp-access-heading {
    max-width: 790px;
    margin-bottom: 36px;
}

.mvp-access-heading h1 {
    margin: 0 0 14px;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.06;
}

.mvp-access-heading p {
    max-width: 700px;
    margin: 0;
    color: var(--mvp-ink-soft);
    line-height: 1.7;
}

.mvp-access-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.mvp-access-form,
.mvp-access-aside {
    padding: 32px;
    border: 1px solid var(--mvp-border);
    border-radius: 8px;
    background: #fff;
}

.mvp-access-form {
    display: grid;
    gap: 22px;
}

.mvp-access-status {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 16px;
    border: 1px solid #f0d59f;
    border-radius: 7px;
    color: #75541a;
    background: #fff8e7;
}

.mvp-access-status.is-ready {
    border-color: #b8dfcf;
    color: #216146;
    background: var(--mvp-green-soft);
}

.mvp-access-status i {
    font-size: 1.4rem;
}

.mvp-access-status strong,
.mvp-access-status span {
    display: block;
}

.mvp-access-status strong {
    font-size: 0.86rem;
}

.mvp-access-status span {
    margin-top: 2px;
    font-size: 0.72rem;
}

.mvp-access-aside {
    border-top: 4px solid var(--mvp-coral);
}

.mvp-access-aside h2 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    font-weight: 800;
}

.mvp-access-aside > p {
    margin: 0;
    color: #718095;
    font-size: 0.76rem;
}

.mvp-access-aside ul {
    display: grid;
    gap: 16px;
    margin: 26px 0;
    padding: 22px 0;
    border-top: 1px solid #e4eaf0;
    border-bottom: 1px solid #e4eaf0;
    list-style: none;
}

.mvp-access-aside li {
    display: flex;
    gap: 11px;
    color: #69778b;
    font-size: 0.72rem;
}

.mvp-access-aside li > i {
    color: var(--mvp-blue);
    font-size: 1rem;
}

.mvp-access-aside li strong,
.mvp-access-aside li span {
    display: block;
}

.mvp-access-aside li strong {
    margin-bottom: 2px;
    color: #34465b;
    font-size: 0.76rem;
}

.mvp-destination-route-prices span {
    color: #718095;
    font-size: 0.68rem;
}

.mvp-destination-route-prices strong {
    margin-top: 3px;
    color: var(--mvp-ink);
    font-size: 0.86rem;
}

@media (max-width: 991.98px) {
    .mvp-navbar .navbar-collapse {
        margin-top: 12px;
        padding: 12px 0 18px;
        border-top: 1px solid var(--mvp-border);
    }

    .mvp-home-hero {
        min-height: 760px;
        background-position: 62% center;
    }

    .mvp-home-hero::before {
        position: absolute;
        inset: 0;
        background: rgba(249, 252, 253, 0.9);
        content: '';
    }

    .mvp-home-hero-inner {
        min-height: 760px;
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .mvp-hero-copy {
        width: 100%;
    }

    .mvp-route-finder-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mvp-route-finder .btn {
        width: 100%;
    }

    .mvp-trust-row {
        grid-template-columns: 1fr 1fr;
    }

    .mvp-trust-item:nth-child(2) {
        border-right: 0;
    }

    .mvp-trust-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--mvp-border);
    }

    .mvp-route-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mvp-directory-filter {
        grid-template-columns: 1fr 1fr;
    }

    .mvp-directory-filter .btn {
        width: 100%;
    }

    .mvp-directory-route {
        grid-template-columns: minmax(250px, 1fr) minmax(220px, 0.8fr);
    }

    .mvp-directory-route > .btn {
        grid-column: 1 / -1;
    }

    .mvp-editorial-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .mvp-route-hero-grid,
    .mvp-route-content-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .mvp-route-hero h1 {
        font-size: 3rem;
    }

    .mvp-route-summary {
        max-width: 560px;
    }

    .mvp-route-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mvp-route-trust-grid > div:nth-child(2) {
        border-right: 0;
    }

    .mvp-route-trust-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--mvp-border);
    }

    .mvp-route-help-panel {
        position: static;
    }

    .mvp-destination-hero-grid {
        grid-template-columns: 1fr 240px;
        gap: 42px;
    }

    .mvp-destination-hero h1 {
        font-size: 3rem;
    }

    .mvp-destination-route-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mvp-destination-facts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mvp-destination-facts-grid > div:nth-child(2) {
        border-right: 0;
    }

    .mvp-destination-facts-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--mvp-border);
    }

    .mvp-checkout-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 22px;
    }

    .mvp-service-switch {
        grid-template-columns: 1fr;
    }

    .mvp-access-layout {
        grid-template-columns: minmax(0, 1fr) 310px;
    }
}

@media (max-width: 767.98px) {
    .mvp-navbar {
        min-height: 64px;
    }

    .mvp-home-hero,
    .mvp-home-hero-inner {
        min-height: 0;
    }

    .mvp-home-hero {
        background-image: url('/assets/img/hero/visa-finder-hero-v2.png');
        background-position: 67% center;
        background-size: auto 100%;
        background-color: #f3f8fc;
    }

    .mvp-home-hero::before {
        display: block;
        background: rgba(243, 248, 252, 0.86);
    }

    .mvp-home-hero-inner {
        align-items: flex-start;
        padding-top: 34px;
        padding-bottom: 30px;
    }

    .mvp-hero-copy {
        display: block;
    }

    .mvp-home-hero .mvp-eyebrow { margin-bottom: 12px; }

    .mvp-home-hero h1 {
        font-size: 2.05rem;
        line-height: 1.04;
        margin-bottom: 12px;
    }

    .mvp-home-hero .mvp-hero-lead {
        font-size: .94rem;
        line-height: 1.48;
        margin-bottom: 16px;
    }

    .mvp-hero-points {
        display: none;
    }

    .mvp-route-finder {
        padding: 12px;
    }

    .mvp-route-finder-grid {
        gap: 9px;
        grid-template-columns: 1fr;
    }

    .mvp-route-finder-step.is-waiting,
    .mvp-route-finder-submit.is-waiting { display: none; }
    .mvp-route-finder .mvp-field-label { font-size: .69rem; margin-bottom: 4px; }
    .mvp-route-finder .form-select { font-size: .86rem; min-height: 46px; padding-bottom: .5rem; padding-top: .5rem; }
    .mvp-route-finder .btn { font-size: .88rem; min-height: 46px; min-width: 0; }
    .mvp-geo-context { font-size: .7rem; line-height: 1.35; margin-top: 8px; }
    .mvp-hero-note { font-size: .66rem; line-height: 1.45; margin-top: 10px; }

    .mvp-trust-row,
    .mvp-route-grid,
    .mvp-service-grid,
    .mvp-steps {
        grid-template-columns: 1fr;
    }

    .mvp-service-grid-single .mvp-service-panel {
        display: block;
    }

    .mvp-trust-item,
    .mvp-trust-item:nth-child(2) {
        min-height: 70px;
        border-right: 0;
        border-bottom: 1px solid var(--mvp-border);
    }

    .mvp-trust-item:last-child {
        border-bottom: 0;
    }

    .mvp-section {
        padding: 58px 0;
    }

    .mvp-section-head {
        display: block;
    }

    .mvp-section-head h2,
    .mvp-final-cta h2 {
        font-size: 1.9rem;
    }

    .mvp-section-head .btn {
        width: 100%;
        margin-top: 20px;
    }

    .mvp-service-panel {
        padding: 26px 22px;
    }

    .mvp-step {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--mvp-border);
    }

    .mvp-step:last-child {
        border-bottom: 0;
    }

    .mvp-final-cta-inner {
        min-height: 280px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .mvp-final-cta .btn {
        width: 100%;
    }

    .mvp-footer-bottom {
        flex-direction: column;
    }

    .mvp-page-hero-inner {
        display: block;
        min-height: 390px;
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .mvp-page-hero h1 {
        font-size: 2.35rem;
    }

    .mvp-page-hero-stat {
        display: flex;
        min-height: auto;
        gap: 12px;
        align-items: center;
        margin-top: 34px;
        padding: 22px 0 0;
        border-top: 1px solid #b9cae4;
        border-left: 0;
    }

    .mvp-page-hero-stat strong {
        font-size: 2.25rem;
    }

    .mvp-page-hero-stat span {
        max-width: 220px;
        margin-top: 0;
    }

    .mvp-directory-band {
        position: static;
    }

    .mvp-directory-filter,
    .mvp-directory-route,
    .mvp-directory-prices,
    .mvp-editorial-columns {
        grid-template-columns: 1fr;
    }

    .mvp-directory-filter .btn span {
        display: inline;
    }

    .mvp-directory-route {
        gap: 16px;
        padding: 22px 0;
    }

    .mvp-directory-prices {
        grid-template-columns: 1fr 1fr;
        padding-left: 74px;
    }

    .mvp-directory-route > .btn {
        grid-column: auto;
        width: 100%;
    }

    .mvp-route-hero {
        padding-bottom: 52px;
    }

    .mvp-route-hero h1 {
        font-size: 2.35rem;
    }

    .mvp-route-hero-copy > p {
        font-size: 1rem;
    }

    .mvp-route-hero-points {
        display: grid;
    }

    .mvp-route-summary {
        padding: 24px 20px;
    }

    .mvp-route-trust-grid,
    .mvp-product-grid,
    .mvp-prep-list {
        grid-template-columns: 1fr;
    }

    .mvp-route-trust-grid > div,
    .mvp-route-trust-grid > div:nth-child(2) {
        min-height: 78px;
        border-right: 0;
        border-bottom: 1px solid var(--mvp-border);
    }

    .mvp-route-trust-grid > div:last-child {
        border-bottom: 0;
    }

    .mvp-product-card {
        min-height: 0;
        padding: 26px 22px;
    }

    .mvp-product-summary {
        min-height: 0;
    }

    .mvp-product-card > .btn {
        margin-top: 8px;
    }

    .mvp-destination-hero {
        padding-bottom: 52px;
    }

    .mvp-destination-hero-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .mvp-destination-hero h1 {
        font-size: 2.35rem;
    }

    .mvp-destination-flag-panel {
        display: flex;
        min-height: auto;
        flex-wrap: wrap;
        gap: 10px 16px;
        justify-content: flex-start;
        padding: 24px 0 0;
        border-top: 1px solid #b9cae4;
        border-left: 0;
        text-align: left;
    }

    .mvp-destination-flag-panel img {
        width: 72px;
        height: 50px;
        margin: 0;
    }

    .mvp-destination-flag-panel span {
        flex-basis: 100%;
        margin: 0;
    }

    .mvp-destination-route-grid {
        grid-template-columns: 1fr;
    }

    .mvp-destination-facts-head {
        display: block;
    }

    .mvp-destination-facts-head > p {
        margin-top: 12px;
    }

    .mvp-destination-facts-grid {
        grid-template-columns: 1fr;
    }

    .mvp-destination-facts-grid > div,
    .mvp-destination-facts-grid > div:nth-child(2) {
        min-height: 78px;
        border-right: 0;
        border-bottom: 1px solid var(--mvp-border);
    }

    .mvp-destination-facts-grid > div:last-child {
        border-bottom: 0;
    }

    .mvp-researched-heading h2 {
        font-size: 1.9rem;
    }

    .mvp-researched-content h2 {
        font-size: 1.45rem;
    }

    .mvp-checkout-page {
        padding-top: 30px;
    }

    .mvp-checkout-progress {
        margin-bottom: 34px;
    }

    .mvp-checkout-progress span {
        font-size: 0;
    }

    .mvp-checkout-progress span b {
        font-size: 0.72rem;
    }

    .mvp-checkout-heading h1 {
        font-size: 2.15rem;
    }

    .mvp-checkout-layout,
    .mvp-form-grid {
        grid-template-columns: 1fr;
    }

    .mvp-checkout-summary {
        position: static;
    }

    .mvp-form-section {
        padding: 24px 19px;
    }

    .mvp-form-field.is-wide,
    .mvp-check-field.is-wide {
        grid-column: auto;
    }

    .mvp-weekday-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .mvp-access-page {
        padding: 50px 0 70px;
    }

    .mvp-access-heading h1 {
        font-size: 2.2rem;
    }

    .mvp-access-layout {
        grid-template-columns: 1fr;
    }

    .mvp-access-form,
    .mvp-access-aside {
        padding: 24px 20px;
    }
}

.mvp-success-page {
    background: #f3f7fb;
    min-height: 72vh;
    padding: 54px 0 76px;
}

.mvp-success-heading {
    align-items: center;
    display: flex;
    gap: 18px;
    margin: 0 auto 30px;
    max-width: 1040px;
}

.mvp-success-heading h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin: 5px 0 7px;
}

.mvp-success-heading p {
    color: #52677c;
    font-size: 1.05rem;
    margin: 0;
}

.mvp-success-icon {
    align-items: center;
    background: #fff5e8;
    border: 1px solid #f2c078;
    border-radius: 50%;
    color: #9a5a00;
    display: inline-flex;
    flex: 0 0 66px;
    font-size: 1.9rem;
    height: 66px;
    justify-content: center;
    width: 66px;
}

.mvp-success-icon.is-paid {
    background: #eaf8f1;
    border-color: #8ad1ad;
    color: #16794d;
}

.mvp-success-layout {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) 310px;
    margin: 0 auto;
    max-width: 1040px;
}

.mvp-success-main,
.mvp-success-summary {
    background: #fff;
    border: 1px solid #d9e2ec;
    border-radius: 8px;
}

.mvp-success-main { padding: 30px; }
.mvp-success-steps { display: grid; gap: 0; }

.mvp-success-steps > div {
    align-items: flex-start;
    border-bottom: 1px solid #e5ebf1;
    display: flex;
    gap: 13px;
    padding: 16px 0;
}

.mvp-success-steps > div:first-child { padding-top: 0; }
.mvp-success-steps > div:last-child { border-bottom: 0; }
.mvp-success-steps i { color: #7890a6; font-size: 1.25rem; margin-top: 1px; }
.mvp-success-steps .is-complete i { color: #1f9d68; }
.mvp-success-steps .is-current i { color: #175cd3; }
.mvp-success-steps strong,
.mvp-success-steps small { display: block; }
.mvp-success-steps small { color: #657b90; margin-top: 3px; }

.mvp-success-action,
.mvp-account-setup {
    border-top: 1px solid #d9e2ec;
    margin-top: 20px;
    padding-top: 26px;
}

.mvp-success-action h2,
.mvp-account-setup h2 { font-size: 1.45rem; margin: 4px 0 8px; }
.mvp-success-action p,
.mvp-account-setup p { color: #52677c; }
.mvp-account-setup form { margin-top: 20px; }

.mvp-success-message {
    align-items: center;
    background: #eaf8f1;
    border: 1px solid #8ad1ad;
    border-radius: 6px;
    color: #12633f;
    display: flex;
    gap: 8px;
    margin-top: 22px;
    padding: 13px 15px;
}

.mvp-success-buttons {
    border-top: 1px solid #d9e2ec;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
    padding-top: 22px;
}

.mvp-success-summary {
    align-self: start;
    padding: 24px;
    position: sticky;
    top: 92px;
}

.mvp-success-flag {
    border: 1px solid #d9e2ec;
    height: 34px;
    margin-bottom: 16px;
    object-fit: cover;
    width: 48px;
}

.mvp-success-summary > span {
    color: #175cd3;
    display: block;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mvp-success-summary h2 { font-size: 1.35rem; margin: 6px 0 20px; }
.mvp-success-summary dl { margin: 0; }
.mvp-success-summary dl div { border-top: 1px solid #e5ebf1; display: flex; justify-content: space-between; padding: 11px 0; }
.mvp-success-summary dt { color: #657b90; font-weight: 500; }
.mvp-success-summary dd { font-weight: 700; margin: 0; text-align: right; }
.mvp-success-summary p { align-items: flex-start; color: #52677c; display: flex; font-size: .86rem; gap: 8px; margin: 18px 0 0; }
.mvp-success-summary p i { color: #1f9d68; }

@media (max-width: 860px) {
    .mvp-success-page { padding: 36px 0 58px; }
    .mvp-success-layout { grid-template-columns: 1fr; }
    .mvp-success-summary { grid-row: 1; position: static; }
}

@media (max-width: 560px) {
    .mvp-success-heading { align-items: flex-start; }
    .mvp-success-icon { flex-basis: 52px; font-size: 1.45rem; height: 52px; width: 52px; }
    .mvp-success-main,
    .mvp-success-summary { padding: 20px; }
    .mvp-success-buttons .btn { width: 100%; }
}

.mvp-dashboard-hero {
    background: #102a43;
    color: #fff;
    padding: 44px 0;
}

.mvp-dashboard-hero > .container {
    align-items: end;
    display: flex;
    gap: 28px;
    justify-content: space-between;
}

.mvp-dashboard-hero h1 { color: #fff; font-size: 2.5rem; margin: 5px 0 8px; }
.mvp-dashboard-hero p { color: #bcccdc; margin: 0; }
.mvp-dashboard-hero .mvp-eyebrow { color: #8fc2ff; }

.mvp-dashboard-stats { display: flex; gap: 10px; }
.mvp-dashboard-stats div { border-left: 2px solid #31b77b; min-width: 90px; padding-left: 13px; }
.mvp-dashboard-stats strong,
.mvp-dashboard-stats span { display: block; }
.mvp-dashboard-stats strong { font-size: 1.85rem; }
.mvp-dashboard-stats span { color: #bcccdc; font-size: .82rem; }

.mvp-dashboard-page { background: #f3f7fb; min-height: 58vh; padding: 40px 0 72px; }
.mvp-dashboard-toolbar { align-items: center; display: flex; gap: 20px; justify-content: space-between; margin-bottom: 22px; }
.mvp-dashboard-toolbar h2 { font-size: 1.4rem; margin: 0; }
.mvp-dashboard-toolbar > div { display: flex; gap: 8px; }
.mvp-dashboard-layout { display: grid; gap: 22px; grid-template-columns: minmax(0, 1fr) 300px; }
.mvp-order-list { display: grid; gap: 16px; }

.mvp-order-card {
    background: #fff;
    border: 1px solid #d9e2ec;
    border-radius: 8px;
    padding: 24px;
}

.mvp-order-card > header { align-items: flex-start; display: flex; gap: 20px; justify-content: space-between; }
.mvp-order-title { align-items: flex-start; display: flex; gap: 13px; }
.mvp-order-title img { border: 1px solid #d9e2ec; height: 30px; object-fit: cover; width: 43px; }
.mvp-order-title span { color: #175cd3; font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.mvp-order-title h3 { font-size: 1.3rem; margin: 3px 0; }
.mvp-order-title p,
.mvp-order-price span { color: #657b90; font-size: .86rem; margin: 0; }
.mvp-order-price { text-align: right; }
.mvp-order-price strong,
.mvp-order-price span { display: block; }
.mvp-order-price strong { font-size: 1.15rem; }

.mvp-order-status { align-items: center; background: #f4f7fb; border-left: 4px solid #7890a6; display: flex; gap: 14px; margin: 20px 0; padding: 12px 14px; }
.mvp-order-status span { flex: 0 0 auto; font-weight: 800; }
.mvp-order-status p { color: #52677c; font-size: .88rem; margin: 0; }
.mvp-order-status.is-success { background: #ecfdf3; border-color: #1f9d68; }
.mvp-order-status.is-primary,
.mvp-order-status.is-info { background: #eef5ff; border-color: #175cd3; }
.mvp-order-status.is-warning { background: #fff8e8; border-color: #e99b25; }
.mvp-order-status.is-danger { background: #fff1f1; border-color: #c54141; }

.mvp-order-action { align-items: center; background: #eef5ff; border: 1px solid #bfd4f2; border-radius: 6px; display: grid; gap: 12px; grid-template-columns: auto minmax(0, 1fr) auto; margin-bottom: 20px; padding: 14px; }
.mvp-order-action.is-ready { background: #ecfdf3; border-color: #a5dcc3; }
.mvp-order-action > i { color: #175cd3; font-size: 1.35rem; }
.mvp-order-action.is-ready > i { color: #1f9d68; }
.mvp-order-action p { color: #52677c; font-size: .84rem; margin: 2px 0 0; }

.mvp-order-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; }
.mvp-order-details div { border-top: 1px solid #e5ebf1; padding: 12px 10px 12px 0; }
.mvp-order-details dt { color: #657b90; font-size: .78rem; font-weight: 600; }
.mvp-order-details dd { font-weight: 700; margin: 3px 0 0; }
.mvp-order-card > footer { border-top: 1px solid #e5ebf1; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; padding-top: 18px; }

.mvp-dashboard-aside { display: grid; gap: 14px; align-self: start; }
.mvp-dashboard-aside section { background: #fff; border: 1px solid #d9e2ec; border-radius: 8px; padding: 20px; }
.mvp-dashboard-aside section > i { color: #175cd3; font-size: 1.35rem; }
.mvp-dashboard-aside h2 { font-size: 1.05rem; margin: 9px 0 6px; }
.mvp-dashboard-aside p { color: #52677c; font-size: .88rem; margin-bottom: 8px; }
.mvp-dashboard-aside a { font-size: .88rem; font-weight: 700; }

@media (max-width: 900px) {
    .mvp-dashboard-layout { grid-template-columns: 1fr; }
    .mvp-dashboard-aside { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
    .mvp-dashboard-hero > .container { align-items: flex-start; flex-direction: column; }
    .mvp-dashboard-hero h1 { font-size: 2rem; }
    .mvp-dashboard-toolbar { align-items: stretch; flex-direction: column; }
    .mvp-dashboard-toolbar > div { display: grid; grid-template-columns: 1fr 1fr; }
    .mvp-order-card { padding: 19px; }
    .mvp-order-card > header { flex-direction: column; }
    .mvp-order-price { text-align: left; }
    .mvp-order-action { grid-template-columns: auto minmax(0, 1fr); }
    .mvp-order-action .btn { grid-column: 1 / -1; }
    .mvp-order-details { grid-template-columns: 1fr; }
    .mvp-order-card > footer .btn { width: 100%; }
    .mvp-dashboard-aside { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Researched location directory and local visa appointment guides */
.mvp-location-index-hero {
    background: #102a43;
    color: #fff;
    padding: 72px 0 64px;
}

.mvp-location-index-hero .mvp-eyebrow,
.mvp-local-hero .mvp-eyebrow {
    color: #8fc2ff;
}

.mvp-location-index-hero h1 {
    color: #fff;
    font-size: 3.25rem;
    font-weight: 800;
    margin: 0 0 16px;
    max-width: 760px;
}

.mvp-location-index-hero > .container > p {
    color: #d4e2ee;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 720px;
}

.mvp-location-search {
    align-items: center;
    background: #fff;
    border: 1px solid #cad9e8;
    border-radius: 7px;
    display: flex;
    gap: 10px;
    margin-top: 28px;
    max-width: 560px;
    padding: 0 16px;
}

.mvp-location-search i { color: #52677c; font-size: 1.15rem; }
.mvp-location-search input { border: 0; color: #17243a; min-height: 54px; outline: 0; width: 100%; }
.mvp-location-directory { background: #f4f7fa; }
.mvp-location-market { margin-bottom: 46px; }

.mvp-location-market > header {
    align-items: center;
    border-bottom: 1px solid #d9e2ec;
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 15px;
}

.mvp-location-market > header img {
    border: 1px solid #cad5df;
    height: 34px;
    object-fit: cover;
    width: 48px;
}

.mvp-location-market h2 { font-size: 1.45rem; margin: 0; }
.mvp-location-market header p { color: #657b90; font-size: .84rem; margin: 2px 0 0; }
.mvp-location-letter-nav { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 24px; }
.mvp-location-letter-nav a {
    align-items: center;
    background: #fff;
    border: 1px solid #cad7e3;
    border-radius: 5px;
    color: #26445f;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 700;
    height: 34px;
    justify-content: center;
    min-width: 34px;
    text-decoration: none;
}
.mvp-location-letter-nav a:hover { border-color: #79a7e6; color: #124ca1; }
.mvp-location-letter-group { margin-bottom: 28px; scroll-margin-top: 96px; }
.mvp-location-letter-group h3 {
    color: #47627a;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.mvp-location-link-grid { display: grid; gap: 10px; grid-template-columns: repeat(4, minmax(0, 1fr)); }

.mvp-location-link-grid a {
    align-items: center;
    background: #fff;
    border: 1px solid #d9e2ec;
    border-radius: 6px;
    color: #17243a;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    min-height: 74px;
    padding: 13px 15px;
    text-decoration: none;
}

.mvp-location-link-grid a:hover { border-color: #8db2e8; box-shadow: 0 8px 20px rgba(27, 51, 84, .08); }
.mvp-location-link-grid span,
.mvp-location-link-grid strong,
.mvp-location-link-grid small { display: block; }
.mvp-location-link-grid small { color: #657b90; font-size: .76rem; margin-top: 3px; }
.mvp-location-link-grid i { color: #175cd3; }

.mvp-local-hero {
    background: #102a43;
    color: #fff;
    padding: 42px 0 54px;
}

.mvp-local-hero-grid { align-items: center; display: grid; gap: 56px; grid-template-columns: minmax(0, 1fr) 320px; }
.mvp-breadcrumbs { align-items: center; color: #9fb5c8; display: flex; flex-wrap: wrap; font-size: .78rem; gap: 7px; margin-bottom: 28px; }
.mvp-breadcrumbs a { color: #c8d9e8; text-decoration: none; }
.mvp-breadcrumbs i { font-size: .62rem; }
.mvp-local-hero h1 { color: #fff; font-size: 3.5rem; font-weight: 800; line-height: 1.08; margin: 0 0 18px; max-width: 780px; }
.mvp-local-hero-grid > div > p { color: #d4e2ee; font-size: 1.08rem; line-height: 1.7; max-width: 760px; }
.mvp-local-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.mvp-local-actions .btn-outline-primary { border-color: #7ea9df; color: #fff; }
.mvp-local-actions .btn-outline-primary:hover { background: #fff; color: #0c3f9b; }
.mvp-local-reviewed { align-items: center; display: flex; font-size: .8rem !important; gap: 7px; margin: 19px 0 0; }
.mvp-local-reviewed i { color: #53d6a0; }

.mvp-nearest-summary {
    background: #fff;
    border-left: 5px solid #31b77b;
    border-radius: 6px;
    color: #17243a;
    padding: 26px;
}

.mvp-nearest-summary-icon { color: #175cd3; font-size: 1.5rem; margin-bottom: 16px; }
.mvp-nearest-summary > span { color: #657b90; display: block; font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.mvp-nearest-summary h2 { color: #17243a; font-size: 1.35rem; margin: 5px 0 15px; }
.mvp-nearest-summary > strong { color: #14805e; display: block; font-size: 2.15rem; line-height: 1; }
.mvp-nearest-summary > small { color: #52677c; display: block; margin-top: 6px; }
.mvp-nearest-summary p { border-top: 1px solid #e1e8ef; color: #52677c; font-size: .83rem; margin: 17px 0 0; padding-top: 15px; }

.mvp-local-fact-band { background: #fff; border-bottom: 1px solid #d9e2ec; }
.mvp-local-fact-band > .container { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mvp-local-fact-band .container > div { align-items: center; border-right: 1px solid #e1e8ef; display: flex; gap: 14px; padding: 22px 26px; }
.mvp-local-fact-band .container > div:first-child { border-left: 1px solid #e1e8ef; }
.mvp-local-fact-band i { color: #175cd3; font-size: 1.35rem; }
.mvp-local-fact-band span,
.mvp-local-fact-band strong,
.mvp-local-fact-band small { display: block; }
.mvp-local-fact-band small { color: #657b90; font-size: .78rem; margin-top: 2px; }

.mvp-local-route-grid { display: grid; gap: 13px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mvp-local-route-card { align-items: center; border: 1px solid #d9e2ec; border-radius: 7px; color: #17243a; display: grid; gap: 14px; grid-template-columns: auto minmax(0, 1fr) auto; min-height: 116px; padding: 17px; text-decoration: none; }
.mvp-local-route-card:hover { border-color: #86aae0; box-shadow: 0 10px 24px rgba(27, 51, 84, .08); }
.mvp-local-route-flag img { border: 1px solid #d9e2ec; height: 32px; object-fit: cover; width: 46px; }
.mvp-local-route-copy > span { color: #175cd3; font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.mvp-local-route-copy h3 { font-size: 1.03rem; margin: 3px 0; }
.mvp-local-route-copy p { color: #657b90; font-size: .8rem; margin: 0; }
.mvp-local-route-price { min-width: 88px; text-align: right; }
.mvp-local-route-price span,
.mvp-local-route-price strong { display: block; }
.mvp-local-route-price span { color: #657b90; font-size: .7rem; }
.mvp-local-route-price strong { font-size: 1rem; margin: 2px 0 9px; }
.mvp-local-route-price i { color: #175cd3; }

.mvp-centre-list { border: 1px solid #d9e2ec; border-radius: 7px; overflow: hidden; }
.mvp-centre-row { align-items: start; background: #fff; border-bottom: 1px solid #d9e2ec; display: grid; gap: 18px; grid-template-columns: 38px minmax(0, 1fr) 170px; padding: 24px; }
.mvp-centre-row:last-child { border-bottom: 0; }
.mvp-centre-rank { background: #eaf2ff; border-radius: 50%; color: #175cd3; display: grid; font-weight: 800; height: 34px; place-items: center; width: 34px; }
.mvp-centre-main > span { color: #175cd3; font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.mvp-centre-main h3 { font-size: 1.08rem; margin: 4px 0 6px; }
.mvp-centre-main address { color: #52677c; font-size: .86rem; font-style: normal; margin: 0; }
.mvp-centre-main p { color: #657b90; font-size: .8rem; margin: 9px 0 0; }
.mvp-centre-distance { text-align: right; }
.mvp-centre-distance strong,
.mvp-centre-distance span,
.mvp-centre-distance a { display: block; }
.mvp-centre-distance strong { color: #14805e; font-size: 1.25rem; }
.mvp-centre-distance span { color: #657b90; font-size: .78rem; margin-top: 2px; }
.mvp-centre-distance a { font-size: .76rem; font-weight: 700; margin-top: 14px; }
.mvp-distance-note { align-items: flex-start; color: #657b90; display: flex; font-size: .78rem; gap: 8px; margin: 13px 0 0; }

.mvp-local-guide-grid { align-items: start; display: grid; gap: 56px; grid-template-columns: minmax(0, 1fr) 310px; }
.mvp-location-copy h2 { font-size: 1.8rem; margin: 34px 0 14px; }
.mvp-location-copy h2:first-child { margin-top: 0; }
.mvp-location-copy p { color: #465a70; font-size: 1rem; line-height: 1.78; }
.mvp-location-copy .mvp-location-intro {
    border-left: 4px solid #175cd3;
    color: #243b53;
    font-size: 1.08rem;
    font-weight: 600;
    margin: 0 0 32px;
    padding-left: 18px;
}
.mvp-location-copy .mvp-location-intro + h2 { margin-top: 0; }
.mvp-local-guide aside { background: #eef5ff; border: 1px solid #bfd4f2; border-radius: 7px; padding: 22px; position: sticky; top: 92px; }
.mvp-local-aside-heading { align-items: flex-start; display: flex; gap: 12px; margin-bottom: 18px; }
.mvp-local-aside-heading i { color: #175cd3; font-size: 1.35rem; }
.mvp-local-aside-heading span,
.mvp-local-aside-heading strong,
.mvp-local-aside-heading small { display: block; }
.mvp-local-aside-heading small { color: #52677c; line-height: 1.5; margin-top: 5px; }
.mvp-local-guide aside > p { color: #52677c; font-size: .78rem; margin: 11px 0 0; text-align: center; }
.mvp-day-tip-grid { display: grid; gap: 14px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mvp-day-tip-grid article { background: #fff; border-top: 4px solid #175cd3; padding: 22px; }
.mvp-day-tip-grid article > span { color: #e76042; font-size: .76rem; font-weight: 800; }
.mvp-day-tip-grid h3 { font-size: 1.04rem; margin: 9px 0 8px; }
.mvp-day-tip-grid p { color: #52677c; font-size: .84rem; line-height: 1.6; margin: 0; }

.mvp-local-sources { border-top: 1px solid #e1e8ef; padding: 24px 0; }
.mvp-local-sources details { font-size: .82rem; }
.mvp-local-sources summary { color: #52677c; cursor: pointer; font-weight: 700; }
.mvp-local-sources details > div { color: #657b90; margin-top: 14px; max-width: 900px; }
.mvp-local-sources li { margin-bottom: 6px; }
.mvp-local-sources li span { color: #7890a6; margin-left: 6px; }

.mvp-notification-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mvp-notification-option {
    cursor: pointer;
    margin: 0;
    min-width: 0;
    position: relative;
}
.mvp-notification-option > input {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}
.mvp-notification-option > span {
    background: #fff;
    border: 1px solid #cdd8e4;
    border-radius: 7px;
    display: grid;
    gap: 6px;
    grid-template-rows: auto auto 1fr;
    min-height: 138px;
    padding: 18px;
    position: relative;
    transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.mvp-notification-option > span > i {
    color: #175cd3;
    font-size: 1.35rem;
}
.mvp-notification-option strong {
    color: #142b43;
    font-size: .95rem;
}
.mvp-notification-option small {
    color: #657b90;
    line-height: 1.45;
}
.mvp-notification-option b {
    align-items: center;
    background: #175cd3;
    border-radius: 50%;
    color: #fff;
    display: none;
    height: 22px;
    justify-content: center;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 22px;
}
.mvp-notification-option > input:checked + span {
    background: #f5f9ff;
    border: 2px solid #175cd3;
    box-shadow: 0 4px 14px rgba(23, 92, 211, .08);
    padding: 17px;
}
.mvp-notification-option > input:checked + span b { display: flex; }
.mvp-notification-option > input:focus-visible + span {
    box-shadow: 0 0 0 3px rgba(23, 92, 211, .2);
    outline: 0;
}

/* Phone field: country code select + national number */
.mvp-phone-group {
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 8.5rem) minmax(0, 1fr);
}
.mvp-phone-group .mvp-phone-country { min-width: 0; }
.mvp-phone-hint {
    color: #657b90;
    display: block;
    font-size: .78rem;
    margin-top: 5px;
}
.mvp-phone-hint span { font-weight: 600; }
@media (max-width: 560px) {
    .mvp-phone-group { grid-template-columns: minmax(0, 1fr); }
}

/* Channel offered but temporarily switched off */
.mvp-notification-option.is-unavailable { cursor: not-allowed; }
.mvp-notification-option.is-unavailable > span {
    background: #f7f9fc;
    border-color: #dde5ee;
    border-style: dashed;
}
.mvp-notification-option.is-unavailable > span > i,
.mvp-notification-option.is-unavailable strong { color: #8a9bad; }
.mvp-notification-option.is-unavailable small { color: #93a4b6; }
.mvp-notification-flag {
    background: #eef2f7;
    border-radius: 999px;
    color: #5a6b7d;
    font-size: .68rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .01em;
    line-height: 1;
    padding: 5px 9px;
    position: absolute;
    right: 12px;
    top: 12px;
    white-space: nowrap;
}

@media (max-width: 980px) {
    .mvp-location-link-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .mvp-local-hero-grid { gap: 30px; grid-template-columns: minmax(0, 1fr) 280px; }
    .mvp-local-hero h1 { font-size: 2.8rem; }
    .mvp-local-route-grid { grid-template-columns: 1fr; }
    .mvp-day-tip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .mvp-notification-grid { grid-template-columns: 1fr; }
    .mvp-notification-option > span {
        grid-template-columns: 28px minmax(0, 1fr);
        grid-template-rows: auto auto;
        min-height: 90px;
    }
    .mvp-notification-option > span > i { grid-row: 1 / 3; }

    .mvp-location-index-hero { padding: 52px 0 46px; }
    .mvp-location-index-hero h1 { font-size: 2.45rem; }
    .mvp-location-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mvp-local-hero { padding: 22px 0 30px; }
    .mvp-local-hero-grid { gap: 22px; grid-template-columns: 1fr; }
    .mvp-breadcrumbs { margin-bottom: 18px; }
    .mvp-local-hero h1 { font-size: 2.2rem; margin-bottom: 14px; }
    .mvp-local-hero-grid > div > p { font-size: .98rem; line-height: 1.58; }
    .mvp-local-actions { margin-top: 18px; }
    .mvp-local-actions .btn { padding-bottom: .72rem; padding-top: .72rem; }
    .mvp-local-reviewed { margin-top: 14px; }
    .mvp-nearest-summary {
        column-gap: 14px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        max-width: none;
        padding: 18px;
    }
    .mvp-nearest-summary-icon { display: none; }
    .mvp-nearest-summary > span { grid-column: 1; grid-row: 1; }
    .mvp-nearest-summary h2 { grid-column: 1; grid-row: 2; margin: 3px 0 0; }
    .mvp-nearest-summary > strong { align-self: center; font-size: 1.55rem; grid-column: 2; grid-row: 1 / 3; text-align: right; }
    .mvp-nearest-summary > small { grid-column: 1 / -1; margin-top: 8px; text-align: right; }
    .mvp-nearest-summary p { grid-column: 1 / -1; margin-top: 11px; padding-top: 11px; }
    .mvp-local-fact-band > .container { grid-template-columns: 1fr; padding: 0; }
    .mvp-local-fact-band .container > div,
    .mvp-local-fact-band .container > div:first-child { border-bottom: 1px solid #e1e8ef; border-left: 0; border-right: 0; padding: 16px 20px; }
    .mvp-local-guide-grid { gap: 28px; grid-template-columns: 1fr; }
    .mvp-local-guide aside { grid-row: 1; position: static; }
    .mvp-centre-row { grid-template-columns: 34px minmax(0, 1fr); padding: 19px 16px; }
    .mvp-centre-distance { grid-column: 2; text-align: left; }
    .mvp-centre-distance a { margin-top: 8px; }
}

@media (max-width: 520px) {
    .mvp-location-index-hero h1 { font-size: 2.05rem; }
    .mvp-local-hero h1 { font-size: 1.9rem; }
    .mvp-location-link-grid { grid-template-columns: 1fr; }
    .mvp-local-actions { display: grid; }
    .mvp-local-actions .btn { width: 100%; }
    .mvp-local-route-card { align-items: start; grid-template-columns: auto minmax(0, 1fr); }
    .mvp-local-route-price { grid-column: 2; text-align: left; }
    .mvp-local-route-price i { display: none; }
    .mvp-day-tip-grid { grid-template-columns: 1fr; }
}

@media (max-width: 339.98px) {
    .mvp-local-hero .mvp-eyebrow { font-size: .68rem; }
    .mvp-local-hero h1 { font-size: 1.65rem; }
    .mvp-local-actions .btn { font-size: .9rem; padding: .62rem .75rem; }
    .mvp-nearest-summary > strong { font-size: 1.4rem; }
}
