:root {
    --bp-bg: #f5f6f7;
    --bp-surface: #ffffff;
    --bp-text: #16191d;
    --bp-muted: #666d75;

    --bp-dark: #1d2723;
    --bp-dark-deep: #121b17;

    --bp-accent: #ef3f70;
    --bp-accent-hover: #cf2f5d;

    --bp-line: #e3e6e8;
    --bp-radius: 20px;
    --bp-shadow: 0 18px 50px rgba(15, 26, 21, .11);
    --bp-shadow-soft: 0 10px 28px rgba(15, 26, 21, .08);

    --bp-container: 1180px;
    --bp-side-padding: 40px;
}

/* ==========================================================================
   База
   ========================================================================== */

.bp-page,
.bp-page *,
.bp-map-modal,
.bp-map-modal * {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.bp-page {
    overflow: hidden;
    color: var(--bp-text);
    background: var(--bp-bg);
    font-family: inherit;
    line-height: 1.55;
}

.bp-container {
    width: min(var(--bp-container), calc(100% - var(--bp-side-padding)));
    margin: 0 auto;
}

.bp-container--narrow {
    width: min(850px, calc(100% - var(--bp-side-padding)));
}

.bp-section {
    padding: 96px 0;
    background: var(--bp-surface);
}

.bp-section--soft {
    background: var(--bp-bg);
}

.bp-section--dark {
    color: #fff;
    background: var(--bp-dark);
}

.bp-grid {
    display: grid;
    align-items: center;
    gap: 64px;
}

.bp-grid--2 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

/* ==========================================================================
   Типографика
   ========================================================================== */

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

.bp-page h1 {
    max-width: 880px;
    margin-bottom: 24px;
    font-size: clamp(46px, 6.2vw, 86px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.05em;
}

.bp-page h2 {
    margin-bottom: 22px;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.bp-page h3 {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
}

.bp-page p {
    color: var(--bp-muted);
    font-size: 17px;
}

.bp-section--dark p,
.bp-final p {
    color: rgba(255, 255, 255, .72);
}

.bp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--bp-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bp-kicker::before {
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            #67c654 0 25%,
            #159de0 25% 50%,
            #df3933 50% 75%,
            #202020 75% 100%
        );
    content: "";
}

.bp-section-head {
    max-width: 780px;
    margin-bottom: 48px;
}

/* ==========================================================================
   Кнопки
   ========================================================================== */

.bp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
	margin-bottom:28px;
	margin-top:14px;
}

.bp-actions--center {
    justify-content: center;
}

.bp-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 14px;
    text-decoration: none !important;
    font-weight: 800;
    transition:
        transform .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.bp-btn:hover {
    transform: translateY(-2px);
}

.bp-btn--primary {
    color: #fff !important;
    background: var(--bp-accent);
    box-shadow: 0 10px 24px rgba(239, 63, 112, .24);
}

.bp-btn--primary:hover {
    color: #fff !important;
    background: var(--bp-accent-hover);
    box-shadow: 0 12px 30px rgba(239, 63, 112, .31);
}

.bp-btn--secondary {
    color: #fff !important;
    background: var(--bp-dark);
}

.bp-btn--secondary:hover {
    background: var(--bp-dark-deep);
}

.bp-btn--ghost {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(8px);
}

.bp-btn--ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

.bp-btn--wide {
    width: 100%;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.bp-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: flex-end;
    padding: 150px 0 90px;
    color: #fff;
    background: var(--bp-dark-deep);
}

.bp-hero__bg {
    position: absolute;
    inset: 0;
    background:
        url("../images/bike/hero.jpg")
        center / cover no-repeat;
}

.bp-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(15, 24, 20, .9) 0%,
            rgba(15, 24, 20, .58) 50%,
            rgba(15, 24, 20, .14) 100%
        );
}

.bp-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    background:
        linear-gradient(
            90deg,
            #67c654 0 25%,
            #159de0 25% 50%,
            #df3933 50% 75%,
            #202020 75% 100%
        );
    content: "";
}

.bp-hero__content {
    position: relative;
    z-index: 1;
}

