/*!
 * Baly Site System — /homepage page.
 * Depends on bsy-chrome.css (which depends on bsy-tokens.css).
 *
 * Layout: every section is a child of .bsy-page__stack (which already
 * boxes the content max-width + paddings via chrome). Inside each section
 * we draw the design-system patterns from HomepageSections.jsx — taxi
 * sub-services, food info, digital info, how it works, testimonials,
 * driver recruitment, and a download band.
 */

/* ============================================================
   Section shell — every block on the homepage is a full-bleed
   white card with generous top/bottom padding. Card boundaries
   on the homepage are intentionally not visible (no border, no
   shadow) — visual separation comes from the SectionDivider
   strips between them, exactly like HomepageVariants.jsx.
   ============================================================ */
.bsy-page--homepage .bsy-home__section {
	background: var(--bsy-white);
	color: var(--bsy-fg-primary);
	border-radius: var(--bsy-radius-2xl);
	padding: 80px 32px;
	direction: rtl;
}
@media (max-width: 768px) {
	.bsy-page--homepage .bsy-home__section { padding: 48px 16px; border-radius: var(--bsy-radius-xl); }
}

/* ── Section head — eyebrow + title + sub ──────────────────── */
.bsy-page--homepage .bsy-home__shead {
	display: flex; justify-content: space-between; align-items: flex-end;
	gap: 24px; flex-wrap: wrap;
	margin-bottom: 32px;
}
.bsy-page--homepage .bsy-home__shead--center { justify-content: center; text-align: center; }
.bsy-page--homepage .bsy-home__shead-copy { flex: 1; min-width: 220px; }
.bsy-page--homepage .bsy-home__shead--center .bsy-home__shead-copy { flex: 0 1 720px; }
.bsy-page--homepage .bsy-home__shead-pill { margin-bottom: 10px; }
.bsy-page--homepage .bsy-home__shead-title {
	margin: 0;
	font-family: var(--bsy-font); font-weight: var(--bsy-fw-black);
	font-size: 40px; line-height: 1.05; letter-spacing: -0.03em;
	color: var(--bsy-fg-primary);
}
.bsy-page--homepage .bsy-home__shead-sub {
	margin: 12px 0 0; max-width: 640px;
	font-size: 16px; font-weight: var(--bsy-fw-medium); line-height: 1.6;
	color: var(--bsy-grey-700);
}
.bsy-page--homepage .bsy-home__shead--center .bsy-home__shead-sub { margin-inline: auto; }
@media (max-width: 768px) {
	.bsy-page--homepage .bsy-home__shead { margin-bottom: 20px; }
	.bsy-page--homepage .bsy-home__shead-title { font-size: 28px; }
	.bsy-page--homepage .bsy-home__shead-sub { font-size: 13.5px; }
}

/* ── Reusable solid pill button (used by Food / Digital / Driver) ── */
.bsy-page--homepage .bsy-home__pill-btn {
	display: inline-flex; align-items: center; gap: 8px;
	height: 52px; padding: 0 26px; border-radius: var(--bsy-radius-pill);
	background: var(--bsy-brand); color: #fff;
	text-decoration: none;
	font-family: var(--bsy-font); font-size: 14px; font-weight: 800;
	box-shadow: 0 6px 20px rgba(0,67,255,.30);
	transition: background var(--bsy-duration-fast) var(--bsy-ease-out),
		transform var(--bsy-duration-fast) var(--bsy-ease-out);
}
.bsy-page--homepage .bsy-home__pill-btn:hover { background: var(--bsy-brand-hover); transform: translateY(-1px); }
.bsy-page--homepage .bsy-home__pill-btn:active { background: var(--bsy-brand-active); transform: scale(.98); }

/* ============================================================
   Section dividers — visual rhythm between sections.
   Three variants from HomepageSections.jsx: line · dots · label.
   ============================================================ */
.bsy-page--homepage .bsy-home__divider {
	display: flex; align-items: center; justify-content: center; gap: 12px;
	padding: 10px 0;
	direction: rtl;
}
.bsy-page--homepage .bsy-home__divider--dots { gap: 8px; padding: 14px 0; }
.bsy-page--homepage .bsy-home__divider--label { gap: 14px; padding: 14px 0; }

.bsy-page--homepage .bsy-home__divider-line {
	flex: 1; height: 1px;
	background: linear-gradient(90deg, transparent, var(--bsy-grey-200), transparent);
}
.bsy-page--homepage .bsy-home__divider--label .bsy-home__divider-line {
	background: var(--bsy-grey-200);
}
.bsy-page--homepage .bsy-home__divider-dot {
	width: 4px; height: 4px; border-radius: var(--bsy-radius-pill);
	background: var(--bsy-grey-300);
}
.bsy-page--homepage .bsy-home__divider-dot--brand {
	width: 6px; height: 6px;
	background: var(--bsy-brand); opacity: 0.55;
}
.bsy-page--homepage .bsy-home__divider-label {
	font-size: 10.5px; font-weight: 800; letter-spacing: 0.16em;
	color: var(--bsy-grey-500);
}
@media (max-width: 768px) {
	.bsy-page--homepage .bsy-home__divider { padding: 6px 0; }
	.bsy-page--homepage .bsy-home__divider--dots,
	.bsy-page--homepage .bsy-home__divider--label { padding: 8px 0; }
}

