:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #dce3ea;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --soft-blue: #eaf6ff;
  --accent: #67bff0;
  --accent-dark: #1697d5;
  --navy: #0e1724;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
p,
a,
span {
  overflow-wrap: anywhere;
}

.catalog-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(234, 246, 255, 0.9), rgba(244, 248, 251, 0.2) 420px),
    var(--soft);
}

.catalog-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.catalog-header,
.catalog-hero,
.catalog-section,
.detail-section,
.detail-hero,
.catalog-footer {
  width: 100%;
}

.catalog-hero,
.catalog-section,
.detail-section,
.detail-hero {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.catalog-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.catalog-brand span:first-child {
  font-size: 28px;
}

.catalog-brand span:last-child {
  color: var(--accent-dark);
  font-size: 28px;
  letter-spacing: 0;
}

.catalog-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  min-width: 0;
  color: #293342;
  font-weight: 700;
}

.catalog-nav a {
  padding: 10px 4px;
  border-bottom: 2px solid transparent;
}

.catalog-nav a:hover,
.catalog-nav a.is-active {
  color: var(--accent-dark);
  border-bottom-color: var(--accent-dark);
}

.catalog-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.catalog-lang-switch {
  position: relative;
  flex: 0 0 auto;
}

.catalog-lang-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 9px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}

.catalog-lang-trigger:hover,
.catalog-lang-switch.is-open .catalog-lang-trigger {
  background: rgba(103, 191, 240, 0.12);
}

.catalog-lang-trigger svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lang-flag {
  display: inline-flex;
  width: 20px;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
}

.catalog-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  display: none;
  width: 210px;
  overflow: hidden;
  padding: 6px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

.catalog-lang-switch.is-open .catalog-lang-menu {
  display: grid;
}

.catalog-lang-menu button {
  display: grid;
  grid-template-columns: 20px 28px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  color: #202938;
  background: transparent;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: 16px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.catalog-lang-menu button:hover,
.catalog-lang-menu button.is-active {
  background: var(--soft-blue);
}

.lang-check {
  color: #c21d2f;
  font-size: 16px;
  font-weight: 900;
  opacity: 0;
}

.catalog-lang-menu button.is-active .lang-check {
  opacity: 1;
}

.btn,
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover,
.icon-btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  padding: 0 20px;
  color: #06111c;
  background: linear-gradient(135deg, #36c0ff, #92d6ff);
  box-shadow: 0 12px 24px rgba(22, 151, 213, 0.24);
}

.btn-dark {
  padding: 0 20px;
  color: #ffffff;
  background: var(--navy);
}

.btn-soft {
  padding: 0 18px;
  color: var(--navy);
  background: #ffffff;
  border-color: var(--line);
}

.icon-btn {
  width: 46px;
  color: var(--navy);
  background: #ffffff;
  border-color: var(--line);
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(26px, 3.8vw, 48px) clamp(18px, 5vw, 72px) 8px;
}

.catalog-hero-clean {
  grid-template-columns: minmax(0, 780px);
  padding-bottom: 0;
}

.catalog-hero-photo {
  position: relative;
  max-width: none;
  min-height: clamp(520px, 64svh, 640px);
  margin: 0;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(6, 11, 18, 0.92) 0%, rgba(6, 11, 18, 0.74) 28%, rgba(6, 11, 18, 0.34) 54%, rgba(6, 11, 18, 0.08) 100%),
    linear-gradient(180deg, rgba(6, 11, 18, 0.04), rgba(6, 11, 18, 0.34)),
    url("/assets/g63-rent-main-hero.jpg");
  background-position: center, center, 38% 62%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, cover, 112% auto;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 7vw, 104px) clamp(40px, 5vw, 64px);
}

.catalog-hero-photo > div {
  width: min(680px, 100%);
}

.catalog-hero-photo .eyebrow {
  color: #8bd5ff;
}

.catalog-hero-photo h1 {
  color: #ffffff;
  font-size: clamp(44px, 5.8vw, 76px);
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.catalog-hero-photo p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
}