.bp-hero .bp-kicker {
    color: #ffd6e1;
}

.bp-hero__lead {
    max-width: 760px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .84) !important;
    font-size: 21px !important;
}

.bp-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 42px;
    color: rgba(255, 255, 255, .92);
    font-weight: 700;
}

.bp-hero__facts span {
    position: relative;
    padding-left: 12px;
}

.bp-hero__facts span::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--bp-accent);
    content: "";
    transform: translateY(-50%);
}

.bp-hero__schedule-card {
    width: fit-content;
    min-width: 315px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-left: 4px solid var(--bp-accent);
    border-radius: 12px;
    color: #fff;
    background: rgba(17, 27, 23, .76);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    backdrop-filter: blur(10px);
}

.bp-hero__schedule-icon {
    flex: 0 0 auto;
    font-size: 30px;
}

.bp-hero__schedule-card > div {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 13px;
    align-items: baseline;
}

.bp-hero__schedule-card small {
    grid-column: 1 / -1;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bp-hero__schedule-card strong {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.bp-hero__schedule-card b {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

/* ==========================================================================
   Якорное меню
   ========================================================================== */

.bp-anchor-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--bp-line);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
}

.bp-anchor-nav .bp-container {
    height: 64px;
    display: flex;
    align-items: center;
    gap: 32px;
    overflow-x: auto;
    scrollbar-width: none;
}

.bp-anchor-nav .bp-container::-webkit-scrollbar {
    display: none;
}

.bp-anchor-nav a {
    position: relative;
    color: var(--bp-text);
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
}

.bp-anchor-nav a::after {
    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--bp-accent);
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
}

.bp-anchor-nav a:hover::after {
    transform: scaleX(1);
}

/* ==========================================================================
   Прокат
   ========================================================================== */

#bp-rent {
    background: var(--bp-surface);
}

.bp-media {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border-radius: var(--bp-radius);
    background: #eef1ef;
    box-shadow: var(--bp-shadow);
}

.bp-media img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: block;
    object-fit: cover;
}

.bp-media__badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 27, 23, .88);
    backdrop-filter: blur(8px);
    font-weight: 800;
}

.bp-check-list {
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.bp-check-list li {
    position: relative;
    margin: 11px 0;
    padding-left: 30px;
}

.bp-check-list li::before {
    position: absolute;
    left: 0;
    color: var(--bp-accent);
    content: "✓";
    font-weight: 900;
}

.bp-note {
    margin-top: 24px;
    font-size: 14px !important;
}

.bp-note--center {
    text-align: center;
}

.bp-note--light {
    color: rgba(255, 255, 255, .6) !important;
}

/* ==========================================================================
   Форматы
   ========================================================================== */

.bp-card-grid {
    display: grid;
    gap: 22px;
}

.bp-card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

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

.bp-card {
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    background: #fff;
    box-shadow: var(--bp-shadow-soft);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.bp-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--bp-accent);
    content: "";
}

.bp-card:nth-child(2)::before {
    background: var(--bp-dark);
}

.bp-card:nth-child(3)::before {
    background:
        linear-gradient(
            90deg,
            #67c654 0 25%,
            #159de0 25% 50%,
            #df3933 50% 75%,
            #202020 75% 100%
        );
}

.bp-card:hover {
    box-shadow: 0 22px 48px rgba(15, 26, 21, .14);
    transform: translateY(-4px);
}

.bp-card__icon {
    margin-bottom: 28px;
    font-size: 38px;
}

.bp-card p {
    flex: 1;
}

.bp-card a {
    color: var(--bp-accent-hover);
    text-decoration: none;
    font-weight: 800;
}

/* ==========================================================================
   Цены
   ========================================================================== */

.bp-price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 20px;
}

.bp-price-card {
    position: relative;
    padding: 30px;
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    background: #fff;
    box-shadow: var(--bp-shadow-soft);
}

.bp-price-card--featured {
    color: #fff;
    border-color: transparent;
    background:
        linear-gradient(145deg, var(--bp-dark), var(--bp-dark-deep));
    box-shadow: var(--bp-shadow);
    transform: translateY(-12px);
}

