

/* Start:/local/templates/tr_landing/styles.css?1783574397861*/
/* Стили контента страниц (доступны в визуальном редакторе) */

.tr-grid {
    display: grid;
    gap: 24px;
}
.tr-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tr-grid--4 { grid-template-columns: repeat(4, 1fr); }
.tr-grid--2 { grid-template-columns: repeat(2, 1fr); }

.tr-card {
    background: #fff;
    border: 1px solid var(--tr-border);
    border-radius: var(--tr-radius);
    padding: 28px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.tr-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .06);
}
.tr-card__title { font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.tr-card__text { color: var(--tr-gray); margin: 0; font-size: 15px; }

@media (max-width: 860px) {
    .tr-grid--3, .tr-grid--4, .tr-grid--2 { grid-template-columns: 1fr; }
}

/* End */


/* Start:/local/templates/tr_landing/template_styles.css?179031621137797*/
:root {
    --tr-accent: #1f6b3b;
    --tr-accent-dark: #14532d;
    --tr-accent-light: #e8f5ee;
    --tr-warning: #d98324;
    --tr-warning-bg: #fef3e2;
    --tr-success: #1f6b3b;
    --tr-success-bg: #e8f5ee;
    --tr-gold: #a8842a;
    --tr-dark: #1a1f1c;
    --tr-gray: #6b7280;
    --tr-light: #f5f7f6;
    --tr-border: #e2e8e4;
    --tr-radius: 12px;
    --tr-radius-lg: 16px;
    --tr-container: 1200px;
    --tr-header-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--tr-dark);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

.tr-container {
    width: 100%;
    max-width: var(--tr-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.tr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
    font-family: inherit;
}
.tr-btn:hover { transform: translateY(-1px); }
.tr-btn--primary { background: var(--tr-accent-dark); color: #fff; }
.tr-btn--primary:hover { background: var(--tr-accent); }
.tr-btn--outline { background: transparent; color: var(--tr-dark); border-color: var(--tr-border); }
.tr-btn--outline:hover { border-color: var(--tr-accent); color: var(--tr-accent); }
.tr-btn--outline-accent { background: #fff; color: var(--tr-accent); border-color: var(--tr-accent); }
.tr-btn--outline-accent:hover { background: var(--tr-accent-light); }
.tr-btn--light { background: #fff; color: var(--tr-accent-dark); }
.tr-btn--light:hover { background: var(--tr-accent-light); }
.tr-btn--block { width: 100%; }
.tr-btn--sm { padding: 10px 20px; font-size: 14px; }
.tr-btn--lg { padding: 16px 36px; font-size: 16px; }
.tr-btn:disabled,
.tr-btn:disabled:hover {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
}

/* Header */
.tr-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--tr-header-h);
    background: rgba(255, 255, 255, .95);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.tr-header.is-scrolled {
    border-bottom-color: var(--tr-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
}
.tr-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tr-logo { display: flex; align-items: center; color: var(--tr-accent-dark); flex-shrink: 0; }
.tr-logo__img { height: 26px; width: auto; display: block; }
.tr-logo--light { color: #fff; }

.tr-nav { display: flex; gap: 28px; }
.tr-nav__link {
    font-weight: 600;
    font-size: 14px;
    color: var(--tr-dark);
    transition: color .2s ease;
}
.tr-nav__link:hover { color: var(--tr-accent); }

.tr-header__actions { display: flex; align-items: center; gap: 12px; }
.tr-header__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--tr-gray);
    transition: color .2s ease, background .2s ease;
}
.tr-header__social:hover { color: var(--tr-accent); background: var(--tr-accent-light); }
.tr-header__social--wa:hover { color: #25D366; }
.tr-header__social--tg:hover { color: #0088cc; }

/* Burger */
.tr-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px; height: 42px;
    background: var(--tr-light);
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.tr-burger span {
    display: block;
    width: 20px; height: 2px;
    margin: 0 auto;
    background: var(--tr-dark);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
.tr-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tr-burger.is-active span:nth-child(2) { opacity: 0; }
.tr-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Main */
.tr-main { min-height: 50vh; }

/* Hero Section */
.tr-hero-section {
    position: relative;
    min-height: clamp(560px, 72vh, 680px);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.tr-hero-section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.tr-hero-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
}
.tr-hero-section__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(10, 22, 14, .72) 0%, rgba(10, 22, 14, .45) 42%, rgba(10, 22, 14, .18) 70%, rgba(10, 22, 14, .08) 100%);
}
.tr-hero-section__inner {
    position: relative;
    z-index: 2;
    padding: 32px 24px;
    width: 100%;
}

.tr-hero-layout {
    display: grid;
    grid-template-columns: minmax(340px, 400px) 1fr;
    gap: 40px;
    align-items: start;
}
.tr-hero-layout.is-wizard .tr-hero-banner { display: none; }
.tr-hero-layout.is-wizard .tr-wizard {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
}

/* Hero Banner (Step 1) */
.tr-hero-banner__content {
    grid-column: 1 / -1;
    width: 100%;
    margin-bottom: 24px;
}
.tr-hero-banner__title {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.2px;
    color: #fff;
    margin: 0 0 12px;
    max-width: 680px;
}
.tr-hero-banner__subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255, 255, 255, .88);
    margin: 0 0 14px;
    max-width: 680px;
}
.tr-hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.tr-hero-trust svg { flex-shrink: 0; opacity: .95; }
.tr-hero-trust strong { font-weight: 800; }

/* Booking Form */
.tr-booking-form {
    background: #fff;
    border-radius: var(--tr-radius-lg);
    padding: 22px;
    max-width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.tr-trip-type {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.tr-trip-type__option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tr-dark);
    cursor: pointer;
    user-select: none;
}
.tr-trip-type__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.tr-trip-type__dot {
    width: 18px;
    height: 18px;
    border: 2px solid var(--tr-border);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: border-color .2s;
}
.tr-trip-type__dot::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--tr-accent);
    transform: scale(0);
    transition: transform .15s ease;
}
.tr-trip-type__option input:checked + .tr-trip-type__dot {
    border-color: var(--tr-accent);
}
.tr-trip-type__option input:checked + .tr-trip-type__dot::after {
    transform: scale(1);
}

.tr-leg { margin-bottom: 4px; }
.tr-leg[hidden] { display: none; }
.tr-leg__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--tr-accent-dark);
}
.tr-leg__icon {
    display: inline-flex;
    color: var(--tr-accent);
    flex-shrink: 0;
}
.tr-leg__title {
    font-size: 15px;
    font-weight: 700;
    flex: 1;
}
.tr-leg__swap {
    width: 34px;
    height: 34px;
    border: 1px solid var(--tr-border);
    border-radius: 8px;
    background: #fff;
    color: var(--tr-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s, border-color .2s;
}
.tr-leg__swap:hover {
    background: var(--tr-accent-light);
    border-color: var(--tr-accent);
}

.tr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.tr-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.tr-field__label { font-size: 13px; font-weight: 600; color: var(--tr-dark); }
.tr-field__hint { font-weight: 500; color: var(--tr-gray); font-size: 12px; }
.tr-field__input {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color .2s, box-shadow .2s;
}
.tr-field__input:focus {
    outline: none;
    border-color: var(--tr-accent);
    box-shadow: 0 0 0 3px rgba(31, 107, 59, .12);
}
.tr-field__wrap { position: relative; display: block; }
.tr-field__wrap .tr-field__input { padding-right: 44px; }
.tr-field__icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tr-gray);
    pointer-events: none;
}