.catalog-hero-photo .btn-soft {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.catalog-hero h1,
.detail-title,
.section-title {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.catalog-hero h1 {
  max-width: 780px;
  font-size: clamp(40px, 4.6vw, 64px);
}

.catalog-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li,
.city-chip {
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-tags li {
  padding: 8px 12px;
  color: #0d5e87;
  background: rgba(103, 191, 240, 0.14);
  border: 1px solid rgba(22, 151, 213, 0.22);
}

.hero-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #08101a;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.88;
}

.hero-media-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(300px, calc(100% - 36px));
  padding: 18px;
  color: #ffffff;
  background: rgba(14, 23, 36, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hero-media-card strong {
  display: block;
  color: #8bd5ff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.hero-media-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.catalog-section,
.detail-section {
  padding: 36px clamp(18px, 5vw, 72px);
}

#catalog.catalog-section {
  padding-top: 22px;
}

.fleet-page-hero {
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px) 10px;
}

.fleet-page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--navy);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.fleet-page-section {
  padding-top: 18px;
}

.fleet-page-grid {
  max-width: 1500px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 4.2vw, 52px);
}

.section-lead {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 98px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.filters h2,
.filter-title {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 26px;
  line-height: 1;
}

.filter-group {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.filter-group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.filter-group label,
.filter-label {
  display: block;
  margin-bottom: 9px;
  color: #273244;
  font-size: 14px;
  font-weight: 800;
}

.filter-input,
.filter-select {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #cdd6e0;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 10px 0;
  color: #273244;
  font-weight: 700;
}

.filter-check input {
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: var(--accent-dark);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
  gap: 24px;
}

.catalog-grid-wide {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.car-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
}

.catalog-grid-wide .car-card {
  min-height: 100%;
}

.car-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #eff6fb, #dbe9f3);
}

.car-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.car-card-link:hover img {
  transform: scale(1.035);
}

.car-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 28px;
  color: #8ba1b4;
  text-align: center;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.car-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.car-card-title {
  margin: 0;
  color: var(--navy);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(23px, 2vw, 27px);
  line-height: 1.04;
}

.car-card-title a:hover {
  color: var(--accent-dark);
}

.car-price {
  margin: 10px 0 18px;
  color: #273244;
  font-size: 20px;
  font-weight: 800;
}

.car-price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.car-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 14px;
  margin-bottom: 18px;
}

.car-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #293342;
  font-size: 15px;
  font-weight: 700;
}

.car-spec svg,
.info-card svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.car-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.car-card-actions .btn {
  flex: 1;
  min-height: 44px;
  font-size: 15px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  min-width: 0;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.info-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  color: var(--accent-dark);
}

.info-card h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 22px;
  line-height: 1.06;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.delivery-band {
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(236, 248, 255, 0.86)),
    radial-gradient(circle at 88% 0%, rgba(75, 190, 255, 0.16), transparent 42%);
  border: 1px solid rgba(22, 151, 213, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.delivery-band-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
}

.delivery-band .section-title {
  color: var(--ink);
}

.delivery-band p {
  max-width: 730px;
  color: var(--muted);
  font-size: 18px;
}

.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.city-chip {
  padding: 10px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(22, 151, 213, 0.16);
}

.delivery-note {
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 151, 213, 0.18);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.delivery-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 28px;
}

.seo-section {
  padding-top: 26px;
}

