/* ============================================================
   FLEWLT - LAYOUT.CSS
   Global layout: Header, Footer, Sidebar, Body
   Font: DM Sans  |  Brand: Sky Blue #0057F5
   ============================================================ */

@import url("./base.css");


/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--Core-Pure-White, #FFF);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--Neutrals-Light-Gray, #F1F1F1);
    box-shadow: 0 1px 0 rgba(0,57,145,.06);
}

.header-inner {
    max-width: 1440px;
    margin: auto;
    padding: 0 120px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo img { width: 120px; height: 30px; aspect-ratio: 3.94;}

/* Logo text fallback */
.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--grad-sky);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--sky-blue);
    letter-spacing: -.3px;
}

/* Desktop Nav - center */
.header-nav-wrap {
    display: flex;
    align-items: center;
    gap: 0;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    display: inline-flex;
    align-items: center;
    padding: 25px 15px;
    color: var(--Neutrals-Panel-Gray, #626262);
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    transition: var(--t-fast);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.32px;
}

.nav-item-label {
    color: inherit;
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.nav-item:hover {
    background: var(--Neutrals-Cloud-Blue, #F1F7FE);
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.32px;
    box-shadow: 0 2px 8px rgba(0, 87, 245, 0.12);
}

.nav-item:hover .nav-item-label {
    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-item.active {
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.32px;
}

.nav-item.active .nav-item-label {
    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Right actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 56px;
}

/* Get Pro button */
.btn-get-pro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    background: var(--grad-sky);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    transition: var(--t-normal);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: -.1px;
}

.btn-get-pro:hover {
    background: var(--altitude-blue);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,87,245,.36);
}

/* Mobile hamburger */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    font-size: 20px;
    color: var(--ink);
    cursor: pointer;
    transition: var(--t-fast);
}

.mobile-menu-toggle:hover {
    border-color: var(--sky-blue);
    color: var(--sky-blue);
}

/* Pro button states */
.btn-already-pro {
    background: linear-gradient(135deg, #065f46, #059669) !important;
    color: #fff !important;
    border-color: transparent !important;
 /* pointer-events: none; */
}

.mobile-already-pro {
    background: linear-gradient(135deg, #065f46, #059669) !important;
    color: #fff !important;
 /* pointer-events: none; */
}
/* ============================================================
   MOBILE SIDEBAR
   ============================================================ */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: var(--t-normal);
    z-index: 1100;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 1200;
    transform: translateX(-100%);
    transition: .32s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.mobile-sidebar.open { transform: translateX(0); }

body.mobile-nav-open .sidebar-overlay {
    opacity: 1;
    visibility: visible;
}

body.mobile-nav-open .mobile-sidebar {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 18px;
    border-bottom: 1px solid var(--border);
}

.sidebar-close {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    background: var(--soft-gray);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--muted);
    cursor: pointer;
    transition: var(--t-fast);
}

.sidebar-close:hover { color: var(--ink); background: var(--border); }

.sidebar-nav {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: var(--r-md);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--muted);
    transition: var(--t-fast);
    text-decoration: none;
}

.mobile-nav-item i { font-size: 17px; }

.mobile-nav-item:hover {
    background: var(--blue-10);
    color: var(--sky-blue);
}

.mobile-nav-item.active {
    background: var(--blue-10);
    color: var(--sky-blue);
    font-weight: 600;
}

.sidebar-footer {
    padding: 20px 16px 40px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-get-pro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--grad-sky);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--r-md);
    padding: 13px;
    text-decoration: none;
    transition: var(--t-fast);
}

.mobile-get-pro:hover { background: var(--altitude-blue); color: white; }

.mobile-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(240,95,110,.08);
    color: var(--waypoint-coral);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--r-md);
    padding: 12px;
    border: 1.5px solid rgba(240,95,110,.2);
    text-decoration: none;
    transition: var(--t-fast);
}

.mobile-logout:hover {
    background: rgba(240,95,110,.15);
    border-color: rgba(240,95,110,.4);
}

/* ============================================================
   MAIN CONTENT WRAPPER
   ============================================================ */
.main-content {
    max-width: 1440px;
    margin: auto;
    padding: 0px 120px 0px;
    background: #FAFCFE;
}

.page {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 74px - 176px);
    margin: 0;
    position: relative;
    overflow: visible;
    padding: 0;
    background: var(--Tints-Blue-2, #FAFCFE);
}

.right-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 400px;
    background-image: url('../icons/bg-map.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.page-card {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    background: var(--Core-Pure-White, #FFF);
    border-radius: 32px 32px 0 0;
    box-shadow: 10px 12px 40px 4px rgba(0, 90, 182, 0.06);
    border: none;
    padding: 32px 32px 56px;
}

