/* Mr.Transfer — block styles: types, booking widget, showcase, fleet */

.section-head--center { margin-inline: auto; text-align: center; max-width: 56ch; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------- Block: Advantages / Why us ---------- */
.advantages { background: var(--c-bg); }
.adv-grid {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: clamp(1rem, 2vw, 1.6rem); margin-top: clamp(2rem, 4vw, 3rem);
}
.adv-card {
	background: linear-gradient(180deg, var(--c-bg-3) 0%, var(--c-bg-2) 100%);
	border: var(--border-line); border-radius: 14px;
	padding: clamp(1.4rem, 2.5vw, 2rem);
	transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.adv-card:hover { transform: translateY(-4px); border-color: rgba(201,162,75,.4); }
.adv-card__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 54px; height: 54px; border-radius: 12px; margin-bottom: 1.1rem;
	color: var(--c-gold); background: rgba(201,162,75,.1); border: 1px solid rgba(201,162,75,.25);
}
.adv-card__title { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; line-height: 1.2; margin: 0 0 .45rem; color: var(--c-text); }
.adv-card__text { color: var(--c-text-dim); margin: 0; font-size: .95rem; line-height: 1.55; }
@media (max-width: 900px) { .adv-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .adv-grid { grid-template-columns: 1fr; } }

/* ---------- Block: How it works — premium cards (row → mobile stack) ---------- */
.how { background: #0C0D10; }
.how .section-head--center { max-width: 100%; }   /* don't clip the wide one-line title → keeps it centred */
.how__title {
	font-family: var(--font-body); font-weight: 800; letter-spacing: 0; text-transform: uppercase;
	font-size: clamp(1.65rem, 1.1rem + 1.8vw, 2.5rem); text-align: center;
}
.how__title br { display: none; }
@media (min-width: 760px) { .how__title { white-space: nowrap; } }   /* one line on desktop */
@media (max-width: 759px) { .how__title br { display: inline; } }    /* mobile: «у 4 кроки» on the 2nd line */

.how-cards { margin-top: clamp(2rem, 4vw, 3rem); }
.how-cards__track { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.how-card {
	margin: 0; display: flex; flex-direction: column; gap: .8rem;
	background: linear-gradient(180deg, var(--c-bg-3) 0%, var(--c-bg-2) 100%);
	border: var(--border-line); border-radius: 16px; padding: clamp(1.5rem, 2.5vw, 2rem);
	transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.how-card__top { display: flex; align-items: center; justify-content: space-between; }
.how-card__num { font-family: var(--font-body); font-weight: 800; font-size: 2rem; line-height: 1; color: rgba(201,162,75,.35); }
.how-card__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 12px; color: var(--c-gold);
	background: rgba(201,162,75,.1); border: 1px solid rgba(201,162,75,.25);
}
.how-card__title { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; line-height: 1.2; margin: .1rem 0 0; color: var(--c-text); }
.how-card__text { color: var(--c-text-dim); margin: 0; font-size: .95rem; line-height: 1.55; }
@media (hover: hover) and (min-width: 760px) {
	.how-card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,.4); }
}

.how-cards__dots { display: none; }
.how-dot {
	width: 8px; height: 8px; border-radius: 50%; padding: 0; cursor: pointer;
	border: 1px solid var(--c-line); background: transparent;
	transition: background var(--dur-fast), border-color var(--dur-fast);
}
.how-dot.is-active { background: var(--c-gold); border-color: var(--c-gold); }

/* mobile: stacked swipeable deck — active enlarged, the rest laid behind */
@media (max-width: 759px) {
	.how-cards__track { display: block; position: relative; min-height: 300px; touch-action: pan-y; cursor: grab; }
	.how-cards__track:active { cursor: grabbing; }
	.how-card {
		position: absolute; left: 0; right: 0; top: 0;
		transition: transform .5s var(--ease-out), opacity .5s var(--ease-out);
		will-change: transform, opacity;
	}
	.how-card.is-active { transform: translateY(0) scale(1); opacity: 1; z-index: 40; }
	.how-card.is-pos1  { transform: translateY(26px) scale(.94); opacity: .6;  z-index: 30; }
	.how-card.is-pos2  { transform: translateY(50px) scale(.88); opacity: .32; z-index: 20; }
	.how-card.is-pos3  { transform: translateY(-30px) scale(.92); opacity: 0;  z-index: 10; pointer-events: none; }
	.how-cards__dots { display: flex; justify-content: center; gap: .5rem; margin-top: clamp(1.4rem, 5vw, 2rem); }
}

/* ---------- Block: Reviews ---------- */
.reviews { background: linear-gradient(180deg, var(--c-bg) 0%, #0C0D10 100%); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); margin-top: clamp(2rem, 4vw, 3rem); }
.review-card {
	margin: 0; display: flex; flex-direction: column; gap: 1rem;
	background: linear-gradient(180deg, var(--c-bg-3) 0%, var(--c-bg-2) 100%);
	border: var(--border-line); border-radius: 14px; padding: clamp(1.5rem, 2.5vw, 2rem);
}
.review-card__stars { display: inline-flex; gap: 3px; color: var(--c-gold); }
.review-card__quote { margin: 0; color: var(--c-text); font-size: 1rem; line-height: 1.6; }
.review-card__by { display: flex; flex-direction: column; gap: .15rem; margin-top: auto; }
.review-card__name { font-weight: 700; color: var(--c-text); }
.review-card__meta { color: var(--c-gold); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.review-card__stars svg.is-empty { opacity: .22; }
.review-card__src { margin-top: .35rem; color: var(--c-text-dim); font-size: .78rem; text-decoration: none; }
.review-card__src:hover { color: var(--c-gold); }
/* aggregate summary under the heading */
.reviews__summary { display: inline-flex; align-items: center; gap: .5rem; margin-top: .9rem; }
.reviews__stars { display: inline-flex; gap: 2px; color: var(--c-gold); }
.reviews__stars svg.is-empty { opacity: .22; }
.reviews__score { font-weight: 700; color: var(--c-text); font-size: 1.05rem; }
.reviews__count { color: var(--c-text-dim); font-size: .9rem; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
/* reviews carousel: 3 per view, arrows OUTSIDE the cards, autoplay */
.reviews__slider { position: relative; margin-top: clamp(2rem, 4vw, 3rem); padding-inline: clamp(58px, 6vw, 92px); }
.reviews__viewport { overflow: hidden; }
.reviews__track { --rv-gap: clamp(1rem, 2vw, 1.6rem); display: flex; gap: var(--rv-gap); will-change: transform; }
.reviews__track .review-card { flex: 0 0 calc((100% - 2 * var(--rv-gap)) / 3); }
.reviews__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 46px; height: 46px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(20, 20, 24, .55); border: 1px solid rgba(212, 175, 110, .28); color: var(--c-text-dim); cursor: pointer; transition: color .2s, border-color .2s, background .2s; }
.reviews__nav:hover { color: var(--c-gold); border-color: var(--c-gold); background: rgba(20, 20, 24, .9); }
.reviews__nav--prev { left: 0; }
.reviews__nav--next { right: 0; }
@media (max-width: 980px) { .reviews__slider { padding-inline: clamp(50px, 8vw, 72px); } .reviews__track .review-card { flex-basis: calc((100% - var(--rv-gap)) / 2); } }
@media (max-width: 620px) { .reviews__slider { padding-inline: 46px; } .reviews__track .review-card { flex-basis: 100%; } .reviews__nav { width: 36px; height: 36px; } }
/* review submission form */
.rvform { max-width: 620px; margin: clamp(2.5rem, 5vw, 4rem) auto 0; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: clamp(1.4rem, 3vw, 2.2rem); }
.rvform__title { text-align: center; margin: 0 0 1.2rem; font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
.rvform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.rvform__row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
@media (max-width: 520px) { .rvform__row { grid-template-columns: 1fr; } }
.rvform__input, .rvform__area { width: 100%; background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; color: var(--c-text); padding: .7rem .9rem; font: inherit; margin-top: .8rem; transition: border-color .2s; }
.rvform__row .rvform__input { margin-top: 0; }
.rvform__area { resize: vertical; min-height: 96px; }
.rvform__input:focus, .rvform__area:focus { outline: none; border-color: var(--c-gold); }
.rvform__input::placeholder, .rvform__area::placeholder { color: var(--c-text-dim); }
.rvform__rate { display: flex; align-items: center; gap: .6rem; margin-top: 1rem; }
.rvform__ratelabel { color: var(--c-text-dim); font-size: .9rem; }
.rvform__stars { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; }
.rvform__stars input { position: absolute; opacity: 0; pointer-events: none; }
.rvform__stars label { font-size: 1.6rem; line-height: 1; color: rgba(245,245,240,.24); cursor: pointer; padding: 0 2px; transition: color .15s; }
.rvform__stars label:hover, .rvform__stars label:hover ~ label, .rvform__stars input:checked ~ label { color: var(--c-gold); }
.rvform__stars input:focus-visible + label { outline: 2px solid var(--c-gold); outline-offset: 2px; }
.rvform__submit { margin-top: 1.2rem; width: 100%; }
.rvform__hint { margin: .8rem 0 0; text-align: center; color: var(--c-text-dim); font-size: .82rem; }
.rvform__notice { text-align: center; border-radius: 10px; padding: .8rem 1rem; margin: 0 0 1.2rem; font-size: .92rem; }
.rvform__notice--ok { background: rgba(64,160,90,.14); border: 1px solid rgba(64,160,90,.5); color: #b6e6bf; }
.rvform__notice--err { background: rgba(190,70,70,.14); border: 1px solid rgba(190,70,70,.5); color: #f0c3c3; }

/* ---------- Block: About + stats ---------- */
.about { background: #0C0D10; }
.about__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__intro h2 { margin-top: .4rem; }
.about__intro .lead { color: var(--c-text-dim); margin-top: 1rem; }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.5rem); }
.stat {
	text-align: center; border: var(--border-line); border-radius: 14px;
	background: linear-gradient(180deg, var(--c-bg-3) 0%, var(--c-bg-2) 100%); padding: clamp(1.4rem, 2.5vw, 1.8rem);
}
.stat__value { display: block; font-family: var(--font-body); font-weight: 800; color: var(--c-gold); font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); line-height: 1; }
.stat__label { display: block; color: var(--c-text-dim); margin-top: .5rem; font-size: .9rem; }
@media (max-width: 820px) { .about__inner { grid-template-columns: 1fr; } }

/* ---------- Block: FAQ ---------- */
.faq__inner { max-width: 820px; margin-inline: auto; }
.faq-list { margin-top: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; gap: .8rem; }
.faq-item { border: var(--border-line); border-radius: 12px; background: var(--c-bg-2); overflow: hidden; transition: border-color var(--dur-fast); }
.faq-item[open] { border-color: rgba(201,162,75,.35); }
.faq-item__q {
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	padding: 1.1rem 1.3rem; cursor: pointer; list-style: none;
	font-family: var(--font-body); font-weight: 600; color: var(--c-text); font-size: 1.02rem;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__chevron { color: var(--c-gold); flex: none; transition: transform var(--dur) var(--ease-out); }
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__a { padding: 0 1.3rem 1.2rem; color: var(--c-text-dim); line-height: 1.6; }
.faq-item__a p { margin: 0; }

/* ---------- Block: CTA band ---------- */
.cta__panel {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
	gap: clamp(1.5rem, 4vw, 3rem); padding: clamp(2rem, 4vw, 3.5rem);
	background: linear-gradient(120deg, rgba(201,162,75,.14) 0%, var(--c-bg-2) 55%);
	border: 1px solid rgba(201,162,75,.3); border-radius: 18px;
}
.cta__title { margin: 0; font-size: clamp(1.6rem, 1.1rem + 2.4vw, 2.6rem); }
.cta__subtitle { margin: .6rem 0 0; color: var(--c-text-dim); max-width: 46ch; }
.cta__actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.cta__actions .btn { border-radius: 8px; }   /* same corners as the "Пошук" button */
@media (max-width: 720px) {
	.cta__panel { flex-direction: column; align-items: flex-start; }
	.cta__actions { width: 100%; }
	.cta__actions .btn { flex: 1 1 auto; }
}

/* ---------- Block: Contacts ---------- */
.contacts { background: var(--c-bg); }
.contacts__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(1.5rem, 3vw, 3rem); margin-top: clamp(2rem, 4vw, 3rem); align-items: stretch; }
.contacts__list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: flex; flex-direction: column; gap: 1.2rem; }
.contacts__item { display: flex; gap: 1rem; align-items: flex-start; }
.contacts__ico {
	display: inline-flex; align-items: center; justify-content: center; flex: none;
	width: 44px; height: 44px; border-radius: 11px; color: var(--c-gold);
	background: rgba(201,162,75,.1); border: 1px solid rgba(201,162,75,.25);
}
.contacts__body { display: flex; flex-direction: column; gap: .15rem; }
.contacts__label { color: var(--c-text-mute); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.contacts__value { color: var(--c-text); font-weight: 600; }
a.contacts__value:hover { color: var(--c-gold); }
.contacts__msgr { display: flex; gap: .7rem; }
.msgr {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 50%; color: var(--c-text); border: 1px solid var(--c-line);
	transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast);
}
.msgr:hover { color: var(--c-on-gold); background: var(--grad-gold); border-color: transparent; transform: translateY(-2px); }
.contacts__map { border-radius: 16px; overflow: hidden; border: var(--border-line); min-height: 340px; }
.contacts__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(.3) invert(.92) hue-rotate(180deg) brightness(.95) contrast(.95); }
@media (max-width: 820px) { .contacts__grid { grid-template-columns: 1fr; } .contacts__map { min-height: 260px; } .contacts__map iframe { min-height: 260px; } }

/* ---------- Sub-page hero (Services, B2B) ---------- */
.page-hero {
	padding-top: clamp(6.5rem, 8vw, 7.5rem); padding-bottom: clamp(2rem, 4vw, 3rem); text-align: center;
	background: radial-gradient(120% 90% at 50% 0%, #161B24 0%, var(--c-bg) 60%, #0A0B0D 100%);
}
.page-hero .eyebrow { justify-content: center; }
.page-hero__title { margin: .4rem 0 0; }
.page-hero__lead { color: var(--c-text-dim); max-width: 60ch; margin: 1rem auto 0; }
/* 404 */
.error404__code { font-size: clamp(2.4rem, 7vw, 4rem); line-height: 1; }
.error404__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: clamp(1.6rem, 3vw, 2.2rem); }
/* first section sits right under the page-hero — drop the doubled top gap */
.page-hero + .section { padding-top: clamp(.5rem, 1.5vw, 1rem); }
.services__more { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }
.adv-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .adv-grid--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .adv-grid--4 { grid-template-columns: 1fr; } }

/* ---------- Block 2: Car TYPES slider (bg-free cars) ---------- */
.ctypes {
	position: relative; overflow: hidden;
	background: radial-gradient(120% 90% at 50% 0%, #161B24 0%, var(--c-bg) 60%, #0A0B0D 100%);
}
.ctypes__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
/* warm gold glow behind the hero car */
.ctypes__glow {
	position: absolute; left: 50%; top: 54%; transform: translate(-50%,-50%);
	width: min(720px, 80vw); height: min(720px, 80vw); border-radius: 50%;
	background: radial-gradient(circle, rgba(201,162,75,.20) 0%, rgba(201,162,75,.06) 40%, transparent 70%);
	filter: blur(6px);
}
.ctypes__inner { position: relative; z-index: 1; text-align: center; }

.ctypes__head { margin-bottom: clamp(1.25rem, 2.5vw, 2rem); }

/* name ABOVE the car — site sans (Manrope), NOT italic */
.ctypes__name-wrap { margin-bottom: clamp(.75rem, 2vw, 1.5rem); }
.ctypes__name {
	font-family: var(--font-body); font-style: normal; font-weight: 700;
	font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.9rem); line-height: 1.1;
	letter-spacing: -.01em; color: var(--c-text); margin: 0;
	transition: opacity .55s var(--ease-out), transform .55s var(--ease-out), filter .55s var(--ease-out);
}

.ctypes__stage {
	position: relative;
	display: flex; align-items: center; justify-content: center;
	min-height: clamp(280px, 40vw, 500px);
	user-select: none; cursor: grab; touch-action: pan-y;
}
.ctypes__stage:active { cursor: grabbing; }
.ctypes__track { position: relative; width: 100%; height: clamp(280px, 40vw, 500px); }

/* gold divider lines in the gap between centre car and side cars — plain solid lines, no end-fade */
.ctypes__divider {
	position: absolute; top: 50%; z-index: 4;
	width: clamp(80px, 9vw, 140px); height: 1px;
	background: var(--c-gold);
	opacity: .85; pointer-events: none;
}
.ctypes__divider--left  { left: calc(50% - clamp(18rem, 25vw, 24rem)); transform: translate(-50%, -50%); }
.ctypes__divider--right { left: calc(50% + clamp(18rem, 25vw, 24rem)); transform: translate(-50%, -50%); }

.ctypes__slide {
	position: absolute; left: 50%; top: 50%; margin: 0;   /* kill default <figure> 40px side margins → stays centred */
	width: min(540px, 50%); height: 100%;
	display: flex; align-items: center; justify-content: center;
	transform: translate(-50%, -50%) scale(.4);
	opacity: 0; z-index: 1; pointer-events: none;
	transition: transform .85s var(--ease-out), opacity .85s var(--ease-out), filter .85s var(--ease-out);
}
.ctypes__slide img {
	max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
	filter: drop-shadow(0 38px 40px rgba(0,0,0,.6));
	transition: transform .6s var(--ease-out);
}
/* base centring kept, then a SYMMETRIC pixel offset, then scale — keeps both sides equal */
.ctypes__slide.is-active { transform: translate(-50%, -50%) scale(1); opacity: 1; z-index: 3; pointer-events: auto; cursor: pointer; }
/* premium hover: the centre car gently grows */
.ctypes__slide.is-active:hover img { transform: scale(1.06); }
/* side cars: large, pushed off the screen edges (cut off) — like the example */
.ctypes__slide.is-prev {
	transform: translate(-50%, -50%) translateX(-46vw) scale(.6);
	opacity: .4; z-index: 2; filter: brightness(.55) saturate(.75); pointer-events: auto; cursor: pointer;
}
.ctypes__slide.is-next {
	transform: translate(-50%, -50%) translateX(46vw) scale(.6);
	opacity: .4; z-index: 2; filter: brightness(.55) saturate(.75); pointer-events: auto; cursor: pointer;
}

/* bare chevron arrows (same style as the hero) — no circle, so they don't cover the car */
.ctypes__nav {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
	width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center;
	background: transparent; border: 0; cursor: pointer; color: rgba(245,245,240,.72);
	filter: drop-shadow(0 4px 18px rgba(0,0,0,.55));
	transition: color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.ctypes__nav svg { width: 30px; height: 30px; }
.ctypes__nav:hover { color: var(--c-gold); }
/* pin to the viewport edge — same distance as the hero arrows (break out of the container) */
.ctypes__nav--prev { left: calc(50% - 50vw + clamp(.4rem, 2.5vw, 2.25rem)); }
.ctypes__nav--next { right: calc(50% - 50vw + clamp(.4rem, 2.5vw, 2.25rem)); }
.ctypes__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.ctypes__nav--next:hover { transform: translateY(-50%) translateX(3px); }
@media (max-width: 700px) {
	.ctypes__nav { width: 40px; height: 40px; }
	.ctypes__nav svg { width: 26px; height: 26px; }
	.ctypes__nav--prev { left: calc(50% - 50vw + .1rem); }
	.ctypes__nav--next { right: calc(50% - 50vw + .1rem); }
}

/* description BELOW the car */
.ctypes__desc-wrap { margin-top: clamp(1rem, 2.5vw, 2rem); min-height: 4.5rem; }
.ctypes__desc {
	color: var(--c-text-dim); max-width: 52ch; margin: 0 auto; font-size: var(--fs-lg);
	transition: opacity .55s var(--ease-out) .1s, transform .55s var(--ease-out) .1s;
}
/* expressive reveal on change: fade + rise + de-blur, staggered */
.ctypes.is-switching .ctypes__name { opacity: 0; transform: translateY(-18px); filter: blur(6px); }
.ctypes.is-switching .ctypes__desc { opacity: 0; transform: translateY(16px); }

/* slim progress pips (not a control) */
.ctypes__progress { display: flex; justify-content: center; gap: .5rem; margin-top: clamp(1.4rem, 3vw, 2.2rem); }
.ctypes__pip {
	width: 26px; height: 3px; border-radius: 2px; background: rgba(245,245,240,.18);
	transition: background var(--dur-fast) var(--ease-out);
}
.ctypes__pip.is-active { background: var(--c-gold); }

@media (max-width: 700px) {
	/* one car per view, centred and sized to the phone screen — swipe moves block-by-block */
	.ctypes__slide { width: 82%; }
	.ctypes__slide.is-prev { transform: translate(-50%, -50%) translateX(-46vw) scale(.4); opacity: .14; }
	.ctypes__slide.is-next { transform: translate(-50%, -50%) translateX(46vw) scale(.4); opacity: .14; }
	.ctypes__divider { display: none; }
}

/* ---------- Block 4: Booking widget ---------- */
.book { background: #0C0D10; }
.book__panel {
	background: linear-gradient(180deg, var(--c-bg-3) 0%, var(--c-bg-2) 100%);
	border: var(--border-line);
	border-radius: 12px;
	box-shadow: var(--shadow-pop);
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 300px 1fr;
	max-width: 940px;
	margin-inline: auto;
}
.book__panel::before {
	content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: var(--grad-gold); opacity: .9;
}
.book__subtitle { color: var(--c-text-dim); margin: 0; }

/* ----- Wizard: left pane (steps + perks) ----- */
.bk-side {
	display: flex; flex-direction: column;
	padding: clamp(1.6rem, 2.6vw, 2.3rem) clamp(1.4rem, 2vw, 1.8rem);
	background: linear-gradient(160deg, rgba(201,162,75,.12), rgba(20,24,32,.25));
	border-right: var(--border-line);
}
.bk-side .eyebrow { justify-content: flex-start; }
.bk-side__title {
	font-family: var(--font-display); font-weight: 600;
	font-size: clamp(1.4rem, 1.1rem + 1vw, 1.7rem); line-height: 1.15;
	color: var(--c-text); margin: .5rem 0 0;
}
.bk-vsteps { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.bk-vstep { display: flex; gap: .85rem; align-items: flex-start; position: relative; padding-bottom: 1.3rem; }
.bk-vstep:not(:last-child)::before { content: ""; position: absolute; left: 15px; top: 34px; bottom: 0; width: 1px; background: var(--c-line); }
.bk-vstep__n {
	width: 32px; height: 32px; flex: none; z-index: 1; font-style: normal; font-weight: 700; font-size: .9rem;
	border-radius: 50%; border: 1px solid var(--c-line); background: var(--c-bg-2); color: var(--c-text-mute);
	display: flex; align-items: center; justify-content: center;
}
.bk-vstep__tx b { display: block; line-height: 1.7; font-weight: 600; color: var(--c-text-mute); }
.bk-vstep__tx small { color: var(--c-text-mute); font-size: .76rem; }
.bk-vstep.is-active .bk-vstep__n { background: var(--grad-gold); color: var(--c-on-gold); border-color: transparent; }
.bk-vstep.is-done .bk-vstep__n { border-color: var(--c-gold); color: var(--c-gold); }
.bk-vstep.is-active .bk-vstep__tx b,
.bk-vstep.is-done .bk-vstep__tx b { color: var(--c-text); }
.bk-side__div { height: 1px; background: var(--c-line); margin: .3rem 0 1.1rem; }
.bk-side__perks { list-style: none; margin: auto 0 0; padding: 0; display: grid; gap: .6rem; }
.bk-side__perks li { display: flex; gap: .5rem; align-items: flex-start; line-height: 1.4; color: var(--c-text-dim); font-size: .83rem; }
.bk-ck { color: var(--c-gold); font-weight: 700; flex: none; }

/* ----- Wizard: right pane (form) ----- */
.bk-main { display: flex; flex-direction: column; min-width: 0; padding: clamp(1.6rem, 2.6vw, 2.3rem) clamp(1.4rem, 2.4vw, 2rem); }
.bk-mhead { display: none; }   /* mobile only */
.bk-form { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.bk-step { display: none; flex-direction: column; flex: 1; }
.bk-step.is-active { display: flex; }
.bk-step__sub { color: var(--c-text-dim); margin: 0 0 1.2rem; font-size: .95rem; }
.bk-fields { display: grid; gap: 1rem; align-content: start; }
.bk-foot { margin-top: auto; padding-top: 1.4rem; display: flex; align-items: center; gap: 1rem; }
.bk-foot--end { justify-content: flex-end; }
.bk-foot--split { justify-content: space-between; }
.bk-foot .btn { width: auto; min-width: 170px; border-radius: 8px; }

/* trip-type pills (reused on Step 1) */
.book__pill {
	background: transparent; border: 1px solid var(--c-line); color: var(--c-text-dim);
	padding: .6rem 1.2rem; border-radius: var(--r-pill); cursor: pointer;
	font-size: .88rem; font-weight: 600; white-space: nowrap;
	transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}
.book__pill:hover { color: var(--c-text); border-color: rgba(201,162,75,.5); }
.book__pill.is-active { color: var(--c-on-gold); background: var(--grad-gold); border-color: transparent; }
.bk-toggle { display: flex; gap: .55rem; }
.bk-toggle .book__pill { flex: 1; }

/* combined route box (Звідки / Куди + swap) */
.bk-route { position: relative; border: var(--border-line); border-radius: 8px; background: var(--c-bg); }
.bk-route__row { display: flex; align-items: center; gap: .6rem; padding: .85rem 3.4rem .85rem 1rem; }
.bk-route__ic { color: var(--c-gold); display: inline-flex; flex: none; }
.bk-route__row input { flex: 1; min-width: 0; background: transparent; border: 0; outline: none; color: var(--c-text); font: inherit; }
.bk-route__row input::placeholder { color: var(--c-text-mute); }
.bk-route__div { height: 1px; background: var(--c-line); margin: 0 1rem; }
.bk-route__swap {
	position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
	width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--c-line);
	background: var(--c-bg-2); color: var(--c-gold); cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
	transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-fast);
}
.bk-route__swap:hover { border-color: rgba(201,162,75,.6); }
.bk-route__swap.is-spin { transform: translateY(-50%) rotate(180deg); }

.bk-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }

/* passenger steppers */
.bk-rows { display: grid; gap: .7rem; }
.bk-row { display: flex; align-items: center; justify-content: space-between; border: var(--border-line); border-radius: 8px; background: var(--c-bg); padding: .7rem 1rem; }
.bk-row__l { color: var(--c-text); font-weight: 600; }
.bk-row__l small { color: var(--c-text-mute); font-weight: 400; }
.bk-stepper { display: inline-flex; align-items: center; gap: .85rem; }
.bk-stepper button {
	width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--c-line);
	background: transparent; color: var(--c-gold); font-size: 18px; line-height: 1; cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
	transition: border-color var(--dur-fast), color var(--dur-fast);
}
.bk-stepper button:hover { border-color: rgba(201,162,75,.6); }
.bk-stepper b { min-width: 18px; text-align: center; color: var(--c-text); font-weight: 700; }

/* textarea control + optional-label */
.field__control--area { align-items: flex-start; height: auto; padding-top: .7rem; padding-bottom: .7rem; }
.field__control--area textarea { width: 100%; background: transparent; border: 0; outline: none; color: var(--c-text); font: inherit; line-height: 1.5; resize: none; }
.field__opt { text-transform: none; font-weight: 400; color: var(--c-text-mute); }

/* summary card (Step 3) */
.bk-summary { border: 1px solid rgba(201,162,75,.3); border-radius: 10px; background: rgba(201,162,75,.06); padding: .9rem 1.1rem; }
.bk-summary__route { font-weight: 700; color: var(--c-text); font-size: 1.05rem; }
.bk-summary__arr { color: var(--c-gold); margin: 0 .35rem; }
.bk-summary__meta { color: var(--c-text-dim); font-size: .85rem; margin-top: .25rem; }

/* mobile horizontal step indicator */
.bk-hsteps { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; align-items: center; gap: .4rem; }
.bk-hstep { display: flex; align-items: center; gap: .4rem; color: var(--c-text-mute); }
.bk-hstep + .bk-hstep::before { content: ""; width: 14px; height: 1px; background: var(--c-line); }
.bk-hstep__n { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--c-line); display: inline-flex; align-items: center; justify-content: center; font-style: normal; font-weight: 700; font-size: .8rem; }
.bk-hstep b { font-weight: 600; font-size: .72rem; }
.bk-hstep.is-active { color: var(--c-gold); }
.bk-hstep.is-active .bk-hstep__n { background: var(--grad-gold); color: var(--c-on-gold); border-color: transparent; }
.bk-hstep.is-done .bk-hstep__n { border-color: var(--c-gold); color: var(--c-gold); }
.field { display: flex; flex-direction: column; gap: .5rem; min-width: 0; grid-column: span 1; }

.field__label {
	font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
	color: var(--c-text-mute);
}
.field__control {
	display: flex; align-items: center; gap: .6rem;
	background: var(--c-bg); border: var(--border-line); border-radius: 8px;
	padding: 0 .9rem; height: 52px;
	transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field__control:focus-within { border-color: rgba(201,162,75,.6); box-shadow: 0 0 0 3px rgba(201,162,75,.12); }
.field__icon { color: var(--c-gold); display: inline-flex; flex: none; }
.field__control input,
.field__control select {
	width: 100%; background: transparent; border: 0; outline: none;
	color: var(--c-text); font-size: .95rem; height: 100%;
}
.field__control select { cursor: pointer; appearance: none; -webkit-appearance: none; }
.field__control input::placeholder { color: var(--c-text-mute); }
.field__control select option { background: var(--c-bg-2); color: var(--c-text); }

/* ---------- Block 5: Showcase (Враження) — clean 3×2 photo grid ---------- */
.showcase { background: linear-gradient(180deg, #0C0D10 0%, var(--c-bg) 100%); }
.showcase__grid {
	display: grid; grid-template-columns: 1fr 1.7fr 1fr;   /* tall · wide · tall */
	grid-auto-rows: clamp(340px, 40vw, 540px);   /* single fixed-height row → all three equal height */
	gap: clamp(1rem, 2vw, 1.6rem);
}
.showcase__item {
	margin: 0; overflow: hidden; border-radius: 16px; position: relative;
	height: 100%; box-shadow: var(--shadow-card);   /* wide first column reads landscape, narrow ones portrait */
}
.showcase__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.showcase__item:hover img { transform: scale(1.05); }
.showcase__item::after {
	content: ""; position: absolute; inset: 0; border: 1px solid transparent; border-radius: inherit;
	transition: border-color var(--dur-fast); pointer-events: none;
}
.showcase__item:hover::after { border-color: rgba(201,162,75,.45); }

/* ---------- Block 3: Fleet — Renax-style cards ---------- */
.fleet { background: var(--c-bg); }
/* paged slider: 3 vertical cards per view */
.fleet__slider { overflow: hidden; touch-action: pan-y; cursor: grab; }
.fleet__slider:active { cursor: grabbing; }
.fleet__track {
	display: flex; gap: var(--fleet-gap, 1.75rem);
	transition: transform .6s var(--ease-out); will-change: transform;
}
.fleet { --fleet-gap: clamp(1.1rem, 2vw, 1.75rem); }
.fleet-card { flex: 0 0 calc((100% - 2 * var(--fleet-gap)) / 3); margin: 0; }

.fleet-card__media {
	display: block; width: 100%; position: relative; cursor: pointer;
	background: transparent; border: 0; padding: 0;
}
/* landscape photo frame so the whole car (its "face") stays visible, not cropped;
   bottom-left corner is SHARP (a dark notch carves it concave) */
.fleet-card__frame {
	position: relative; display: block; width: 100%; aspect-ratio: 3 / 2;
	border-radius: 18px 18px 18px 0; overflow: hidden; box-shadow: var(--shadow-card);
}
.fleet-card__frame img {
	width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
	transition: transform .7s var(--ease-out);
}
.fleet-card__media:hover .fleet-card__frame img { transform: scale(1.05); }   /* premium hover zoom */
.fleet-card__scrim {
	position: absolute; inset: 0; pointer-events: none;
	background: linear-gradient(180deg, transparent 44%, rgba(10,11,13,.5) 72%, rgba(10,11,13,.92) 100%);
}

/* dark notch (= section colour) with only its TOP-RIGHT corner rounded — this is what
   makes the card's bottom-left corner look concave, exactly like the reference */
.fleet-card__notch {
	position: absolute; left: 0; bottom: 0; z-index: 2; pointer-events: none;
	width: 88px; height: 88px; background: var(--c-bg);
	border-radius: 0 40px 0 0;   /* only the TOP-RIGHT corner rounded — the concave cove (exactly like Renax) */
}

/* gold arrow badge — outlined circle centred in the cove */
.fleet-card__badge {
	position: absolute; left: 15px; bottom: 15px; z-index: 3;
	width: 58px; height: 58px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--c-gold); color: var(--c-gold); background: transparent;
	transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.fleet-card__media:hover .fleet-card__badge { background: var(--grad-gold); color: var(--c-on-gold); transform: translateY(-2px); }

/* caption: type on top, brand + model below — bottom-right */
.fleet-card__caption {
	position: absolute; left: 4.75rem; right: 1.1rem; bottom: 1.2rem; z-index: 2;
	display: flex; flex-direction: column; gap: .25rem; text-align: right;
}
.fleet-card__type {
	font-size: .68rem; font-weight: 600; letter-spacing: var(--tracking-wide);
	text-transform: uppercase; color: var(--c-gold);
}
.fleet-card__name {
	font-family: var(--font-body); font-weight: 700; color: #fff;
	font-size: clamp(1.05rem, .9rem + .6vw, 1.35rem); line-height: 1.12; letter-spacing: -.01em;
}

/* slider dots */
.fleet__dots { display: flex; justify-content: center; gap: .55rem; margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.fleet__dot {
	width: 11px; height: 11px; border-radius: 50%; cursor: pointer; padding: 0;
	border: 1px solid var(--c-line); background: transparent;
	transition: background var(--dur-fast), border-color var(--dur-fast);
}
.fleet__dot:hover { border-color: var(--c-gold); }
.fleet__dot.is-active { background: var(--c-gold); border-color: var(--c-gold); }

@media (max-width: 920px) { .fleet-card { flex-basis: calc((100% - var(--fleet-gap)) / 2); } }
@media (max-width: 560px) { .fleet-card { flex-basis: 100%; } }

/* ---------- Lightbox (description-free gallery) ---------- */
.lightbox {
	position: fixed; inset: 0; z-index: 200;
	display: flex; align-items: center; justify-content: center;
	background: rgba(8,8,10,.92); backdrop-filter: blur(8px);
	padding: clamp(1rem, 4vw, 3rem);
	opacity: 0; transition: opacity .3s var(--ease-out);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__stage { margin: 0; max-width: 1100px; width: 100%; display: flex; justify-content: center; }
.lightbox__img {
	max-width: 100%; max-height: 82vh; object-fit: contain;
	border-radius: 10px; box-shadow: var(--shadow-pop);
	transition: opacity .25s var(--ease-out);
}
.lightbox__close {
	position: absolute; top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem);
	width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
	background: rgba(255,255,255,.06); border: 1px solid var(--c-line); color: var(--c-text);
	display: inline-flex; align-items: center; justify-content: center;
	transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}
.lightbox__close:hover { color: var(--c-gold); border-color: var(--c-gold); }
.lightbox__nav {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 54px; height: 54px; border-radius: 50%; cursor: pointer;
	background: rgba(255,255,255,.06); border: 1px solid var(--c-line); color: var(--c-text);
	display: inline-flex; align-items: center; justify-content: center;
	transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}
.lightbox__nav:hover { color: var(--c-gold); border-color: var(--c-gold); }
.lightbox__nav--prev { left: clamp(.75rem, 3vw, 2.5rem); }
.lightbox__nav--next { right: clamp(.75rem, 3vw, 2.5rem); }
.lightbox.is-single .lightbox__nav, .lightbox.is-single .lightbox__counter { display: none; }
.lightbox__counter {
	position: absolute; bottom: clamp(1rem, 3vw, 2rem); left: 50%; transform: translateX(-50%);
	color: var(--c-text-dim); font-size: .9rem; letter-spacing: .05em;
}
/* thumbnail strip (multi-photo galleries) */
.lightbox__thumbs {
	position: absolute; left: 0; right: 0; bottom: clamp(.8rem, 2.5vw, 1.4rem);
	display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem; padding: 0 1rem; z-index: 3;
}
.lightbox.is-single .lightbox__thumbs { display: none; }
.lightbox__thumb {
	width: 70px; height: 46px; flex: none; border-radius: 6px; border: 2px solid transparent;
	background: center / cover no-repeat #111; opacity: .5; cursor: pointer;
	transition: opacity var(--dur-fast), border-color var(--dur-fast);
}
.lightbox__thumb:hover { opacity: .85; }
.lightbox__thumb.is-active { opacity: 1; border-color: var(--c-gold); }
.lightbox:not(.is-single) .lightbox__img { max-height: 70vh; }
.lightbox:not(.is-single) .lightbox__counter { bottom: clamp(4.4rem, 9vw, 5.2rem); }

@media (max-width: 920px) {
	.fleet__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.fleet__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
	.lightbox__nav { width: 44px; height: 44px; }
}

/* ---------- Responsive ---------- */
/* Booking wizard: stack to a single column (mobile) */
@media (max-width: 760px) {
	.book__panel { grid-template-columns: 1fr; max-width: 460px; }
	.bk-side { display: none; }
	.bk-mhead { display: block; }
	.bk-mhead .eyebrow { justify-content: flex-start; }
	.bk-foot .btn { min-width: 0; }
	.bk-foot--split .btn { flex: 1; }
}
@media (max-width: 900px) {
	.showcase__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: clamp(260px, 40vw, 380px); }
	.showcase__item--wide { grid-column: 1 / -1; }   /* horizontal on top, two verticals below (equal height) */
}
@media (max-width: 560px) {
	.showcase__grid { grid-template-columns: 1fr; grid-auto-rows: clamp(220px, 56vw, 320px); }
	.showcase__item--wide { grid-column: 1; }
}

/* ---------- Fleet page (/avtopark/) — filter + car grid ---------- */
.apark-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.apark-filter__btn {
	background: transparent; border: 1px solid var(--c-line); color: var(--c-text-dim);
	padding: .6rem 1.3rem; border-radius: var(--r-pill); cursor: pointer;
	font-size: .9rem; font-weight: 600; white-space: nowrap;
	transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}
.apark-filter__btn:hover { color: var(--c-text); border-color: rgba(201,162,75,.5); }
.apark-filter__btn.is-active { color: var(--c-on-gold); background: var(--grad-gold); border-color: transparent; }

.apark-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.apark-card { position: relative; }
.apark-card.is-hidden { display: none; }
.apark-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 16px; background: var(--c-bg); box-shadow: var(--shadow-card); }
.apark-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.apark-card:hover .apark-card__media img { transform: scale(1.05); }
/* info plate straddles the bottom edge of the photo (renax-style): overlaps the photo and hangs below it, a touch narrower */
.apark-card__body {
	position: relative; z-index: 2; margin: -2.75rem clamp(.7rem, 1.6vw, 1.1rem) 0;
	display: flex; flex-direction: column; gap: .55rem; padding: .8rem .95rem; border-radius: 13px;
	background: rgba(16,18,24,.94); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.08);
	box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.apark-card__name { font-family: var(--font-body); font-weight: 700; letter-spacing: -.01em; line-height: 1.1; color: #fff; margin: 0; font-size: clamp(1rem, .9rem + .4vw, 1.2rem); }
.apark-card__name span { color: var(--c-text-mute); font-weight: 600; font-size: .85em; }
.apark-card__foot { display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.apark-card__specs { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .3rem .8rem; }
.apark-card__specs li { display: inline-flex; align-items: center; gap: .35rem; color: var(--c-text-dim); font-size: .82rem; font-weight: 600; }
.apark-card__ic { color: var(--c-gold); display: inline-flex; }
.apark-card__btn {
	flex: none; width: 38px; height: 38px; border: 0; border-radius: 50%; cursor: pointer;
	background: var(--grad-gold); color: var(--c-on-gold);
	display: inline-flex; align-items: center; justify-content: center;
	transition: transform var(--dur-fast) var(--ease-out);
}
.apark-card__btn:hover { transform: translateY(-2px); }
.apark-empty { text-align: center; color: var(--c-text-mute); padding: 2.5rem 0; }

/* lightbox — car name, top-left of the overlay */
.lightbox__title {
	position: absolute; top: clamp(1rem, 3vw, 1.7rem); left: clamp(1rem, 3vw, 1.9rem); margin: 0; z-index: 3;
	color: #fff; font-family: var(--font-display); font-weight: 600; max-width: 70vw;
	font-size: clamp(1.15rem, 1rem + .9vw, 1.6rem); text-shadow: 0 2px 14px rgba(0,0,0,.6);
}

@media (max-width: 900px) { .apark-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .apark-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