.seo-panel {
  padding: clamp(24px, 4vw, 38px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.seo-panel .section-title {
  max-width: 920px;
  font-size: clamp(30px, 4.4vw, 52px);
}

.seo-panel p:not(.eyebrow) {
  max-width: 980px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.seo-keywords span {
  padding: 8px 11px;
  color: #0d5e87;
  background: rgba(103, 191, 240, 0.12);
  border: 1px solid rgba(22, 151, 213, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.contact-copy .section-title {
  max-width: 720px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
}

.contact-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.contact-btn-primary {
  background: linear-gradient(135deg, #36c0ff, #92d6ff);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(22, 151, 213, 0.18);
}

.catalog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: #647386;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.catalog-footer > div {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.catalog-footer > div span:first-child {
  font-size: 20px;
  font-weight: 800;
}

.catalog-footer > div span:last-child {
  max-width: 70ch;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-weight: 800;
}

.footer-links a {
  color: #28364a;
}

.footer-links a:hover {
  color: var(--accent-dark);
}

.legal-main {
  padding: 50px clamp(18px, 5vw, 72px) 70px;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.legal-card h1 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
}

.legal-card h2 {
  margin: 32px 0 10px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 24px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 17px;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-meta {
  margin: 12px 0 0;
  color: #8090a3;
  font-weight: 700;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-weight: 900;
}

.company-details {
  margin: 18px 0 8px;
}

.company-details summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  color: var(--accent-dark);
  background: transparent;
  border: 1px solid rgba(22, 151, 213, 0.32);
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.company-details summary:hover {
  color: #06111c;
  background: rgba(103, 191, 240, 0.1);
}

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

.company-details[open] summary {
  margin-bottom: 14px;
}

.company-details div {
  display: grid;
  gap: 6px;
  max-width: 420px;
  padding: 18px;
  color: #273244;
  background: var(--soft-blue);
  border: 1px solid rgba(22, 151, 213, 0.2);
  border-radius: 8px;
}

.partner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 72px) 22px;
}

.partner-hero-copy {
  min-width: 0;
  padding: clamp(26px, 5vw, 56px);
  color: var(--ink);
  background:
    radial-gradient(ellipse at 24% 50%, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.46) 62%, rgba(255, 255, 255, 0.12) 82%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(236, 248, 255, 0.24)),
    url("/assets/g63-rent-main-hero.jpg");
  background-position: center 62%;
  background-size: cover;
  border: 1px solid rgba(22, 151, 213, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.09);
}

.partner-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

.partner-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  color: #344155;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 740;
  line-height: 1.48;
}

.partner-hero-copy .btn-soft {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(22, 151, 213, 0.18);
}

.partner-hero-card {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: clamp(24px, 4vw, 36px);
  background:
    radial-gradient(circle at 82% 18%, rgba(103, 191, 240, 0.3), transparent 30%),
    #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.partner-hero-card strong {
  color: var(--navy);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.partner-hero-card span {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.5;
}

.partner-section {
  padding-top: 48px;
}

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

.partner-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.partner-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--accent-dark);
  background: var(--soft-blue);
  border-radius: 999px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
}

.partner-card h3 {
  margin: 20px 0 10px;
  color: var(--navy);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 24px;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
}

.partner-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  width: auto;
  margin: 28px clamp(18px, 5vw, 72px) 70px;
  padding: clamp(24px, 4vw, 38px);
  background: #ffffff;
  border: 1px solid rgba(22, 151, 213, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.partner-highlight p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.5;
}

.content-hero {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 72px) 18px;
}

.content-hero > div {
  padding: clamp(28px, 5vw, 58px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 248, 255, 0.88)),
    radial-gradient(circle at 90% 8%, rgba(75, 190, 255, 0.2), transparent 38%);
  border: 1px solid rgba(22, 151, 213, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.09);
}

.delivery-hero > div {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(360px, 36vw, 500px);
  background: #f6fbff;
}

.delivery-hero > div::before,
.delivery-hero > div::after {
  position: absolute;
  content: "";
  inset: 0;
}

.delivery-hero > div::before {
  z-index: -2;
  inset: -2px;
  background: url("/assets/dostawa-auto-bg.jpg") center right / cover no-repeat;
}

.delivery-hero > div::after {
  z-index: -1;
  background:
    radial-gradient(ellipse at 24% 50%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.42) 58%, rgba(255, 255, 255, 0.06) 78%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 42%, rgba(236, 248, 255, 0.36) 68%, rgba(236, 248, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0.04));
}

.delivery-hero h1,
.delivery-hero p:not(.eyebrow) {
  max-width: 680px;
}

.delivery-hero h1 {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
}

.delivery-hero p:not(.eyebrow) {
  color: #344155;
  font-weight: 760;
}

.content-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
}

.content-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
  line-height: 1.48;
}

.company-details strong {
  color: var(--navy);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 20px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 32px;
  align-items: start;
  padding: 42px clamp(18px, 5vw, 72px) 56px;
}

.detail-title {
  margin-bottom: 14px;
  font-size: clamp(38px, 6vw, 72px);
}

