:root {
    --blue: #064cff;
    --blue-dark: #071864;
    --blue-ink: #06164a;
    --red: #ff1826;
    --black: #071864;
    --white: #ffffff;
    --soft: #f2f4f8;
    --line: #d9dee8;
    --muted: #6d7484;
    --radius: 8px;
    --shadow: 0 12px 32px rgba(6, 22, 74, .10);
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--blue-ink);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.container {
    width: min(1850px, calc(100% - 54px));
    margin-inline: auto;
}

.narrow {
    width: min(900px, calc(100% - 54px));
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 10;
    padding: 10px 14px;
    background: var(--blue);
    color: var(--white);
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--white);
    border-top: 5px solid #3d3d3d;
    box-shadow: 0 1px 0 rgba(6, 22, 74, .05);
    transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}

.header-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 28px;
}

.brand img {
    width: 160px;
    transition: transform .25s var(--ease);
}

.brand {
    order: 1;
}

.brand:hover img {
    transform: translateY(-1px);
}

.main-nav {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.main-nav a,
.login-link {
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
}

.main-nav a {
    position: relative;
    color: var(--blue);
    transition: color .22s var(--ease);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 3px;
    border-radius: 99px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s var(--ease);
}

.main-nav a.is-active,
.main-nav a:hover {
    color: var(--red);
}

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

.login-link {
    order: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 30px;
    border-radius: var(--radius);
    background: var(--red);
    color: var(--white);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}

.login-link:hover {
    transform: translateY(-2px);
    background: #e90012;
    box-shadow: 0 12px 26px rgba(255, 24, 38, .24);
}

.menu-toggle {
    order: 4;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: transform .22s var(--ease);
}

.menu-toggle:hover {
    transform: translateY(-1px);
}

.menu-toggle span {
    display: block;
    width: 31px;
    height: 4px;
    border-radius: 99px;
    background: var(--blue);
    transition: transform .22s var(--ease), opacity .22s var(--ease);
}

.hero,
.page-hero,
.section {
    padding: 76px 0;
}

.brand-hero {
    position: relative;
    min-height: calc(100svh - 84px);
    display: grid;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
    background: var(--blue-dark);
}

.brand-hero::before {
    content: "";
    position: absolute;
    inset: -28px;
    z-index: -2;
    background: url('../img/hero-bg-clean.png') center / cover no-repeat;
    transform: scale(1.04);
    animation: heroDrift 16s var(--ease) infinite alternate;
}

.brand-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 24, 100, .94) 0%, rgba(7, 24, 100, .82) 44%, rgba(6, 76, 255, .30) 100%),
        linear-gradient(180deg, rgba(6, 76, 255, .18), rgba(7, 24, 100, .16) 42%, rgba(7, 24, 100, .40));
}

.brand-hero .hero-copy {
    animation: heroCopyIn .85s var(--ease) both;
}

.brand-dark {
    position: relative;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(7, 24, 100, .92), rgba(6, 76, 255, .34)),
        url('../img/hero-bg-clean.png') center / cover no-repeat,
        var(--blue-dark);
    overflow: hidden;
}

.brand-dark::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--red));
}

.brand-dark > .container {
    position: relative;
    z-index: 1;
}

.rounded-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.routes-hero {
    min-height: 390px;
    display: grid;
    align-items: center;
}

.hero-grid,
.split,
.contact-grid,
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-copy {
    max-width: 840px;
}