.tr-stepper {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    padding: 8px 12px;
}
.tr-stepper--block {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 10px 14px;
}
.tr-stepper__btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--tr-light);
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
    font-family: inherit;
    flex-shrink: 0;
}
.tr-stepper__btn:hover { background: var(--tr-accent-light); color: var(--tr-accent); }
.tr-stepper__value { font-size: 16px; font-weight: 700; text-align: center; }
.tr-stepper--block .tr-stepper__value { flex: 1; }
.tr-stepper--compact {
    gap: 0;
    padding: 0;
    border: 1px solid var(--tr-border);
    border-radius: 8px;
    overflow: hidden;
}
.tr-stepper--compact .tr-stepper__btn {
    width: 32px;
    height: 32px;
    border-radius: 0;
    background: #fff;
    font-size: 18px;
}
.tr-stepper--compact .tr-stepper__btn:not(:last-child) {
    border-right: 1px solid var(--tr-border);
}
.tr-stepper--compact .tr-stepper__value {
    min-width: 36px;
    font-size: 15px;
    padding: 0 4px;
    border-left: 1px solid var(--tr-border);
    border-right: 1px solid var(--tr-border);
}

.tr-booking-form__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    font-size: 13px;
    color: var(--tr-gray);
}
.tr-booking-form__meta strong { color: var(--tr-accent-dark); }
.tr-booking-form__dot { color: var(--tr-border); }