.bp-price-card__badge {
    position: absolute;
    top: -14px;
    left: 22px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #fff;
    background: var(--bp-accent);
    font-size: 12px;
    font-weight: 900;
}

.bp-price-card__label {
    display: block;
    margin-bottom: 15px;
    color: var(--bp-muted);
    font-weight: 800;
}

.bp-price-card--featured .bp-price-card__label {
    color: rgba(255, 255, 255, .65);
}

.bp-price-card h3 {
    font-size: 32px;
}

.bp-price-card--featured p {
    color: rgba(255, 255, 255, .68);
}

.bp-price-card ul {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.bp-price-card li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid var(--bp-line);
}

.bp-price-card--featured li {
    color: #fff;
    border-color: rgba(255, 255, 255, .13);
}

.bp-price-card__included li {
    justify-content: flex-start;
}

/* ==========================================================================
   Первый визит
   ========================================================================== */

.bp-first {
    background:
        linear-gradient(
            135deg,
            #fff7fa 0%,
            #f8f6f2 58%,
            #eef3ef 100%
        );
}

.bp-steps {
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}

.bp-steps li {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
}

.bp-steps li > span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--bp-accent);
    font-weight: 900;
}

.bp-steps small {
    display: block;
    margin-top: 3px;
    color: var(--bp-muted);
    font-size: 14px;
}

.bp-quote {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px;
    border-radius: var(--bp-radius);
    color: #fff;
    background:
        linear-gradient(
            0deg,
            rgba(15, 24, 20, .88),
            rgba(15, 24, 20, .04)
        ),
        url("../images/bike/quote.jpg")
        center / cover no-repeat;
    box-shadow: var(--bp-shadow);
}

.bp-quote p {
    color: #fff !important;
    font-size: 31px !important;
    line-height: 1.18;
    font-weight: 800;
}

/* ==========================================================================
   Преимущества
   ========================================================================== */

.bp-mini-card {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 30px;
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    background: #fff;
    box-shadow: var(--bp-shadow-soft);
    font-weight: 800;
}

.bp-mini-card b {
    font-size: 32px;
}

/* ==========================================================================
   Инфраструктура курорта
   ========================================================================== */

.bp-infrastructure {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f8f7 100%
        );
}

.bp-infrastructure__head {
    max-width: 820px;
}

.bp-infrastructure__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.bp-infrastructure-card {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    background: #fff;
    box-shadow: var(--bp-shadow-soft);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.bp-infrastructure-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--bp-dark);
    content: "";
}

.bp-infrastructure-card:nth-child(2)::before {
    background: var(--bp-accent);
}

.bp-infrastructure-card:nth-child(3)::before {
    background: #159de0;
}

.bp-infrastructure-card:nth-child(5)::before {
    background: #67c654;
}

.bp-infrastructure-card:nth-child(6)::before {
    background: #405f4d;
}

.bp-infrastructure-card:hover {
    border-color: rgba(32, 37, 41, .2);
    box-shadow: 0 20px 46px rgba(15, 26, 21, .13);
    transform: translateY(-4px);
}

.bp-infrastructure-card__icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--bp-bg);
    font-size: 27px;
}

.bp-infrastructure-card h3 {
    margin-bottom: 11px;
    font-size: 21px;
}

.bp-infrastructure-card p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
}

.bp-infrastructure-card__label {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--bp-accent-hover);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Акцентная карточка кафе */

.bp-infrastructure-card--cafe {
    color: #fff;
    border-color: transparent;
    background:
        linear-gradient(
            145deg,
            var(--bp-dark),
            var(--bp-dark-deep)
        );
    box-shadow: var(--bp-shadow);
}

.bp-infrastructure-card--cafe::before {
    background: var(--bp-accent);
}

.bp-infrastructure-card--cafe .bp-infrastructure-card__icon {
    background: rgba(255, 255, 255, .1);
}

.bp-infrastructure-card--cafe h3 {
    color: #fff;
}

.bp-infrastructure-card--cafe p {
    color: rgba(255, 255, 255, .7);
}

