.tb-front-redesign,
.tb-front-redesign * {
    box-sizing: border-box;
}

.tb-front-redesign {
    --tb-front-orange: #f97316;
    --tb-front-orange-dark: #ea580c;
    --tb-front-navy: #07172f;
    --tb-front-graphite: #111827;
    --tb-front-muted: #6b7280;
    --tb-front-border: #d9e1ec;
    --tb-front-soft: #f3f6fb;
    --tb-front-white: #ffffff;
    color: var(--tb-front-graphite);
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 32rem),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.tb-front-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.tb-front-hero {
    position: relative;
    overflow: hidden;
    padding: 54px 0 36px;
    background:
        linear-gradient(90deg, rgba(7, 23, 47, 0.98), rgba(7, 23, 47, 0.72)),
        var(--tb-front-hero-bg, none);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.tb-front-hero::after {
    content: "";
    position: absolute;
    inset: auto -12% -45% 40%;
    height: 420px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.18);
    filter: blur(72px);
    pointer-events: none;
}

.tb-front-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.86fr);
    gap: 34px;
    align-items: center;
}

.tb-front-eyebrow {
    display: inline-flex;
    margin: 0 0 16px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.tb-front-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.tb-front-lead {
    max-width: 650px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.55;
}

.tb-front-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.tb-front-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.tb-front-button--primary {
    border: 1px solid var(--tb-front-orange);
    background: var(--tb-front-orange);
    color: #fff;
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.28);
}

.tb-front-button--primary:hover,
.tb-front-button--primary:focus-visible {
    background: var(--tb-front-orange-dark);
    border-color: var(--tb-front-orange-dark);
    color: #fff;
    transform: translateY(-1px);
}

.tb-front-button--secondary {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.tb-front-button--secondary:hover,
.tb-front-button--secondary:focus-visible {
    border-color: rgba(255, 255, 255, 0.52);
    color: #fff;
    transform: translateY(-1px);
}

.tb-front-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.tb-front-trust li {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.tb-front-trust li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tb-front-orange);
}

.tb-front-booking {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--tb-front-graphite);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.tb-front-booking__head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--tb-front-border);
    background: linear-gradient(180deg, #fff, #f7f9fc);
}

.tb-front-booking__head strong {
    display: block;
    color: var(--tb-front-navy);
    font-size: 20px;
    line-height: 1.2;
}

.tb-front-booking__head span {
    max-width: 190px;
    color: var(--tb-front-muted);
    font-size: 13px;
    line-height: 1.35;
    text-align: right;
}

.tb-front-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 22px 24px 24px;
}

.tb-front-form label {
    display: grid;
    gap: 7px;
    margin: 0;
}

.tb-front-form label:first-child,
.tb-front-form label:nth-child(2),
.tb-front-form button {
    grid-column: 1 / -1;
}

.tb-front-form span {
    color: var(--tb-front-muted);
    font-size: 12px;
    font-weight: 800;
}

.tb-front-form input,
.tb-front-form select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--tb-front-border);
    border-radius: 12px;
    background: #fff;
    color: var(--tb-front-graphite);
    font-size: 15px;
    padding: 0 13px;
    outline: none;
}

.tb-front-form input:focus,
.tb-front-form select:focus {
    border-color: var(--tb-front-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
}

.tb-front-form button {
    min-height: 52px;
    border: 0;
    border-radius: 14px;
    background: var(--tb-front-orange);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.25);
}

.tb-front-form button:hover,
.tb-front-form button:focus-visible {
    background: var(--tb-front-orange-dark);
}

.tb-front-section {
    padding: 64px 0;
}

.tb-front-section--compact {
    padding: 42px 0;
}

.tb-front-section--soft {
    background: var(--tb-front-soft);
}

.tb-front-section--text {
    padding-top: 38px;
}

.tb-front-section__head {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-bottom: 26px;
}

.tb-front-section__head > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--tb-front-navy);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.tb-front-section__head h2 {
    margin: 0;
    color: var(--tb-front-navy);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.tb-front-section__head p {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--tb-front-muted);
    font-size: 16px;
    line-height: 1.55;
}

.tb-front-quick-grid,
.tb-front-benefits-grid,
.tb-front-fleet-grid,
.tb-front-reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.tb-front-quick-card,
.tb-front-benefit-card,
.tb-front-vehicle-card,
.tb-front-review-card,
.tb-front-text-card {
    border: 1px solid var(--tb-front-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(7, 23, 47, 0.06);
}

.tb-front-quick-card {
    position: relative;
    min-height: 178px;
    padding: 20px;
    color: var(--tb-front-navy);
    text-decoration: none;
}

.tb-front-quick-card:hover,
.tb-front-quick-card:focus-visible {
    border-color: rgba(249, 115, 22, 0.6);
    color: var(--tb-front-navy);
    transform: translateY(-1px);
}

.tb-front-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: #eef3f9;
    color: var(--tb-front-navy);
    font-size: 25px;
}

.tb-front-quick-card strong {
    display: block;
    font-size: 17px;
    line-height: 1.2;
}

.tb-front-quick-card small {
    display: block;
    margin-top: 8px;
    color: var(--tb-front-muted);
    font-size: 13px;
    line-height: 1.42;
}

.tb-front-quick-card em {
    position: absolute;
    right: 18px;
    bottom: 16px;
    color: var(--tb-front-orange);
    font-style: normal;
    font-weight: 900;
}

.tb-front-benefit-card {
    position: relative;
    padding: 24px;
}

.tb-front-benefit-card > span {
    display: block;
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
    border-radius: 13px;
    background:
        radial-gradient(circle at 50% 50%, #fff 0 21%, transparent 22%),
        var(--tb-front-orange);
}

.tb-front-benefit-card h3,
.tb-front-step h3,
.tb-front-vehicle-card h3,
.tb-front-review-card p {
    margin: 0;
    color: var(--tb-front-navy);
}

.tb-front-benefit-card h3 {
    font-size: 18px;
    line-height: 1.25;
}

.tb-front-benefit-card p,
.tb-front-step p,
.tb-front-vehicle-card p,
.tb-front-review-card span {
    margin: 10px 0 0;
    color: var(--tb-front-muted);
    font-size: 14px;
    line-height: 1.55;
}

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

.tb-front-step {
    position: relative;
    padding: 22px;
    border: 1px solid var(--tb-front-border);
    border-radius: 18px;
    background: #fff;
}

.tb-front-step b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--tb-front-navy);
    color: #fff;
    font-size: 13px;
}

.tb-front-step h3 {
    font-size: 17px;
    line-height: 1.25;
}

.tb-front-routes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tb-front-routes a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid var(--tb-front-border);
    border-radius: 999px;
    background: #fff;
    color: var(--tb-front-navy);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.tb-front-routes a span {
    color: var(--tb-front-orange);
}

.tb-front-routes a:hover,
.tb-front-routes a:focus-visible {
    border-color: rgba(249, 115, 22, 0.62);
    color: var(--tb-front-navy);
}

.tb-front-vehicle-card {
    overflow: hidden;
}

.tb-front-vehicle-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 156px;
    padding: 14px;
    background: linear-gradient(180deg, #f7f9fc, #edf2f8);
    color: var(--tb-front-muted);
    text-align: center;
    text-decoration: none;
}

.tb-front-vehicle-card__media img {
    max-width: 100%;
    max-height: 132px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.tb-front-vehicle-card > div {
    padding: 18px;
}

.tb-front-vehicle-card h3 {
    font-size: 17px;
    line-height: 1.25;
}

.tb-front-vehicle-card h3 a {
    color: inherit;
    text-decoration: none;
}

.tb-front-vehicle-card h3 a:hover,
.tb-front-vehicle-card h3 a:focus-visible {
    color: var(--tb-front-orange);
}

.tb-front-vehicle-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.tb-front-vehicle-card li {
    padding: 6px 9px;
    border-radius: 999px;
    background: #f3f6fb;
    color: var(--tb-front-muted);
    font-size: 12px;
    font-weight: 800;
}

.tb-front-center-action {
    margin-top: 24px;
    text-align: center;
}

.tb-front-link {
    color: var(--tb-front-orange);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.tb-front-link:hover,
.tb-front-link:focus-visible {
    color: var(--tb-front-orange-dark);
}

.tb-front-airport-cta {
    padding: 24px 0 54px;
}

.tb-front-airport-cta__box {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 24px;
    border: 2px solid rgba(249, 115, 22, 0.55);
    border-radius: 24px;
    background: linear-gradient(90deg, #fff7ed, #ffffff);
    box-shadow: 0 20px 52px rgba(249, 115, 22, 0.12);
}

.tb-front-airport-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 20px;
    background: var(--tb-front-orange);
    color: #fff;
    font-size: 34px;
}

.tb-front-airport-cta h2,
.tb-front-final-cta h2,
.tb-front-text-card h2 {
    margin: 0;
    color: var(--tb-front-navy);
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.tb-front-airport-cta p,
.tb-front-final-cta p {
    margin: 10px 0 0;
    color: var(--tb-front-graphite);
    font-size: 15px;
    line-height: 1.55;
}

.tb-front-airport-cta ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.tb-front-airport-cta li {
    position: relative;
    padding-left: 18px;
    color: var(--tb-front-muted);
    font-size: 13px;
    font-weight: 800;
}

.tb-front-airport-cta li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .48em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tb-front-orange);
}

.tb-front-reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tb-front-review-card {
    padding: 22px;
}

.tb-front-stars {
    margin-bottom: 14px;
    color: var(--tb-front-orange);
    font-size: 18px;
    letter-spacing: 0.08em;
}

.tb-front-review-card p {
    font-size: 16px;
    line-height: 1.55;
}

.tb-front-review-card span {
    display: block;
    font-weight: 800;
}

.tb-front-faq {
    margin-top: 48px;
}

.tb-front-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.tb-front-faq details {
    border: 1px solid var(--tb-front-border);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.tb-front-faq summary {
    cursor: pointer;
    padding: 17px 18px;
    color: var(--tb-front-navy);
    font-size: 15px;
    font-weight: 900;
    list-style: none;
}

.tb-front-faq summary::-webkit-details-marker {
    display: none;
}

.tb-front-faq details > div {
    padding: 0 18px 18px;
    color: var(--tb-front-muted);
    font-size: 14px;
    line-height: 1.6;
}

.tb-front-faq details > div p {
    margin: 0;
}

.tb-front-text-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 30px;
}

.tb-front-richtext {
    margin-top: 18px;
    color: var(--tb-front-graphite);
    font-size: 16px;
    line-height: 1.78;
}

.tb-front-richtext p {
    margin: 0 0 18px;
}

.tb-front-final-cta {
    padding: 34px 0 70px;
}

.tb-front-final-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 15% 50%, rgba(249, 115, 22, 0.24), transparent 22rem),
        var(--tb-front-navy);
    color: #fff;
}

.tb-front-final-cta h2,
.tb-front-final-cta p {
    color: #fff;
}