.tr-booking-form__guarantee {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 14px;
    padding: 12px 14px;
    background: var(--tr-accent-light);
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--tr-dark);
}
.tr-booking-form__guarantee-icon { flex-shrink: 0; line-height: 1.3; }
.tr-booking-form__guarantee a {
    color: var(--tr-accent-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Badges */
.tr-hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}
.tr-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}
.tr-badge--warning { background: var(--tr-warning-bg);  }
.tr-badge--success { background: var(--tr-success-bg);  }

/* Wizard Panel */
.tr-wizard {
    background: #fff;
    border-radius: var(--tr-radius-lg);
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
    max-height: calc(100vh - var(--tr-header-h) - 80px);
    overflow-y: auto;
}
.tr-wizard__head--center {
    position: relative;
    text-align: center;
    margin-bottom: 24px;
}
.tr-wizard__head--center .tr-wizard__back {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-bottom: 0;
}
.tr-wizard__head--center .tr-wizard__title { font-size: 24px; }
.tr-wizard__back {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--tr-accent);
    cursor: pointer;
    padding: 0;
    margin-bottom: 8px;
}
.tr-wizard__back:hover { text-decoration: underline; }
.tr-wizard__title { font-size: 22px; font-weight: 800; margin: 0; letter-spacing: -.5px; }

.tr-wizard__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: var(--tr-light);
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}
.tr-wizard__summary-info { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.tr-wizard__summary-item { display: flex; flex-direction: column; gap: 2px; }
.tr-wizard__summary-label { font-size: 11px; font-weight: 600; letter-spacing: .5px; color: var(--tr-gray); }
.tr-wizard__summary-item > span:last-child { font-weight: 700; }
.tr-wizard__change {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--tr-accent);
    cursor: pointer;
    white-space: nowrap;
}
.tr-wizard__change:hover { text-decoration: underline; }
.tr-wizard__summary--card {
    background: #fff;
    border: 1px solid var(--tr-border);
    padding: 16px 20px;
    margin-bottom: 24px;
}
.tr-wizard__list-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px;
}