.bp-infrastructure-card--cafe .bp-infrastructure-card__label {
    color: #ff9bb7;
}

/* ==========================================================================
   Сценарии посещения
   ========================================================================== */

.bp-day-plan {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.6fr);
    gap: 64px;
    margin-top: 72px;
    padding-top: 64px;
    border-top: 1px solid var(--bp-line);
}

.bp-day-plan__intro {
    align-self: start;
}

.bp-day-plan__intro h3 {
    margin-bottom: 17px;
    font-size: clamp(27px, 3vw, 38px);
}

.bp-day-plan__routes {
    display: grid;
    gap: 20px;
}

.bp-day-route {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 22px;
    padding: 27px 30px;
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    background: #fff;
}

.bp-day-route__number {
    color: var(--bp-accent);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.bp-day-route h4 {
    margin: 0 0 16px;
    color: var(--bp-text);
    font-size: 20px;
    font-weight: 800;
}

.bp-day-route ol {
    margin: 0;
    padding-left: 20px;
}

.bp-day-route li {
    margin-bottom: 8px;
    padding-left: 5px;
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.55;
}

.bp-day-route li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Адаптив инфраструктуры
   ========================================================================== */

@media (max-width: 980px) {
    .bp-infrastructure__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bp-day-plan {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 640px) {
    .bp-infrastructure__grid {
        grid-template-columns: 1fr;
    }

    .bp-infrastructure-card {
        min-height: 0;
        padding: 24px 22px;
    }

    .bp-day-plan {
        margin-top: 54px;
        padding-top: 48px;
    }

    .bp-day-route {
        grid-template-columns: 1fr;
        gap: 13px;
        padding: 24px 21px;
    }

    .bp-day-route__number {
        font-size: 23px;
    }
}

/* ==========================================================================
   Карта трасс
   ========================================================================== */

.bp-tracks {
    background-color: var(--bp-dark-deep);
    background-image:
        radial-gradient(
            circle at 82% 12%,
            rgba(239, 63, 112, .13),
            transparent 32%
        ),
        repeating-radial-gradient(
            ellipse at 15% 85%,
            rgba(255, 255, 255, .03) 0,
            rgba(255, 255, 255, .03) 1px,
            transparent 1px,
            transparent 16px
        );
}

.bp-tracks .bp-kicker {
    color: #ff8dad;
}

.bp-tracks__header {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .5fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 42px;
}

.bp-tracks__notice {
    display: grid;
    gap: 8px;
    padding: 20px 22px;
    border-left: 4px solid var(--bp-accent);
    border-radius: 0 10px 10px 0;
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.bp-tracks__notice span {
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
}

.bp-tracks-map {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--bp-radius);
    background: #7e8988;
    box-shadow: var(--bp-shadow-map);
    cursor: zoom-in;
}

.bp-tracks-map img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 5 / 3;
    object-fit: contain;
    background: #7e8988;
    transition:
        transform .35s ease,
        filter .35s ease;
}

.bp-tracks-map:hover img {
    filter: brightness(.9);
    transform: scale(1.012);
}

.bp-tracks-map__zoom {
    position: absolute;
    right: 22px;
    bottom: 22px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 17px;
    border-radius: 12px;
    color: #fff;
    background: rgba(17, 27, 23, .9);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 800;
}

.bp-tracks-legend {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.bp-tracks-legend__item {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 15px;
    background: rgba(255, 255, 255, .05);
}

.bp-tracks-legend__item strong {
    display: block;
    color: #fff;
    font-size: 13px;
}

.bp-tracks-legend__item small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .57);
    font-size: 11px;
}

.bp-track-color {
    width: 28px;
    height: 7px;
    flex: 0 0 28px;
    margin-top: 5px;
    border-radius: 999px;
}

