/* TransferHub 2027 · Landing pública */
:root {
    --th27-bg: #03101b;
    --th27-bg-2: #061827;
    --th27-panel: rgba(8, 29, 47, .88);
    --th27-panel-2: rgba(11, 39, 62, .84);
    --th27-border: rgba(99, 180, 239, .17);
    --th27-border-strong: rgba(49, 157, 255, .42);
    --th27-text: #f5f9ff;
    --th27-soft: #b5c8da;
    --th27-muted: #718ba2;
    --th27-blue: #188cff;
    --th27-cyan: #00d7ff;
    --th27-green: #16e08c;
    --th27-yellow: #ffc13d;
    --th27-red: #ff526a;
    --th27-purple: #9b65ff;
    --th27-radius: 18px;
    --th27-shadow: 0 22px 70px rgba(0, 0, 0, .34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--th27-bg);
}

body.th2027 {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--th27-text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background:
        radial-gradient(circle at 50% -15%, rgba(0, 127, 255, .18), transparent 35rem),
        radial-gradient(circle at 95% 20%, rgba(0, 215, 255, .08), transparent 28rem),
        linear-gradient(180deg, #020c15 0%, #061522 50%, #020b13 100%);
}

body.th2027::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    opacity: .16;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(89, 162, 214, .13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(89, 162, 214, .13) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(180deg, #000, transparent 90%);
}

body.th2027 a {
    color: inherit;
    text-decoration: none;
}

body.th2027 button,
body.th2027 a {
    -webkit-tap-highlight-color: transparent;
}

.th27-container {
    width: min(1480px, calc(100% - 40px));
    margin: 0 auto;
}

.th27-skip {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
    color: #071522;
    transform: translateY(-150%);
}

.th27-skip:focus {
    transform: none;
}

/* HEADER */

.th27-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--th27-border);
    background: rgba(2, 14, 25, .84);
    backdrop-filter: blur(22px);
}

.th27-header.is-scrolled {
    background: rgba(2, 13, 23, .96);
    box-shadow: 0 12px 38px rgba(0, 0, 0, .28);
}

.th27-header__inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 34px;
    align-items: center;
}

.th27-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.th27-brand img {
    display: block;
    width: 180px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.th27-brand strong {
    display: block;
    font-size: 20px;
    letter-spacing: -.4px;
}

.th27-brand strong span {
    color: var(--th27-green);
}

.th27-brand small {
    display: block;
    margin-top: 3px;
    color: var(--th27-muted);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}

.th27-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.th27-nav a {
    padding: 8px 11px;
    border-radius: 9px;
    color: var(--th27-soft);
    font-size: 13px;
    font-weight: 650;
    transition: .18s ease;
}

.th27-nav a:hover {
    color: #fff;
    background: rgba(30, 95, 143, .28);
}

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

.th27-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid var(--th27-border);
    border-radius: 11px;
    background: rgba(13, 38, 59, .75);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    transition: .18s ease;
}

.th27-btn:hover {
    transform: translateY(-1px);
    border-color: var(--th27-border-strong);
    background: rgba(18, 55, 84, .92);
}

.th27-btn--primary {
    border-color: rgba(33, 143, 255, .72);
    background: linear-gradient(135deg, #188cff, #0762d8);
    box-shadow: 0 10px 28px rgba(0, 111, 255, .23);
}

.th27-btn--primary:hover {
    background: linear-gradient(135deg, #319cff, #0870ee);
}

.th27-btn--green {
    border-color: rgba(22, 224, 140, .48);
    background: linear-gradient(135deg, #14d984, #079c5c);
    box-shadow: 0 10px 28px rgba(10, 207, 119, .18);
}

/* HERO */

.th27-hero {
    position: relative;
    padding: 82px 0 48px;
}

.th27-hero::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    z-index: -1;
    height: 580px;
    opacity: .46;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0,0,0,.10), var(--th27-bg)),
        radial-gradient(ellipse at 67% 12%, rgba(0, 115, 230, .18), transparent 50%);
}

.th27-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(620px, 1.18fr);
    gap: 54px;
    align-items: center;
}