/* Shuttle Cards */
.tr-shuttle-list { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.tr-shuttle-card {
    display: grid;
    grid-template-columns: auto auto 1fr auto auto;
    align-items: center;
    gap: 16px 24px;
    width: 100%;
    padding: 5px 24px;
    border: 1px solid var(--tr-border);
    border-radius: var(--tr-radius);
    transition: border-color .2s, box-shadow .2s;
}
.tr-shuttle-card:hover { border-color: var(--tr-accent); box-shadow: 0 4px 16px rgba(0, 0, 0, .06); }
.tr-shuttle-card--recommended { border-color: var(--tr-accent); background: var(--tr-accent-light); }
.tr-shuttle-card__time { grid-column: 1; }
.tr-shuttle-card__route { grid-column: 2; }
.tr-shuttle-card__badge {
    grid-column: 3;
    justify-self: center;
    display: inline-block;
    width: fit-content;
    background: rgba(31, 107, 59, .12);
    color: var(--tr-accent-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}
.tr-shuttle-card__price-block { grid-column: 4; }
.tr-shuttle-card__select { grid-column: 5; }
.tr-shuttle-card__time {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.5px;
    min-width: 72px;
}
.tr-shuttle-card__route {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.tr-shuttle-card__duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--tr-dark);
    font-weight: 600;
}
.tr-shuttle-card__duration svg { flex-shrink: 0; color: var(--tr-gray); }
.tr-shuttle-card__route-type { font-size: 14px; color: var(--tr-gray); }
.tr-shuttle-card__price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    text-align: right;
    min-width: 100px;
}
.tr-shuttle-card__price { font-size: 22px; font-weight: 800; color: var(--tr-dark); letter-spacing: -.3px; }
.tr-shuttle-card__per { font-size: 13px; color: var(--tr-gray); }
.tr-shuttle-card__select { flex-shrink: 0; min-width: 110px; }
.tr-shuttle-card.is-disabled {
    opacity: .5;
    background: var(--tr-light);
    border-color: var(--tr-border);
    pointer-events: none;
}
.tr-shuttle-card.is-disabled:hover { box-shadow: none; }
.tr-shuttle-card__select:disabled { cursor: not-allowed; }
.tr-shuttle-card.is-selected {
    border-color: var(--tr-accent);
    background: var(--tr-accent-light);
    box-shadow: 0 0 0 1px var(--tr-accent);
}

.tr-shuttle-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.tr-shuttle-group:last-child { margin-bottom: 0; }
.tr-shuttle-group__title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: var(--tr-dark);
}
.tr-wizard__continue-wrap {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}
.tr-wizard__continue-wrap[hidden] { display: none; }
.tr-wizard__empty a {
    color: var(--tr-accent-dark);
    font-weight: 700;
    text-decoration: underline;
}

.tr-field__req { color: #dc2626; }

.tr-wizard__note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--tr-light);
    border-radius: var(--tr-radius);
    font-size: 13px;
    color: var(--tr-gray);
}
.tr-wizard__note svg { flex-shrink: 0; color: var(--tr-accent); }

.tr-wizard__empty {
    margin: 4px 0 0;
    padding: 14px 16px;
    background: var(--tr-light);
    border-radius: var(--tr-radius);
    font-size: 14px;
    color: var(--tr-gray);
    text-align: center;
}