.bp-track-color--green { background: #67c654; }
.bp-track-color--blue { background: #159de0; }
.bp-track-color--red { background: #df3933; }

.bp-track-color--black {
    border: 1px solid rgba(255, 255, 255, .35);
    background: #1d1d1d;
}

.bp-track-color--yellow { background: #eadb21; }

.bp-tracks__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.bp-tracks__features > div {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 13px;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.bp-tracks__features span {
    grid-row: 1 / 3;
    font-size: 27px;
}

.bp-tracks__features strong {
    color: #fff;
    font-size: 14px;
}

.bp-tracks__features small {
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.bp-faq details {
    margin-bottom: 12px;
    padding: 0 22px;
    border: 1px solid var(--bp-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(15, 26, 21, .05);
}

.bp-faq summary {
    min-height: 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    color: var(--bp-text);
    font-weight: 800;
    line-height: 1.25;
}

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

.bp-faq summary::after {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    justify-self: end;
    color: var(--bp-accent);
    content: "+";
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
}

.bp-faq details[open] summary::after {
    content: "−";
}

.bp-faq details p {
    padding-bottom: 20px;
}

/* ==========================================================================
   Контакты
   ========================================================================== */

.bp-contact-list {
    display: grid;
    gap: 12px;
    margin: 28px 0;
}

.bp-contact-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border: 1px solid var(--bp-line);
    border-radius: 14px;
    color: var(--bp-text);
    background: var(--bp-bg);
    text-decoration: none;
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.bp-contact-list a:hover {
    border-color: rgba(239, 63, 112, .35);
    box-shadow: var(--bp-shadow-soft);
    transform: translateY(-2px);
}

.bp-contact-list span {
    color: var(--bp-muted);
}

.bp-contact-list a,
.bp-contact-list__schedule {
    min-height: 76px;
}

.bp-contact-list a > span,
.bp-contact-list__schedule > span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bp-contact-list small {
    display: block;
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.bp-contact-list a > span {
    color: var(--bp-text);
    font-size: 14px;
    font-weight: 700;
}

.bp-contact-list__schedule {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border: 1px solid var(--bp-line);
    border-radius: 14px;
    color: var(--bp-text);
    background: #fff;
}

.bp-contact-list__schedule > span {
    font-size: 14px;
    font-weight: 700;
}

.bp-contact-list__schedule b {
    text-align: right;
    font-size: 15px;
    font-weight: 800;
}

.bp-hero__schedule {
    color: #fff;
    font-weight: 800;
}

.bp-address {
    color: var(--bp-text) !important;
    font-weight: 700;
}

.bp-map {
    min-height: 460px;
    display: grid;
    place-items: center;
    text-align: center;
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    background:
        linear-gradient(
            rgba(245, 246, 247, .9),
            rgba(245, 246, 247, .9)
        ),
        repeating-linear-gradient(
            45deg,
            #dfe2e6 0,
            #dfe2e6 1px,
            transparent 1px,
            transparent 22px
        );
    box-shadow: var(--bp-shadow-soft);
}

.bp-map > div {
    display: grid;
    gap: 22px;
}


/* ==========================================================================
   Финальный CTA
   ========================================================================== */

.bp-final {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(145deg, var(--bp-dark), var(--bp-dark-deep));
}

.bp-final::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    background:
        linear-gradient(
            90deg,
            #67c654 0 25%,
            #159de0 25% 50%,
            #df3933 50% 75%,
            #202020 75% 100%
        );
    content: "";
}

.bp-final .bp-container {
    position: relative;
    z-index: 1;
}

.bp-final .bp-kicker {
    color: #ff8dad;
}

.bp-final h2 {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
}

.bp-final p {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
}

/* ==========================================================================
   Модальное окно карты + Panzoom
   ========================================================================== */

.bp-map-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    flex-direction: column;
    padding: 14px;
    color: #fff;
    background: rgba(5, 12, 9, .985);
}

.bp-map-modal.is-open {
    display: flex;
}

.bp-map-modal__topbar {
    position: relative;
    z-index: 3;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.bp-map-modal__controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bp-map-modal__controls button,
.bp-map-modal__close {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
}

.bp-map-modal__controls button:hover,
.bp-map-modal__close:hover {
    background: rgba(255, 255, 255, .18);
}

.bp-map-modal__close {
    position: absolute;
    top: 3px;
    right: 0;
    width: 44px;
    padding: 0;
    border-radius: 50%;
    font-size: 30px;
    line-height: 40px;
}

.bp-map-modal__viewport {
    position: relative;
    min-height: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
    background: #737e7d;
    touch-action: none;
}

.bp-map-modal__canvas {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    transform-origin: 50% 50%;
}

.bp-map-modal__canvas:active {
    cursor: grabbing;
}

.bp-map-modal__canvas img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}

.bp-map-modal__hint {
    flex: 0 0 auto;
    margin: 10px 0 0 !important;
    color: rgba(255, 255, 255, .65) !important;
    text-align: center;
    font-size: 13px !important;
}

body.bp-map-is-open {
    overflow: hidden;
}

/* ==========================================================================
   Мобильная панель
   ========================================================================== */

.bp-mobile-bar {
    display: none;
}

/* ==========================================================================
   Планшеты
   ========================================================================== */

@media (max-width: 980px) {
    :root {
        --bp-side-padding: 32px;
    }

    .bp-section {
        padding: 72px 0;
    }

    .bp-grid--2 {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .bp-card-grid--3,
    .bp-card-grid--4,
    .bp-price-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bp-price-card--featured {
        transform: none;
    }

    .bp-hero {
        min-height: 690px;
    }

    .bp-tracks__header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

/* ==========================================================================
   Мобильные
   ========================================================================== */

@media (max-width: 640px) {
    :root {
        --bp-side-padding: 28px;
    }

    body {
        padding-bottom: calc(68px + env(safe-area-inset-bottom));
    }

    .bp-section {
        padding: 56px 0;
    }

    .bp-page h1 {
        font-size: 46px;
    }

    .bp-page h2 {
        font-size: 34px;
    }

    .bp-page p {
        font-size: 16px;
    }

    .bp-hero {
        min-height: 680px;
        padding: 120px 0 54px;
    }

    .bp-hero__bg {
        background-position: 63% center;
    }

    .bp-hero__shade {
        background:
            linear-gradient(
                0deg,
                rgba(15, 24, 20, .97) 0%,
                rgba(15, 24, 20, .84) 44%,
                rgba(15, 24, 20, .23) 100%
            );
    }

    .bp-hero__lead {
        font-size: 18px !important;
    }

    .bp-actions {
        width: 100%;
        display: grid;
    }

    .bp-btn {
        width: 100%;
    }

    .bp-hero__facts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        font-size: 14px;
    }
	
	   .bp-hero__schedule-card {
        width: 100%;
        min-width: 0;
        margin-top: 24px;
        padding: 14px 16px;
    }

    .bp-hero__schedule-card > div {
        grid-template-columns: 1fr;
    }

    .bp-hero__schedule-card b {
        margin-top: 2px;
        font-size: 21px;
    }

    .bp-anchor-nav {
        display: none;
    }

    .bp-card-grid--3,
    .bp-card-grid--4,
    .bp-price-grid {
        grid-template-columns: 1fr;
    }

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

    .bp-media,
    .bp-media img {
        min-height: 330px;
    }

    .bp-quote {
        min-height: 390px;
        padding: 28px;
    }

    .bp-quote p {
        font-size: 26px !important;
    }

    .bp-tracks-map {
        width: calc(100% + 28px);
        margin-right: -14px;
        margin-left: -14px;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .bp-tracks-map img {
        min-height: 310px;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center;
    }

    .bp-tracks-map__zoom {
        right: 14px;
        bottom: 14px;
    }

    .bp-tracks-legend {
        grid-template-columns: 1fr;
    }

    .bp-tracks-legend__item {
        align-items: center;
    }

    .bp-tracks__features {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bp-tracks__features > div {
        padding-right: 0;
        padding-left: 0;
    }

    .bp-contact-list a {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
	
	 .bp-contact-list__schedule {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .bp-contact-list__schedule b {
        text-align: left;
    }

    .bp-hero__schedule {
        grid-column: 1 / -1;
        margin-top: 3px;
    }

    .bp-map {
        min-height: 310px;
    }

    .bp-final {
        padding: 76px 0 92px;
    }

    .bp-map-modal {
        padding: 8px 0 10px;
    }

    .bp-map-modal__topbar {
        margin-bottom: 6px;
        padding: 0 8px;
    }

    .bp-map-modal__controls button {
        min-width: 40px;
        height: 40px;
        padding: 0 11px;
        font-size: 15px;
    }

    .bp-map-modal__close {
        top: 5px;
        right: 8px;
        width: 40px;
        height: 40px;
    }

    .bp-map-modal__viewport {
        border-radius: 0;
    }

    .bp-map-modal__hint {
        padding: 0 14px;
        font-size: 12px !important;
    }

    .bp-mobile-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 100;
        height: calc(68px + env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding-bottom: env(safe-area-inset-bottom);
        border-top: 1px solid var(--bp-line);
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, .08);
        backdrop-filter: blur(12px);
    }

    .bp-mobile-bar a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        color: var(--bp-text);
        text-decoration: none;
        font-size: 17px;
        font-weight: 800;
    }

    .bp-mobile-bar a:nth-child(2) {
        color: #fff;
        background: var(--bp-accent);
    }

    .bp-mobile-bar span {
        font-size: 11px;
    }
}

@media (max-width: 390px) {
    .bp-page h1 {
        font-size: 40px;
    }

    .bp-hero__facts {
        grid-template-columns: 1fr;
    }

    .bp-map-modal__controls button[data-bp-map-reset] {
        max-width: 90px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .bp-btn,
    .bp-card,
    .bp-contact-list a,
    .bp-tracks-map img,
    .bp-anchor-nav a::after {
        transition: none;
    }
}
/* ==========================================================================
   Галерея проката
   ========================================================================== */

.bp-rent-slider {
    position: relative;
    min-width: 0;
    min-height: 480px;
    overflow: hidden;
    border-radius: var(--bp-radius);
    background: #eef1ef;
    box-shadow: var(--bp-shadow);
    isolation: isolate;
}

.bp-rent-slider__viewport {
    width: 100%;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
}

.bp-rent-slider__track {
    height: 100%;
    min-height: 480px;
    display: flex;
    transition: transform .48s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.bp-rent-slider__slide {
    position: relative;
    min-width: 100%;
    height: 480px;
    margin: 0;
    overflow: hidden;
    background: #eef1ef;
}

.bp-rent-slider__slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.bp-rent-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    padding: 0 0 4px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: #fff;
    background: rgba(17, 27, 23, .74);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    backdrop-filter: blur(8px);
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
    transition:
        background-color .2s ease,
        transform .2s ease,
        opacity .2s ease;
}

.bp-rent-slider__arrow:hover {
    background: rgba(17, 27, 23, .94);
    transform: translateY(-50%) scale(1.04);
}

.bp-rent-slider__arrow--prev {
    left: 16px;
}

.bp-rent-slider__arrow--next {
    right: 16px;
}

.bp-rent-slider__dots {
    position: absolute;
    right: 18px;
    bottom: 20px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(17, 27, 23, .66);
    backdrop-filter: blur(8px);
}

.bp-rent-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .52);
    cursor: pointer;
    transition:
        width .2s ease,
        border-radius .2s ease,
        background-color .2s ease;
}

.bp-rent-slider__dot.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--bp-accent);
}

/* Значок должен находиться слева,
   чтобы не пересекаться с точками */

.bp-rent-slider .bp-media__badge {
    right: auto;
    left: 22px;
    bottom: 20px;
    z-index: 4;
}

/* Плавное затемнение краев для читаемости элементов управления */

.bp-rent-slider::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 100px;
    background:
        linear-gradient(
            0deg,
            rgba(12, 20, 16, .46),
            transparent
        );
    pointer-events: none;
    content: "";
}

@media (max-width: 640px) {
    .bp-rent-slider,
    .bp-rent-slider__viewport,
    .bp-rent-slider__track {
        min-height: 360px;
    }

    .bp-rent-slider__slide {
        height: 360px;
    }

    .bp-rent-slider__arrow {
        width: 42px;
        height: 42px;
        font-size: 30px;
    }

    .bp-rent-slider__arrow--prev {
        left: 10px;
    }

    .bp-rent-slider__arrow--next {
        right: 10px;
    }

    .bp-rent-slider .bp-media__badge {
        left: 13px;
        bottom: 14px;
        max-width: calc(100% - 130px);
        padding: 8px 11px;
        font-size: 12px;
    }

    .bp-rent-slider__dots {
        right: 12px;
        bottom: 14px;
    }
}
/* ==========================================================================
   Слайдер «Первый раз в байк-парке»
   ========================================================================== */

.bp-first-slider {
    position: relative;
    min-width: 0;
    min-height: 430px;
    overflow: hidden;
    border-radius: var(--bp-radius);
    background: var(--bp-dark);
    box-shadow: var(--bp-shadow);
    isolation: isolate;
    outline: none;
}

.bp-first-slider:focus-visible {
    box-shadow:
        0 0 0 3px rgba(239, 63, 112, .28),
        var(--bp-shadow);
}

.bp-first-slider__viewport {
    width: 100%;
    height: 100%;
    min-height: 430px;
    overflow: hidden;
}

.bp-first-slider__track {
    height: 100%;
    min-height: 430px;
    display: flex;
    transition: transform .48s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.bp-first-slider__slide {
    position: relative;
    min-width: 100%;
    height: 430px;
    margin: 0;
    overflow: hidden;
    background: var(--bp-dark);
}

.bp-first-slider__slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.bp-first-slider__slide::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            0deg,
            rgba(15, 24, 20, .9) 0%,
            rgba(15, 24, 20, .28) 44%,
            rgba(15, 24, 20, .04) 74%
        );
    pointer-events: none;
    content: "";
}

.bp-first-slider__caption {
    position: absolute;
    right: 40px;
    bottom: 38px;
    left: 40px;
    z-index: 3;
    color: #fff;
}

.bp-first-slider__caption p {
    max-width: 620px;
    margin-bottom: 13px !important;
    color: #fff !important;
    font-size: clamp(24px, 2.7vw, 32px) !important;
    font-weight: 800;
    line-height: 1.18;
}

.bp-first-slider__caption span {
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
}

.bp-first-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    padding: 0 0 4px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: #fff;
    background: rgba(17, 27, 23, .74);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    backdrop-filter: blur(8px);
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
    transition:
        background-color .2s ease,
        transform .2s ease;
}

.bp-first-slider__arrow:hover {
    background: rgba(17, 27, 23, .94);
    transform: translateY(-50%) scale(1.04);
}

.bp-first-slider__arrow--prev {
    left: 16px;
}

.bp-first-slider__arrow--next {
    right: 16px;
}

.bp-first-slider__dots {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(17, 27, 23, .66);
    backdrop-filter: blur(8px);
}

.bp-first-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .52);
    cursor: pointer;
    transition:
        width .2s ease,
        border-radius .2s ease,
        background-color .2s ease;
}

.bp-first-slider__dot.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--bp-accent);
}

@media (max-width: 640px) {
    .bp-first-slider,
    .bp-first-slider__viewport,
    .bp-first-slider__track {
        min-height: 390px;
    }

    .bp-first-slider__slide {
        height: 390px;
    }

    .bp-first-slider__caption {
        right: 25px;
        bottom: 26px;
        left: 25px;
    }

    .bp-first-slider__caption p {
        padding-right: 12px;
        font-size: 24px !important;
    }

    .bp-first-slider__arrow {
        width: 42px;
        height: 42px;
        font-size: 30px;
    }

    .bp-first-slider__arrow--prev {
        left: 10px;
    }

    .bp-first-slider__arrow--next {
        right: 10px;
    }

    .bp-first-slider__dots {
        top: 13px;
        right: 12px;
    }
}

@media (max-width: 640px) {
    .bp-faq details {
        padding: 0 20px;
    }

    .bp-faq summary {
        min-height: 72px;
        grid-template-columns: minmax(0, 1fr) 26px;
        gap: 12px;
        padding: 16px 0;
        font-size: 16px;
    }

    .bp-faq summary::after {
        width: 26px;
        height: 26px;
        font-size: 25px;
    }
}