.tb-front-final-cta p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1060px) {
    .tb-front-hero__grid,
    .tb-front-airport-cta__box {
        grid-template-columns: 1fr;
    }

    .tb-front-booking__head span {
        text-align: left;
    }

    .tb-front-quick-grid,
    .tb-front-benefits-grid,
    .tb-front-fleet-grid,
    .tb-front-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tb-front-airport-cta__box .tb-front-button {
        justify-self: start;
    }
}

@media (max-width: 720px) {
    .tb-front-container {
        width: min(100% - 24px, 1200px);
    }

    .tb-front-hero {
        padding: 38px 0 24px;
    }

    .tb-front-hero h1 {
        font-size: clamp(32px, 11vw, 44px);
    }

    .tb-front-booking {
        border-radius: 20px;
    }

    .tb-front-booking__head,
    .tb-front-final-cta__box {
        display: grid;
    }

    .tb-front-form,
    .tb-front-quick-grid,
    .tb-front-benefits-grid,
    .tb-front-fleet-grid,
    .tb-front-reviews-grid,
    .tb-front-steps,
    .tb-front-faq-grid {
        grid-template-columns: 1fr;
    }

    .tb-front-section {
        padding: 46px 0;
    }

    .tb-front-section--compact {
        padding: 34px 0;
    }

    .tb-front-section__head {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tb-front-airport-cta__box,
    .tb-front-final-cta__box,
    .tb-front-text-card {
        padding: 20px;
    }

    .tb-front-final-cta__box {
        align-items: stretch;
    }

    .tb-front-final-cta__box .tb-front-button {
        width: 100%;
    }

    .tb-front-actions .tb-front-button {
        width: 100%;
    }
}

/* ===== TaxiBerlin front form controls square START ===== */
.tb-front-form input,
.tb-front-form select {
    border-radius: 0;
}
/* ===== TaxiBerlin front form controls square END ===== */

/* ===== TaxiBerlin front radius 1px all START ===== */
.tb-front-redesign .tb-front-button,
.tb-front-redesign .tb-front-form input,
.tb-front-redesign .tb-front-form select,
.tb-front-redesign .tb-front-form button,
.tb-front-redesign .tb-front-booking,
.tb-front-redesign .tb-front-quick-card,
.tb-front-redesign .tb-front-benefit-card,
.tb-front-redesign .tb-front-step,
.tb-front-redesign .tb-front-routes a,
.tb-front-redesign .tb-front-vehicle-card,
.tb-front-redesign .tb-front-vehicle-card__media,
.tb-front-redesign .tb-front-review-card,
.tb-front-redesign .tb-front-faq details,
.tb-front-redesign .tb-front-text-card,
.tb-front-redesign .tb-front-airport-cta__box,
.tb-front-redesign .tb-front-final-cta__box,
.tb-front-redesign .tb-front-card-icon,
.tb-front-redesign .tb-front-benefit-card > span,
.tb-front-redesign .tb-front-airport-cta__icon,
.tb-front-redesign .tb-front-vehicle-card li {
    border-radius: 1px;
}
/* ===== TaxiBerlin front radius 1px all END ===== */

/* ===== TaxiBerlin front compact desktop START ===== */
@media (min-width: 721px) {
    .tb-front-redesign .tb-front-hero {
        padding: 42px 0 28px;
    }

    .tb-front-redesign .tb-front-hero__grid {
        gap: 26px;
    }

    .tb-front-redesign .tb-front-eyebrow {
        margin-bottom: 12px;
        padding: 6px 10px;
        font-size: 12px;
    }

    .tb-front-redesign .tb-front-hero h1 {
        max-width: 620px;
        font-size: clamp(40px, 4.25vw, 54px);
        line-height: 1.02;
    }

    .tb-front-redesign .tb-front-lead {
        max-width: 560px;
        margin-top: 14px;
        font-size: 17px;
        line-height: 1.42;
    }

    .tb-front-redesign .tb-front-actions {
        margin-top: 20px;
        gap: 10px;
    }

    .tb-front-redesign .tb-front-button {
        min-height: 42px;
        padding: 11px 18px;
        font-size: 14px;
    }

    .tb-front-redesign .tb-front-trust {
        margin-top: 18px;
        gap: 8px 12px;
    }

    .tb-front-redesign .tb-front-trust li {
        font-size: 12px;
        padding-left: 16px;
    }

    .tb-front-redesign .tb-front-booking {
        max-width: 430px;
        justify-self: end;
    }

    .tb-front-redesign .tb-front-booking__head {
        padding: 14px 18px;
    }

    .tb-front-redesign .tb-front-booking__head strong {
        font-size: 17px;
    }

    .tb-front-redesign .tb-front-booking__head span {
        max-width: 170px;
        font-size: 11px;
        line-height: 1.28;
    }

    .tb-front-redesign .tb-front-form {
        gap: 9px;
        padding: 15px 18px 18px;
    }

    .tb-front-redesign .tb-front-form label {
        gap: 5px;
    }

    .tb-front-redesign .tb-front-form span {
        font-size: 11px;
    }

    .tb-front-redesign .tb-front-form input,
    .tb-front-redesign .tb-front-form select {
        min-height: 40px;
        padding: 0 10px;
        font-size: 13px;
    }

    .tb-front-redesign .tb-front-form button {
        min-height: 42px;
        font-size: 14px;
    }

    .tb-front-redesign .tb-front-section {
        padding: 44px 0;
    }

    .tb-front-redesign .tb-front-section--compact {
        padding: 30px 0;
    }

    .tb-front-redesign .tb-front-section--text {
        padding-top: 28px;
    }

    .tb-front-redesign .tb-front-section__head {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
        margin-bottom: 20px;
    }

    .tb-front-redesign .tb-front-section__head > span {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .tb-front-redesign .tb-front-section__head h2 {
        font-size: clamp(25px, 2.7vw, 36px);
        line-height: 1.06;
    }

    .tb-front-redesign .tb-front-section__head p {
        max-width: 690px;
        margin-top: 6px;
        font-size: 14px;
        line-height: 1.45;
    }

    .tb-front-redesign .tb-front-quick-grid,
    .tb-front-redesign .tb-front-benefits-grid,
    .tb-front-redesign .tb-front-fleet-grid,
    .tb-front-redesign .tb-front-reviews-grid {
        gap: 13px;
    }

    .tb-front-redesign .tb-front-quick-card {
        min-height: 136px;
        padding: 16px;
    }

    .tb-front-redesign .tb-front-card-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 11px;
        font-size: 19px;
    }

    .tb-front-redesign .tb-front-quick-card strong {
        font-size: 15px;
    }

    .tb-front-redesign .tb-front-quick-card small {
        margin-top: 6px;
        font-size: 12px;
        line-height: 1.32;
    }

    .tb-front-redesign .tb-front-quick-card em {
        right: 14px;
        bottom: 12px;
    }

    .tb-front-redesign .tb-front-benefit-card {
        padding: 18px;
    }

    .tb-front-redesign .tb-front-benefit-card > span {
        width: 28px;
        height: 28px;
        margin-bottom: 13px;
    }

    .tb-front-redesign .tb-front-benefit-card h3 {
        font-size: 15px;
    }

    .tb-front-redesign .tb-front-benefit-card p {
        margin-top: 7px;
        font-size: 12px;
        line-height: 1.4;
    }

    .tb-front-redesign .tb-front-steps {
        gap: 12px;
    }

    .tb-front-redesign .tb-front-step {
        padding: 16px;
    }

    .tb-front-redesign .tb-front-step b {
        width: 24px;
        height: 24px;
        margin-bottom: 10px;
        font-size: 11px;
    }

    .tb-front-redesign .tb-front-step h3 {
        font-size: 14px;
    }

    .tb-front-redesign .tb-front-step p {
        margin-top: 6px;
        font-size: 12px;
        line-height: 1.38;
    }

    .tb-front-redesign .tb-front-routes {
        gap: 9px;
    }

    .tb-front-redesign .tb-front-routes a {
        min-height: 34px;
        padding: 7px 12px;
        font-size: 12px;
    }

    .tb-front-redesign .tb-front-vehicle-card__media {
        height: 130px;
        padding: 10px;
    }

    .tb-front-redesign .tb-front-vehicle-card__media img {
        max-height: 108px;
    }

    .tb-front-redesign .tb-front-vehicle-card > div {
        padding: 14px;
    }

    .tb-front-redesign .tb-front-vehicle-card h3 {
        font-size: 14px;
    }

    .tb-front-redesign .tb-front-vehicle-card p {
        margin-top: 6px;
        font-size: 12px;
    }

    .tb-front-redesign .tb-front-vehicle-card ul {
        margin-top: 10px;
        gap: 6px;
    }

    .tb-front-redesign .tb-front-vehicle-card li {
        padding: 4px 7px;
        font-size: 11px;
    }

    .tb-front-redesign .tb-front-center-action {
        margin-top: 16px;
    }

    .tb-front-redesign .tb-front-airport-cta {
        padding: 12px 0 38px;
    }

    .tb-front-redesign .tb-front-airport-cta__box {
        grid-template-columns: 54px minmax(0, 1fr) auto;
        gap: 16px;
        padding: 18px;
    }

    .tb-front-redesign .tb-front-airport-cta__icon {
        width: 46px;
        height: 46px;
        font-size: 25px;
    }

    .tb-front-redesign .tb-front-airport-cta h2 {
        font-size: 28px;
    }

    .tb-front-redesign .tb-front-airport-cta p {
        margin-top: 6px;
        font-size: 13px;
        line-height: 1.4;
    }

    .tb-front-redesign .tb-front-airport-cta ul {
        margin-top: 9px;
        gap: 7px 10px;
    }

    .tb-front-redesign .tb-front-airport-cta li {
        font-size: 11px;
        padding-left: 14px;
    }

    .tb-front-redesign .tb-front-review-card {
        padding: 17px;
    }

    .tb-front-redesign .tb-front-stars {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .tb-front-redesign .tb-front-review-card p {
        font-size: 14px;
        line-height: 1.42;
    }

    .tb-front-redesign .tb-front-review-card span {
        margin-top: 8px;
        font-size: 12px;
    }

    .tb-front-redesign .tb-front-faq {
        margin-top: 36px;
    }

    .tb-front-redesign .tb-front-faq-grid {
        gap: 10px;
    }

    .tb-front-redesign .tb-front-faq summary {
        padding: 13px 15px;
        font-size: 13px;
    }

    .tb-front-redesign .tb-front-faq details > div {
        padding: 0 15px 14px;
        font-size: 12px;
        line-height: 1.45;
    }

    .tb-front-redesign .tb-front-text-card {
        max-width: 900px;
        padding: 24px;
    }

    .tb-front-redesign .tb-front-text-card h2 {
        font-size: 30px;
    }

    .tb-front-redesign .tb-front-richtext {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.62;
    }

    .tb-front-redesign .tb-front-richtext p {
        margin-bottom: 13px;
    }

    .tb-front-redesign .tb-front-final-cta {
        padding: 24px 0 52px;
    }

    .tb-front-redesign .tb-front-final-cta__box {
        padding: 22px;
    }

    .tb-front-redesign .tb-front-final-cta h2 {
        font-size: 28px;
    }

    .tb-front-redesign .tb-front-final-cta p {
        margin-top: 6px;
        font-size: 13px;
        line-height: 1.42;
    }

    .tb-front-redesign .tb-front-quick-card,
    .tb-front-redesign .tb-front-benefit-card,
    .tb-front-redesign .tb-front-vehicle-card,
    .tb-front-redesign .tb-front-review-card,
    .tb-front-redesign .tb-front-text-card {
        box-shadow: 0 10px 26px rgba(7, 23, 47, 0.045);
    }
}
/* ===== TaxiBerlin front compact desktop END ===== */

/* ===== TaxiBerlin front premium polish START ===== */
@media (min-width: 721px) {
    .tb-front-redesign .tb-front-hero {
        padding: 40px 0 26px;
    }

    .tb-front-redesign .tb-front-booking {
        max-width: 390px;
        border-color: rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    }

    .tb-front-redesign .tb-front-booking__head {
        padding: 12px 16px;
        background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    }

    .tb-front-redesign .tb-front-booking__head strong {
        font-size: 16px;
        letter-spacing: -0.01em;
    }

    .tb-front-redesign .tb-front-booking__head span {
        max-width: 145px;
        font-size: 10px;
    }

    .tb-front-redesign .tb-front-form {
        gap: 8px;
        padding: 13px 16px 16px;
    }

    .tb-front-redesign .tb-front-form input,
    .tb-front-redesign .tb-front-form select {
        min-height: 37px;
        border-color: #d6deea;
        background: #fbfcfe;
        font-size: 12px;
    }

    .tb-front-redesign .tb-front-form button {
        min-height: 39px;
        font-size: 13px;
        box-shadow: 0 10px 22px rgba(249, 115, 22, 0.22);
    }

    .tb-front-redesign .tb-front-quick-card,
    .tb-front-redesign .tb-front-benefit-card,
    .tb-front-redesign .tb-front-step,
    .tb-front-redesign .tb-front-vehicle-card,
    .tb-front-redesign .tb-front-review-card,
    .tb-front-redesign .tb-front-faq details,
    .tb-front-redesign .tb-front-text-card {
        border-color: #cfd8e6;
        background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
        box-shadow: 0 8px 22px rgba(7, 23, 47, 0.04);
    }

    .tb-front-redesign .tb-front-quick-card:hover,
    .tb-front-redesign .tb-front-quick-card:focus-visible,
    .tb-front-redesign .tb-front-routes a:hover,
    .tb-front-redesign .tb-front-routes a:focus-visible {
        border-color: rgba(249, 115, 22, 0.72);
        box-shadow: 0 10px 24px rgba(249, 115, 22, 0.08);
    }

    .tb-front-redesign .tb-front-card-icon {
        background: #eef3f9;
        border: 1px solid #d8e1ee;
    }

    .tb-front-redesign .tb-front-benefit-card > span {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
    }

    .tb-front-redesign .tb-front-vehicle-card__media {
        background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
        border-bottom: 1px solid #dce4ee;
    }

    .tb-front-redesign .tb-front-airport-cta {
        padding: 10px 0 34px;
    }

    .tb-front-redesign .tb-front-airport-cta__box {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 14px;
        padding: 15px 16px;
        border-width: 1px;
        border-color: #f97316;
        background:
            linear-gradient(90deg, rgba(249, 115, 22, 0.11) 0%, rgba(255, 255, 255, 0.98) 62%),
            #ffffff;
        box-shadow: 0 12px 30px rgba(249, 115, 22, 0.10);
    }

    .tb-front-redesign .tb-front-airport-cta__icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .tb-front-redesign .tb-front-airport-cta h2 {
        font-size: 24px;
        letter-spacing: -0.02em;
    }

    .tb-front-redesign .tb-front-airport-cta p {
        max-width: 760px;
        margin-top: 4px;
        font-size: 12px;
        line-height: 1.34;
    }

    .tb-front-redesign .tb-front-airport-cta ul {
        margin-top: 7px;
        gap: 6px 9px;
    }

    .tb-front-redesign .tb-front-airport-cta li {
        font-size: 10px;
    }

    .tb-front-redesign .tb-front-airport-cta .tb-front-button {
        min-height: 38px;
        padding: 10px 15px;
        font-size: 12px;
        white-space: nowrap;
    }

    .tb-front-redesign .tb-front-section--text {
        padding-top: 20px;
    }

    .tb-front-redesign .tb-front-text-card {
        max-width: 820px;
        padding: 20px 22px;
    }

    .tb-front-redesign .tb-front-text-card h2 {
        font-size: 26px;
    }

    .tb-front-redesign .tb-front-richtext {
        margin-top: 12px;
        font-size: 13px;
        line-height: 1.5;
    }

    .tb-front-redesign .tb-front-richtext p {
        margin-bottom: 10px;
    }

    .tb-front-redesign .tb-front-final-cta {
        padding: 20px 0 46px;
    }

    .tb-front-redesign .tb-front-final-cta__box {
        padding: 18px 20px;
        box-shadow: 0 14px 34px rgba(7, 23, 47, 0.10);
    }

    .tb-front-redesign .tb-front-final-cta h2 {
        font-size: 25px;
    }

    .tb-front-redesign .tb-front-final-cta p {
        font-size: 12px;
        line-height: 1.36;
    }

    .tb-front-redesign .tb-front-final-cta .tb-front-button {
        min-height: 38px;
        padding: 10px 16px;
        font-size: 12px;
    }
}
/* ===== TaxiBerlin front premium polish END ===== */

/* ===== TaxiBerlin front final desktop polish START ===== */
@media (min-width: 721px) {
    .tb-front-redesign .tb-front-booking {
        max-width: 410px;
        border: 1px solid rgba(255, 255, 255, 0.30);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 253, 0.98) 100%);
        box-shadow:
            0 20px 46px rgba(0, 0, 0, 0.24),
            inset 0 1px 0 rgba(255, 255, 255, 0.78);
    }

    .tb-front-redesign .tb-front-booking__head {
        padding: 13px 16px 11px;
        border-bottom-color: #cfd9e7;
        background:
            linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
    }

    .tb-front-redesign .tb-front-booking__head strong {
        color: #07172f;
        font-size: 17px;
        font-weight: 900;
    }

    .tb-front-redesign .tb-front-booking__head span {
        color: #6b7280;
        font-size: 10px;
        font-weight: 700;
    }

    .tb-front-redesign .tb-front-form {
        padding: 14px 16px 16px;
        gap: 8px 10px;
    }

    .tb-front-redesign .tb-front-form span {
        color: #42526a;
        font-weight: 900;
    }

    .tb-front-redesign .tb-front-form input,
    .tb-front-redesign .tb-front-form select {
        min-height: 38px;
        border-color: #c9d4e3;
        background: #ffffff;
        color: #111827;
        box-shadow: inset 0 1px 0 rgba(7, 23, 47, 0.03);
    }

    .tb-front-redesign .tb-front-form input::placeholder {
        color: #8a95a6;
    }

    .tb-front-redesign .tb-front-form button {
        min-height: 41px;
        background: linear-gradient(180deg, #ff8124 0%, #f97316 100%);
        box-shadow:
            0 12px 24px rgba(249, 115, 22, 0.26),
            inset 0 1px 0 rgba(255, 255, 255, 0.22);
    }

    .tb-front-redesign .tb-front-quick-card,
    .tb-front-redesign .tb-front-benefit-card,
    .tb-front-redesign .tb-front-step,
    .tb-front-redesign .tb-front-vehicle-card,
    .tb-front-redesign .tb-front-review-card,
    .tb-front-redesign .tb-front-faq details {
        border-color: #c8d3e2;
        background:
            linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
        box-shadow:
            0 8px 20px rgba(7, 23, 47, 0.045),
            inset 0 1px 0 rgba(255, 255, 255, 0.75);
    }

    .tb-front-redesign .tb-front-quick-card,
    .tb-front-redesign .tb-front-benefit-card {
        border-top-color: #dbe3ee;
    }

    .tb-front-redesign .tb-front-quick-card strong,
    .tb-front-redesign .tb-front-benefit-card h3,
    .tb-front-redesign .tb-front-step h3,
    .tb-front-redesign .tb-front-vehicle-card h3 {
        color: #07172f;
        font-weight: 900;
    }

    .tb-front-redesign .tb-front-steps {
        position: relative;
    }

    .tb-front-redesign .tb-front-step {
        position: relative;
    }

    .tb-front-redesign .tb-front-step:not(:last-child)::after {
        content: "→";
        position: absolute;
        top: 50%;
        right: -12px;
        transform: translateY(-50%);
        color: #8b98aa;
        font-size: 18px;
        font-weight: 900;
        line-height: 1;
        pointer-events: none;
    }

    .tb-front-redesign .tb-front-step b {
        background: #07172f;
        box-shadow: 0 4px 10px rgba(7, 23, 47, 0.18);
    }

    .tb-front-redesign .tb-front-vehicle-card__media {
        height: 146px;
        padding: 8px 12px;
        background:
            linear-gradient(180deg, #f9fbfd 0%, #eef3f9 100%);
    }

    .tb-front-redesign .tb-front-vehicle-card__media img {
        max-height: 128px;
        transform: scale(1.08);
        transform-origin: center;
    }

    .tb-front-redesign .tb-front-vehicle-card > div {
        padding: 14px 16px;
    }

    .tb-front-redesign .tb-front-vehicle-card li {
        border: 1px solid #d8e1ee;
        background: #f6f8fb;
        color: #42526a;
    }

    .tb-front-redesign .tb-front-airport-cta__box {
        border-color: #f97316;
        background:
            linear-gradient(90deg, rgba(249, 115, 22, 0.14) 0%, rgba(255, 255, 255, 0.99) 58%),
            #ffffff;
        box-shadow:
            0 13px 28px rgba(249, 115, 22, 0.11),
            inset 0 1px 0 rgba(255, 255, 255, 0.84);
    }

    .tb-front-redesign .tb-front-airport-cta__icon {
        background: linear-gradient(180deg, #ff8124 0%, #f97316 100%);
        box-shadow: 0 10px 20px rgba(249, 115, 22, 0.20);
    }

    .tb-front-redesign .tb-front-airport-cta h2 {
        color: #07172f;
        font-weight: 900;
    }

    .tb-front-redesign .tb-front-airport-cta .tb-front-button {
        background: linear-gradient(180deg, #ff8124 0%, #f97316 100%);
        box-shadow: 0 10px 22px rgba(249, 115, 22, 0.24);
    }

    .tb-front-redesign .tb-front-text-card {
        max-width: 760px;
        padding: 20px 22px;
        border-color: #d2dbe7;
        background: #ffffff;
        box-shadow: 0 8px 22px rgba(7, 23, 47, 0.035);
    }

    .tb-front-redesign .tb-front-text-card h2 {
        font-size: 24px;
        color: #07172f;
    }

    .tb-front-redesign .tb-front-richtext {
        color: #39475a;
        font-size: 12.5px;
        line-height: 1.48;
    }

    .tb-front-redesign .tb-front-richtext p {
        margin-bottom: 9px;
    }

    .tb-front-redesign .tb-front-final-cta__box {
        background:
            radial-gradient(circle at 10% 50%, rgba(249, 115, 22, 0.22), transparent 18rem),
            linear-gradient(90deg, #07172f 0%, #081b38 100%);
        box-shadow: 0 16px 34px rgba(7, 23, 47, 0.14);
    }
}
/* ===== TaxiBerlin front final desktop polish END ===== */

/* ===== TaxiBerlin front mobile polish START ===== */
@media (max-width: 720px) {
    .tb-front-redesign .tb-front-hero {
        padding: 26px 0 20px;
        background-position: center top;
    }

    .tb-front-redesign .tb-front-hero__grid {
        gap: 18px;
    }

    .tb-front-redesign .tb-front-eyebrow {
        margin-bottom: 10px;
        padding: 5px 8px;
        font-size: 11px;
    }

    .tb-front-redesign .tb-front-hero h1 {
        font-size: clamp(29px, 9.2vw, 38px);
        line-height: 1.04;
        letter-spacing: -0.035em;
    }

    .tb-front-redesign .tb-front-lead {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.38;
    }

    .tb-front-redesign .tb-front-actions {
        margin-top: 15px;
        gap: 8px;
    }

    .tb-front-redesign .tb-front-button {
        min-height: 40px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .tb-front-redesign .tb-front-trust {
        margin-top: 13px;
        gap: 6px 10px;
    }

    .tb-front-redesign .tb-front-trust li {
        font-size: 11px;
        line-height: 1.25;
        padding-left: 14px;
    }

    .tb-front-redesign .tb-front-booking {
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    }

    .tb-front-redesign .tb-front-booking__head {
        padding: 10px 12px;
    }

    .tb-front-redesign .tb-front-booking__head strong {
        font-size: 15px;
    }

    .tb-front-redesign .tb-front-booking__head span {
        max-width: 135px;
        font-size: 10px;
        line-height: 1.2;
    }

    .tb-front-redesign .tb-front-form {
        gap: 8px;
        padding: 12px;
    }

    .tb-front-redesign .tb-front-form label {
        gap: 4px;
    }

    .tb-front-redesign .tb-front-form span {
        font-size: 10px;
    }

    .tb-front-redesign .tb-front-form input,
    .tb-front-redesign .tb-front-form select {
        min-height: 37px;
        padding: 0 9px;
        font-size: 12px;
    }

    .tb-front-redesign .tb-front-form button {
        min-height: 40px;
        font-size: 13px;
    }

    .tb-front-redesign .tb-front-section {
        padding: 32px 0;
    }

    .tb-front-redesign .tb-front-section--compact {
        padding: 26px 0;
    }

    .tb-front-redesign .tb-front-section__head {
        gap: 9px;
        margin-bottom: 15px;
    }

    .tb-front-redesign .tb-front-section__head > span {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .tb-front-redesign .tb-front-section__head h2 {
        font-size: clamp(23px, 7.2vw, 30px);
        line-height: 1.08;
    }

    .tb-front-redesign .tb-front-section__head p {
        margin-top: 5px;
        font-size: 12px;
        line-height: 1.36;
    }

    .tb-front-redesign .tb-front-quick-grid,
    .tb-front-redesign .tb-front-benefits-grid,
    .tb-front-redesign .tb-front-fleet-grid,
    .tb-front-redesign .tb-front-reviews-grid,
    .tb-front-redesign .tb-front-steps,
    .tb-front-redesign .tb-front-faq-grid {
        gap: 10px;
    }

    .tb-front-redesign .tb-front-quick-card {
        min-height: 0;
        padding: 13px;
    }

    .tb-front-redesign .tb-front-card-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 9px;
        font-size: 17px;
    }

    .tb-front-redesign .tb-front-quick-card strong {
        font-size: 14px;
    }

    .tb-front-redesign .tb-front-quick-card small {
        margin-top: 5px;
        font-size: 11px;
        line-height: 1.3;
    }

    .tb-front-redesign .tb-front-benefit-card,
    .tb-front-redesign .tb-front-step,
    .tb-front-redesign .tb-front-review-card {
        padding: 13px;
    }

    .tb-front-redesign .tb-front-benefit-card > span {
        width: 24px;
        height: 24px;
        margin-bottom: 10px;
    }

    .tb-front-redesign .tb-front-benefit-card h3,
    .tb-front-redesign .tb-front-step h3 {
        font-size: 14px;
    }

    .tb-front-redesign .tb-front-benefit-card p,
    .tb-front-redesign .tb-front-step p {
        margin-top: 5px;
        font-size: 11px;
        line-height: 1.34;
    }

    .tb-front-redesign .tb-front-step b {
        width: 23px;
        height: 23px;
        margin-bottom: 8px;
        font-size: 10px;
    }

    .tb-front-redesign .tb-front-routes {
        gap: 7px;
    }

    .tb-front-redesign .tb-front-routes a {
        min-height: 31px;
        padding: 6px 9px;
        font-size: 11px;
    }

    .tb-front-redesign .tb-front-vehicle-card__media {
        height: 108px;
        padding: 6px 10px;
    }

    .tb-front-redesign .tb-front-vehicle-card__media img {
        max-height: 92px;
        transform: scale(1.02);
    }

    .tb-front-redesign .tb-front-vehicle-card > div {
        padding: 11px 12px;
    }

    .tb-front-redesign .tb-front-vehicle-card h3 {
        font-size: 13px;
    }

    .tb-front-redesign .tb-front-vehicle-card p {
        margin-top: 4px;
        font-size: 11px;
    }

    .tb-front-redesign .tb-front-vehicle-card ul {
        margin-top: 8px;
        gap: 5px;
    }

    .tb-front-redesign .tb-front-vehicle-card li {
        padding: 3px 6px;
        font-size: 10px;
    }

    .tb-front-redesign .tb-front-center-action {
        margin-top: 13px;
    }

    .tb-front-redesign .tb-front-link {
        font-size: 12px;
    }

    .tb-front-redesign .tb-front-airport-cta {
        padding: 10px 0 28px;
    }

    .tb-front-redesign .tb-front-airport-cta__box {
        gap: 10px;
        padding: 13px;
    }

    .tb-front-redesign .tb-front-airport-cta__icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .tb-front-redesign .tb-front-airport-cta h2 {
        font-size: 21px;
    }

    .tb-front-redesign .tb-front-airport-cta p {
        margin-top: 5px;
        font-size: 11.5px;
        line-height: 1.34;
    }

    .tb-front-redesign .tb-front-airport-cta ul {
        margin-top: 7px;
        gap: 5px 8px;
    }

    .tb-front-redesign .tb-front-airport-cta li {
        font-size: 10px;
        padding-left: 13px;
    }

    .tb-front-redesign .tb-front-airport-cta .tb-front-button {
        width: 100%;
        min-height: 39px;
        margin-top: 4px;
        font-size: 12px;
    }

    .tb-front-redesign .tb-front-stars {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .tb-front-redesign .tb-front-review-card p {
        font-size: 12px;
        line-height: 1.36;
    }

    .tb-front-redesign .tb-front-review-card span {
        margin-top: 7px;
        font-size: 11px;
    }

    .tb-front-redesign .tb-front-faq {
        margin-top: 27px;
    }

    .tb-front-redesign .tb-front-faq summary {
        padding: 12px;
        font-size: 12px;
        line-height: 1.28;
    }

    .tb-front-redesign .tb-front-faq details > div {
        padding: 0 12px 12px;
        font-size: 11.5px;
        line-height: 1.38;
    }

    .tb-front-redesign .tb-front-section--text {
        padding-top: 20px;
    }

    .tb-front-redesign .tb-front-text-card {
        padding: 15px;
    }

    .tb-front-redesign .tb-front-text-card h2 {
        font-size: 21px;
        line-height: 1.12;
    }

    .tb-front-redesign .tb-front-richtext {
        margin-top: 10px;
        font-size: 11.5px;
        line-height: 1.42;
    }

    .tb-front-redesign .tb-front-richtext p {
        margin-bottom: 8px;
    }

    .tb-front-redesign .tb-front-final-cta {
        padding: 22px 0 34px;
    }

    .tb-front-redesign .tb-front-final-cta__box {
        padding: 15px;
        gap: 14px;
    }

    .tb-front-redesign .tb-front-final-cta h2 {
        font-size: 21px;
    }

    .tb-front-redesign .tb-front-final-cta p {
        margin-top: 5px;
        font-size: 11.5px;
        line-height: 1.35;
    }

    .tb-front-redesign .tb-front-final-cta__box .tb-front-button {
        min-height: 39px;
        font-size: 12px;
    }
}
/* ===== TaxiBerlin front mobile polish END ===== */

/* ===== TaxiBerlin front pro 2026 visual system START ===== */

/*
  Final visual layer:
  - keeps existing HTML/SEO/booking structure
  - strengthens commercial hierarchy
  - keeps 1px radius requirement
  - improves desktop and mobile rhythm
*/

.tb-front-redesign {
  --tb-pro-navy: #07182f;
  --tb-pro-navy-2: #0b213e;
  --tb-pro-ink: #10233f;
  --tb-pro-muted: #64748b;
  --tb-pro-line: #d8e1ec;
  --tb-pro-soft: #f4f7fb;
  --tb-pro-card: #ffffff;
  --tb-pro-orange: #f97316;
  --tb-pro-orange-dark: #ea580c;
  --tb-pro-shadow: 0 14px 34px rgba(10, 28, 55, .10);
  --tb-pro-shadow-soft: 0 8px 22px rgba(10, 28, 55, .07);
  color: var(--tb-pro-ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 44%, #eef3f8 100%);
}

.tb-front-redesign .tb-front-container {
  width: min(1120px, calc(100% - 36px));
}

.tb-front-redesign .tb-front-button,
.tb-front-redesign .tb-front-booking,
.tb-front-redesign .tb-front-quick-card,
.tb-front-redesign .tb-front-benefit-card,
.tb-front-redesign .tb-front-step,
.tb-front-redesign .tb-front-routes a,
.tb-front-redesign .tb-front-vehicle-card,
.tb-front-redesign .tb-front-review-card,
.tb-front-redesign .tb-front-faq details,
.tb-front-redesign .tb-front-text-card,
.tb-front-redesign .tb-front-airport-cta__box,
.tb-front-redesign .tb-front-final-cta__box,
.tb-front-redesign .tb-front-form input,
.tb-front-redesign .tb-front-form select,
.tb-front-redesign .tb-front-form button {
  border-radius: 1px;
}

/* HERO */
@media (min-width: 721px) {
  .tb-front-redesign .tb-front-hero {
    min-height: 430px;
    padding: 60px 0 34px;
    position: relative;
    overflow: hidden;
    background-position: center center;
  }

  .tb-front-redesign .tb-front-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 76% 42%, rgba(249, 115, 22, .22), transparent 28%),
      linear-gradient(90deg, rgba(3, 17, 36, .96) 0%, rgba(3, 17, 36, .84) 45%, rgba(3, 17, 36, .58) 72%, rgba(3, 17, 36, .74) 100%);
    z-index: 0;
  }

  .tb-front-redesign .tb-front-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: center;
    gap: 58px;
  }

  .tb-front-redesign .tb-front-hero__content {
    max-width: 660px;
  }

  .tb-front-redesign .tb-front-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #dbeafe;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .01em;
  }

  .tb-front-redesign .tb-front-hero h1 {
    margin-top: 16px;
    max-width: 620px;
    font-size: clamp(44px, 4.3vw, 58px);
    line-height: .98;
    letter-spacing: -.045em;
    color: #ffffff;
  }

  .tb-front-redesign .tb-front-lead {
    max-width: 520px;
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.5;
    color: #e2e8f0;
  }

  .tb-front-redesign .tb-front-actions {
    margin-top: 24px;
    gap: 10px;
  }

  .tb-front-redesign .tb-front-button {
    min-height: 44px;
    padding: 0 19px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -.01em;
    box-shadow: none;
  }

  .tb-front-redesign .tb-front-button--primary {
    background: var(--tb-pro-orange);
    border-color: var(--tb-pro-orange);
    color: #ffffff;
  }

  .tb-front-redesign .tb-front-button--primary:hover {
    background: var(--tb-pro-orange-dark);
    border-color: var(--tb-pro-orange-dark);
  }

  .tb-front-redesign .tb-front-button--secondary {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.22);
    color: #ffffff;
  }

  .tb-front-redesign .tb-front-trust {
    margin-top: 18px;
    gap: 13px;
    color: #cbd5e1;
    font-size: 12px;
  }

  .tb-front-redesign .tb-front-trust span::before {
    box-shadow: 0 0 0 3px rgba(249,115,22,.14);
  }

  .tb-front-redesign .tb-front-booking {
    width: 390px;
    border: 1px solid rgba(226,232,240,.92);
    background: rgba(255,255,255,.98);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
    overflow: visible;
  }

  .tb-front-redesign .tb-front-booking__head {
    padding: 16px 18px 11px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid #e5edf5;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  }

  .tb-front-redesign .tb-front-booking__head strong {
    color: var(--tb-pro-navy);
    font-size: 18px;
    letter-spacing: -.03em;
  }

  .tb-front-redesign .tb-front-booking__head span {
    max-width: 150px;
    font-size: 10.5px;
    line-height: 1.35;
    text-align: right;
    color: #64748b;
  }

  .tb-front-redesign .tb-front-form {
    padding: 14px 18px 18px;
    gap: 9px;
  }

  .tb-front-redesign .tb-front-form label {
    color: #24364f;
    font-size: 11px;
    font-weight: 900;
  }

  .tb-front-redesign .tb-front-form input,
  .tb-front-redesign .tb-front-form select {
    min-height: 41px;
    border: 1px solid #d3deea;
    background: #ffffff;
    color: #0f172a;
    font-size: 13px;
    box-shadow: inset 0 1px 0 rgba(10,28,55,.03);
  }

  .tb-front-redesign .tb-front-form input:focus,
  .tb-front-redesign .tb-front-form select:focus {
    border-color: var(--tb-pro-orange);
    outline: 2px solid rgba(249,115,22,.16);
    outline-offset: 0;
  }

  .tb-front-redesign .tb-front-form button {
    margin-top: 7px;
    min-height: 44px;
    font-size: 13px;
    font-weight: 950;
  }
}

/* SECTION RHYTHM */
@media (min-width: 721px) {
  .tb-front-redesign .tb-front-section {
    padding: 58px 0;
  }

  .tb-front-redesign .tb-front-section--compact {
    padding: 44px 0;
  }

  .tb-front-redesign .tb-front-section--soft {
    padding: 54px 0;
    background:
      linear-gradient(180deg, rgba(241,245,249,.92) 0%, rgba(238,244,250,.92) 100%);
    border-top: 1px solid #e3ebf4;
    border-bottom: 1px solid #e3ebf4;
  }

  .tb-front-redesign .tb-front-section__head {
    margin-bottom: 23px;
  }

  .tb-front-redesign .tb-front-section__head h2 {
    font-size: clamp(31px, 2.4vw, 39px);
    line-height: 1.04;
    letter-spacing: -.045em;
    color: var(--tb-pro-navy);
  }

  .tb-front-redesign .tb-front-section__head p {
    max-width: 660px;
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--tb-pro-muted);
  }

  .tb-front-redesign .tb-front-section__head > span:first-child,
  .tb-front-redesign .tb-front-section__head .tb-front-section-number {
    background: var(--tb-pro-navy);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 8px 20px rgba(7,24,47,.18);
  }
}

/* COMMERCIAL CARDS */
@media (min-width: 721px) {
  .tb-front-redesign .tb-front-quick-grid,
  .tb-front-redesign .tb-front-benefits-grid,
  .tb-front-redesign .tb-front-steps,
  .tb-front-redesign .tb-front-fleet-grid,
  .tb-front-redesign .tb-front-reviews-grid {
    gap: 14px;
  }

  .tb-front-redesign .tb-front-quick-card,
  .tb-front-redesign .tb-front-benefit-card,
  .tb-front-redesign .tb-front-step,
  .tb-front-redesign .tb-front-review-card {
    position: relative;
    border: 1px solid var(--tb-pro-line);
    background: #ffffff;
    box-shadow: var(--tb-pro-shadow-soft);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  }

  .tb-front-redesign .tb-front-quick-card:hover,
  .tb-front-redesign .tb-front-benefit-card:hover,
  .tb-front-redesign .tb-front-step:hover,
  .tb-front-redesign .tb-front-review-card:hover,
  .tb-front-redesign .tb-front-vehicle-card:hover {
    transform: translateY(-2px);
    border-color: #c3d1e0;
    box-shadow: var(--tb-pro-shadow);
  }

  .tb-front-redesign .tb-front-quick-card {
    min-height: 104px;
    padding: 18px 17px 16px;
  }

  .tb-front-redesign .tb-front-quick-card h3,
  .tb-front-redesign .tb-front-benefit-card h3,
  .tb-front-redesign .tb-front-step h3,
  .tb-front-redesign .tb-front-vehicle-card h3 {
    color: var(--tb-pro-navy);
    letter-spacing: -.02em;
  }

  .tb-front-redesign .tb-front-quick-card p,
  .tb-front-redesign .tb-front-benefit-card p,
  .tb-front-redesign .tb-front-step p,
  .tb-front-redesign .tb-front-review-card p {
    color: #5b6b80;
  }

  .tb-front-redesign .tb-front-card-icon,
  .tb-front-redesign .tb-front-benefit-card > span {
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
    color: var(--tb-pro-orange-dark);
    border: 1px solid #fed7aa;
  }

  .tb-front-redesign .tb-front-benefit-card {
    min-height: 116px;
    padding: 18px;
  }

  .tb-front-redesign .tb-front-benefit-card::before,
  .tb-front-redesign .tb-front-quick-card::before,
  .tb-front-redesign .tb-front-step::before {
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    width: 3px;
    height: calc(100% + 2px);
    background: var(--tb-pro-orange);
    opacity: .86;
  }

  .tb-front-redesign .tb-front-step {
    min-height: 112px;
    padding: 18px;
  }

  .tb-front-redesign .tb-front-step > span:first-child {
    background: var(--tb-pro-navy);
    color: #ffffff;
    border: 1px solid #132b4c;
  }

  .tb-front-redesign .tb-front-step:not(:last-child)::after {
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tb-pro-orange);
    font-size: 18px;
    font-weight: 950;
  }
}

/* ROUTES */
@media (min-width: 721px) {
  .tb-front-redesign .tb-front-routes {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
  }

  .tb-front-redesign .tb-front-routes a {
    min-height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #cbd8e6;
    background: #ffffff;
    color: var(--tb-pro-navy);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 5px 14px rgba(10,28,55,.05);
  }

  .tb-front-redesign .tb-front-routes a:hover {
    border-color: var(--tb-pro-orange);
    color: var(--tb-pro-orange-dark);
    background: #fff7ed;
  }
}

/* FLEET */
@media (min-width: 721px) {
  .tb-front-redesign .tb-front-vehicle-card {
    overflow: hidden;
    border: 1px solid var(--tb-pro-line);
    background: #ffffff;
    box-shadow: var(--tb-pro-shadow-soft);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  }

  .tb-front-redesign .tb-front-vehicle-card__media {
    height: 156px;
    background:
      radial-gradient(circle at 50% 62%, rgba(15,23,42,.12), transparent 36%),
      linear-gradient(180deg, #f8fafc 0%, #eaf0f6 100%);
    border-bottom: 1px solid #dde7f1;
  }

  .tb-front-redesign .tb-front-vehicle-card__media img {
    max-height: 138px;
    transform: scale(1.08);
  }

  .tb-front-redesign .tb-front-vehicle-card > div:not(.tb-front-vehicle-card__media) {
    padding: 13px 14px 15px;
  }

  .tb-front-redesign .tb-front-vehicle-card h3 {
    font-size: 15px;
    line-height: 1.2;
  }

  .tb-front-redesign .tb-front-vehicle-card p {
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
  }

  .tb-front-redesign .tb-front-vehicle-card ul {
    margin-top: 9px;
    gap: 5px;
  }

  .tb-front-redesign .tb-front-vehicle-card li {
    min-width: 25px;
    min-height: 22px;
    border: 1px solid #d7e2ee;
    background: #f8fafc;
    color: #10233f;
    font-size: 11px;
    font-weight: 850;
  }

  .tb-front-redesign .tb-front-center-action {
    margin-top: 20px;
  }

  .tb-front-redesign .tb-front-link {
    color: var(--tb-pro-orange-dark);
    font-size: 13px;
    font-weight: 950;
  }
}

/* BER CTA */
@media (min-width: 721px) {
  .tb-front-redesign .tb-front-airport-cta {
    padding: 25px 0 54px;
  }

  .tb-front-redesign .tb-front-airport-cta__box {
    min-height: 92px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(249,115,22,.42);
    background:
      linear-gradient(90deg, #fff7ed 0%, #ffffff 48%, #fff7ed 100%);
    box-shadow: 0 18px 42px rgba(249,115,22,.12);
  }

  .tb-front-redesign .tb-front-airport-cta__box::before {
    content: "";
    position: absolute;
    inset: -1px auto -1px -1px;
    width: 4px;
    background: var(--tb-pro-orange);
  }

  .tb-front-redesign .tb-front-airport-cta__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--tb-pro-orange);
    color: #ffffff;
    font-size: 22px;
  }

  .tb-front-redesign .tb-front-airport-cta h2 {
    font-size: 26px;
    line-height: 1.08;
    letter-spacing: -.035em;
    color: var(--tb-pro-navy);
  }

  .tb-front-redesign .tb-front-airport-cta p {
    margin-top: 5px;
    max-width: 760px;
    color: #53657c;
    font-size: 13px;
    line-height: 1.5;
  }

  .tb-front-redesign .tb-front-airport-cta .tb-front-button {
    min-width: 178px;
  }
}

/* REVIEWS / FAQ / SEO */
@media (min-width: 721px) {
  .tb-front-redesign .tb-front-review-card {
    min-height: 132px;
    padding: 18px;
  }

  .tb-front-redesign .tb-front-stars {
    color: var(--tb-pro-orange);
    letter-spacing: .08em;
  }

  .tb-front-redesign .tb-front-faq-grid {
    gap: 10px;
  }

  .tb-front-redesign .tb-front-faq details {
    border: 1px solid var(--tb-pro-line);
    background: #ffffff;
    box-shadow: 0 5px 14px rgba(10,28,55,.045);
  }

  .tb-front-redesign .tb-front-faq summary {
    min-height: 48px;
    padding: 14px 16px;
    color: var(--tb-pro-navy);
    font-size: 13px;
    font-weight: 950;
  }

  .tb-front-redesign .tb-front-faq details p {
    padding: 0 16px 15px;
    color: #5b6b80;
    font-size: 13px;
    line-height: 1.55;
  }

  .tb-front-redesign .tb-front-section--text {
    padding: 35px 0 54px;
  }

  .tb-front-redesign .tb-front-text-card {
    max-width: 760px;
    padding: 30px 34px;
    border: 1px solid #dbe5ef;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(10,28,55,.075);
  }

  .tb-front-redesign .tb-front-text-card::before {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin-bottom: 16px;
    background: var(--tb-pro-orange);
  }

  .tb-front-redesign .tb-front-text-card h2 {
    font-size: 26px;
    line-height: 1.12;
    letter-spacing: -.035em;
    color: var(--tb-pro-navy);
  }

  .tb-front-redesign .tb-front-richtext {
    margin-top: 14px;
    color: #405168;
    font-size: 13px;
    line-height: 1.68;
  }

  .tb-front-redesign .tb-front-richtext p + p {
    margin-top: 12px;
  }
}

/* FINAL CTA */
@media (min-width: 721px) {
  .tb-front-redesign .tb-front-final-cta {
    padding: 0 0 56px;
  }

  .tb-front-redesign .tb-front-final-cta__box {
    min-height: 78px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    background:
      linear-gradient(90deg, #07182f 0%, #0b213e 100%);
    border: 1px solid #183153;
    box-shadow: 0 20px 42px rgba(7,24,47,.18);
  }

  .tb-front-redesign .tb-front-final-cta h2 {
    color: #ffffff;
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -.035em;
  }

  .tb-front-redesign .tb-front-final-cta p {
    margin-top: 5px;
    color: #cbd5e1;
    font-size: 13px;
  }
}

/* MOBILE */
@media (max-width: 720px) {
  .tb-front-redesign {
    background: #f4f7fb;
  }

  .tb-front-redesign .tb-front-container {
    width: min(100% - 24px, 1120px);
  }

  .tb-front-redesign .tb-front-hero {
    padding: 28px 0 22px;
    background-position: center center;
  }

  .tb-front-redesign .tb-front-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(3,17,36,.94) 0%, rgba(3,17,36,.86) 56%, rgba(3,17,36,.92) 100%);
    z-index: 0;
  }

  .tb-front-redesign .tb-front-hero__grid {
    position: relative;
    z-index: 1;
    gap: 18px;
  }

  .tb-front-redesign .tb-front-eyebrow {
    padding: 5px 8px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #dbeafe;
    font-size: 10px;
  }

  .tb-front-redesign .tb-front-hero h1 {
    margin-top: 13px;
    font-size: clamp(31px, 9.4vw, 42px);
    line-height: 1.02;
    letter-spacing: -.045em;
  }

  .tb-front-redesign .tb-front-lead {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .tb-front-redesign .tb-front-actions {
    margin-top: 15px;
    gap: 8px;
  }

  .tb-front-redesign .tb-front-button {
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
    font-weight: 950;
  }

  .tb-front-redesign .tb-front-trust {
    margin-top: 13px;
    gap: 8px;
    font-size: 10.5px;
  }

  .tb-front-redesign .tb-front-booking {
    border: 1px solid #dbe5ef;
    background: #ffffff;
    box-shadow: 0 15px 34px rgba(0,0,0,.24);
  }

  .tb-front-redesign .tb-front-booking__head {
    padding: 11px 12px 8px;
    border-bottom: 1px solid #e5edf5;
  }

  .tb-front-redesign .tb-front-booking__head strong {
    font-size: 15px;
    color: var(--tb-pro-navy);
  }

  .tb-front-redesign .tb-front-booking__head span {
    max-width: 120px;
    font-size: 9.5px;
    line-height: 1.25;
  }

  .tb-front-redesign .tb-front-form {
    padding: 11px 12px 13px;
    gap: 8px;
  }

  .tb-front-redesign .tb-front-form input,
  .tb-front-redesign .tb-front-form select {
    min-height: 38px;
    border-color: #d3deea;
    font-size: 12px;
  }

  .tb-front-redesign .tb-front-form button {
    min-height: 40px;
  }

  .tb-front-redesign .tb-front-section {
    padding: 33px 0;
  }

  .tb-front-redesign .tb-front-section--compact {
    padding: 28px 0;
  }

  .tb-front-redesign .tb-front-section__head {
    margin-bottom: 15px;
  }

  .tb-front-redesign .tb-front-section__head h2 {
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -.035em;
  }

  .tb-front-redesign .tb-front-section__head p {
    font-size: 12px;
    line-height: 1.45;
  }

  .tb-front-redesign .tb-front-quick-card,
  .tb-front-redesign .tb-front-benefit-card,
  .tb-front-redesign .tb-front-step,
  .tb-front-redesign .tb-front-review-card,
  .tb-front-redesign .tb-front-faq details,
  .tb-front-redesign .tb-front-vehicle-card {
    border: 1px solid #d8e1ec;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(10,28,55,.055);
  }

  .tb-front-redesign .tb-front-quick-card,
  .tb-front-redesign .tb-front-benefit-card,
  .tb-front-redesign .tb-front-step {
    padding: 14px;
  }

  .tb-front-redesign .tb-front-quick-card h3,
  .tb-front-redesign .tb-front-benefit-card h3,
  .tb-front-redesign .tb-front-step h3,
  .tb-front-redesign .tb-front-vehicle-card h3 {
    color: var(--tb-pro-navy);
    font-size: 13px;
  }

  .tb-front-redesign .tb-front-quick-card p,
  .tb-front-redesign .tb-front-benefit-card p,
  .tb-front-redesign .tb-front-step p,
  .tb-front-redesign .tb-front-review-card p {
    color: #5b6b80;
    font-size: 11.5px;
    line-height: 1.42;
  }

  .tb-front-redesign .tb-front-routes {
    gap: 7px;
  }

  .tb-front-redesign .tb-front-routes a {
    min-height: 31px;
    padding: 0 10px;
    border: 1px solid #cbd8e6;
    background: #ffffff;
    color: var(--tb-pro-navy);
    font-size: 11px;
    font-weight: 900;
  }

  .tb-front-redesign .tb-front-vehicle-card__media {
    height: 116px;
    background: linear-gradient(180deg, #f8fafc 0%, #eaf0f6 100%);
    border-bottom: 1px solid #dde7f1;
  }

  .tb-front-redesign .tb-front-vehicle-card__media img {
    max-height: 100px;
    transform: scale(1.04);
  }

  .tb-front-redesign .tb-front-airport-cta {
    padding: 12px 0 33px;
  }

  .tb-front-redesign .tb-front-airport-cta__box {
    padding: 15px;
    border: 1px solid rgba(249,115,22,.40);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
    box-shadow: 0 10px 24px rgba(249,115,22,.10);
  }

  .tb-front-redesign .tb-front-airport-cta__icon {
    width: 36px;
    height: 36px;
    background: var(--tb-pro-orange);
    color: #ffffff;
  }

  .tb-front-redesign .tb-front-airport-cta h2 {
    font-size: 21px;
    line-height: 1.1;
    color: var(--tb-pro-navy);
  }

  .tb-front-redesign .tb-front-airport-cta p {
    font-size: 11.5px;
    line-height: 1.45;
  }

  .tb-front-redesign .tb-front-airport-cta .tb-front-button {
    width: 100%;
  }

  .tb-front-redesign .tb-front-text-card {
    padding: 18px 16px;
    border: 1px solid #dbe5ef;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(10,28,55,.06);
  }

  .tb-front-redesign .tb-front-text-card h2 {
    font-size: 21px;
    line-height: 1.12;
  }

  .tb-front-redesign .tb-front-richtext {
    font-size: 11.5px;
    line-height: 1.48;
  }

  .tb-front-redesign .tb-front-final-cta {
    padding: 0 0 34px;
  }

  .tb-front-redesign .tb-front-final-cta__box {
    padding: 16px;
    background: linear-gradient(180deg, #07182f 0%, #0b213e 100%);
    border: 1px solid #183153;
  }

  .tb-front-redesign .tb-front-final-cta h2 {
    font-size: 21px;
    line-height: 1.1;
  }

  .tb-front-redesign .tb-front-final-cta p {
    font-size: 11.5px;
  }

  .tb-front-redesign .tb-front-final-cta .tb-front-button {
    width: 100%;
  }
}

/* ===== TaxiBerlin front pro 2026 visual system END ===== */

/* ===== TaxiBerlin front fix orange line START ===== */

/*
  Fix for CHANGE 10:
  The BER CTA ::before stripe must be positioned inside the CTA box,
  not against the page/viewport.
*/

.tb-front-redesign .tb-front-airport-cta__box {
  position: relative;
  overflow: hidden;
}

.tb-front-redesign .tb-front-airport-cta__box::before {
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: auto;
  height: auto;
}

/* ===== TaxiBerlin front fix orange line END ===== */

/* ===== TaxiBerlin front final balance START ===== */

/*
  Final homepage balance:
  - orange becomes CTA/accent, not repeated decoration noise
  - cards become cleaner and more premium
  - popular routes become a stronger commercial block
*/

/* remove repeated orange side stripes from ordinary cards */
.tb-front-redesign .tb-front-quick-card::before,
.tb-front-redesign .tb-front-benefit-card::before,
.tb-front-redesign .tb-front-step::before {
  display: none !important;
}

/* calmer premium cards */
@media (min-width: 721px) {
  .tb-front-redesign .tb-front-quick-card,
  .tb-front-redesign .tb-front-benefit-card,
  .tb-front-redesign .tb-front-step,
  .tb-front-redesign .tb-front-review-card,
  .tb-front-redesign .tb-front-vehicle-card,
  .tb-front-redesign .tb-front-faq details {
    border-color: #d9e3ee;
    box-shadow: 0 10px 26px rgba(10, 28, 55, .065);
  }

  .tb-front-redesign .tb-front-quick-card:hover,
  .tb-front-redesign .tb-front-benefit-card:hover,
  .tb-front-redesign .tb-front-step:hover,
  .tb-front-redesign .tb-front-review-card:hover,
  .tb-front-redesign .tb-front-vehicle-card:hover {
    border-color: #bfcddd;
    box-shadow: 0 18px 38px rgba(10, 28, 55, .11);
  }

  .tb-front-redesign .tb-front-card-icon,
  .tb-front-redesign .tb-front-benefit-card > span {
    background: #f8fafc;
    border: 1px solid #d7e2ee;
    color: #0b213e;
  }

  .tb-front-redesign .tb-front-quick-card:hover .tb-front-card-icon,
  .tb-front-redesign .tb-front-benefit-card:hover > span {
    background: #fff7ed;
    border-color: #fed7aa;
    color: #ea580c;
  }

  .tb-front-redesign .tb-front-step > span:first-child {
    background: #0b213e;
    border-color: #0b213e;
  }

  .tb-front-redesign .tb-front-step:not(:last-child)::after {
    color: #b7c4d4;
  }

  /* make Popular Routes look like a useful route selector, not weak tiny tags */
  .tb-front-redesign .tb-front-section[aria-labelledby="tb-front-routes-title"] {
    padding-top: 50px;
    padding-bottom: 50px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(244,247,251,.72) 100%);
  }

  .tb-front-redesign .tb-front-routes {
    max-width: 920px;
    gap: 10px;
  }

  .tb-front-redesign .tb-front-routes a {
    min-height: 38px;
    padding: 0 15px;
    background: #ffffff;
    border: 1px solid #cfdbea;
    color: #0b213e;
    font-size: 12.5px;
    font-weight: 950;
    letter-spacing: -.01em;
    box-shadow: 0 8px 18px rgba(10, 28, 55, .055);
  }

  .tb-front-redesign .tb-front-routes a::after {
    color: #f97316;
    opacity: 1;
  }

  .tb-front-redesign .tb-front-routes a:hover {
    transform: translateY(-1px);
    border-color: #f97316;
    background: #fff7ed;
    color: #0b213e;
    box-shadow: 0 13px 28px rgba(249, 115, 22, .12);
  }

  /* fleet cards: stronger product presentation, less catalogue-flat */
  .tb-front-redesign .tb-front-vehicle-card__media {
    height: 166px;
    background:
      radial-gradient(circle at 50% 72%, rgba(15,23,42,.15), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #e9f0f7 100%);
  }

  .tb-front-redesign .tb-front-vehicle-card__media img {
    max-height: 146px;
    transform: scale(1.08);
  }

  .tb-front-redesign .tb-front-vehicle-card h3 {
    font-size: 15.5px;
  }

  /* CTA hierarchy */
  .tb-front-redesign .tb-front-airport-cta__box {
    border-color: rgba(249,115,22,.48);
    box-shadow: 0 18px 42px rgba(249, 115, 22, .13);
  }

  .tb-front-redesign .tb-front-final-cta__box {
    box-shadow: 0 22px 48px rgba(7, 24, 47, .22);
  }

  /* SEO block should be useful, but visually quieter */
  .tb-front-redesign .tb-front-text-card {
    max-width: 740px;
    box-shadow: 0 14px 34px rgba(10, 28, 55, .065);
  }

  .tb-front-redesign .tb-front-richtext {
    color: #47576c;
  }
}

/* mobile balance */
@media (max-width: 720px) {
  .tb-front-redesign .tb-front-quick-card::before,
  .tb-front-redesign .tb-front-benefit-card::before,
  .tb-front-redesign .tb-front-step::before {
    display: none !important;
  }

  .tb-front-redesign .tb-front-card-icon,
  .tb-front-redesign .tb-front-benefit-card > span {
    background: #f8fafc;
    border: 1px solid #d7e2ee;
    color: #0b213e;
  }

  .tb-front-redesign .tb-front-routes {
    gap: 8px;
  }

  .tb-front-redesign .tb-front-routes a {
    min-height: 34px;
    padding: 0 11px;
    background: #ffffff;
    border-color: #cfdbea;
    box-shadow: 0 6px 15px rgba(10, 28, 55, .055);
  }

  .tb-front-redesign .tb-front-vehicle-card__media {
    height: 122px;
    background: linear-gradient(180deg, #ffffff 0%, #e9f0f7 100%);
  }

  .tb-front-redesign .tb-front-vehicle-card__media img {
    max-height: 106px;
  }

  .tb-front-redesign .tb-front-text-card {
    box-shadow: 0 8px 20px rgba(10, 28, 55, .055);
  }
}

/* ===== TaxiBerlin front final balance END ===== */

/* ===== TaxiBerlin front Lucide icon polish START ===== */

.tb-front-redesign .tb-front-lucide {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
}

.tb-front-redesign .tb-front-card-icon,
.tb-front-redesign .tb-front-benefit-card > span,
.tb-front-redesign .tb-front-airport-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tb-front-redesign .tb-front-card-icon .tb-front-lucide,
.tb-front-redesign .tb-front-benefit-card > span .tb-front-lucide {
  width: 17px;
  height: 17px;
}

.tb-front-redesign .tb-front-airport-cta__icon .tb-front-lucide {
  width: 22px;
  height: 22px;
}

.tb-front-redesign .tb-front-vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}

.tb-front-redesign .tb-front-vehicle-specs li {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.tb-front-redesign .tb-front-vehicle-spec {
  min-height: 24px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #d7e2ee;
  background: #f8fafc;
  color: #10233f;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  border-radius: 1px;
}

.tb-front-redesign .tb-front-vehicle-spec .tb-front-lucide {
  width: 12px;
  height: 12px;
}

.tb-front-redesign .tb-front-vehicle-spec span {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.tb-front-redesign .tb-front-vehicle-spec strong {
  font-size: 11px;
  font-weight: 950;
}

.tb-front-redesign .tb-front-vehicle-spec small {
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
}

@media (max-width: 720px) {
  .tb-front-redesign .tb-front-card-icon .tb-front-lucide,
  .tb-front-redesign .tb-front-benefit-card > span .tb-front-lucide {
    width: 16px;
    height: 16px;
  }

  .tb-front-redesign .tb-front-airport-cta__icon .tb-front-lucide {
    width: 20px;
    height: 20px;
  }

  .tb-front-redesign .tb-front-vehicle-spec {
    min-height: 23px;
    padding: 0 6px;
  }
}

/* ===== TaxiBerlin front Lucide icon polish END ===== */

/* ===== TaxiBerlin front webmaster layout correction START ===== */

/*
  Webmaster correction:
  - SEO text block should not look like a narrow random insert.
  - Popular routes should be a real route selector, not weak tiny tags.
  - Lucide icons should read clearly but not become noisy.
*/

/* stronger but still restrained Lucide icons */
.tb-front-redesign .tb-front-card-icon,
.tb-front-redesign .tb-front-benefit-card > span {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #ea580c;
}

.tb-front-redesign .tb-front-card-icon .tb-front-lucide,
.tb-front-redesign .tb-front-benefit-card > span .tb-front-lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2.15;
}

/* Popular routes: route selector instead of tiny tags */
@media (min-width: 721px) {
  .tb-front-redesign .tb-front-section[aria-labelledby="tb-front-routes-title"] {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .tb-front-redesign .tb-front-section[aria-labelledby="tb-front-routes-title"] .tb-front-section__head {
    margin-bottom: 22px;
  }

  .tb-front-redesign .tb-front-routes {
    width: 100%;
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .tb-front-redesign .tb-front-routes a {
    min-height: 44px;
    width: 100%;
    padding: 0 15px;
    justify-content: space-between;
    border: 1px solid #cbd8e6;
    background:
      linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: #0b213e;
    font-size: 12.5px;
    font-weight: 950;
    box-shadow: 0 10px 24px rgba(10, 28, 55, .065);
  }

  .tb-front-redesign .tb-front-routes a span {
    color: #f97316;
    font-weight: 950;
  }

  .tb-front-redesign .tb-front-routes a:hover {
    border-color: #f97316;
    background:
      linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(249, 115, 22, .13);
  }
}

/* SEO text: editorial block, not narrow random card */
@media (min-width: 961px) {
  .tb-front-redesign .tb-front-section--text {
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .tb-front-redesign .tb-front-text-card {
    max-width: 980px;
    padding: 34px 38px 36px;
    border-color: #d8e3ee;
    background:
      linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 18px 44px rgba(10, 28, 55, .075);
  }

  .tb-front-redesign .tb-front-text-card::before {
    width: 54px;
    height: 3px;
    margin-bottom: 17px;
  }

  .tb-front-redesign .tb-front-text-card h2 {
    max-width: 680px;
    font-size: 28px;
  }

  .tb-front-redesign .tb-front-richtext {
    margin-top: 16px;
    column-count: 2;
    column-gap: 38px;
    color: #405168;
    font-size: 13px;
    line-height: 1.68;
  }

  .tb-front-redesign .tb-front-richtext p {
    break-inside: avoid;
  }

  .tb-front-redesign .tb-front-richtext p:first-child {
    margin-top: 0;
  }
}

@media (min-width: 721px) and (max-width: 960px) {
  .tb-front-redesign .tb-front-text-card {
    max-width: 760px;
  }

  .tb-front-redesign .tb-front-richtext {
    column-count: 1;
  }
}

/* mobile: no two-column text, stronger route buttons */
@media (max-width: 720px) {
  .tb-front-redesign .tb-front-card-icon,
  .tb-front-redesign .tb-front-benefit-card > span {
    background: #fff7ed;
    border-color: #fed7aa;
    color: #ea580c;
  }

  .tb-front-redesign .tb-front-routes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tb-front-redesign .tb-front-routes a {
    min-height: 38px;
    width: 100%;
    justify-content: space-between;
    background: #ffffff;
  }

  .tb-front-redesign .tb-front-richtext {
    column-count: 1;
  }
}

/* ===== TaxiBerlin front webmaster layout correction END ===== */

/* ===== TaxiBerlin front structure dedup START ===== */

/*
  Structural correction:
  - Quick scenarios stay directly under hero as intent navigation.
  - Why choose block becomes trust/quality proof and is moved lower.
*/

@media (min-width: 721px) {
  .tb-front-redesign .tb-front-section--trust {
    padding: 56px 0;
    background:
      linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    border-top: 1px solid #e3ebf4;
  }

  .tb-front-redesign .tb-front-benefits-grid--trust {
    gap: 14px;
  }

  .tb-front-redesign .tb-front-section--trust .tb-front-benefit-card {
    min-height: 132px;
    background: #ffffff;
  }

  .tb-front-redesign .tb-front-section--trust .tb-front-benefit-card h3 {
    font-size: 15px;
    line-height: 1.22;
  }

  .tb-front-redesign .tb-front-section--trust .tb-front-benefit-card p {
    font-size: 12.5px;
    line-height: 1.5;
  }
}

@media (max-width: 720px) {
  .tb-front-redesign .tb-front-section--trust {
    padding: 34px 0;
    background: #ffffff;
    border-top: 1px solid #e3ebf4;
  }

  .tb-front-redesign .tb-front-benefits-grid--trust {
    gap: 10px;
  }
}

/* ===== TaxiBerlin front structure dedup END ===== */

/* ===== TaxiBerlin front desktop wording 17C START ===== */

/*
  Desktop wording correction:
  - clearer Russian section titles;
  - airport BER is clarified in route labels;
  - fleet text uses full row width;
  - lower SEO text mass is replaced by compact Russian editorial/trust block.
*/

.tb-front-redesign .tb-front-section[aria-labelledby="tb-front-fleet-title"] .tb-front-section__head p {
  max-width: 980px;
}

.tb-front-redesign .tb-front-section--editorial {
  padding: 50px 0 54px;
  background: #ffffff;
}

.tb-front-redesign .tb-front-editorial-card {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 38px;
  border: 1px solid #dbe5ef;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 46px rgba(10, 28, 55, .075);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: start;
}

.tb-front-redesign .tb-front-editorial-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #f97316;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.tb-front-redesign .tb-front-editorial-main h2 {
  margin: 0;
  color: #0b213e;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.tb-front-redesign .tb-front-editorial-main p {
  max-width: 570px;
  margin: 14px 0 0;
  color: #405168;
  font-size: 14px;
  line-height: 1.7;
}

.tb-front-redesign .tb-front-editorial-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tb-front-redesign .tb-front-editorial-fact {
  min-height: 118px;
  padding: 16px;
  border: 1px solid #dbe5ef;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 28, 55, .055);
}

.tb-front-redesign .tb-front-editorial-fact > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: #ea580c;
}

.tb-front-redesign .tb-front-editorial-fact .tb-front-lucide {
  width: 17px;
  height: 17px;
  stroke-width: 2.15;
}

.tb-front-redesign .tb-front-editorial-fact strong {
  display: block;
  color: #0b213e;
  font-size: 13.5px;
  line-height: 1.24;
}

.tb-front-redesign .tb-front-editorial-fact small {
  display: block;
  margin-top: 6px;
  color: #58677a;
  font-size: 12px;
  line-height: 1.42;
}

@media (max-width: 860px) {
  .tb-front-redesign .tb-front-editorial-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .tb-front-redesign .tb-front-section--editorial {
    padding: 34px 0 38px;
  }

  .tb-front-redesign .tb-front-editorial-facts {
    grid-template-columns: 1fr;
  }

  .tb-front-redesign .tb-front-editorial-fact {
    min-height: 0;
  }
}

/* ===== TaxiBerlin front desktop wording 17C END ===== */

/* ===== TaxiBerlin front text block full width START ===== */

/*
  Restored lower text block:
  full main container width on desktop, readable two-column text.
*/

@media (min-width: 961px) {
  .tb-front-redesign .tb-front-section--text .tb-front-container {
    max-width: 1180px;
  }

  .tb-front-redesign .tb-front-section--text .tb-front-text-card {
    width: 100%;
    max-width: none;
    padding: 36px 46px 38px;
  }

  .tb-front-redesign .tb-front-section--text .tb-front-richtext {
    column-count: 2;
    column-gap: 52px;
  }
}

@media (min-width: 1280px) {
  .tb-front-redesign .tb-front-section--text .tb-front-container {
    max-width: 1240px;
  }
}

@media (max-width: 960px) {
  .tb-front-redesign .tb-front-section--text .tb-front-text-card {
    width: 100%;
    max-width: none;
  }

  .tb-front-redesign .tb-front-section--text .tb-front-richtext {
    column-count: 1;
  }
}

/* ===== TaxiBerlin front text block full width END ===== */


/* CHANGE 28: FAQ real accordion START */
.tb-front-faq-grid {
    display: grid;
    gap: 14px;
}

.tb-front-faq-accordion {
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.tb-front-faq-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
    color: #0f172a;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.tb-front-faq-accordion summary::-webkit-details-marker {
    display: none;
}

.tb-front-faq-accordion summary::marker {
    content: "";
}

.tb-front-faq-accordion__icon {
    position: relative;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.10);
}

.tb-front-faq-accordion__icon::before,
.tb-front-faq-accordion__icon::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 13px;
    height: 2px;
    border-radius: 999px;
    background: #f97316;
}

.tb-front-faq-accordion__icon::after {
    transform: rotate(90deg);
}

.tb-front-faq-accordion[open] .tb-front-faq-accordion__icon::after {
    transform: rotate(0deg);
}

.tb-front-faq-accordion__answer {
    padding: 0 22px 22px;
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
}

.tb-front-faq-accordion__answer p {
    margin: 0;
}

@media (min-width: 761px) {
    .tb-front-faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }
}

@media (max-width: 760px) {
    .tb-front-faq-grid {
        grid-template-columns: 1fr;
    }

    .tb-front-faq-accordion summary {
        padding: 18px;
        font-size: 17px;
    }

    .tb-front-faq-accordion__answer {
        padding: 0 18px 18px;
    }
}
/* CHANGE 28: FAQ real accordion END */


/* CHANGE 33B: Hero secure payment trust item START */
.tb-front-trust__secure {
    flex-basis: 100%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tb-front-trust__lock {
    width: 14px;
    height: 14px;
    color: #f97316;
    flex: 0 0 auto;
}

@media (max-width: 760px) {
    .tb-front-trust__secure {
        flex-basis: auto;
    }
}
/* CHANGE 33B: Hero secure payment trust item END */


/* CHANGE 34: BER CTA clean style START */
.tb-front-airport-cta__box {
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.tb-front-airport-cta__box::before,
.tb-front-airport-cta__box::after {
    display: none !important;
    content: none !important;
}

.tb-front-airport-cta {
    background-image: none;
}
/* CHANGE 34: BER CTA clean style END */


/* CHANGE 2: shared icon brand colors */
.tb-front-editorial-fact > span {
    background: var(--tb-front-orange);
    color: #ffffff;
}

.tb-front-editorial-fact > span svg {
    stroke: currentColor;
}

/* CHANGE 2B: homepage icon brand colors specificity fix */
.tb-front-redesign .tb-front-editorial-fact > span {
    background: var(--tb-front-orange);
    color: #ffffff;
}

.tb-front-redesign .tb-front-editorial-fact > span svg {
    stroke: currentColor;
}

/* CHANGE 2C: homepage step shared icon colors */
.tb-front-redesign .tb-front-step > b {
    background: var(--tb-front-orange);
    color: #ffffff;
}

.tb-front-redesign .tb-front-step > b svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* CHANGE 2D: center homepage step SVG icons */
.tb-front-redesign .tb-front-step > b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

.tb-front-redesign .tb-front-step > b svg {
    display: block;
    flex: 0 0 auto;
    margin: auto;
}

/* CHANGE 2F: section heading layout without number circles */
.tb-front-redesign .tb-front-section__head {
    display: block;
    grid-template-columns: none;
    width: 100%;
    max-width: 980px;
    margin: 0 0 28px;
}

.tb-front-redesign .tb-front-section__head > div {
    width: 100%;
    max-width: 860px;
}

.tb-front-redesign .tb-front-section__head h2 {
    max-width: none;
}

.tb-front-redesign .tb-front-section__head p {
    max-width: 760px;
}

/* CHANGE 2G: unified homepage icon badges */
.tb-front-redesign .tb-front-card-icon,
.tb-front-redesign .tb-front-editorial-fact > span,
.tb-front-redesign .tb-front-step > b,
.tb-front-redesign .tb-front-airport-cta__icon,
.tb-front-redesign .tb-front-benefit-card > span,
.tb-front-redesign .tb-front-vehicle-spec,
.tb-front-redesign .tb-front-faq-accordion__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--tb-front-orange);
    color: #ffffff;
    text-align: center;
    line-height: 1;
}

.tb-front-redesign .tb-front-card-icon svg,
.tb-front-redesign .tb-front-editorial-fact > span svg,
.tb-front-redesign .tb-front-step > b svg,
.tb-front-redesign .tb-front-airport-cta__icon svg,
.tb-front-redesign .tb-front-benefit-card > span svg,
.tb-front-redesign .tb-front-vehicle-spec svg {
    display: block;
    flex: 0 0 auto;
    margin: auto;
    stroke: currentColor;
    color: inherit;
}

.tb-front-redesign .tb-front-vehicle-spec strong,
.tb-front-redesign .tb-front-vehicle-spec small {
    color: inherit;
}

.tb-front-redesign .tb-front-faq-accordion__icon::before,
.tb-front-redesign .tb-front-faq-accordion__icon::after {
    background: #ffffff;
}

/* CHANGE 3J: shared booking form head after subtitle removal */
.tb-front-booking__head strong:only-child {
    grid-column: 1 / -1;
}



/* FORM 2N: shared hero/front route swap button */
.tb-front-form .tb-front-form__swap,
.tb-front-form button.tb-front-form__swap {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: 40px !important;
    padding: 0 12px !important;
    border: 1px solid rgba(15, 23, 42, 0.16) !important;
    border-radius: 12px !important;
    background: #f3f6fb !important;
    color: #0f172a !important;
    box-shadow: none !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    text-transform: none !important;
    cursor: pointer !important;
}

.tb-front-form .tb-front-form__swap:hover,
.tb-front-form .tb-front-form__swap:focus-visible {
    background: #e8eef7 !important;
    color: #0f172a !important;
    box-shadow: none !important;
    transform: none !important;
}

.tb-front-form .tb-front-form__swap + label {
    grid-column: 1 / -1 !important;
}

/* CONTRAST 1B: homepage PageSpeed contrast fix */
.tb-front-redesign .tb-front-section__head p,
.tb-front-redesign .tb-front-vehicle-card p,
.tb-front-redesign .tb-front-review-card span,
.tb-front-redesign .tb-front-faq details > div,
.tb-front-redesign .tb-front-airport-cta p,
.tb-front-redesign .tb-front-airport-cta li {
    color: #475569;
}

.tb-front-redesign .tb-front-vehicle-card li,
.tb-front-redesign .tb-front-vehicle-spec {
    background: #eef2f7;
    color: #334155;
}

.tb-front-redesign .tb-front-link,
.tb-front-redesign .tb-front-link:link,
.tb-front-redesign .tb-front-link:visited {
    color: #9a3412;
}

.tb-front-redesign .tb-front-link:hover,
.tb-front-redesign .tb-front-link:focus-visible {
    color: #7c2d12;
}

.tb-front-redesign .tb-front-button--primary,
.tb-front-redesign .tb-front-button--primary:link,
.tb-front-redesign .tb-front-button--primary:visited {
    background: #b45309;
    border-color: #b45309;
    color: #ffffff;
}

.tb-front-redesign .tb-front-button--primary:hover,
.tb-front-redesign .tb-front-button--primary:focus-visible {
    background: #92400e;
    border-color: #92400e;
    color: #ffffff;
}

.tb-front-redesign .tb-front-hero .tb-front-lead,
.tb-front-redesign .tb-front-hero .tb-front-trust,
.tb-front-redesign .tb-front-hero .tb-front-trust li {
    color: rgba(255, 255, 255, 0.94);
}

/* FLEET HOME 1H: brand vehicle spec badges START */
.tb-front-redesign .tb-front-section[aria-labelledby="tb-front-fleet-title"] .tb-front-vehicle-spec {
    border-color: #b45309;
    background: #b45309;
    color: #ffffff;
}

.tb-front-redesign .tb-front-section[aria-labelledby="tb-front-fleet-title"] .tb-front-vehicle-spec svg,
.tb-front-redesign .tb-front-section[aria-labelledby="tb-front-fleet-title"] .tb-front-vehicle-spec .tb-front-lucide,
.tb-front-redesign .tb-front-section[aria-labelledby="tb-front-fleet-title"] .tb-front-vehicle-spec strong,
.tb-front-redesign .tb-front-section[aria-labelledby="tb-front-fleet-title"] .tb-front-vehicle-spec small {
    color: inherit;
}
/* FLEET HOME 1H: brand vehicle spec badges END */