/* Checkout */
.tr-wizard__step[data-wizard-step="3"] .tr-checkout {
    background: var(--tr-light);
    border-radius: var(--tr-radius);
    padding: 20px;
}
.tr-checkout__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}
.tr-checkout__col { min-width: 0; display: flex; flex-direction: column; }
.tr-checkout__section-title,
.tr-checkout__panel-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 10px;
}
.tr-checkout__card {
    background: #fff;
    border: 1px solid var(--tr-border);
    border-radius: var(--tr-radius);
    padding: 8px 20px 16px;
    flex: 1;
}
.tr-checkout__card--total {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}
.tr-field--underline { margin-bottom: 0; }
.tr-field--underline .tr-field__label {
    font-size: 12px;
    color: var(--tr-gray);
    font-weight: 500;
    margin-bottom: 2px;
}
.tr-field--underline .tr-field__input {
    border: none;
    border-bottom: 1px solid var(--tr-border);
    border-radius: 0;
    padding: 6px 0 12px;
    box-shadow: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
}
.tr-field--underline .tr-field__input:focus {
    border-bottom-color: var(--tr-accent);
    box-shadow: none;
}
.tr-field__input[name="phone"] {
    font-variant-numeric: tabular-nums;
    letter-spacing: .01em;
}
.tr-field--underline:last-child .tr-field__input { border-bottom: none; padding-bottom: 8px; }
.tr-checkout__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--tr-border);
}
.tr-checkout__row:last-of-type { border-bottom: none; padding-bottom: 0; }
.tr-checkout__row-label { font-size: 14px; font-weight: 600; }
.tr-stepper--compact {
    gap: 0;
    padding: 0;
    border: 1px solid var(--tr-border);
    border-radius: 8px;
    overflow: hidden;
}
.tr-stepper--compact .tr-stepper__btn {
    width: 32px;
    height: 32px;
    border-radius: 0;
    background: #fff;
    font-size: 18px;
}
.tr-stepper--compact .tr-stepper__btn:hover { background: var(--tr-light); }
.tr-stepper--compact .tr-stepper__value {
    min-width: 36px;
    font-size: 15px;
    font-weight: 700;
    border-left: 1px solid var(--tr-border);
    border-right: 1px solid var(--tr-border);
    padding: 4px 8px;
}
.tr-checkbox--checkout {
    margin: 14px 0 0;
    font-size: 14px;
}
.tr-checkout__calc {
    font-size: 14px;
    color: var(--tr-gray);
    margin: 0 0 10px;
}
.tr-checkout__total {
    display: block;
    font-size: 34px;
    font-weight: 800;
    color: var(--tr-dark);
    letter-spacing: -.5px;
    margin: 0 0 20px;
    line-height: 1.1;
}
.tr-checkout__card--total .tr-btn { margin-bottom: 12px; }
.tr-checkout__fee-note {
    font-size: 12px;
    color: var(--tr-gray);
    text-align: center;
    margin: 0;
}

.tr-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 20px;
}
.tr-checkbox input { width: 18px; height: 18px; accent-color: var(--tr-accent); }

/* Confirmation */
.tr-confirm { text-align: left; }
.tr-confirm__head {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 24px;
}
.tr-confirm__head--banner {
    flex-direction: column;
    gap: 14px;
    padding: 28px 24px;
    background: var(--tr-accent-light);
    border-radius: var(--tr-radius-lg);
}
.tr-confirm__icon {
    width: 64px;
    height: 64px;
    margin: 0;
    background: var(--tr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: tr-confirm-pop .45s ease both;
}
@keyframes tr-confirm-pop {
    0% { transform: scale(.6); opacity: 0; }
    70% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); }
}
.tr-confirm__head-text { min-width: 0; }
.tr-confirm__title { font-size: 24px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.5px; }
.tr-confirm__subtitle { font-size: 15px; color: var(--tr-gray); margin: 0; line-height: 1.5; }

.tr-confirm__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 24px;
}
.tr-confirm__details { display: flex; flex-direction: column; gap: 14px; }
.tr-confirm__leg {
    background: var(--tr-light);
    border-radius: var(--tr-radius);
    padding: 16px 18px;
}
.tr-confirm__leg-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--tr-accent-dark);
}
.tr-confirm__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    text-align: left;
    margin: 0;
    font-size: 14px;
}
.tr-confirm__grid div { display: flex; flex-direction: column; gap: 2px; }
.tr-confirm__grid dt { color: var(--tr-gray); font-weight: 500; }
.tr-confirm__grid dd { font-weight: 700; margin: 0; }
.tr-confirm__booking-id {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid var(--tr-border);
    border-radius: var(--tr-radius);
    font-size: 14px;
}
.tr-confirm__booking-label { color: var(--tr-gray); font-weight: 500; }
.tr-confirm__booking-id strong { font-weight: 800; color: var(--tr-accent-dark); }
.tr-confirm__meeting {
    text-align: left;
    background: var(--tr-accent-light);
    border-radius: var(--tr-radius);
    padding: 20px;
    font-size: 14px;
}
.tr-confirm__meeting-title { font-size: 16px; font-weight: 700; margin: 0 0 14px; }
.tr-confirm__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.tr-confirm__list li { display: flex; align-items: flex-start; gap: 10px; color: var(--tr-dark); line-height: 1.4; }
.tr-confirm__list svg { flex-shrink: 0; color: var(--tr-accent); margin-top: 1px; }
.tr-confirm__list a { color: var(--tr-accent-dark); font-weight: 700; }
.tr-confirm__actions { display: flex; gap: 12px; }
.tr-confirm__actions .tr-btn { flex: 1; }
.tr-confirm__actions .tr-btn--primary { flex: 2; }