.detail-lead {
  max-width: 780px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.gallery-main {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111827;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.thumb {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  padding: 0;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.thumb.is-active {
  border-color: var(--accent-dark);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-panel {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
}

.price-panel {
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(233, 246, 255, 0.92)),
    #ffffff;
  border: 1px solid rgba(22, 151, 213, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.price-panel h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span:last-child {
  color: var(--accent-dark);
  font-weight: 800;
}

.auto-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(22px, 3.2vw, 42px);
  align-items: start;
  width: 100%;
  max-width: 1480px;
  margin-right: auto;
  margin-left: auto;
  padding: clamp(28px, 4vw, 48px) clamp(18px, 5vw, 72px) 28px;
}

.auto-hero-copy {
  min-width: 0;
  padding-top: clamp(8px, 1.4vw, 22px);
}

.auto-hero-copy .detail-title {
  max-width: 820px;
}

.auto-hero-copy .detail-lead {
  max-width: 760px;
}

.auto-hero-media {
  overflow: hidden;
  width: 100%;
  max-width: 720px;
  min-height: 0;
  justify-self: end;
  background:
    radial-gradient(circle at 20% 15%, rgba(103, 191, 240, 0.24), transparent 34%),
    linear-gradient(135deg, #101927, #eaf6ff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.auto-hero-media > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.auto-photo-gallery {
  display: grid;
  gap: 8px;
  height: 100%;
  padding: 8px;
}

.auto-photo-main {
  width: 100%;
  height: clamp(320px, 30vw, 460px);
  min-height: 0;
  max-height: 460px;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 6px;
  cursor: zoom-in;
}

.auto-photo-thumbs {
  display: grid;
  grid-auto-columns: minmax(112px, 1fr);
  grid-auto-flow: column;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 2px;
  scrollbar-color: rgba(22, 151, 213, 0.45) rgba(15, 23, 42, 0.08);
  scrollbar-width: thin;
}

.auto-photo-thumbs img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  cursor: zoom-in;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.auto-photo-thumbs img:hover {
  border-color: rgba(22, 151, 213, 0.36);
  transform: translateY(-1px);
}

.auto-hero-grid.is-compact-auto-hero {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 410px);
  grid-template-areas:
    "media pricing"
    "copy pricing";
  gap: clamp(18px, 2.4vw, 34px);
  max-width: 1580px;
  padding-top: clamp(20px, 3vw, 34px);
}

.auto-hero-grid.is-compact-auto-hero .auto-hero-media {
  grid-area: media;
  max-width: none;
  justify-self: stretch;
}

.auto-hero-grid.is-compact-auto-hero .auto-hero-copy {
  grid-area: copy;
  padding-top: 0;
}

.auto-hero-grid.is-compact-auto-hero .detail-title {
  max-width: 900px;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 0.98;
}

.auto-hero-grid.is-compact-auto-hero .detail-lead {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: 17px;
}

.auto-hero-grid.is-compact-auto-hero .auto-photo-main {
  height: clamp(360px, 34vw, 560px);
  max-height: 560px;
}

.auto-hero-grid.is-compact-auto-hero .auto-photo-thumbs {
  grid-auto-columns: minmax(150px, 1fr);
  grid-template-rows: 1fr;
}

.auto-pricing-panel.is-hero-pricing {
  grid-area: pricing;
  align-self: start;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.auto-pricing-panel.is-hero-pricing > .eyebrow,
.auto-pricing-panel.is-hero-pricing > .section-title {
  display: none;
}

.auto-pricing-panel.is-hero-pricing .auto-pricing-grid.rental-pricing-layout {
  margin-top: 0;
}

.auto-pricing-panel.is-hero-pricing .rental-tables {
  grid-template-columns: 1fr;
  gap: 14px;
}

.auto-pricing-panel.is-hero-pricing .rental-table-card {
  color: #dbeafe;
  background:
    radial-gradient(circle at 88% 10%, rgba(103, 191, 240, 0.22), transparent 34%),
    linear-gradient(135deg, #0e1724, #132235);
  border: 1px solid rgba(103, 191, 240, 0.16);
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
}

.auto-pricing-panel.is-hero-pricing .rental-table-head {
  padding: 18px 20px 13px;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.auto-pricing-panel.is-hero-pricing .rental-table-head span {
  color: #8bd5ff;
  font-size: clamp(25px, 2.1vw, 34px);
}

.auto-pricing-panel.is-hero-pricing .rental-table-head strong {
  color: rgba(219, 234, 254, 0.72);
}

.auto-pricing-panel.is-hero-pricing .rental-table-row {
  padding: 10px 20px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.auto-pricing-panel.is-hero-pricing .rental-period {
  color: rgba(219, 234, 254, 0.9);
  font-size: clamp(15px, 1.1vw, 18px);
}

.auto-pricing-panel.is-hero-pricing .rental-value strong {
  color: #8bd5ff;
  font-size: clamp(18px, 1.45vw, 23px);
}

.auto-pricing-panel.is-hero-pricing .rental-value em {
  color: rgba(219, 234, 254, 0.72);
}

.auto-pricing-panel.is-hero-pricing .rental-table-row-extra {
  background: rgba(103, 191, 240, 0.1);
}

.auto-pricing-panel.is-hero-pricing .rental-deposit-card {
  grid-template-columns: auto minmax(0, 1fr) auto;
  max-width: none;
  min-height: 0;
  margin-top: 12px;
  padding: 13px 16px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(236, 248, 255, 0.9)),
    #ffffff;
  border-color: rgba(22, 151, 213, 0.22);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.auto-pricing-panel.is-hero-pricing .rental-deposit-card .rental-foot-icon {
  width: 38px;
  height: 38px;
  color: var(--accent);
  background: rgba(103, 191, 240, 0.13);
  border-color: rgba(22, 151, 213, 0.28);
}

.auto-pricing-panel.is-hero-pricing .rental-deposit-card span:not(.rental-foot-icon) {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.auto-pricing-panel.is-hero-pricing .rental-deposit-card strong {
  color: var(--accent);
  font-size: clamp(18px, 1.45vw, 24px);
}

.auto-pricing-panel.is-hero-pricing .auto-price-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium {
  gap: 12px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(236, 248, 255, 0.86)),
    radial-gradient(circle at 92% 0%, rgba(75, 190, 255, 0.18), transparent 42%);
  border: 1px solid rgba(22, 151, 213, 0.18);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-table-card {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  box-shadow: none;
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-rate-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(233, 248, 255, 0.94));
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-table-head {
  align-items: center;
  padding: 14px 16px 10px;
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-table-head span {
  color: var(--accent);
  font-size: 20px;
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-table-head strong,
.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-period {
  color: var(--muted);
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-value strong {
  color: var(--ink);
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-value em {
  color: rgba(91, 103, 121, 0.84);
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-km-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  padding: 0 12px 12px;
  background: rgba(241, 249, 254, 0.92);
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-km-card .rental-table-head {
  grid-column: 1 / -1;
  margin: 0 -12px 2px;
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-km-card .rental-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  background: #ffffff;
  border: 1px solid rgba(22, 151, 213, 0.13);
  border-radius: 9px;
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-km-card .rental-period {
  font-size: 13px;
  line-height: 1.2;
  word-break: normal;
  overflow-wrap: normal;
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-km-card .rental-value {
  justify-content: flex-end;
  gap: 5px;
  white-space: nowrap;
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-km-card .rental-value strong {
  color: var(--accent);
  font-size: 18px;
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-km-card .rental-value em {
  font-size: 11px;
  letter-spacing: 0.04em;
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-km-card .rental-table-row-extra {
  min-height: 46px;
  background:
    linear-gradient(135deg, rgba(236, 248, 255, 0.98), rgba(255, 255, 255, 0.98));
  border-color: rgba(22, 151, 213, 0.24);
  box-shadow: inset 3px 0 0 rgba(22, 151, 213, 0.68);
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-km-card .rental-table-row-extra .rental-period {
  color: var(--ink);
  font-weight: 850;
}

.auto-pricing-panel.is-hero-pricing .rental-tables-premium .rental-km-card .rental-table-row-extra .rental-value strong {
  color: var(--accent);
  font-size: 16px;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 34px);
  background: rgba(5, 10, 18, 0.86);
}

.photo-lightbox.is-open {
  display: flex;
}

.has-photo-lightbox {
  overflow: hidden;
}

.photo-lightbox-frame {
  position: relative;
  display: grid;
  width: min(1120px, 100%);
  max-height: 92svh;
  gap: 12px;
}

.photo-lightbox-image {
  display: block;
  width: 100%;
  max-height: calc(92svh - 78px);
  object-fit: contain;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
  background: #050a12;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.photo-lightbox-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.photo-lightbox-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 850;
}

.photo-lightbox-btn:hover {
  background: rgba(103, 191, 240, 0.28);
}

.photo-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.photo-lightbox-counter {
  min-width: 72px;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.auto-hero-placeholder {
  display: grid;
  min-height: 360px;
  place-items: end start;
  padding: clamp(22px, 4vw, 38px);
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(14, 23, 36, 0.24), rgba(14, 23, 36, 0.86)),
    radial-gradient(circle at 78% 20%, rgba(103, 191, 240, 0.34), transparent 32%),
    #0e1724;
}

.auto-hero-placeholder span {
  max-width: 420px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 0.98;
}

.auto-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.auto-summary-card {
  min-width: 0;
  min-height: 92px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.auto-summary-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auto-summary-card strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1;
}

.auto-pricing-panel {
  padding: clamp(20px, 3.2vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 255, 0.9)),
    #ffffff;
  border: 1px solid rgba(22, 151, 213, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.auto-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin-top: 18px;
}

.auto-price-card {
  min-width: 0;
  min-height: 118px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.auto-price-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.auto-price-card strong {
  display: block;
  margin-top: 9px;
  color: var(--navy);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.02;
}

.auto-price-card em {
  display: block;
  margin-top: 4px;
  color: var(--accent-dark);
  font-style: normal;
  font-weight: 850;
}

.auto-price-card.is-main {
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 16%, rgba(103, 191, 240, 0.34), transparent 34%),
    linear-gradient(135deg, #0e1724, #162235);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.auto-price-card.is-main span {
  color: rgba(255, 255, 255, 0.72);
}

.auto-price-card.is-main strong {
  color: #8bd5ff;
}

.auto-price-note {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.auto-pricing-grid.rental-pricing-layout {
  display: block;
  max-width: none;
  margin-top: 22px;
}

.rental-tables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rental-table-card {
  overflow: hidden;
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.94)),
    #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.rental-table-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px 15px;
  background:
    radial-gradient(circle at 92% 0%, rgba(103, 191, 240, 0.22), transparent 34%),
    linear-gradient(180deg, #ffffff, #fbfdff);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.rental-table-head span {
  color: var(--navy);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 850;
  line-height: 0.95;
  text-transform: uppercase;
}

.rental-table-head strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.rental-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 16px;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.rental-table-row:last-child {
  border-bottom: 0;
}

.rental-table-row-extra {
  background: rgba(103, 191, 240, 0.08);
}

.rental-table-row-extra .rental-period {
  font-size: clamp(14px, 1.1vw, 17px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rental-period {
  min-width: 0;
  color: #121826;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 850;
  line-height: 1.12;
}

.rental-value {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  white-space: nowrap;
}

.rental-value strong {
  color: var(--accent-dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 850;
  line-height: 1;
}

.rental-value em {
  color: #1f2937;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rental-foot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.rental-foot-card,
.rental-deposit-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(22, 151, 213, 0.26);
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.rental-deposit-card {
  max-width: 520px;
  margin-top: 14px;
}

.rental-foot-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--accent-dark);
  background: rgba(103, 191, 240, 0.13);
  border: 1px solid rgba(22, 151, 213, 0.28);
  border-radius: 50%;
  font-size: 21px;
  font-weight: 850;
}

.rental-foot-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.rental-foot-card span:not(.rental-foot-icon),
.rental-deposit-card span:not(.rental-foot-icon) {
  color: #111827;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rental-foot-card strong,
.rental-deposit-card strong {
  color: var(--accent-dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.auto-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 22px;
  align-items: start;
}

.auto-copy-panel {
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.auto-copy-panel h2,
.auto-copy-panel h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", Inter, sans-serif;
}

.auto-copy-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.auto-copy-panel p + p {
  margin-top: 12px;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-spec {
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-spec strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 24px;
}

.detail-spec span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.mobile-filter-toggle {
  display: none;
}

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

@media (max-width: 940px) {
  .catalog-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand action"
      "nav nav";
    align-items: center;
    gap: 12px;
  }

  .catalog-brand {
    grid-area: brand;
  }

  .catalog-nav {
    grid-area: nav;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 4px;
  }

  .catalog-actions {
    width: 100%;
  }

  .catalog-lang-switch {
    grid-area: action;
    justify-self: end;
  }

  .catalog-actions .btn-primary {
    flex: 1;
  }

  .catalog-hero,
  .delivery-band-inner,
  .detail-hero,
  .auto-hero-grid,
  .auto-copy-grid,
  .partner-hero,
  .partner-highlight {
    grid-template-columns: 1fr;
  }

  .catalog-hero {
    padding-top: 34px;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-media img {
    min-height: 280px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

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

  .auto-pricing-grid {
    grid-template-columns: 1fr;
  }

  .rental-tables,
  .rental-foot-grid {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-hero-card {
    min-height: 0;
  }

  .partner-highlight {
    align-items: stretch;
    margin-right: 18px;
    margin-left: 18px;
  }

  .filters,
  .side-panel {
    position: static;
  }

  .mobile-filter-toggle {
    display: inline-flex;
  }

  .filters {
    display: none;
  }

  .filters.is-open {
    display: block;
  }
}

@media (max-width: 680px) {
  .catalog-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand action"
      "nav nav";
    align-items: center;
    min-height: 64px;
    padding: 10px 14px;
  }

  .catalog-brand {
    grid-area: brand;
  }

  .catalog-brand span:first-child {
    font-size: 23px;
  }

  .catalog-brand span:last-child {
    font-size: 23px;
  }

  .catalog-nav {
    grid-area: nav;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 4px 10px;
    font-size: 12px;
  }

  .catalog-nav a {
    white-space: nowrap;
    padding: 6px 0;
  }

  .catalog-hero,
  .catalog-section,
  .detail-section,
  .detail-hero,
  .auto-hero-grid,
  .partner-hero,
  .content-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .partner-hero {
    padding-top: 26px;
  }

  .partner-hero-copy {
    padding: 24px 18px;
    background-position: 42% 62%;
  }

  .partner-hero-copy h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .content-hero {
    padding-top: 24px;
  }

  .content-hero > div {
    padding: 24px 18px;
  }

  .delivery-hero > div {
    min-height: 0;
  }

  .delivery-hero > div::before {
    background-position: center bottom;
  }

  .delivery-hero > div::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 251, 255, 0.9) 58%, rgba(236, 248, 255, 0.72) 100%);
  }

  .content-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .partner-highlight {
    margin-right: 14px;
    margin-left: 14px;
    width: auto;
  }

  .catalog-hero h1 {
    font-size: clamp(36px, 11.5vw, 50px);
    line-height: 1;
  }

  .catalog-hero p,
  .section-lead,
  .delivery-band p,
  .detail-lead {
    font-size: 16px;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
  }

  .catalog-actions {
    grid-area: action;
    justify-self: end;
    width: auto;
  }

  .catalog-lang-switch {
    grid-area: action;
    justify-self: end;
  }

  .catalog-lang-trigger {
    min-height: 32px;
    padding: 0 7px;
    font-size: 13px;
  }

  .catalog-lang-menu {
    width: min(210px, calc(100vw - 28px));
  }

  .catalog-actions .btn {
    width: auto;
    min-height: 40px;
    padding: 0 12px;
  }

  .hero-media-card {
    position: static;
    width: 100%;
    border-radius: 0;
  }

  .catalog-grid,
  .info-grid,
  .detail-specs,
  .auto-pricing-grid {
    grid-template-columns: 1fr;
  }

  .auto-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .auto-summary-card {
    min-height: 82px;
    padding: 12px;
  }

  .auto-summary-card span {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .auto-summary-card strong {
    font-size: clamp(18px, 6vw, 24px);
  }

  .rental-tables,
  .rental-foot-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rental-table-head {
    align-items: flex-start;
    padding: 16px;
  }

  .rental-table-head span {
    font-size: 25px;
  }

  .rental-table-row {
    gap: 10px;
    padding: 12px 16px;
  }

  .rental-period {
    font-size: 16px;
  }

  .rental-value {
    gap: 6px;
  }

  .rental-value strong {
    font-size: 21px;
  }

  .rental-value em {
    font-size: 10px;
  }

  .rental-foot-card {
    grid-template-columns: auto 1fr;
    padding: 16px;
  }

  .rental-deposit-card {
    grid-template-columns: auto minmax(64px, 1fr) auto;
    gap: 9px;
    width: 100%;
    max-width: 380px;
    margin: 12px auto 0;
    padding: 12px 14px;
  }

  .rental-deposit-card .rental-foot-icon {
    width: 34px;
    height: 34px;
  }

  .rental-deposit-card span:not(.rental-foot-icon) {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .rental-foot-card strong {
    grid-column: 2;
    text-align: left;
    font-size: 24px;
  }

  .rental-deposit-card strong {
    grid-column: auto;
    text-align: right;
    font-size: clamp(18px, 5vw, 22px);
  }

  .auto-hero-grid {
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .auto-hero-grid.is-compact-auto-hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "media"
      "pricing"
      "copy";
    max-width: 100%;
    gap: 18px;
    padding-top: 22px;
    align-items: stretch;
  }

  .auto-hero-grid.is-compact-auto-hero .auto-hero-copy,
  .auto-hero-grid.is-compact-auto-hero .auto-hero-media,
  .auto-hero-grid.is-compact-auto-hero .auto-pricing-panel.is-hero-pricing {
    width: 100%;
    min-width: 0;
  }

  .auto-hero-copy {
    padding-top: 0;
  }

  .auto-hero-grid.is-compact-auto-hero .detail-title {
    font-size: clamp(34px, 12vw, 48px);
  }

  .auto-hero-grid.is-compact-auto-hero .detail-lead {
    font-size: 16px;
  }

  .auto-hero-media {
    max-width: none;
    justify-self: stretch;
  }

  .auto-photo-gallery {
    gap: 7px;
    padding: 7px;
  }

  .auto-photo-main {
    height: min(330px, 84vw);
    max-height: 330px;
  }

  .auto-hero-grid.is-compact-auto-hero .auto-photo-main {
    height: min(340px, 86vw);
    max-height: 340px;
  }

  .auto-photo-thumbs {
    grid-auto-columns: minmax(104px, 40vw);
    gap: 7px;
  }

  .auto-hero-grid.is-compact-auto-hero .auto-photo-thumbs {
    grid-auto-columns: minmax(112px, 44vw);
  }

  .auto-pricing-panel.is-hero-pricing .rental-tables {
    gap: 12px;
  }

  .auto-pricing-panel.is-hero-pricing .rental-table-head {
    padding: 14px 16px 10px;
  }

  .auto-pricing-panel.is-hero-pricing .rental-table-row {
    padding: 9px 16px;
  }

  .auto-pricing-panel.is-hero-pricing .rental-table-head span {
    font-size: 24px;
  }

  .auto-pricing-panel.is-hero-pricing .rental-period {
    font-size: 14px;
  }

  .auto-pricing-panel.is-hero-pricing .rental-value strong {
    font-size: 18px;
  }

  .auto-pricing-panel.is-hero-pricing .rental-deposit-card {
    padding: 10px 12px;
  }

  .rental-deposit-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    justify-content: stretch;
    column-gap: 10px;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 12px 0 0;
    border-radius: 12px;
  }

  .rental-deposit-card .rental-foot-icon {
    width: 34px;
    height: 34px;
  }

  .rental-deposit-card .rental-foot-icon svg {
    width: 19px;
    height: 19px;
  }

  .rental-deposit-card span:not(.rental-foot-icon) {
    min-width: 0;
    font-size: 12px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .rental-deposit-card strong {
    grid-column: auto;
    color: var(--accent-dark);
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1;
    text-align: right;
    white-space: nowrap;
  }

  .car-card-body {
    padding: 16px;
  }

  .car-specs {
    gap: 10px;
  }

  .car-spec {
    font-size: 14px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .car-card-title {
    font-size: 23px;
  }

  .car-card-actions {
    flex-direction: column;
    gap: 0;
  }

  .car-card-actions .btn {
    min-height: 44px;
  }

  .delivery-band-inner {
    padding: 24px 18px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .contact-copy .section-title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .contact-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .contact-btn {
    min-height: 50px;
    font-size: 16px;
  }

  .city-chip {
    font-size: 12px;
    padding: 9px 10px;
  }

  .price-panel {
    padding: 20px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .price-row span:last-child {
    color: #91d8ff;
  }

  .catalog-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 14px;
  }

  .thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 360px) {
  .catalog-nav {
    flex-wrap: wrap;
    gap: 2px 8px;
    font-size: 11px;
  }

  .catalog-nav a {
    padding: 4px 0;
  }

  .catalog-brand span:first-child,
  .catalog-brand span:last-child {
    font-size: 21px;
  }

  .catalog-lang-trigger {
    gap: 5px;
    max-width: 126px;
  }

  .catalog-lang-trigger #currentLangLabel {
    max-width: 64px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