.th27-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 11px;
    border: 1px solid rgba(21, 225, 140, .28);
    border-radius: 999px;
    background: rgba(15, 172, 103, .08);
    color: #61efae;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .45px;
    text-transform: uppercase;
}

.th27-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--th27-green);
    box-shadow: 0 0 12px rgba(22, 224, 140, .7);
}

.th27-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(42px, 5.1vw, 78px);
    line-height: .99;
    letter-spacing: -3.5px;
}

.th27-hero h1 span {
    display: block;
    margin-top: 8px;
    background: linear-gradient(90deg, #20e995, #20bfff 72%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.th27-hero__lead {
    max-width: 690px;
    margin: 25px 0 0;
    color: var(--th27-soft);
    font-size: 17px;
    line-height: 1.72;
}

.th27-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.th27-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 32px;
}

.th27-proof__item {
    padding: 13px;
    border: 1px solid var(--th27-border);
    border-radius: 12px;
    background: rgba(8, 29, 47, .62);
}

.th27-proof__item strong {
    display: block;
    font-size: 13px;
}

.th27-proof__item span {
    display: block;
    margin-top: 4px;
    color: var(--th27-muted);
    font-size: 10px;
    line-height: 1.45;
}

/* MINI CONTROL CENTER */

.th27-console-wrap {
    position: relative;
}

.th27-console-glow {
    position: absolute;
    inset: 8% 2% -8%;
    z-index: -1;
    border-radius: 35%;
    background: rgba(0, 115, 255, .18);
    filter: blur(65px);
}

.th27-console {
    overflow: hidden;
    border: 1px solid rgba(64, 159, 231, .28);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(6, 26, 44, .98), rgba(3, 16, 28, .98));
    box-shadow:
        0 36px 90px rgba(0, 0, 0, .48),
        0 0 0 1px rgba(28, 130, 223, .08);
    transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}

.th27-console__top {
    min-height: 58px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 9px;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid var(--th27-border);
    background:
        linear-gradient(90deg, rgba(5, 21, 37, .98), rgba(10, 38, 61, .88));
}

.th27-console__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.th27-console__brand img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.th27-console__brand strong {
    font-size: 11px;
}

.th27-console__brand span {
    display: block;
    margin-top: 2px;
    color: var(--th27-muted);
    font-size: 7px;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.th27-console__airport,
.th27-console__clock {
    padding: 7px 10px;
    border: 1px solid var(--th27-border);
    border-radius: 9px;
    background: rgba(7, 27, 45, .78);
}

.th27-console__airport strong,
.th27-console__clock strong {
    display: block;
    font-size: 9px;
}

.th27-console__airport span,
.th27-console__clock span {
    display: block;
    margin-top: 2px;
    color: var(--th27-muted);
    font-size: 7px;
}

.th27-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    padding: 10px;
}

.th27-kpi {
    min-height: 64px;
    padding: 9px 10px;
    border: 1px solid var(--th27-border);
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(11, 42, 66, .90), rgba(7, 25, 42, .92));
}

.th27-kpi span {
    color: var(--th27-muted);
    font-size: 7px;
    font-weight: 850;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.th27-kpi strong {
    display: block;
    margin-top: 4px;
    font-size: 22px;
    line-height: 1;
}

.th27-kpi small {
    display: block;
    margin-top: 4px;
    font-size: 7px;
}

.th27-kpi--green small,
.th27-kpi--green strong {
    color: var(--th27-green);
}

.th27-kpi--blue small,
.th27-kpi--blue strong {
    color: #55bfff;
}

.th27-kpi--yellow small,
.th27-kpi--yellow strong {
    color: var(--th27-yellow);
}

.th27-kpi--red small,
.th27-kpi--red strong {
    color: #ff7488;
}

.th27-console__filters {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 7px;
    padding: 0 10px 9px;
}

.th27-filter {
    height: 31px;
    display: flex;
    align-items: center;
    padding: 0 9px;
    border: 1px solid var(--th27-border);
    border-radius: 8px;
    background: rgba(4, 20, 34, .75);
    color: var(--th27-muted);
    font-size: 7px;
}

.th27-console__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 8px;
    padding: 0 10px 10px;
}