.page-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.primary-button.page-card-title-action {
    display: flex;
    height: 42px;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 21px;
    width: auto;
    max-width: 100%;
    text-decoration: none;
    white-space: nowrap;
}

.primary-button.page-card-title-action:hover,
.primary-button.page-card-title-action:focus:not(:active),
.primary-button.page-card-title-action:active,
.primary-button.page-card-title-action:hover:active,
.primary-button.page-card-title-action:focus:active,
.primary-button.page-card-title-action:hover:focus:active {
    border-radius: 21px;
}

.page-card-title {
    color: var(--Core-Cruise-Blue, #005AB6);
    font-family: var(--font-family-heading, "DM Sans");
    font-size: var(--font-size-xl, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.48px;
    margin-bottom: 4px;
}

.page-card-date-line {
    color: var(--Neutrals-Panel-Gray, #626262);
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.32px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.page-card-description {
    width: 100%;
    color: var(--Neutrals-Panel-Gray, #626262);
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.32px;
    margin-bottom: 16px;
}

.page-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 48px;
}

.page-card-tag {
    display: flex;
    box-sizing: border-box;
    height: 32px;
    padding: 6px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border: none;
    border-radius: 24px;
    background: var(--Tints-Blue-10, #E5F1FA);
}

.page-card-tag__text {
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-xs, 12px);
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: 0.03px;
    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-card-bg-map {
    position: absolute;
    top: 140px;
    left: 150px;
    width: 75%;
    height: 100%;
    background-image: url('../icons/bg-map.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -10;
}

.page--empty-state {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
}

.page--empty-state .page-card {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.page--empty-state .page-empty {
    flex: 1 1 auto;
}

.page-controls-wrap {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 16px;
    padding: 0 0 16px;
}

.page-controls-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.page-controls-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.page-view-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg);
    border-radius: 8px;
}

.page-filter-param-title {
    margin-bottom: 12px;
    color: var(--Neutrals-Panel-Gray, #626262);
    text-align: left;
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.32px;
}

.page-sort-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    cursor: pointer;
}

.page-sort-option-label {
    color: var(--ink);
    font-size: 15px;
    font-weight: 400;
}

.page-sort-option.selected .page-sort-option-label {
    font-weight: 600;
    background: var(--grad-sky);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.page-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-sort-option.selected .page-radio {
    border-color: var(--sky-blue);
}

.page-radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sky-blue);
    opacity: 0;
    transition: var(--t-fast);
}

.page-sort-option.selected .page-radio-dot {
    opacity: 1;
}

.add-form-card,
.af-card,
.at-card {
    margin-top: -60px;
    padding: 42px 48px 72px;
}

.account-layout {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    overflow: hidden;
}

.account-layout > .account-layout__mobile-toggle {
    display: none;
    flex: 0 0 100%;
    width: 100%;
}

.account-layout > .account-layout__sidebar {
    flex: 0 0 30%;
    width: 30%;
    min-width: 0;
    padding: 32px 32px 48px;
    border-right: 1px solid var(--Neutrals-Light-Gray, #F1F1F1);
    background: var(--Core-Pure-White, #FFF);
}

.account-layout > .account-layout__content {
    flex: 0 0 70%;
    width: 70%;
    min-width: 0;
    padding: 32px 32px 48px;
    background: var(--Core-Pure-White, #FFF);
}

.page-empty {
    position: relative;
    min-height: 549px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 56px 32px 72px;
    overflow: hidden;
}

.page-empty::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.76) 58%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.page-empty__art,
.page-empty__copy,
.page-empty h3,
.page-empty p,
.page-empty__action {
    position: relative;
    z-index: 1;
}

.page-empty__art {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 140px;
    margin-bottom: 32px;
}

.page-empty__copy {
    margin-top: 25px;
}

.page-empty__route {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 720px;
    max-width: none;
    transform: translateX(-50%);
}

.page-empty__icon {
    display: block;
    margin: 0 0 24px;
    color: var(--Neutrals-Light-Gray, #F1F1F1);
    font-size: 28px;
}

.page-empty h3 {
    margin-bottom: 8px;
    font-family: var(--font-family-heading, "DM Sans");
    font-size: var(--font-size-lg, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.4px;
    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.page-empty p {
    color: var(--Neutrals-Panel-Gray, #626262);
    font-family: var(--font-family-body, "DM Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: 0.28px;
}

.page-empty__action {
    margin-top: 32px;
}

.primary-button.page-empty__action {
    width: 158px;
    max-width: 100%;
}

@media (max-width: 767px) {
    .account-layout > .account-layout__mobile-toggle {
        display: block;
        padding: 16px 24px 0;
    }

    .account-layout > .account-layout__sidebar,
    .account-layout > .account-layout__content {
        flex: 0 0 100%;
        width: 100%;
    }

    .account-layout > .account-layout__sidebar:not(.is-open) {
        display: none;
    }
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
    margin: 48px 0;
    padding: 0 8px;
    position: relative;
    z-index: 1;
}

.add-form-header,
.fe-top-bar,
.at-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
    margin: 40px 0;
    padding: 0 8px;
    position: relative;
    z-index: 1;
}

.add-form-hero,
.af-hero,
.at-hero {
    height: 302px;
    background: var(--blue-10);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--runway-gray);
    border-bottom: 1px solid var(--border);
    border-radius: 32px;
}

.add-form-hero {
    width: 100vw;
    height: 480px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
}

.add-form-hero-map,
.at-hero-map {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.add-form-hero i,
.af-hero i,
.at-hero i {
    font-size: 38px;
}

.add-form-hero span,
.af-hero span,
.at-hero span {
    font-size: 13px;
}

.add-form-hero-dots,
.af-hero-dots,
.at-hero-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.add-form-hero-dot,
.af-hero-dot,
.at-hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--runway-gray);
}

.add-form-hero-dot.active,
.af-hero-dot.active,
.at-hero-dot.active {
    background: var(--sky-blue);
    width: 16px;
    border-radius: 3px;
}

.add-form-section {
    margin-bottom: 28px;
}

.add-form--step .add-form-section--step-end,
.add-form--step .add-form-field--step-end,
.add-form--step .add-form-fields--step-end .form-field {
    margin-bottom: 0;
}

.add-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.add-form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}

.add-form-row-seat-class {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2fr);
}

.add-form-section-title {
    color: var(--Neutrals-Panel-Gray, #626262);
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.32px;
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
}

.add-form-step-label {
    display: inline-block;
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-lg, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.4px;
    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.add-form-step-label-sub {
    color: var(--Gray, #8E8E93);
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.32px;
    margin-bottom: 48px;
    display: block;
}

.add-form-step-indicator {
    position: absolute;
    top: 42px;
    right: 48px;
    width: 52px;
    height: 52px;
    z-index: 10;
    pointer-events: none;
}

.add-form-step-indicator svg {
    width: 52px;
    height: 52px;
    transform: rotate(-90deg);
}

.add-form-step-indicator__track {
    fill: none;
    stroke: var(--Neutrals-Light-Gray, #F1F1F1);
    stroke-width: 3;
}

.add-form-step-indicator__progress {
    fill: none;
    stroke: url(#addFormStepIndicatorGradient);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.4s cubic-bezier(.4, 0, .2, 1);
}

.add-form-step-indicator__text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Neutrals-Placeholder, #8E8E93);
    font-family: var(--font-family-body, "DM Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: 0.28px;
}

.add-form-step-block {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.add-form-step-block[data-step="1"],
.add-form-step-block[data-step="2"],
.add-form-step-block[data-step="3"] {
    padding-bottom: 56px;
    margin-bottom: 56px;
}

.add-form-step-block[data-step="3"] .add-form-step-label-sub,
.add-form-step-block[data-step="4"] .add-form-step-label-sub {
    margin-bottom: 56px;
}

.add-form-step-block[data-step="4"],
.add-form-step-block:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.add-form--express .add-form-step-block,
.add-form--step .add-form-step-block {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.add-form-step-divider {
    border-top: 1px solid var(--border);
    margin: 56px 0;
}

.add-form--step .add-form-step-divider + .add-form-actions {
    margin-top: 0;
    padding-top: 0;
}

.add-form-step-block.is-step-hidden {
    display: none;
}

.add-form-step-header {
    padding-right: 64px;
}

.page-header__copy {
    flex: 1 1 auto;
    min-width: 0;
}

.page-header__heading-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    min-width: 0;
}

.page-header__title {
    display: inline-block;
    max-width: 100%;
    margin: 0 0 8px;
    padding: 0;
    font-family: var(--font-family-heading, "DM Sans");
    font-size: var(--font-size-2xl, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.64px;
    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.page-header__heading-row .page-header__title {
    margin-bottom: 0;
}

.page-header__title:last-child {
    margin-bottom: 0;
}

.page-header__subtitle {
    margin: 0;
    color: var(--Core-Jet-Black, #26262A);
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.32px;
}

.page-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

.page-header__actions > button,
.page-header__actions > a {
    width: 158px;
    text-decoration: none;
}

.page-header__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 55px;
    height: 32px;
    border: 0;
    padding: 0;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
}

.page-header__badge img {
    display: block;
    width: 45px;
    height: auto;
}

.page-header__profile {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer.app-footer {
    width: 100%;
    height: 176px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    color: var(--Core-Pure-White, #FFF);
    background: var(
        --Core-Skyline-Gradient,
        linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%)
    );
    font-family: var(--font-family-body, "DM Sans"), sans-serif;
}

.footer.app-footer::before {
    content: none;
}

.footer.app-footer::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: calc(50% - 167px);
    width: 713px;
    height: 190px;
    background: url("map-2.png") no-repeat 0 0 / 713px 190px;
    pointer-events: none;
}

.app-footer .footer-inner {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 48px));
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 48px 4px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 24px;
}

.app-footer .footer-inner::after {
    content: none;
}

.app-footer .footer-left {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
    height: 80px;
    padding-bottom: 6px;
    box-sizing: border-box;
}

.app-footer .footer-logo {
    display: block;
    width: 127.972px;
    height: 32px;
    margin: 0;
    text-decoration: none;
}

.app-footer .footer-logo img {
    display: block;
    width: 100%;
    height: 100%;
}

.app-footer .footer-social-label {
    color: var(--Tints-Blue-2, #FAFCFE);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.28px;
    white-space: nowrap;
}

.app-footer .footer-right {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 16px;
    height: 24px;
    margin: 0;
    padding-right: 2px;
}

.app-footer .footer-social-label {
    color: var(--Core-Pure-White, #FFF);
    margin: 0;
}

.app-footer .footer-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.app-footer .footer-social-btn {
    display: block;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: var(--Core-Pure-White, #FFF);
    text-decoration: none;
    transition: opacity var(--t-fast);
}

.app-footer .footer-social-btn img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.app-footer .footer-social-btn:hover {
    color: var(--Core-Pure-White, #FFF);
    background: transparent;
    opacity: 0.8;
    transform: none;
}

.app-footer .footer-logo:focus-visible,
.app-footer .footer-social-btn:focus-visible {
    outline: 2px solid var(--Core-Pure-White, #FFF);
    outline-offset: 4px;
    border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .desktop-menu      { display: none; }
    .btn-get-pro       { display: none; }
    .mobile-menu-toggle { display: flex; }
}

@media (max-width: 900px) {
    .app-footer .footer-inner {
        padding: 24px 4px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 16px;
    }

    .app-footer .footer-left {
        padding-bottom: 0;
    }
}

@media (max-width: 800px) {
    .add-form-row,
    .add-form-row-seat-class {
        grid-template-columns: 1fr;
    }

    .add-form-row-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .main-content  { padding: 0; }
    .page { min-height: calc(100vh - 58px - 242px); }
    .page-card {
        border-radius: 24px 24px 0 0;
        padding: 16px 16px 40px;
    }
    .page-controls-top {
        gap: 8px;
    }
    .add-form-row,
    .add-form-row-3,
    .add-form-row-seat-class {
        grid-template-columns: 1fr;
    }
    .add-form-card,
    .af-card,
    .at-card {
        margin-top: -12px;
    }
    .add-form-step-indicator {
        top: 16px;
        right: 16px;
    }
    .account-layout {
        padding: 0;
    }
    .page-empty {
        min-height: 420px;
        padding: 48px 24px;
    }
    .page-empty__art {
        max-width: 320px;
        height: 112px;
        margin-bottom: 24px;
    }
    .page-empty__route {
        width: 520px;
    }
    .page-empty h3 {
        font-size: 18px;
    }
    .page-empty p {
        font-size: 13px;
    }
    .page-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin: 28px 0;
        padding: 0 16px;
    }
    .page-header__title { font-size: 22px; }
    .page-header__heading-row {
        flex-wrap: wrap;
        row-gap: 6px;
    }
    .page-header__actions {
        width: 100%;
        gap: 10px;
    }
    .page-header__actions > button,
    .page-header__actions > a {
        flex: 1 1 0;
        width: auto;
    }
    .header-inner  { padding: 0 16px; }
    .footer.app-footer {
        height: 242px;
        font-size: 14px;
    }
    .footer.app-footer::after {
        right: -430px;
        left: auto;
        width: 908px;
        height: 242px;
        background-size: 908px 242px;
    }
    .app-footer .footer-inner {
        width: 100%;
        padding: 28px 16px 24px;
        justify-content: flex-start;
        gap: 24px;
    }
    .app-footer .footer-right {
        flex-wrap: nowrap;
        margin: 0;
    }
    .app-footer .footer-logo { margin: 0; }
    .app-footer .footer-social-label { margin: 0; }
}

.footer-logo img {
    width: 128px;
    height: auto;
    display: block;
}

.app-loader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(250, 252, 254, 0.62);
    backdrop-filter: blur(2px);
}

.app-loader.active {
    display: flex;
}

.app-loader__spinner {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 3px solid #cce3f5;
    border-top-color: #005AB6;
    animation: app-loader-spin .8s linear infinite;
}

@keyframes app-loader-spin {
    to {
        transform: rotate(360deg);
    }
}