/* Sections */
.tr-section { padding: 80px 0; }
.tr-section--muted { background: none; }
.tr-section__head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.tr-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.15; margin: 0 0 12px; letter-spacing: -1px; }
.tr-subtitle { font-size: 17px; color: var(--tr-gray); margin: 0; }

/* Steps */
.tr-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    align-items: start;
}
.tr-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.tr-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 34px;
    right: -44px;
    width: 40px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='12' viewBox='0 0 48 12'%3E%3Cline x1='1' y1='6' x2='39' y2='6' stroke='%23c2c8c4' stroke-width='1.6' stroke-dasharray='4 5' stroke-linecap='round'/%3E%3Cpath d='M39 2.5 45 6l-6 3.5' fill='none' stroke='%23c2c8c4' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.tr-step__badges {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.tr-step__num {
    width: 30px;
    height: 30px;
    background: var(--tr-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: -25px;
    z-index: 10;
}
.tr-step__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--tr-light);
    color: var(--tr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tr-step__body { padding-top: 4px; }
.tr-step__title { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.tr-step__text { font-size: 15px; color: var(--tr-gray); margin: 0; line-height: 1.5; }

/* Advantages */
.tr-advantages-panel {
    background: var(--tr-light);
    border-radius: 15px;
    padding: 48px 32px 56px;
}
.tr-section__head--advantages { margin-bottom: 40px; }
.tr-advantages {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.tr-advantage { text-align: center; }
.tr-advantage__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tr-accent);
    margin: 0 auto 14px;
}
.tr-advantage__icon svg { display: block; }
.tr-advantage__title { font-size: 15px; font-weight: 700; margin: 0 0 6px; line-height: 1.35; }
.tr-advantage__text { font-size: 13px; color: var(--tr-dark); margin: 0; line-height: 1.45; }

/* Schedule */
.tr-schedule-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 840px;
    margin: 0 auto;
}
.tr-schedule-card {
    background: #fff;
    border: 1px solid var(--tr-border);
    border-radius: var(--tr-radius-lg);
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.tr-schedule-card__route {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--tr-accent-dark);
}
.tr-schedule-card__icon {
    display: inline-flex;
    color: var(--tr-accent);
}
.tr-schedule-card__title {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}
.tr-schedule-card__times {
    display: flex;
    align-items: center;
    gap: 14px;
}
.tr-schedule-card__time {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.5px;
    color: var(--tr-dark);
}
.tr-schedule-card__line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--tr-accent), var(--tr-accent-light));
    position: relative;
    border-radius: 2px;
}
.tr-schedule-card__line::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--tr-accent);
}
.tr-schedule-card__meta {
    margin: 0;
    font-size: 14px;
    color: var(--tr-gray);
}