.th27-list,
.th27-detail {
    overflow: hidden;
    border: 1px solid var(--th27-border);
    border-radius: 11px;
    background: rgba(5, 23, 38, .82);
}

.th27-list__head {
    display: grid;
    grid-template-columns: 54px 92px 1fr 105px 78px;
    gap: 6px;
    padding: 8px 9px;
    border-bottom: 1px solid var(--th27-border);
    color: var(--th27-muted);
    font-size: 6px;
    font-weight: 900;
    text-transform: uppercase;
}

.th27-demo-row {
    display: grid;
    grid-template-columns: 54px 92px 1fr 105px 78px;
    gap: 6px;
    align-items: center;
    min-height: 49px;
    padding: 7px 9px;
    border-bottom: 1px solid rgba(90, 151, 196, .09);
    color: var(--th27-soft);
    font-size: 7px;
}

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

.th27-demo-row.is-selected {
    background: linear-gradient(90deg, rgba(13, 103, 82, .24), rgba(8, 36, 57, .82));
    box-shadow: inset 3px 0 0 var(--th27-green);
}

.th27-demo-row strong {
    display: block;
    color: #fff;
    font-size: 8px;
}

.th27-demo-row small {
    display: block;
    margin-top: 2px;
    color: var(--th27-muted);
    font-size: 6px;
}

.th27-demo-status {
    display: inline-flex;
    width: max-content;
    padding: 4px 6px;
    border-radius: 999px;
    background: rgba(17, 217, 138, .12);
    color: #55efaa;
    font-size: 6px;
    font-weight: 900;
}

.th27-demo-status.is-yellow {
    background: rgba(247, 183, 49, .12);
    color: #ffd56b;
}

.th27-demo-status.is-blue {
    background: rgba(23, 135, 255, .12);
    color: #5fc2ff;
}

.th27-detail__hero {
    min-height: 78px;
    padding: 10px;
    border-bottom: 1px solid var(--th27-border);
    background:
        radial-gradient(circle at 85% 5%, rgba(0, 126, 255, .22), transparent 55%),
        rgba(7, 28, 46, .86);
}

.th27-detail__hero span {
    color: var(--th27-green);
    font-size: 6px;
    font-weight: 900;
    text-transform: uppercase;
}

.th27-detail__hero strong {
    display: block;
    margin-top: 5px;
    font-size: 10px;
}

.th27-detail__hero small {
    display: block;
    margin-top: 4px;
    color: var(--th27-muted);
    font-size: 7px;
}

.th27-detail__tabs {
    display: flex;
    gap: 3px;
    padding: 6px;
    border-bottom: 1px solid var(--th27-border);
}

.th27-detail__tabs span {
    padding: 4px 5px;
    border-radius: 5px;
    color: var(--th27-muted);
    font-size: 5px;
}

.th27-detail__tabs span:first-child {
    background: var(--th27-blue);
    color: #fff;
}

.th27-detail__body {
    display: grid;
    gap: 6px;
    padding: 7px;
}

.th27-detail-card {
    padding: 7px;
    border: 1px solid var(--th27-border);
    border-radius: 8px;
    background: rgba(10, 36, 57, .68);
}

.th27-detail-card span {
    color: var(--th27-muted);
    font-size: 6px;
}

.th27-detail-card strong {
    display: block;
    margin-top: 3px;
    font-size: 7px;
}

.th27-console__caption {
    position: absolute;
    right: 18px;
    bottom: -15px;
    padding: 7px 10px;
    border: 1px solid var(--th27-border);
    border-radius: 999px;
    background: #061827;
    color: var(--th27-muted);
    font-size: 8px;
}

/* STRIP */

.th27-strip {
    padding: 8px 0 42px;
}

.th27-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--th27-border);
    border-radius: 16px;
    background: rgba(7, 27, 45, .72);
}

.th27-strip__item {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 16px;
    border-right: 1px solid var(--th27-border);
}