.hero-mark {
    width: 250px;
    margin-bottom: 48px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero h1,
.page-hero h1 {
    margin-bottom: 22px;
    font-size: 72px;
    line-height: .98;
    font-weight: 900;
    text-transform: uppercase;
}

.page-hero h1 {
    font-size: 56px;
}

.section-heading {
    margin-bottom: 26px;
}

.section-heading h2,
.split h2,
.how-grid h2,
.cta h2 {
    color: var(--blue-ink);
    font-size: 32px;
    line-height: 1.14;
}

.brand-blue h2,
.brand-blue p,
.brand-blue .eyebrow,
.brand-dark h1,
.brand-dark .lead {
    color: var(--white);
}

.lead {
    max-width: 760px;
    color: #e6ecff;
    font-size: 22px;
}

.page-hero:not(.brand-dark) .lead {
    color: var(--muted);
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.eyebrow.red {
    color: var(--red);
}

.eyebrow.light {
    color: var(--white);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(6, 22, 74, .16);
}

.button.primary,
.button.secondary {
    color: var(--white);
    background: var(--blue);
}

.button.primary {
    background: var(--red);
}

.button.primary:hover {
    background: #e90012;
    box-shadow: 0 12px 28px rgba(255, 24, 38, .26);
}

.button.ghost-dark {
    color: var(--white);
    border-color: rgba(255, 255, 255, .38);
}

.button.ghost-dark:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .08);
}

.button.ghost {
    color: var(--blue);
    border-color: var(--line);
    background: var(--white);
}

.button.light {
    color: var(--blue);
    background: var(--white);
}

.muted {
    background: var(--soft);
}

.brand-blue {
    color: var(--white);
    background: var(--blue);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.service-card,
.process-card,
.route-card,
.mini-grid article,
.contact-panel,
.contact-form,
.timeline article,
.news-empty {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.service-card {
    min-height: 320px;
    padding: 26px;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.service-card:hover,
.process-card:hover,
.route-card:hover,
.mini-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 76, 255, .35);
    box-shadow: 0 24px 48px rgba(6, 22, 74, .16);
}

.service-card img {
    width: 132px;
    height: 132px;
    object-fit: contain;
    margin-bottom: 18px;
}

.service-card h2,
.process-card h3,
.route-card h2,
.mini-grid h2,
.mini-grid h3,
.contact-panel h2,
.contact-form h2,
.footer-grid h2 {
    color: var(--blue-ink);
}

.service-card a {
    color: var(--blue);
    font-weight: 900;
    text-decoration: none;
}

.how-grid {
    display: grid;
    grid-template-columns: 1.05fr repeat(3, 1fr);
    gap: 26px;
    align-items: center;
}

.how-grid > div:first-child {
    text-align: center;
    padding-right: 24px;
}

.squiggle {
    width: 42px;
    margin: 12px auto 22px;
}

.process-card {
    min-height: 315px;
    padding: 30px;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.process-card img {
    width: 126px;
    height: 126px;
    object-fit: contain;
    margin-bottom: 24px;
}

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

.country-strip img {
    width: 100%;
    max-height: 190px;
    object-fit: contain;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--white);
    transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.country-strip img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
}

.route-grid {
    display: grid;
    gap: 28px;
}

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

.sea-grid {
    grid-template-columns: repeat(2, 1fr);
}

.route-card {
    min-height: 760px;
    padding: 28px;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.route-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 12px auto 20px;
}

.route-card h2 {
    margin-bottom: 18px;
    font-size: 25px;
    text-transform: uppercase;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.route-meta {
    margin-top: 26px;
}

.route-meta span {
    display: block;
    margin-bottom: 4px;
    color: #97a0b4;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.route-meta p,
.route-meta ul {
    margin: 0;
}

.route-meta ul {
    padding-left: 16px;
}

.route-meta li {
    margin-bottom: 4px;
}

.route-meta li::marker {
    color: var(--blue);
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mini-grid article,
.contact-panel,
.contact-form,
.timeline article,
.news-empty {
    padding: 24px;
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.steps li {
    position: relative;
    min-height: 56px;
    padding: 16px 16px 16px 58px;
    border-bottom: 1px solid var(--line);
    counter-increment: steps;
}

.steps li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 13px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-weight: 900;
}

.faq-list {
    margin-top: 26px;
}

.faq-list details {
    margin-bottom: 12px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}

.faq-list details[open],
.faq-list details:hover {
    border-color: rgba(6, 76, 255, .35);
    box-shadow: var(--shadow);
}

.faq-list summary {
    color: var(--blue-ink);
    font-weight: 900;
    cursor: pointer;
}

.cta {
    position: relative;
    padding: 46px 0;
    color: var(--blue-ink);
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(6, 76, 255, .10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--red));
}

.cta::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .08;
    background-image: linear-gradient(120deg, transparent 0 45%, var(--blue) 45.4%, transparent 46%);
    background-size: 220px 220px;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta h2,
.cta p {
    color: var(--blue-ink);
    margin: 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.timeline span {
    display: block;
    color: var(--red);
    font-size: 26px;
    font-weight: 900;
}

.contact-grid {
    align-items: start;
}

.contact-form label {
    display: block;
    margin-bottom: 14px;
    color: var(--blue-ink);
    font-weight: 900;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.alert {
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 700;
}

.alert.success {
    background: #eaf8f1;
    color: #1c7c54;
}

.alert.error {
    background: #fdecec;
    color: #a73535;
}

.prose {
    font-size: 18px;
}

.news-empty {
    text-align: center;
}

.news-empty img {
    width: 84px;
    margin: 0 auto 18px;
}

.center {
    text-align: center;
}

.franchise-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 78px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(7, 24, 100, .94), rgba(6, 76, 255, .48)),
        url('../img/hero-bg-clean.png') center / cover no-repeat,
        var(--blue-dark);
}

.franchise-hero::after,
.franchise-form-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--red));
}