/* ============================================================
   1. TAXI SUB-SERVICES — 4-card row
   ============================================================ */
.bsy-page--homepage .bsy-home-taxi-sub__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media (max-width: 960px) {
	.bsy-page--homepage .bsy-home-taxi-sub__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

.bsy-page--homepage .bsy-home-taxi-sub__card {
	position: relative; overflow: hidden;
	background: #fff; border: 1px solid var(--bsy-grey-100);
	border-radius: var(--bsy-radius-xl);
	display: flex; flex-direction: column;
	cursor: pointer;
	box-shadow: 0 1px 0 rgba(0,0,0,.04),
		0 8px 24px -16px rgba(0,30,80,.14),
		0 22px 44px -24px rgba(0,30,80,.14);
	transition: transform var(--bsy-duration-base) var(--bsy-ease-out),
		box-shadow var(--bsy-duration-base) var(--bsy-ease-out);
}
.bsy-page--homepage .bsy-home-taxi-sub__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 1px 0 rgba(0,0,0,.04),
		0 14px 32px -16px rgba(0,30,80,.20),
		0 28px 56px -24px rgba(0,30,80,.20);
}

/* Hero art band on each card — gradient sky + scenery SVG */
.bsy-page--homepage .bsy-home-taxi-sub__art {
	position: relative; overflow: hidden;
	height: 124px;
}
.bsy-page--homepage .bsy-home-taxi-sub__art--city {
	background: linear-gradient(160deg, var(--bsy-brand-active) 0%, var(--bsy-brand) 55%, #4A78FF 100%);
}
.bsy-page--homepage .bsy-home-taxi-sub__art--intercity,
.bsy-page--homepage .bsy-home-taxi-sub__art--airport {
	background: linear-gradient(160deg, var(--bsy-brand-active) 0%, var(--bsy-brand) 55%, #3463FF 100%);
}
.bsy-page--homepage .bsy-home-taxi-sub__art--package {
	background: linear-gradient(160deg, #082370 0%, var(--bsy-brand-active) 60%, var(--bsy-brand) 100%);
}
.bsy-page--homepage .bsy-home-taxi-sub__art-svg {
	position: absolute; inset: 0; width: 100%; height: 100%;
}

/* Card body */
.bsy-page--homepage .bsy-home-taxi-sub__body {
	padding: 16px 18px 18px;
	display: flex; flex-direction: column; justify-content: space-between; gap: 12px;
	flex: 1; direction: rtl;
}

/* Eyebrow — light pill with brand dot (custom, not bsy-pill) */
.bsy-page--homepage .bsy-home-taxi-sub__eyebrow {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 2px 7px; border-radius: var(--bsy-radius-pill);
	background: var(--bsy-brand-lighter); color: var(--bsy-brand);
	font-size: 11px; font-weight: 700;
	white-space: nowrap;
}
.bsy-page--homepage .bsy-home-taxi-sub__eyebrow-dot {
	width: 4px; height: 4px; border-radius: var(--bsy-radius-pill);
	background: var(--bsy-brand);
}
.bsy-page--homepage .bsy-home-taxi-sub__title {
	margin: 10px 0 0;
	font-size: 17px; font-weight: 900; line-height: 1.2;
	letter-spacing: -0.02em; color: var(--bsy-fg-primary);
}
.bsy-page--homepage .bsy-home-taxi-sub__sub {
	margin: 6px 0 0;
	font-size: 12.5px; line-height: 1.45;
	color: var(--bsy-grey-700); font-weight: 500;
}
.bsy-page--homepage .bsy-home-taxi-sub__chips {
	margin: 10px 0 0; padding: 0; list-style: none;
	display: flex; flex-wrap: wrap; gap: 5px;
}
.bsy-page--homepage .bsy-home-taxi-sub__chip {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 4px 9px; border-radius: var(--bsy-radius-pill);
	background: var(--bsy-grey-100); color: var(--bsy-grey-800);
	font-size: 11px; font-weight: 700;
	white-space: nowrap;
}
.bsy-page--homepage .bsy-home-taxi-sub__chip-ic { display: inline-flex; align-items: center; }
.bsy-page--homepage .bsy-home-taxi-sub__mobile-arrow { display: none; }

/* Card CTA — desktop pill button */
.bsy-page--homepage .bsy-home-taxi-sub__cta {
	align-self: flex-end;
	display: inline-flex; align-items: center; gap: 6px;
	height: 38px; padding-inline: 16px;
	border-radius: var(--bsy-radius-pill);
	background: var(--bsy-brand); color: #fff;
	text-decoration: none;
	font-family: var(--bsy-font); font-size: 12.5px; font-weight: 800;
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(0,67,255,.26);
}
.bsy-page--homepage .bsy-home-taxi-sub__cta:hover { background: var(--bsy-brand-hover); }

/* Mobile compaction — match the mobile JSX variant */
@media (max-width: 768px) {
	.bsy-page--homepage .bsy-home-taxi-sub__card { border-radius: var(--bsy-radius-lg); }
	.bsy-page--homepage .bsy-home-taxi-sub__art { height: 64px; }
	.bsy-page--homepage .bsy-home-taxi-sub__body { padding: 10px; gap: 6px; }
	.bsy-page--homepage .bsy-home-taxi-sub__eyebrow { font-size: 9px; padding: 2px 7px; }
	.bsy-page--homepage .bsy-home-taxi-sub__title { margin-top: 6px; font-size: 13.5px; }
	.bsy-page--homepage .bsy-home-taxi-sub__sub { display: none; }
	.bsy-page--homepage .bsy-home-taxi-sub__chips {
		display: flex; justify-content: space-between; align-items: center;
		gap: 6px; margin-top: 8px;
	}
	/* Show only the first chip on mobile and put the arrow on the same row */
	.bsy-page--homepage .bsy-home-taxi-sub__chip { font-size: 9px; padding: 2px 6px; gap: 3px; }
	.bsy-page--homepage .bsy-home-taxi-sub__chip[data-chip-index="1"],
	.bsy-page--homepage .bsy-home-taxi-sub__chip[data-chip-index="2"] { display: none; }
	.bsy-page--homepage .bsy-home-taxi-sub__cta { display: none; }
	.bsy-page--homepage .bsy-home-taxi-sub__mobile-arrow {
		display: inline-flex; align-items: center; justify-content: center;
		color: var(--bsy-brand);
		text-decoration: none; flex: none;
		margin-inline-start: auto;
	}
}

/* ============================================================
   2. FOOD INFO — copy + creative panel
   ============================================================ */
.bsy-page--homepage .bsy-home-food__grid {
	display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px;
	align-items: center; direction: rtl;
}
@media (max-width: 960px) {
	.bsy-page--homepage .bsy-home-food__grid { grid-template-columns: 1fr; gap: 24px; }
}
.bsy-page--homepage .bsy-home-food__title {
	margin: 14px 0;
	font-family: var(--bsy-font); font-weight: 950;
	font-size: 48px; line-height: 1.02; letter-spacing: -0.03em;
	color: var(--bsy-fg-primary);
}
.bsy-page--homepage .bsy-home-food__accent { color: var(--bsy-brand); }
.bsy-page--homepage .bsy-home-food__lede {
	margin: 0; max-width: 540px;
	font-size: 16.5px; line-height: 1.7;
	color: var(--bsy-grey-700); font-weight: var(--bsy-fw-medium);
}
.bsy-page--homepage .bsy-home-food__hl { color: var(--bsy-fg-primary); font-weight: 800; }
.bsy-page--homepage .bsy-home-food__bullets {
	margin: 24px 0 0; padding: 0; list-style: none;
	display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.bsy-page--homepage .bsy-home-food__bullet { display: flex; align-items: center; gap: 12px; }
.bsy-page--homepage .bsy-home-food__bullet-ic {
	width: 36px; height: 36px; border-radius: var(--bsy-radius-md);
	background: var(--bsy-brand-lighter); color: var(--bsy-brand);
	display: grid; place-items: center; flex: none;
}
.bsy-page--homepage .bsy-home-food__bullet-t {
	font-size: 14px; font-weight: 700;
	color: var(--bsy-grey-800); line-height: 1.35;
}
.bsy-page--homepage .bsy-home-food__ctas {
	display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap;
}
@media (max-width: 768px) {
	.bsy-page--homepage .bsy-home-food__title { font-size: 30px; }
	.bsy-page--homepage .bsy-home-food__lede { font-size: 14px; }
	.bsy-page--homepage .bsy-home-food__bullets { grid-template-columns: 1fr; }
	.bsy-page--homepage .bsy-home-food__bullet-t { font-size: 13px; }
}

/* Creative panel — warm gradient with food category tiles */
.bsy-page--homepage .bsy-home-food__panel {
	position: relative; overflow: hidden;
	height: 480px;
	border-radius: var(--bsy-radius-3xl);
	background: linear-gradient(160deg, #FFF1D6 0%, #FFE0B0 60%, #FFC97A 100%);
	box-shadow: 0 24px 56px -20px rgba(80,40,0,.25);
}
.bsy-page--homepage .bsy-home-food__panel-glow {
	position: absolute; inset: 0; pointer-events: none;
	background:
		radial-gradient(circle at 20% 25%, rgba(255,255,255,.55), transparent 55%),
		radial-gradient(circle at 80% 80%, rgba(255,140,0,.35), transparent 60%);
}
.bsy-page--homepage .bsy-home-food__panel-grid {
	position: absolute; inset: 0;
	display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
	gap: 16px; padding: 28px;
}
.bsy-page--homepage .bsy-home-food__tile {
	position: relative; overflow: hidden;
	background: rgba(255,255,255,.55);
	border: 1px solid rgba(255,255,255,.7);
	border-radius: var(--bsy-radius-lg);
	display: grid; place-items: center;
	backdrop-filter: blur(6px);
}
.bsy-page--homepage .bsy-home-food__tile-img {
	width: 80%; height: 80%; object-fit: contain;
}
.bsy-page--homepage .bsy-home-food__tile-img--rot-n8 { transform: rotate(-8deg); }
.bsy-page--homepage .bsy-home-food__tile-img--rot-p6 { transform: rotate(6deg); }
.bsy-page--homepage .bsy-home-food__tile-img--rot-p8 { transform: rotate(8deg); }
.bsy-page--homepage .bsy-home-food__tile-img--rot-n6 { transform: rotate(-6deg); }
.bsy-page--homepage .bsy-home-food__tile-label {
	position: absolute; bottom: 8px; inset-inline-end: 10px;
	background: #fff; color: var(--bsy-fg-primary);
	font-size: 11px; font-weight: 800;
	padding: 4px 10px; border-radius: var(--bsy-radius-pill);
	box-shadow: 0 4px 12px rgba(0,30,80,.10);
	direction: rtl;
}

/* Center floating stat */
.bsy-page--homepage .bsy-home-food__stat {
	position: absolute; top: 50%; inset-inline-start: 50%;
	transform: translate(-50%, -50%);
	background: var(--bsy-black); color: #fff;
	border-radius: var(--bsy-radius-xl);
	padding: 13px 18px;
	max-width: calc(100% - 28px);
	box-shadow: 0 20px 48px -12px rgba(0,0,0,.35);
	direction: rtl; text-align: center; white-space: nowrap;
}
.bsy-page--homepage .bsy-home-food__stat-n {
	font-family: var(--bsy-font); font-weight: 950;
	font-size: 30px; line-height: 1; letter-spacing: -0.03em;
}
.bsy-page--homepage .bsy-home-food__stat-l {
	margin-top: 5px;
	font-size: 11px; font-weight: 700;
	color: rgba(255,255,255,.78); letter-spacing: 0.01em;
}

.bsy-page--homepage .bsy-home-food__chip {
	position: absolute;
	background: #fff; color: var(--bsy-fg-primary);
	border-radius: var(--bsy-radius-pill);
	padding: 8px 14px;
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 12px; font-weight: 800; direction: rtl;
	box-shadow: 0 8px 20px rgba(0,30,80,.15);
}
.bsy-page--homepage .bsy-home-food__chip--eta { top: 18px; inset-inline-end: 18px; }
.bsy-page--homepage .bsy-home-food__chip--rating { bottom: 18px; inset-inline-start: 18px; gap: 6px; }
.bsy-page--homepage .bsy-home-food__chip-dot {
	width: 8px; height: 8px; border-radius: var(--bsy-radius-pill);
	background: var(--bsy-grey-500);
}
.bsy-page--homepage .bsy-home-food__chip-dot--success {
	background: var(--bsy-success);
	box-shadow: 0 0 0 4px rgba(0,168,69,.16);
}
.bsy-page--homepage .bsy-home-food__star { color: var(--bsy-warning); font-size: 14px; }

@media (max-width: 768px) {
	.bsy-page--homepage .bsy-home-food__panel { height: 360px; }
	.bsy-page--homepage .bsy-home-food__panel-grid { padding: 18px; gap: 10px; }
	.bsy-page--homepage .bsy-home-food__stat {
		top: auto; bottom: 70px;
		transform: translate(-50%, 0);
		border-radius: var(--bsy-radius-md); padding: 8px 12px;
	}
	.bsy-page--homepage .bsy-home-food__stat-n { font-size: 17px; }
	.bsy-page--homepage .bsy-home-food__stat-l { font-size: 8.5px; margin-top: 2px; letter-spacing: 0; }
}

/* ============================================================
   3. DIGITAL INFO — creative panel + copy
   ============================================================ */
.bsy-page--homepage .bsy-home-digital__grid {
	display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px;
	align-items: center; direction: rtl;
}
@media (max-width: 960px) {
	.bsy-page--homepage .bsy-home-digital__grid { grid-template-columns: 1fr; gap: 24px; }
}
.bsy-page--homepage .bsy-home-digital__title {
	margin: 14px 0;
	font-family: var(--bsy-font); font-weight: 950;
	font-size: 48px; line-height: 1.02; letter-spacing: -0.03em;
	color: var(--bsy-fg-primary);
}
.bsy-page--homepage .bsy-home-digital__accent { color: var(--bsy-brand); }
.bsy-page--homepage .bsy-home-digital__lede {
	margin: 0; max-width: 520px;
	font-size: 16.5px; line-height: 1.7;
	color: var(--bsy-grey-700); font-weight: var(--bsy-fw-medium);
}
.bsy-page--homepage .bsy-home-digital__cats {
	margin-top: 24px;
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.bsy-page--homepage .bsy-home-digital__cat {
	display: flex; align-items: center; gap: 10px; direction: rtl;
	padding: 12px 14px; border-radius: var(--bsy-radius-md);
	background: linear-gradient(135deg, rgba(0,67,255,.06) 0%, rgba(0,67,255,.02) 100%);
}
.bsy-page--homepage .bsy-home-digital__cat-ic {
	width: 34px; height: 34px; border-radius: var(--bsy-radius-md);
	background: var(--bsy-brand); color: #fff;
	display: grid; place-items: center; flex: none;
	box-shadow: 0 4px 10px -4px rgba(0,67,255,.45);
}
.bsy-page--homepage .bsy-home-digital__cat-t {
	font-size: 13.5px; font-weight: 800; color: var(--bsy-fg-primary);
	letter-spacing: -0.005em;
}
.bsy-page--homepage .bsy-home-digital__ctas {
	display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap;
}
@media (max-width: 768px) {
	.bsy-page--homepage .bsy-home-digital__title { font-size: 30px; }
	.bsy-page--homepage .bsy-home-digital__lede { font-size: 14px; }
	.bsy-page--homepage .bsy-home-digital__cats { grid-template-columns: 1fr 1fr; }
	.bsy-page--homepage .bsy-home-digital__cat { padding: 10px 12px; }
	.bsy-page--homepage .bsy-home-digital__cat-t { font-size: 12px; }
}

/* Creative panel — brand-blue gradient with stacked gift cards */
.bsy-page--homepage .bsy-home-digital__panel {
	position: relative; overflow: hidden;
	height: 480px;
	border-radius: var(--bsy-radius-3xl);
	background: linear-gradient(160deg, #1838B0 0%, var(--bsy-brand) 50%, #5B7DEE 100%);
	box-shadow: 0 20px 48px -16px rgba(0,30,80,.35);
}
.bsy-page--homepage .bsy-home-digital__panel-glow {
	position: absolute; inset: 0; pointer-events: none;
	background:
		radial-gradient(circle at 80% 18%, rgba(255,255,255,.22), transparent 55%),
		radial-gradient(circle at 18% 90%, rgba(255,225,94,.18), transparent 55%);
}
.bsy-page--homepage .bsy-home-digital__panel-dots {
	position: absolute; inset: 0; opacity: 0.20; pointer-events: none;
	background-image: radial-gradient(circle, rgba(255,255,255,1) 1px, transparent 1.5px);
	background-size: 22px 22px;
	background-position: 2px 2px;
}

/* Stacked-card composition. Cards are absolutely positioned and rotated
   to imitate the React JSX which manually fans them out. */
.bsy-page--homepage .bsy-home-digital__cards {
	position: absolute; inset-inline-start: 50%; top: 50%;
	transform: translate(-50%, -50%);
	width: 320px; height: 360px;
	direction: ltr;
}
.bsy-page--homepage .bsy-home-digital__card {
	position: absolute; inset-inline-start: 50%; top: 50%;
	width: 220px; height: 140px;
	border-radius: var(--bsy-radius-lg);
	border: 1px solid rgba(255,255,255,.20);
	display: flex; flex-direction: column; justify-content: space-between;
	padding: 14px 18px;
	box-shadow: 0 22px 44px -14px rgba(0,0,0,.45),
		inset 0 1px 0 rgba(255,255,255,.28);
}
.bsy-page--homepage .bsy-home-digital__card[data-card-index="0"] {
	transform: translate(calc(-50% + -40px), calc(-50% + 40px)) rotate(-16deg);
	background: linear-gradient(135deg, #FFE15E, #D49600);
	color: #1F1500;
}
.bsy-page--homepage .bsy-home-digital__card[data-card-index="1"] {
	transform: translate(calc(-50% + 0px), calc(-50% + 16px)) rotate(-4deg);
	background: linear-gradient(135deg, #2C3E70, #14213F);
	color: #E8EDFF;
}
.bsy-page--homepage .bsy-home-digital__card[data-card-index="2"] {
	transform: translate(calc(-50% + 36px), calc(-50% + -8px)) rotate(10deg);
	background: linear-gradient(135deg, #36C480, #157A45);
	color: #FFFFFF;
}
.bsy-page--homepage .bsy-home-digital__card[data-card-index="3"] {
	transform: translate(calc(-50% + 70px), calc(-50% + -32px)) rotate(20deg);
	background: linear-gradient(135deg, #F58A6A, #C84032);
	color: #FFFFFF;
}
.bsy-page--homepage .bsy-home-digital__card-row {
	display: flex; align-items: center; justify-content: space-between;
}
.bsy-page--homepage .bsy-home-digital__card-row--foot { align-items: flex-end; }
.bsy-page--homepage .bsy-home-digital__card-label {
	font-size: 12px; font-weight: 900; letter-spacing: 0.16em;
	opacity: 0.88;
}
.bsy-page--homepage .bsy-home-digital__card-glyph {
	font-size: 28px; line-height: 1;
}
.bsy-page--homepage .bsy-home-digital__card[data-card-index="0"] .bsy-home-digital__card-glyph { color: #5A3D00; }
.bsy-page--homepage .bsy-home-digital__card[data-card-index="1"] .bsy-home-digital__card-glyph { color: #8FB6FF; }
.bsy-page--homepage .bsy-home-digital__card-num {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 11px; opacity: 0.80; letter-spacing: 0.12em;
}
.bsy-page--homepage .bsy-home-digital__card-brand {
	font-size: 11px; font-weight: 800; opacity: 0.85;
}

.bsy-page--homepage .bsy-home-digital__chip {
	position: absolute; top: 18px; inset-inline-end: 18px;
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(255,255,255,.16);
	border: 1px solid rgba(255,255,255,.26);
	color: #fff; border-radius: var(--bsy-radius-pill);
	padding: 8px 14px;
	font-size: 12px; font-weight: 800; direction: rtl;
	backdrop-filter: blur(10px);
}
.bsy-page--homepage .bsy-home-digital__chip-dot {
	width: 7px; height: 7px; border-radius: var(--bsy-radius-pill);
	background: #FFE15E;
	box-shadow: 0 0 0 4px rgba(255,225,94,.24);
}
.bsy-page--homepage .bsy-home-digital__stat {
	position: absolute; bottom: 18px; inset-inline-start: 18px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.20);
	border-radius: var(--bsy-radius-lg);
	padding: 12px 16px;
	color: #fff; direction: rtl;
	backdrop-filter: blur(10px);
}
.bsy-page--homepage .bsy-home-digital__stat-l {
	font-size: 10.5px; font-weight: 700;
	color: rgba(255,255,255,.78); letter-spacing: 0.08em;
}
.bsy-page--homepage .bsy-home-digital__stat-v {
	margin-top: 4px;
	font-size: 22px; font-weight: 950; letter-spacing: -0.02em;
	color: #FFE15E;
}

@media (max-width: 768px) {
	.bsy-page--homepage .bsy-home-digital__panel { height: 360px; }
	.bsy-page--homepage .bsy-home-digital__cards { width: 240px; height: 280px; }
	.bsy-page--homepage .bsy-home-digital__card {
		width: 170px; height: 110px;
		padding: 12px 14px;
	}
	.bsy-page--homepage .bsy-home-digital__card-label { font-size: 11px; }
	.bsy-page--homepage .bsy-home-digital__card-glyph { font-size: 22px; }
	.bsy-page--homepage .bsy-home-digital__card-num { font-size: 10px; }
	.bsy-page--homepage .bsy-home-digital__card-brand { font-size: 10px; }
	.bsy-page--homepage .bsy-home-digital__stat-v { font-size: 18px; }
}

/* ============================================================
   4. HOW IT WORKS — 3 numbered steps
   ============================================================ */
.bsy-page--homepage .bsy-home-how__list {
	position: relative;
	margin: 0; padding: 0; list-style: none;
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.bsy-page--homepage .bsy-home-how__connector {
	position: absolute;
	top: 60px; right: 16%; left: 16%;
	height: 2px;
	border-top: 2px dashed var(--bsy-brand-light);
	z-index: 0;
}
.bsy-page--homepage .bsy-home-how__step {
	position: relative; z-index: 1;
	background: #fff;
	border: 1px solid var(--bsy-grey-100);
	border-radius: var(--bsy-radius-xl);
	padding: 26px 24px;
	display: flex; flex-direction: column; gap: 12px;
	direction: rtl;
	box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 22px -16px rgba(0,30,80,.16);
}
.bsy-page--homepage .bsy-home-how__step-head {
	display: flex; align-items: center; justify-content: space-between;
}
.bsy-page--homepage .bsy-home-how__step-ic {
	width: 56px; height: 56px; border-radius: var(--bsy-radius-pill);
	background: var(--bsy-brand); color: #fff;
	display: grid; place-items: center;
	box-shadow: 0 10px 24px -8px rgba(0,67,255,.40);
}
.bsy-page--homepage .bsy-home-how__step-n {
	font-family: var(--bsy-font); font-weight: 950;
	font-size: 56px; line-height: 1; letter-spacing: -0.04em;
	color: var(--bsy-brand-lighter);
}
.bsy-page--homepage .bsy-home-how__step-t {
	margin: 8px 0 0;
	font-size: 22px; font-weight: 900;
	letter-spacing: -0.02em; line-height: 1.15;
	color: var(--bsy-fg-primary);
}
.bsy-page--homepage .bsy-home-how__step-s {
	margin: 0;
	font-size: 14.5px; line-height: 1.55;
	color: var(--bsy-grey-700); font-weight: var(--bsy-fw-medium);
}
@media (max-width: 960px) {
	.bsy-page--homepage .bsy-home-how__list { grid-template-columns: 1fr; gap: 12px; }
	.bsy-page--homepage .bsy-home-how__connector { display: none; }
	.bsy-page--homepage .bsy-home-how__step { padding: 20px 18px; }
	.bsy-page--homepage .bsy-home-how__step-t { font-size: 18px; }
	.bsy-page--homepage .bsy-home-how__step-s { font-size: 13px; }
}

/* ============================================================
   5. TESTIMONIALS — 3 review cards, horizontal scroll on mobile
   ============================================================ */
.bsy-page--homepage .bsy-home-rev__row {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.bsy-page--homepage .bsy-home-rev__card {
	position: relative; overflow: hidden;
	background: #fff;
	border: 1px solid var(--bsy-grey-100);
	border-radius: var(--bsy-radius-xl);
	padding: 24px 22px;
	display: flex; flex-direction: column; gap: 14px;
	direction: rtl;
	box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 22px -16px rgba(0,30,80,.16);
}
.bsy-page--homepage .bsy-home-rev__quote-mark {
	position: absolute; top: 12px; inset-inline-end: 18px;
	font-size: 80px; line-height: 0.6;
	color: var(--bsy-brand-lighter);
	font-family: serif; font-weight: 900;
	pointer-events: none;
}
.bsy-page--homepage .bsy-home-rev__stars {
	display: flex; align-items: center; gap: 4px;
	position: relative;
}
.bsy-page--homepage .bsy-home-rev__star { color: var(--bsy-warning); font-size: 16px; }
.bsy-page--homepage .bsy-home-rev__quote {
	margin: 0;
	font-size: 15px; line-height: 1.65; font-weight: var(--bsy-fw-medium);
	color: var(--bsy-grey-800);
	position: relative;
}
.bsy-page--homepage .bsy-home-rev__foot {
	display: flex; align-items: center; gap: 12px;
	margin-top: auto; padding-top: 12px;
	border-top: 1px solid var(--bsy-grey-100);
}
.bsy-page--homepage .bsy-home-rev__avatar {
	width: 40px; height: 40px; border-radius: var(--bsy-radius-pill);
	display: grid; place-items: center;
	font-size: 15px; font-weight: 900; color: var(--bsy-grey-800);
	flex: none;
}
.bsy-page--homepage .bsy-home-rev__avatar--warm { background: #FFCB8D; }
.bsy-page--homepage .bsy-home-rev__avatar--rose { background: #FFB8B8; }
.bsy-page--homepage .bsy-home-rev__avatar--sky  { background: #B8D6FF; }
.bsy-page--homepage .bsy-home-rev__avatar--mint { background: #C9F2C9; }
.bsy-page--homepage .bsy-home-rev__who { flex: 1; min-width: 0; }
.bsy-page--homepage .bsy-home-rev__name {
	font-size: 13px; font-weight: 800; color: var(--bsy-fg-primary);
}
.bsy-page--homepage .bsy-home-rev__city {
	margin-top: 2px;
	font-size: 11px; font-weight: var(--bsy-fw-medium);
	color: var(--bsy-grey-600);
}
.bsy-page--homepage .bsy-home-rev__src {
	display: inline-flex; align-items: center; gap: 6px;
	padding-inline: 8px; height: 26px;
	border-radius: var(--bsy-radius-pill);
	background: var(--bsy-grey-100);
	font-size: 10.5px; font-weight: 700;
	color: var(--bsy-grey-700);
	letter-spacing: 0.01em; flex: none;
}
.bsy-page--homepage .bsy-home-rev__src svg { color: var(--bsy-grey-600); }

@media (max-width: 960px) {
	/* On mobile, fold to a horizontal scroll-snap row so all three cards
	   stay visible without forcing tall stacked layout. */
	.bsy-page--homepage .bsy-home-rev__row {
		display: flex; grid-template-columns: none;
		overflow-x: auto; scroll-snap-type: x mandatory;
		gap: 12px; padding-bottom: 4px;
		margin-inline: -16px; padding-inline: 16px;
	}
	.bsy-page--homepage .bsy-home-rev__card {
		flex: 0 0 86%; scroll-snap-align: start;
		padding: 20px 18px;
	}
	.bsy-page--homepage .bsy-home-rev__quote { font-size: 13.5px; }
}

/* ============================================================
   6. DRIVER RECRUITMENT
   ============================================================ */
.bsy-page--homepage .bsy-home-driver__card {
	position: relative; overflow: hidden;
	background: var(--bsy-black); color: #fff;
	border-radius: var(--bsy-radius-3xl);
	padding: 56px;
	box-shadow: 0 24px 60px -24px rgba(0,0,0,.35);
}
.bsy-page--homepage .bsy-home-driver__grid {
	display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
	align-items: center; direction: rtl;
}
.bsy-page--homepage .bsy-home-driver__title {
	margin: 14px 0 16px;
	font-family: var(--bsy-font); font-weight: 950;
	font-size: 52px; line-height: 1.02; letter-spacing: -0.035em;
	color: #fff;
}
.bsy-page--homepage .bsy-home-driver__accent { color: #FFE15E; }
.bsy-page--homepage .bsy-home-driver__lede {
	margin: 0; max-width: 520px;
	font-size: 16.5px; line-height: 1.7;
	color: rgba(255,255,255,.78);
	font-weight: var(--bsy-fw-medium);
}
.bsy-page--homepage .bsy-home-driver__hl { color: #fff; font-weight: 800; }
.bsy-page--homepage .bsy-home-driver__ctas {
	display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap;
}

/* Visual panel inside the driver card */
.bsy-page--homepage .bsy-home-driver__panel {
	position: relative; overflow: hidden;
	height: 380px;
	border-radius: var(--bsy-radius-2xl);
	background: linear-gradient(160deg, #0029B0 0%, var(--bsy-brand) 60%, #3463FF 100%);
	box-shadow: 0 24px 56px -20px rgba(0,30,80,.55);
}
.bsy-page--homepage .bsy-home-driver__panel-svg {
	position: absolute; inset: 0; width: 100%; height: 100%;
}
.bsy-page--homepage .bsy-home-driver__panel-city {
	position: absolute; bottom: 0; left: 0; right: 0;
	width: 100%; height: 100px;
}
.bsy-page--homepage .bsy-home-driver__plate {
	position: absolute; top: 50%; inset-inline-end: 8%;
	transform: translateY(-50%);
	padding: 14px 18px;
	border-radius: var(--bsy-radius-md);
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.20);
	color: #fff; direction: rtl;
	backdrop-filter: blur(12px);
}
.bsy-page--homepage .bsy-home-driver__plate-l {
	font-size: 10.5px; font-weight: 700;
	color: rgba(255,255,255,.72); letter-spacing: 0.04em;
}
.bsy-page--homepage .bsy-home-driver__plate-t {
	margin-top: 2px;
	font-size: 16px; font-weight: 900; letter-spacing: -0.01em;
}
.bsy-page--homepage .bsy-home-driver__plate-stars {
	display: flex; align-items: center; gap: 6px; margin-top: 6px;
	font-size: 11px; font-weight: 700;
	color: #FFE15E;
}
.bsy-page--homepage .bsy-home-driver__plate-sep { color: rgba(255,255,255,.65); }
.bsy-page--homepage .bsy-home-driver__plate-note { color: rgba(255,255,255,.78); }

.bsy-page--homepage .bsy-home-driver__corner {
	position: absolute; top: 16px; inset-inline-start: 16px;
	padding: 10px 14px;
	border-radius: var(--bsy-radius-md);
	background: rgba(255,255,255,.14);
	border: 1px solid rgba(255,255,255,.22);
	color: #fff; direction: rtl;
	backdrop-filter: blur(10px);
}
.bsy-page--homepage .bsy-home-driver__corner-l {
	font-size: 10.5px; font-weight: 700;
	color: rgba(255,255,255,.72); letter-spacing: 0.04em;
}
.bsy-page--homepage .bsy-home-driver__corner-v {
	margin-top: 2px;
	font-family: var(--bsy-font); font-weight: 950;
	font-size: 20px; letter-spacing: -0.02em;
	color: #FFE15E;
}

@media (max-width: 960px) {
	.bsy-page--homepage .bsy-home-driver__card { padding: 36px 22px; border-radius: var(--bsy-radius-2xl); }
	.bsy-page--homepage .bsy-home-driver__grid { grid-template-columns: 1fr; gap: 24px; }
	.bsy-page--homepage .bsy-home-driver__title { font-size: 32px; }
	.bsy-page--homepage .bsy-home-driver__lede { font-size: 14px; }
	.bsy-page--homepage .bsy-home-driver__panel { height: 280px; }
	.bsy-page--homepage .bsy-home-driver__panel-city { height: 70px; }
	.bsy-page--homepage .bsy-home-driver__plate-t { font-size: 14px; }
	.bsy-page--homepage .bsy-home-driver__corner-v { font-size: 16px; }
}

/* ============================================================
   7. DOWNLOAD BAND — wraps the shared bsy_download_band primitive.
   Just need to drop the section's default padding to 60px because
   the band has its own inner spacing.
   ============================================================ */
.bsy-page--homepage .bsy-home-dl { padding: 60px 32px; }
@media (max-width: 768px) {
	.bsy-page--homepage .bsy-home-dl { padding: 40px 12px; }
}