.th27-strip__item:last-child {
    border-right: 0;
}

.th27-strip__icon {
    width: 37px;
    height: 37px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 10px;
    background: rgba(23, 135, 255, .12);
    color: #62c4ff;
    font-size: 18px;
}

.th27-strip__item strong {
    display: block;
    font-size: 13px;
}

.th27-strip__item span {
    display: block;
    margin-top: 3px;
    color: var(--th27-muted);
    font-size: 10px;
}

/* GENERAL SECTIONS */

.th27-section {
    padding: 68px 0;
}

.th27-section--soft {
    border-top: 1px solid rgba(88, 153, 204, .09);
    border-bottom: 1px solid rgba(88, 153, 204, .09);
    background: rgba(4, 20, 33, .45);
}

.th27-section-head {
    max-width: 820px;
    margin-bottom: 30px;
}

.th27-kicker {
    color: #5fc2ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.th27-section h2 {
    margin: 8px 0 0;
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1.06;
    letter-spacing: -1.8px;
}

.th27-section-head p,
.th27-copy {
    margin: 14px 0 0;
    color: var(--th27-soft);
    font-size: 15px;
    line-height: 1.72;
}

/* FEATURES */

.th27-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
}

.th27-feature {
    min-height: 205px;
    padding: 21px;
    border: 1px solid var(--th27-border);
    border-radius: var(--th27-radius);
    background:
        linear-gradient(145deg, rgba(12, 39, 61, .88), rgba(5, 23, 38, .86));
    box-shadow: 0 16px 45px rgba(0,0,0,.12);
    transition: .18s ease;
}

.th27-feature:hover {
    transform: translateY(-3px);
    border-color: var(--th27-border-strong);
    background:
        linear-gradient(145deg, rgba(15, 49, 75, .95), rgba(7, 28, 46, .92));
}

.th27-feature__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(42, 143, 255, .24);
    border-radius: 11px;
    background: rgba(23, 135, 255, .10);
    font-size: 20px;
}

.th27-feature h3 {
    margin: 16px 0 0;
    font-size: 17px;
}

.th27-feature p {
    margin: 9px 0 0;
    color: var(--th27-muted);
    font-size: 12px;
    line-height: 1.65;
}

/* ROLES */

.th27-role-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.th27-role {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--th27-border);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(10, 37, 59, .95), rgba(5, 23, 37, .92));
}

.th27-role::after {
    content: "";
    position: absolute;
    right: -100px;
    top: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(22, 224, 140, .07);
    filter: blur(6px);
}

.th27-role--driver::after {
    background: rgba(23, 135, 255, .10);
}

.th27-role > * {
    position: relative;
    z-index: 1;
}

.th27-role h3 {
    margin: 8px 0 0;
    font-size: 28px;
    letter-spacing: -.8px;
}

.th27-checks {
    display: grid;
    gap: 9px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.th27-checks li {
    position: relative;
    padding-left: 26px;
    color: var(--th27-soft);
    font-size: 13px;
    line-height: 1.5;
}

.th27-checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(22, 224, 140, .12);
    color: var(--th27-green);
    font-size: 10px;
    font-weight: 900;
}

/* RVTC */

.th27-rvtc {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 14px;
}

.th27-rvtc__main,
.th27-price-card {
    padding: 30px;
    border: 1px solid var(--th27-border);
    border-radius: 22px;
    background: rgba(8, 29, 47, .78);
}

.th27-price-card {
    background:
        radial-gradient(circle at 85% 5%, rgba(22, 224, 140, .15), transparent 50%),
        linear-gradient(145deg, rgba(10, 46, 55, .92), rgba(5, 25, 39, .94));
}

.th27-price {
    margin-top: 24px;
}

.th27-price strong {
    font-size: 54px;
    line-height: 1;
    letter-spacing: -2px;
}

.th27-price span {
    color: var(--th27-muted);
    font-size: 12px;
}

/* FLOW */

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

.th27-flow__item {
    position: relative;
    padding: 22px;
    border: 1px solid var(--th27-border);
    border-radius: 16px;
    background: rgba(9, 31, 50, .72);
}