.franchise-hero-grid,
.franchise-why,
.franchise-benefit-grid,
.franchise-form-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 46px;
    align-items: center;
}

.franchise-copy h1 {
    max-width: 760px;
    margin-bottom: 14px;
    font-size: 58px;
    line-height: 1.02;
    text-transform: uppercase;
}

.franchise-copy h1 span {
    color: var(--red);
}

.franchise-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.franchise-chips span,
.benefit-pill-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--blue-ink);
    background: var(--white);
    box-shadow: var(--shadow);
    font-size: 13px;
    font-weight: 800;
}

.franchise-note {
    margin-top: 12px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.franchise-note.light {
    color: rgba(255, 255, 255, .86);
}

.franchise-include-card,
.profile-box,
.franchise-card-grid article,
.franchise-proof-grid article,
.franchise-format-grid article {
    border: 1px solid rgba(6, 76, 255, .12);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.franchise-include-card {
    position: relative;
    max-width: 460px;
    padding: 30px;
    color: var(--blue-ink);
}

.franchise-include-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(6, 76, 255, .13), rgba(255, 24, 38, .11));
}

.franchise-include-card > * {
    position: relative;
    z-index: 1;
}

.franchise-include-card h2,
.profile-box h3 {
    font-size: 22px;
}

.franchise-include-card ul,
.profile-box ul,
.franchise-format-grid ul {
    margin: 0;
    padding-left: 18px;
}

.franchise-include-card li,
.profile-box li,
.franchise-format-grid li {
    margin-bottom: 8px;
}

.franchise-include-card span {
    display: inline-flex;
    margin-top: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
}

.franchise-card-grid,
.franchise-format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.franchise-card-grid article,
.franchise-format-grid article {
    padding: 24px;
}

.franchise-card-grid article:hover,
.franchise-proof-grid article:hover,
.franchise-format-grid article:hover,
.franchise-include-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 76, 255, .35);
    box-shadow: 0 24px 48px rgba(6, 22, 74, .16);
}

.franchise-card-grid span,
.franchise-format-grid span {
    display: block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.franchise-card-grid strong,
.franchise-proof-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-ink);
    font-size: 20px;
}

.franchise-why {
    align-items: start;
}

.franchise-why h2,
.franchise-benefit-grid h2,
.franchise-form-grid h2 {
    color: var(--blue-ink);
    font-size: 32px;
    line-height: 1.15;
}

.franchise-proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.franchise-proof-grid article {
    position: relative;
    padding: 20px;
}

.franchise-proof-grid span {
    position: absolute;
    top: 14px;
    right: 16px;
    color: #9ba4b8;
    font-size: 12px;
    font-weight: 900;
}

