:root {
	--color-primary: #0056D2;
	--color-accent: #FF6B00;
	--color-text: #1C1C1C;
	--color-muted: #6B7280;
	--color-bg: #FFFFFF;
	--color-section: #F5F7FA;
	--color-footer: #0A0A0A;
	--color-hero-start: #1E40AF;
	--color-hero-end: #2563EB;
	--radius-sm: 6px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--shadow-sm: 0 2px 6px rgba(0,0,0,0.15);
	--shadow-md: 0 2px 8px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--color-text); background: var(--color-bg); }

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid #eef0f2; }
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: transparent; z-index: 70; }
.scroll-progress__bar { width: 0%; height: 100%; background: linear-gradient(90deg, var(--color-accent), var(--color-primary)); box-shadow: 0 0 8px rgba(0,0,0,0.15); transition: width .1s linear; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 700; color: var(--color-primary); text-decoration: none; display: inline-flex; align-items: baseline; gap: 6px; }
.deg360 { font-size: 12px; color: var(--color-muted); }
.main-nav ul { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; }
.main-nav a { color: var(--color-text); text-decoration: none; }
.header-cta { display: flex; gap: 16px; align-items: center; }
.header-cta .login-link { color: var(--color-text); text-decoration: none; }
.btn-phone { display: inline-flex; align-items: center; gap: 8px; background: var(--color-primary); color: #fff; padding: 8px 12px; border-radius: 10px; text-decoration: none; box-shadow: var(--shadow-sm); }
.btn-phone img { width: 16px; height: 16px; filter: invert(1); }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; color: var(--color-text); }
.lang-switch img { width: 16px; height: 16px; }
.lang-switch { position: relative; }
.lang-switch .lang-menu { position: absolute; right: 0; top: calc(100% + 6px); background: #fff; border: 1px solid #E5E7EB; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); list-style: none; margin: 0; padding: 6px; min-width: 120px; }
.lang-switch .lang-menu li { padding: 8px 10px; border-radius: 6px; cursor: pointer; }
.lang-switch .lang-menu li:hover { background: #F3F4F6; }
.phone-inline { color: var(--color-text); text-decoration: none; font-weight: 600; }
.currency-select { height: 36px; border: 1px solid #E5E7EB; border-radius: 8px; background: #fff; padding: 0 8px; }

/* Mobile menu toggle */
.menu-toggle { display: none; width: 40px; height: 40px; border-radius: 8px; border: 1px solid #E5E7EB; background: #fff; align-items: center; justify-content: center; cursor: pointer; }
.menu-icon { position: relative; width: 18px; height: 2px; background: #111; display: inline-block; }
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; right: 0; height: 2px; background: #111; }
.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }
.menu-toggle.is-open .menu-icon { background: transparent; }
.menu-toggle.is-open .menu-icon::before { transform: rotate(45deg); top: 0; }
.menu-toggle.is-open .menu-icon::after { transform: rotate(-45deg); top: 0; }

/* Off-canvas mobile menu */
.mobile-menu { position: fixed; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid #E5E7EB; box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 45; transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu ul { list-style: none; margin: 0; padding: 12px 16px; display: grid; gap: 8px; }
.mobile-menu a { color: var(--color-text); text-decoration: none; padding: 10px 6px; display: block; border-radius: 8px; }
.mobile-menu a:hover { background: #F3F4F6; }
.mobile-cta { display: grid; gap: 8px; padding: 12px 16px 16px; border-top: 1px solid #EEF0F2; }

.btn { height: 40px; padding: 0 16px; border-radius: var(--radius-md); border: 1px solid transparent; cursor: pointer; }
.btn { min-height: 48px; padding: 12px 24px; border-radius: 10px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.btn:focus-visible { outline: 2px solid #007BFF; outline-offset: 2px; }
.btn-primary { background: #FF6B00; color: #fff; border: none; min-width: 150px; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(0,0,0,0.1); background: #FF5A00; }
.btn-primary:active { transform: scale(0.95); box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.btn-secondary { background: #F8F9FA; color: #212529; border: 1px solid #e5e7eb; min-width: 120px; }
.btn-secondary:hover { box-shadow: 0 4px 10px rgba(0,0,0,0.06); }
.link-btn { background: none; color: #FF6B00; text-decoration: underline; padding: 0; min-height: 0; border: none; }
.link-btn:hover { text-decoration: none; font-weight: 600; }
.btn-ghost { background: #fff; border: 1px solid #E5E7EB; color: var(--color-text); }

/* Tags (filters) */
.tag { background: #fff; border: 1px solid #dee2e6; padding: 8px 16px; border-radius: 20px; cursor: pointer; transition: all .2s ease; display: inline-block; min-height: 32px; }
.tag:hover { background: #FFF0E6; color: #FF6B00; border-color: #FF6B00; }
.tag.active { background: #FF6B00; color: #fff; border-color: #FF6B00; }

/* Loading state */
.btn.is-loading { pointer-events: none; opacity: 0.95; }
.btn.is-loading::before { content: ""; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.6); border-top-color: #fff; border-radius: 50%; display: inline-block; margin-right: 8px; animation: spin 1s linear infinite; vertical-align: -3px; }
.btn-secondary.is-loading::before { border-color: rgba(0,0,0,0.3); border-top-color: #212529; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn-ghost { background: #fff; border: 1px solid #E5E7EB; color: var(--color-text); }

.hero { position: relative; min-height: 80vh; display: grid; background: radial-gradient(1200px 600px at 20% 10%, rgba(255,255,255,0.08), transparent 60%), linear-gradient(180deg, var(--color-hero-start), var(--color-hero-end)); }
.hero::before { content: ""; position: absolute; inset: 0; background: url('assets/img/fon.png') center/cover no-repeat; z-index: 0; }
.hero picture, .hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.0) 100%); }
.hero-content { position: relative; padding: 84px 0 48px; display: grid; gap: 20px; color: #fff; justify-items: center; text-align: center; }
.hero-title { margin: 0; font-size: 64px; line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }
.hero-title .accent { color: #F59E0B; }
.hero-subtitle { margin: 0; max-width: 980px; font-size: 20px; opacity: 0.95; }
.hero-features { display: flex; gap: 24px; padding: 0; margin: 10px 0 24px; list-style: none; opacity: 0.95; }
.hero-features li { display: inline-flex; align-items: center; gap: 8px; }
.hero-features img { width: 18px; height: 18px; filter: invert(1) sepia(0) saturate(0) brightness(100%); }

.stepper-card { width: 100%; max-width: 980px; margin: 0 auto; background: #fff; border-radius: 16px; box-shadow: 0 16px 48px rgba(0,0,0,0.16); padding: 32px; text-align: left; }
.stepper-indicator { display: grid; grid-auto-flow: column; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.stepper-indicator .dot { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: #E5E7EB; color: #111; font-weight: 700; font-size: 14px; }
.stepper-indicator .dot.active { background: var(--color-primary); color: #fff; }
.stepper-indicator .line { width: 64px; height: 4px; background: #E5E7EB; border-radius: 2px; }

.search-stepper { display: grid; gap: 16px; color: var(--color-text); }
.search-stepper .h3 { margin: 0; font-size: 22px; }
.search-stepper .muted { color: var(--color-muted); margin: 0 0 8px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field span { font-size: 14px; font-weight: 600; color: #111; }
.field input, .field select, .search-stepper input, .search-stepper select { width: 100%; height: 48px; padding: 0 12px; border: 1px solid #D1D5DB; border-radius: var(--radius-sm); background: #fff; }
.stepper-actions { display: flex; justify-content: space-between; gap: 12px; padding-top: 8px; }
.btn-find { display: inline-flex; align-items: center; gap: 8px; }
.search-stepper label { font-weight: 600; font-size: 14px; }
.search-stepper input { width: 100%; height: 48px; padding: 0 12px; border: 1px solid #D1D5DB; border-radius: var(--radius-sm); }

.section { padding: 64px 0; }
.section:nth-child(even) { background: var(--color-section); }
/* Anchor offset for sticky header and smooth scrolling */
html { scroll-behavior: smooth; }
#faq, #contacts, .section { scroll-margin-top: 84px; }

.usp-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 0; margin: 24px 0 0; list-style: none; }
.usp-list li { display: grid; place-items: center; text-align: center; gap: 8px; padding: 16px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.usp-list img { width: 64px; height: 64px; }
@media (max-width: 1024px){
    .usp-list { grid-auto-flow: column; grid-auto-columns: 70%; overflow-x: auto; scroll-snap-type: x mandatory; }
    .usp-list li { scroll-snap-align: start; }
}

/* We offer / Team / How-to */
.feature-cards .feature-card { text-align: left; }
.feature-cards .card img { width: 16px !important; height: 16px !important; display: inline-block; }
.feature-cards .card .h3 { margin-top: 8px; }
.title-icon { display: flex; align-items: center; gap: 8px; }
.step-ico { width: 16px; height: 16px; }
.team-cards img { width: 40px; height: 40px; }
.team-tabs { margin-top: 8px; }
.people-panels { margin-top: 16px; }
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.person-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 16px; text-align: center; position: relative; }
.person-card .avatar { width: 56px; height: 56px; border-radius: 50%; background: #F3F4F6; margin: 0 auto 8px; display: grid; place-items: center; font-weight: 700; color: #111; }
.person-card .name { margin: 0; font-weight: 700; }
.person-card .role { margin: 4px 0 0; }
.person-card.highlight { border-color: var(--color-primary); box-shadow: 0 8px 20px rgba(0,86,210,0.08); }
.steps { counter-reset: s; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; list-style: none; padding: 0; margin: 24px 0 0; }
.step-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 16px; position: relative; }
.step-card .num { position: absolute; top: -12px; left: -12px; width: 36px; height: 36px; border-radius: 50%; background: var(--color-primary); color: #fff; display: grid; place-items: center; font-weight: 700; box-shadow: var(--shadow-sm); }

.card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 0; margin: 24px 0 0; list-style: none; }
.card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 16px; display: grid; gap: 8px; }
.card img { width: 100%; height: auto; border-radius: var(--radius-sm); }
.price { font-weight: 700; }
/* Favorite button */
.card { position: relative; }
.fav-btn { position: absolute; top: 8px; right: 8px; height: 28px; padding: 0 10px; border-radius: 999px; border: 1px solid #E5E7EB; background: rgba(255,255,255,0.9); cursor: pointer; font-size: 12px; display: inline-flex; align-items: center; gap: 6px; }
.fav-btn .heart { color: #D1D5DB; transition: color .2s ease; }
.fav-btn.is-active .heart { color: #EF4444; }

/* Badges below title */
.badges { display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 2px 0 4px; list-style: none; }
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; line-height: 1; padding: 6px 8px; border-radius: 999px; }
.badge.new { background: #EDE9FE; color: #4C1D95; }
.badge.cancel { background: #E0F2FE; color: #075985; }
.badge.unlimited { background: #E7F5E9; color: #166534; }
.badge.instant { background: #FEF9C3; color: #92400E; }

/* Car specs row */
.car-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 12px; margin: 8px 0 2px; padding: 0; list-style: none; font-size: 13px; color: var(--color-text); opacity: 0.95; }
.car-specs li { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; position: relative; cursor: default; }
.car-specs .ico { font-size: 14px; opacity: 0.9; }
@media (max-width: 640px){ .car-specs { grid-template-columns: repeat(2, 1fr); } }

/* Tooltip (wrapped in <noindex>) */
.car-specs li .tip { position: absolute; left: 0; bottom: 115%; background: rgba(17,24,39,0.96); color: #fff; padding: 6px 8px; border-radius: 6px; font-size: 12px; white-space: nowrap; box-shadow: 0 6px 18px rgba(0,0,0,0.2); opacity: 0; visibility: hidden; transform: translateY(4px); transition: opacity .15s ease, transform .15s ease, visibility .15s ease; z-index: 5; }
.car-specs li:hover .tip, .car-specs li.is-open .tip { opacity: 1; visibility: visible; transform: translateY(0); }
.car-specs li .tip::after { content: ""; position: absolute; left: 10px; top: 100%; border: 6px solid transparent; border-top-color: rgba(17,24,39,0.96); }

/* Rent options inside fleet cards */
.rent-options { background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 12px; padding: 12px; display: grid; gap: 8px; }
.rent-options .label, .rent-options .muted { font-size: 14px; color: var(--color-text); }
.rent-options .rent-term { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 8px; list-style: none; padding: 0; margin: 0; }
.rent-options .rent-term label { display: flex; gap: 6px; align-items: center; font-size: 14px; }
.rent-options .field span { font-size: 13px; color: var(--color-muted); font-weight: 600; }
.rent-options select { height: 40px; }
@media (max-width: 640px){
	.rent-options .rent-term { grid-template-columns: repeat(2, 1fr); }
}

/* Offers */
.center { text-align: center; }
.payments-inline { display: flex; gap: 20px; justify-content: center; align-items: center; margin-top: 16px; }
.payments-inline img { height: 34px; width: auto; filter: grayscale(10%) brightness(1.05); }
.payments-inline img[alt~="Bank"] { height: 28px; }

/* Tag cloud */
.topics { background: #141618; }
.tag-cloud { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip { display: inline-block; padding: 10px 14px; border-radius: 10px; background: #2A3A56; color: #E8EEF9; text-decoration: none; font-weight: 700; font-size: 14px; letter-spacing: .2px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); }
.chip:hover { background: #214172; }
@media (max-width: 640px){ .chip { font-size: 13px; padding: 9px 12px; } }
.offers-row .offer-card { position: relative; padding-top: 12px; }
.offer-card { min-height: 360px; }
.offer-card .top-strip { position: absolute; top: 0; left: 0; right: 0; height: 6px; border-radius: 8px 8px 0 0; }
.offer-card .top-strip.red { background: #EF4444; }
.offer-card .top-strip.blue { background: var(--color-primary); }
.offer-card .top-strip.green { background: #10B981; }
.badge { position: absolute; top: 8px; left: 12px; padding: 2px 8px; border-radius: 999px; color: #fff; font-size: 12px; }
.badge.red { background: #EF4444; }
.badge.blue { background: var(--color-primary); }
.badge.green { background: #10B981; }
.btn-dark { background: #111827; color: #fff; border: 1px solid #111827; height: 44px; border-radius: 10px; }
.offers-row .offer-card img { height: 180px; object-fit: cover; border-radius: 8px; }

/* Fleet */
.pill { display: inline-block; margin-left: 6px; padding: 2px 8px; background: #F3F4F6; border-radius: 999px; font-size: 12px; color: #111; font-weight: 500; }
.fleet-row .card .h3 { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.fleet-row .card { min-height: 320px; }
.price { color: var(--color-primary); font-size: 20px; }
.fleet-slider { position: relative; }
.fleet-nav { position: absolute; top: 50%; transform: translateY(-50%); background: #111827; color: #fff; border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; opacity: 0.9; display: none; }
.fleet-nav.prev { left: -8px; }
.fleet-nav.next { right: -8px; }
@media (max-width: 640px){
	.fleet-row { display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth; }
	.fleet-row .card { flex: 0 0 90%; max-width: 90%; min-width: 90%; }
	/* prevent inner content from expanding card width */
	.fleet-row .card * { min-width: 0; }
	.fleet-nav { display: inline-block; }
}

/* Rent options inside cards */
.rent-options { margin-top: 8px; background: #fff; border: 1px solid #E5E7EB; border-radius: 10px; padding: 10px; display: grid; gap: 8px; }
.rent-term { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, max-content); gap: 10px 14px; align-items: center; }
.rent-term label { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; }
@media (max-width: 640px){
	.rent-term { grid-template-columns: repeat(3, max-content); }
}

/* Reviews stats */
.reviews .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 8px 0 16px; text-align: center; }
.reviews .stats strong { display: block; font-size: 36px; color: var(--color-primary); font-weight: 800; }
.reviews .stats span { color: var(--color-muted); }

/* Reviews slider */
.reviews-slider { position: relative; }
.reviews-track { display: flex; overflow: hidden; scroll-behavior: smooth; gap: 16px; align-items: stretch; }
.reviews .card { flex: 0 0 360px; height: 340px; display: flex; flex-direction: column; justify-content: flex-start; }
.reviews .card p:last-child { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.reviews .card img { margin-bottom: 6px; }
.reviews .card .rating { margin-top: 0; }
.reviews-nav { position: absolute; top: 50%; transform: translateY(-50%); background: #111827; color: #fff; border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; opacity: 0.9; }
.reviews-nav.prev { left: -8px; }
.reviews-nav.next { right: -8px; }
@media (max-width: 1024px){ .reviews .card { flex-basis: 50%; height: 320px; } }
@media (max-width: 640px){ .reviews .card { flex-basis: 100%; height: 300px; } }

/* CTA banner */
.cta-banner { background: linear-gradient(90deg, var(--color-hero-start), var(--color-hero-end)); color: #fff; padding: 56px 0; text-align: center; }
.cta-banner .h2 { margin: 0 0 8px; font-size: 34px; }

/* Heading utility classes (replacing h2-h6 semantics in UI) */
.h2 { font-size: 32px; line-height: 1.2; font-weight: 700; margin: 0 0 12px; }
.h3 { font-size: 20px; line-height: 1.3; font-weight: 700; margin: 0 0 8px; }
.cta-banner p { margin: 0 0 16px; opacity: 0.95; }
.cta-actions { display: flex; gap: 12px; justify-content: center; }

/* Helpers */
.muted { color: var(--color-muted); }

/* Modal */
.modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); animation: fade .3s ease; }
.modal__content { position: relative; background: #fff; width: min(560px, 92vw); border-radius: 16px; box-shadow: 0 16px 48px rgba(0,0,0,0.2); padding: 20px; animation: pop .3s ease; }
#filters-modal .modal__content { width: min(1100px, 96vw); }
.modal__close { position: absolute; top: 8px; right: 8px; width: 32px; height: 32px; border-radius: 50%; border: 1px solid #E5E7EB; background: #fff; cursor: pointer; }
.modal__form { display: grid; gap: 12px; margin-top: 8px; }
.modal__form input, .modal__form textarea { width: 100%; padding: 12px; border: 1px solid #D1D5DB; border-radius: 8px; }
.modal__note { margin-top: 8px; color: var(--color-primary); font-weight: 600; }

/* Filters form */
.filters-form { display: grid; gap: 12px; }
.filters-form .grid-2 { grid-template-columns: 1fr 1fr; }
.filters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.filter-group { background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 12px; padding: 12px; display: grid; gap: 6px; }
.filter-group .title { font-weight: 700; margin-bottom: 4px; }
.filter-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 6px 12px; }
.check-list label { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; }
@media (max-width: 1024px){ .filters-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .filters-grid { grid-template-columns: 1fr; } }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { transform: scale(.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.tabs { display: flex; gap: 8px; margin-top: 8px; }
.tab { height: 36px; padding: 0 12px; border: 1px solid #E5E7EB; background: #fff; border-radius: var(--radius-sm); cursor: pointer; }
.tab.active { border-color: var(--color-primary); color: var(--color-primary); }
#open-filters { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
#open-filters:hover { filter: brightness(0.95); }

.site-footer { background: var(--color-footer); color: #fff; padding: 32px 0; }
.site-footer .cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.site-footer a { color: #fff; opacity: 0.9; text-decoration: none; }
.site-footer .copy { margin-top: 16px; opacity: 0.8; }

/* Footer payments */
.footer-payments { display: flex; gap: 16px; align-items: center; justify-content: center; margin-top: 8px; filter: grayscale(10%) brightness(1.1); opacity: 0.95; }
.footer-payments img { height: 28px; width: auto; display: inline-block; }
.footer-payments img[alt~="Bank"] { height: 22px; }
.footer-payments img + img { opacity: 0.9; }

/* Footer links grid */
.footer-links { display: grid; grid-template-columns: 240px repeat(4, minmax(0,1fr)); gap: 24px; margin-bottom: 12px; }
.footer-title { color: var(--color-primary); font-weight: 800; margin: 0 0 8px; background: none; border: none; padding: 0; text-align: left; cursor: default; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.footer-col:nth-child(2) .footer-list { columns: 2; column-gap: 24px; }
.footer-col:nth-child(2) .footer-list li { break-inside: avoid; }
.footer-list { display: grid; gap: 6px; }
.footer-col.brand { display: grid; gap: 8px; align-content: start; }
.brand-logo img { height: 44px; width: auto; display: block; }
.brand-name { font-weight: 800; font-size: 18px; }
.brand-desc { margin: 0; color: #E5E7EB; }
.footer-col a { color: #E5E7EB; opacity: 0.9; text-decoration: none; }
.footer-col a:hover { color: #fff; opacity: 1; }
@media (max-width: 1280px){ .footer-links { grid-template-columns: repeat(4, minmax(0,1fr)); } }
@media (max-width: 900px){ .footer-links { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px){ .footer-links { grid-template-columns: 1fr; }
	.footer-title { display: flex; align-items: center; justify-content: space-between; gap: 8px; cursor: pointer; }
	.footer-title::after { content: "▾"; font-size: 12px; color: #9CA3AF; }
	.footer-col[aria-collapsed="true"] .footer-list { display: none; }
}

/* Footer brand (unused currently) */

/* To top button */
.to-top { position: fixed; right: 16px; bottom: 16px; width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer; display: grid; place-items: center; background: linear-gradient(135deg, var(--color-hero-start), var(--color-hero-end)); color: #fff; box-shadow: 0 10px 24px rgba(0,0,0,0.18); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; z-index: 60; }
.to-top svg { width: 18px; height: 18px; fill: #fff; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 1024px) {
	.hero-title { font-size: 38px; }
	.card-row { grid-template-columns: 1fr 1fr; }
	.usp-list { grid-template-columns: 1fr 1fr; }
	.people-grid { grid-template-columns: 1fr 1fr; }
	.site-footer .cols { grid-template-columns: 1fr; }
	.stepper-card { padding: 16px; }
	.grid-2 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
	/* Hero mobile/tablet tuning */
	.hero::before { background-position: center 22%; }
	.hero-overlay { background: linear-gradient(180deg, rgba(10,10,10,0.40) 0%, rgba(10,10,10,0.30) 50%, rgba(10,10,10,0.10) 100%); }
	/* Header: show burger, hide inline navigation */
	.menu-toggle { display: inline-flex; }
	.main-nav { display: none; }
	.header-cta .login-link { display: none; }
}

@media (max-width: 640px) {
	.card-row { grid-template-columns: 1fr; }
	.people-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
	/* Hero phone tuning */
	.hero-title { font-size: 30px; }
	.hero-subtitle { font-size: 16px; }
	.hero-content { padding: 72px 0 32px; }
	.hero-features { gap: 12px; flex-wrap: wrap; }
	.hero picture { display: none; }
	.hero::before { background-position: center 30%; }
	.hero-overlay { background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.42) 45%, rgba(10,10,10,0.15) 100%); }
	/* Header buttons on phones */
	.header-cta .btn.btn-primary { display: none; }
	.site-header .phone-inline { display: none; }
	/* Tabs horizontal scroll */
	.tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
	.tabs::-webkit-scrollbar { display: none; }
	/* Cards spacing */
	.card { padding: 14px; }
	.h2 { font-size: 26px; }
	.h3 { font-size: 18px; }
	.btn { min-height: 44px; }
	/* CTA */
	.cta-banner { padding: 40px 0; }
}

/* SEO content */
.seo-content { display: grid; gap: 12px; }
.seo-content.is-collapsed { max-height: 260px; overflow: hidden; position: relative; transition: max-height .4s ease; }
.seo-content.is-collapsed::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 96px; background: linear-gradient(0deg, #fff, rgba(255,255,255,0)); }
.faq-list { margin-top: 16px; display: grid; gap: 8px; }
.faq-item { background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; background: #fff; border: none; cursor: pointer; font-weight: 600; text-align: left; }
.faq-q .caret { width: 16px; height: 16px; transition: transform .2s ease; }
.faq-q[aria-expanded="true"] .caret { transform: rotate(180deg); }
.faq-a { padding: 0 16px 14px; color: var(--color-text); }
.table-responsive { overflow-x: auto; border-radius: 8px; }
.table-responsive table { width: 100%; border-collapse: collapse; background: #fff; }
.table-responsive th, .table-responsive td { border: 1px solid #E5E7EB; padding: 8px 12px; text-align: left; }
.seo-content details { background: #fff; border: 1px solid #E5E7EB; border-radius: 8px; padding: 8px 12px; }
.seo-content summary { cursor: pointer; font-weight: 600; }