.th27-flow__num {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(23, 135, 255, .13);
    color: #62c4ff;
    font-size: 12px;
    font-weight: 900;
}

.th27-flow__item h3 {
    margin: 18px 0 0;
    font-size: 16px;
}

.th27-flow__item p {
    margin: 8px 0 0;
    color: var(--th27-muted);
    font-size: 11px;
    line-height: 1.6;
}

/* CTA */

.th27-cta {
    padding: 24px 0 82px;
}

.th27-cta__box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 34px;
    border: 1px solid rgba(39, 166, 255, .32);
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 20%, rgba(19, 216, 135, .14), transparent 30%),
        linear-gradient(135deg, rgba(9, 43, 69, .96), rgba(5, 23, 38, .96));
    box-shadow: var(--th27-shadow);
}

.th27-cta h2 {
    margin: 0;
    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -1.4px;
}

.th27-cta p {
    max-width: 800px;
    margin: 12px 0 0;
    color: var(--th27-soft);
    line-height: 1.65;
}

/* FOOTER */

.th27-footer {
    border-top: 1px solid var(--th27-border);
    background: rgba(2, 12, 21, .84);
}

.th27-footer__inner {
    min-height: 98px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    color: var(--th27-muted);
    font-size: 11px;
}

.th27-footer__links {
    display: flex;
    gap: 15px;
}

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

/* RESPONSIVE */

@media (max-width: 1200px) {
    .th27-header__inner {
        grid-template-columns: auto 1fr;
    }

    .th27-nav {
        display: none;
    }

    .th27-actions {
        justify-content: flex-end;
    }

    .th27-hero__grid {
        grid-template-columns: 1fr;
    }

    .th27-console-wrap {
        max-width: 860px;
    }

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

@media (max-width: 820px) {
    .th27-container {
        width: min(100% - 24px, 1480px);
    }

    .th27-header__inner {
        min-height: 68px;
        gap: 12px;
    }

    .th27-brand img {
        width: 150px;
        height: auto;
    }

    .th27-brand strong {
        font-size: 16px;
    }

    .th27-brand small {
        display: none;
    }

    .th27-actions .th27-btn:first-child {
        display: none;
    }

    .th27-hero {
        padding-top: 48px;
    }

    .th27-hero h1 {
        letter-spacing: -2px;
    }

    .th27-proof,
    .th27-strip__inner,
    .th27-role-grid,
    .th27-rvtc,
    .th27-flow {
        grid-template-columns: 1fr;
    }

    .th27-strip__item {
        border-right: 0;
        border-bottom: 1px solid var(--th27-border);
    }

    .th27-strip__item:last-child {
        border-bottom: 0;
    }

    .th27-console {
        transform: none;
    }

    .th27-console__main {
        grid-template-columns: 1fr;
    }

    .th27-detail {
        display: none;
    }

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

    .th27-rvtc__main,
    .th27-price-card,
    .th27-role {
        padding: 22px;
    }

    .th27-cta__box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {
    .th27-actions .th27-btn {
        min-height: 38px;
        padding: 8px 11px;
        font-size: 11px;
    }

    .th27-brand {
        gap: 7px;
    }

    .th27-hero h1 {
        font-size: 42px;
    }

    .th27-hero__lead {
        font-size: 14px;
    }

    .th27-hero__buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .th27-hero__buttons .th27-btn {
        width: 100%;
    }

    .th27-console__top {
        grid-template-columns: 1fr auto;
    }

    .th27-console__airport {
        display: none;
    }

    .th27-kpis {
        grid-template-columns: 1fr 1fr;
    }

    .th27-console__filters {
        grid-template-columns: 1fr 1fr;
    }

    .th27-list__head {
        display: none;
    }

    .th27-demo-row {
        grid-template-columns: 52px 1fr 68px;
    }

    .th27-demo-row > :nth-child(4),
    .th27-demo-row > :nth-child(5) {
        display: none;
    }

    .th27-section {
        padding: 50px 0;
    }

    .th27-footer__inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 26px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