.franchise-format-grid h3 {
    margin-bottom: 4px;
    color: var(--blue-ink);
    font-size: 22px;
}

.franchise-format-grid small {
    display: block;
    margin-bottom: 16px;
    color: var(--muted);
}

.franchise-benefits {
    background: linear-gradient(180deg, var(--white), var(--soft));
}

.benefit-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.profile-box {
    padding: 28px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 24, 100, .94), rgba(6, 76, 255, .92)),
        var(--blue);
}

.profile-box h3 {
    color: var(--white);
}

.profile-box li::marker {
    color: var(--red);
}

.franchise-form-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(7, 24, 100, .95), rgba(6, 76, 255, .50)),
        url('../img/hero-bg-clean.png') center / cover no-repeat,
        var(--blue-dark);
}

.franchise-form-grid {
    align-items: start;
}

.franchise-form-grid h2,
.franchise-form-grid p {
    color: var(--white);
}

.steps.compact li {
    border-bottom-color: rgba(255, 255, 255, .18);
}

.franchise-form {
    box-shadow: 0 24px 54px rgba(6, 22, 74, .24);
}

.franchise-form h3 {
    color: var(--blue-ink);
}

.franchise-form select {
    width: 100%;
    margin-top: 6px;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
    background: var(--white);
}

.franchise-form small {
    display: block;
    margin-top: 12px;
    color: var(--muted);
}

.site-footer {
    position: relative;
    padding: 64px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 12%, rgba(6, 76, 255, .20), transparent 24%),
        linear-gradient(135deg, #06134f 0%, #071864 52%, #082486 100%),
        var(--blue-dark);
    border-top: 1px solid rgba(255, 255, 255, .16);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .06), transparent 35%),
        linear-gradient(90deg, transparent 0 24%, rgba(255, 255, 255, .06) 24% 24.12%, transparent 24.12% 100%);
}

.footer-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: 1.2fr .8fr 1fr 1.4fr;
    align-items: start;
}

.footer-logo {
    width: 210px;
    margin-bottom: 18px;
}

.footer-grid h2 {
    color: var(--white);
    font-size: 18px;
}

.footer-grid a {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    text-decoration: none;
    transition: color .2s var(--ease), transform .2s var(--ease);
}

.footer-grid a:hover {
    color: var(--red);
    transform: translateX(3px);
}

.footer-grid p {
    color: #e7ebf7;
    overflow-wrap: anywhere;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes heroDrift {
    from {
        transform: scale(1.04) translate3d(-10px, -4px, 0);
    }

    to {
        transform: scale(1.08) translate3d(14px, 8px, 0);
    }
}

@keyframes heroCopyIn {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 1280px) {
    .air-grid,
    .service-grid,
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .franchise-card-grid,
    .franchise-format-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .container,
    .narrow {
        width: min(100% - 32px, 720px);
    }

    .header-inner {
        grid-template-columns: auto auto;
    }

    .brand {
        order: 1;
    }

    .menu-toggle {
        order: 2;
    }

    .main-nav {
        order: 3;
    }

    .brand img {
        width: 145px;
    }

    .main-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 88px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 12px;
    }

    .login-link {
        display: none;
    }

    .menu-toggle {
        justify-self: end;
    }

    .hero,
    .page-hero,
    .section {
        padding: 48px 0;
    }

    .brand-hero {
        min-height: 620px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .page-hero h1 {
        font-size: 40px;
    }

    .lead {
        font-size: 18px;
    }

    .hero-grid,
    .split,
    .contact-grid,
    .footer-grid,
    .cta-inner,
    .franchise-hero-grid,
    .franchise-why,
    .franchise-benefit-grid,
    .franchise-form-grid,
    .service-grid,
    .how-grid,
    .air-grid,
    .sea-grid,
    .mini-grid,
    .timeline,
    .country-strip {
        grid-template-columns: 1fr;
    }

    .franchise-copy h1 {
        font-size: 42px;
    }

    .franchise-proof-grid,
    .benefit-pill-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        display: grid;
    }
}