/* Compare */
.tr-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.tr-compare__col {
    border-radius: var(--tr-radius-lg);
    padding: 28px 24px;
}
.tr-compare__col--shuttle {
    background: var(--tr-accent-light);
    border: 2px solid var(--tr-accent);
}
.tr-compare__col--taxi {
    background: var(--tr-light);
    border: 1px solid var(--tr-border);
}
.tr-compare__heading {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 20px;
    text-align: center;
}
.tr-compare__col--shuttle .tr-compare__heading { color: var(--tr-accent-dark); }
.tr-compare__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tr-compare__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 1.35;
}
.tr-compare__col--shuttle .tr-compare__list svg { color: var(--tr-accent); flex-shrink: 0; }
.tr-compare__col--taxi .tr-compare__list svg { color: #9ca3af; flex-shrink: 0; }
.tr-compare__col--taxi .tr-compare__list li { color: var(--tr-gray); }

/* FAQ */
.tr-faq {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tr-faq__item {
    background: #fff;
    border: 1px solid var(--tr-border);
    border-radius: var(--tr-radius);
    overflow: hidden;
}
.tr-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}
.tr-faq__question::-webkit-details-marker { display: none; }
.tr-faq__question::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--tr-gray);
    border-bottom: 2px solid var(--tr-gray);
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform .2s ease;
    margin-top: -4px;
}
.tr-faq__item[open] .tr-faq__question::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}
.tr-faq__answer {
    padding: 0 20px 18px;
    font-size: 15px;
    color: var(--tr-gray);
    line-height: 1.55;
}
.tr-faq__answer p { margin: 0; }
.tr-faq__answer a {
    color: var(--tr-accent-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Hero features strip (mobile-first visible under hero) */
.tr-hero-features {
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--tr-border);
}
.tr-hero-features__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 20px 16px;
}
.tr-hero-features__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--tr-dark);
    line-height: 1.3;
}
.tr-hero-features__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--tr-accent-light);
    color: var(--tr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Reviews */
.tr-review {
    background: #fff;
    border: 1px solid var(--tr-border);
    border-radius: var(--tr-radius);
    padding: 28px;
}
.tr-review__stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.tr-review__text { font-size: 15px; color: var(--tr-dark); margin: 0 0 16px; line-height: 1.6; }
.tr-review__author { font-size: 14px; color: var(--tr-gray); }
.tr-review__author strong { color: var(--tr-dark); }
.tr-review__date { display: block; font-size: 13px; margin-top: 4px; }

/* CTA */
.tr-cta { padding: 40px 0 40px; }
.tr-cta__banner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    min-height: 148px;
}
.tr-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    top: -40px;
}
.tr-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.tr-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #0000005c;
}
.tr-cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 48px;
}
.tr-cta__copy { max-width: 620px; }
.tr-cta__title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -.4px;
    text-align: left;
}
.tr-cta__text {
    font-size: 16px;
    color: rgba(255, 255, 255, .92);
    margin: 0;
    line-height: 1.45;
    text-align: left;
}
.tr-cta__btn {
    flex-shrink: 0;
    min-width: 190px;
    background: linear-gradient(135deg, #1f6b3b 0%, #14532d 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}
.tr-cta__btn:hover { background: linear-gradient(135deg, #248044 0%, #1a5f36 100%); }

/* Footer */
.tr-footer { background: var(--tr-dark); color: #b0b5b2; margin-top: 0; }
.tr-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding: 64px 24px 48px;
}
.tr-footer__about { margin: 16px 0 0; max-width: 320px; color: #8a8f8c; font-size: 14px; }
.tr-footer__title { font-size: 15px; font-weight: 700; color: #fff; margin: 0 0 16px; }
.tr-footer__col { display: flex; flex-direction: column; gap: 10px; }
.tr-footer__link { color: #8a8f8c; font-size: 14px; transition: color .2s ease; }
.tr-footer__link:hover { color: #fff; }
.tr-footer__link--phone { font-size: 18px; font-weight: 700; color: #fff; }
.tr-footer__link--muted { font-size: 13px; }
.tr-footer__socials { display: flex; gap: 10px; margin-top: 8px; }
.tr-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #b0b5b2;
    transition: background .2s, color .2s;
}
.tr-footer__social:hover { background: var(--tr-accent); color: #fff; }
.tr-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 20px 0; font-size: 13px; color: #6a6f6c; }

/* Grid helpers */
.tr-grid { display: grid; gap: 24px; }
.tr-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Adaptive */
@media (max-width: 1024px) {
    .tr-hero-layout { grid-template-columns: 1fr; gap: 24px; }
    .tr-nav { gap: 16px; }
    .tr-checkout__grid { grid-template-columns: 1fr; }
    .tr-confirm__body { grid-template-columns: 1fr; }
    .tr-advantages { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
    .tr-hero-section { min-height: auto; }
    .tr-hero-section__bg img { object-position: center; }
}

@media (max-width: 860px) {
    .tr-burger { display: flex; }
    .tr-nav {
        position: fixed;
        top: var(--tr-header-h);
        left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: #fff;
        padding: 12px 24px 24px;
        border-bottom: 1px solid var(--tr-border);
        box-shadow: 0 20px 30px rgba(0, 0, 0, .08);
        transform: translateY(-140%);
        transition: transform .3s ease;
        z-index: 99;
    }
    .tr-nav.is-open { transform: translateY(0); }
    .tr-nav__link { padding: 14px 0; border-bottom: 1px solid var(--tr-border); }
    .tr-logo__img { height: 24px; }
    .tr-steps { grid-template-columns: 1fr; gap: 28px; }
    .tr-step:not(:last-child)::after { display: none; }
    .tr-grid--3 { grid-template-columns: 1fr; }
    .tr-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .tr-hero-banner__title { max-width: 100%; }
    .tr-booking-form { max-width: 100%; }
    .tr-wizard { max-width: 100%; }
    .tr-hero-badges { display: none; }
    .tr-hero-features { display: block; }
    .tr-schedule-cards { grid-template-columns: 1fr; max-width: 420px; }
    .tr-compare { gap: 12px; }
    .tr-compare__col { padding: 20px 14px; }
    .tr-compare__heading { font-size: 18px; margin-bottom: 14px; }
    .tr-compare__list li { font-size: 13px; gap: 8px; }
    .tr-hero-section__overlay {
        background: linear-gradient(180deg, rgba(10, 22, 14, .55) 0%, rgba(10, 22, 14, .35) 55%, rgba(10, 22, 14, .5) 100%);
    }
}

@media (max-width: 560px) {
    .tr-section { padding: 60px 0; }
    .tr-advantages-panel { padding: 32px 20px 40px; }
    .tr-advantages { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
    .tr-cta { padding: 0 0 60px; }
    .tr-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        gap: 20px;
    }
    .tr-cta__btn { width: 100%; min-width: 0; }
    .tr-header__actions .tr-btn { display: none; }
    .tr-header__social { width: 34px; height: 34px; }
    .tr-hero-section__inner { padding: 20px 16px; }
    .tr-booking-form { padding: 18px; }
    .tr-wizard { padding: 20px; }
    .tr-form-row { grid-template-columns: 1fr 1fr; gap: 10px; }
    .tr-shuttle-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
        padding: 20px 16px;
    }
    .tr-shuttle-card__time,
    .tr-shuttle-card__route,
    .tr-shuttle-card__badge,
    .tr-shuttle-card__price-block,
    .tr-shuttle-card__select {
        grid-column: 1;
        grid-row: auto;
    }
    .tr-shuttle-card__price-block { align-items: center; text-align: center; min-width: 0; }
    .tr-shuttle-card__select { width: 100%; min-width: 0; }
    .tr-confirm__grid { grid-template-columns: 1fr; }
    .tr-confirm__actions { flex-direction: column; }
    .tr-hero-features__inner { gap: 8px; padding: 16px 12px; }
    .tr-hero-features__item { font-size: 11px; }
    .tr-hero-features__icon { width: 42px; height: 42px; }
    .tr-hero-features__icon svg { width: 18px; height: 18px; }
    .tr-trip-type { gap: 14px; }
    .tr-schedule-card__time { font-size: 24px; }
    .tr-wizard__continue-wrap { justify-content: stretch; }
    .tr-wizard__continue-wrap .tr-btn { width: 100%; }
}

/* End */
/* /local/templates/tr_landing/styles.css?1783574397861 */
/* /local/templates/tr_landing/template_styles.css?179031621137797 */
