:root {
  --ink: #1F2523;
  --muted: #657267;
  --line: #E4DDD0;
  --paper: #F4EFE6;
  --panel: #FFFFFF;
  --red: #F6B900;
  --yellow: #F6B900;
  --green: #1F2523;
  --blue: #657267;
  --steel: #657267;
  --shadow: 0 18px 46px rgba(31, 37, 35, 0.08);
  --radius: 16px;
  --container: 1180px;
  --hero-container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff 0, var(--paper) 620px),
    var(--paper);
  line-height: 1.55;
  font-size: 16px;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: 0.65rem 0.85rem;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.utility {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.utility a {
  color: #fff;
  text-decoration: none;
}

.nav {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.25rem, 2.8vw, 2.25rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: min(218px, 22vw);
  height: auto;
}

.menu-toggle {
  display: none;
}

.nav-backdrop {
  display: none;
}

.nav-links {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.16rem, 0.42vw, 0.32rem);
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.nav-links a,
.price-mode-toggle,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.56rem 0.66rem;
  border-radius: var(--radius);
  font-weight: 760;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
}

.nav-links a,
.price-mode-toggle {
  color: var(--ink);
}

.nav-links a:hover {
  background: #f4efe6;
  color: var(--green);
}

.nav-links a.nav-careers {
  background: #fff8d7;
  color: var(--green);
  border-color: rgba(246, 185, 0, 0.34);
  box-shadow: none;
}

.nav-links a.nav-careers:hover,
.nav-links a.nav-careers:focus-visible {
  background: #f0b200;
  color: var(--green);
  border-color: rgba(16, 32, 29, 0.22);
}

.nav-links a.nav-cart {
  gap: 0.45rem;
  border-color: rgba(31, 37, 35, 0.12);
  background: #fff;
}

.price-mode-toggle {
  min-height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.44rem 0.68rem;
  border: 1px solid rgba(31, 37, 35, 0.12);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.price-mode-toggle:hover,
.price-mode-toggle:focus-visible {
  background: #f9f6ef;
  border-color: #d7cebf;
}

.price-mode-toggle span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-mode-toggle strong {
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-cart-quick {
  display: none;
}

.nav-cart strong,
.nav-cart-quick strong {
  min-width: 1.45rem;
  height: 1.45rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1;
}

.nav-cart-icon {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-grid;
  place-items: center;
}

.nav-cart-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  background: var(--red);
  color: var(--ink);
  border-color: var(--red);
  box-shadow: none;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button.career-cta {
  background: var(--yellow);
  color: var(--green);
  border-color: var(--yellow);
  box-shadow: none;
}

.button.career-cta:hover,
.button.career-cta:focus-visible {
  background: #f0b200;
  border-color: #f0b200;
  color: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 0;
  background: #005b9a;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(0, 91, 154, 0.34) 0%, rgba(0, 91, 154, 0.16) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.98;
}

.hero-inner,
.section,
.footer-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  width: min(var(--hero-container), calc(100% - 32px));
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: grid;
  align-content: center;
  padding: 5.7rem 0 5.9rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.14;
  font-weight: 700;
}

h1 {
  max-width: 820px;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(2.45rem, 6vw, 5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}

h3 {
  font-size: 1.05rem;
}

.lead {
  max-width: 720px;
  margin: 1.15rem 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  color: rgba(255, 255, 255, 0.88);
}

.actions {
  margin-top: 1.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.section {
  padding: 3.8rem clamp(1.25rem, 2.6vw, 2rem);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.25rem;
  margin-bottom: 1.65rem;
}

.section-header > div {
  max-width: 760px;
}

.section-header p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
}

.card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(23, 35, 34, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

[data-search-card] {
  min-width: 0;
  display: flex;
}

[data-search-card] .card {
  width: 100%;
  height: 100%;
}

.card.no-image .card-body {
  min-height: 210px;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 95, 69, 0.25);
  box-shadow: var(--shadow);
}

.card > a {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0 1.1rem 1.05rem;
}

.card-media {
  aspect-ratio: 4 / 3;
  background: #f4efe6;
  display: grid;
  place-items: center;
  color: var(--muted);
  overflow: hidden;
  position: relative;
  border-radius: 16px 16px 0 0;
}

.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.card.rental-card .card-media {
  background: #fff;
}

.card.rental-card .card-media img {
  object-fit: contain;
  object-position: center;
}

.card-body {
  padding: 1.05rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  min-height: 0;
}

.card-body p {
  margin: 0;
  color: var(--muted);
}

.card-cta {
  margin-top: auto;
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(31, 37, 35, 0.12);
  border-radius: 7px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: none;
}

.card-cart-button,
.cart-add-button {
  width: calc(100% - 2.2rem);
  min-height: 40px;
  margin: 0 1.1rem 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 37, 35, 0.14);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.card-actions .card-cta {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  text-decoration: none;
}

.card-actions .card-cart-button {
  flex: 0 0 56px;
  width: 56px;
  min-width: 56px;
  min-height: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
}

.cart-button-icon {
  width: 21px;
  height: 21px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-cart-button:hover,
.cart-add-button:hover {
  border-color: rgba(31, 37, 35, 0.26);
  background: #f8f4ed;
  transform: translateY(-1px);
}

[data-cart-add].is-added {
  border-color: rgba(31, 37, 35, 0.18);
  background: #eef3ee;
  color: var(--ink);
}

.cart-fly-clone {
  position: fixed;
  z-index: 180;
  pointer-events: none;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(31, 37, 35, 0.24);
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  transition:
    transform 1180ms cubic-bezier(0.2, 0.75, 0.18, 1),
    opacity 1180ms ease,
    border-radius 1180ms ease;
}

.cart-fly-clone.is-flying {
  border-radius: 999px;
  opacity: 0.18;
  transform: translate3d(var(--cart-fly-x), var(--cart-fly-y), 0) scale(0.16);
}

.nav-cart.is-cart-pulse,
.nav-cart-quick.is-cart-pulse {
  animation: cart-target-pulse 760ms ease;
}

.nav-cart.is-cart-pulse strong,
.nav-cart-quick.is-cart-pulse strong {
  animation: cart-count-pop 760ms ease;
}

@keyframes cart-target-pulse {
  0%,
  100% {
    transform: translateZ(0) scale(1);
  }
  42% {
    transform: translateZ(0) scale(1.04);
    box-shadow: 0 0 0 5px rgba(246, 185, 0, 0.18);
  }
}

@keyframes cart-count-pop {
  0%,
  100% {
    transform: scale(1);
  }
  38% {
    transform: scale(1.22);
  }
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.pill {
  width: fit-content;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: #f4efe6;
  color: var(--green);
  font-weight: 800;
  font-size: 0.78rem;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.65rem;
  margin: 1.2rem 0 1.6rem;
  max-width: 940px;
  align-items: end;
}

.category-search-panel {
  grid-template-columns: minmax(0, 1fr);
}

.category-search-panel .search-status {
  grid-column: 1 / -1;
}

.search-panel input {
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 1rem;
  font: inherit;
  background: #fff;
}

.search-status,
.search-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.search-empty {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
}

.search-more-row {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.search-more-row .button {
  min-width: min(100%, 260px);
}

.search-active .assortment-layout {
  grid-template-columns: 1fr;
}

.band {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quick-entry {
  position: relative;
  z-index: 2;
  margin-top: -4rem;
  margin-bottom: 2rem;
}

.quick-entry-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.hero-search,
.trust-strip {
  background: #fff;
  border: 1px solid rgba(223, 231, 229, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-search {
  padding: clamp(1.15rem, 2vw, 1.55rem);
  border-color: rgba(246, 185, 0, 0.42);
}

.hero-search label {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-weight: 900;
}

.hero-search div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
}

.hero-search input {
  min-height: 58px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 1rem;
  font: inherit;
  background: #f9fbf8;
}

.hero-search input:focus,
.search-panel input:focus {
  outline: none;
  border-color: rgba(246, 185, 0, 0.88);
  box-shadow: 0 0 0 4px rgba(246, 185, 0, 0.14);
}

.hero-search-examples {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-search-examples a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.trust-strip {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.trust-strip span {
  display: grid;
  gap: 0.25rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.trust-strip strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.home-career-section {
  padding-top: 3rem;
  padding-bottom: 1.2rem;
}

.home-deal-section {
  background: transparent;
}

.home-career-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 1.2rem;
  align-items: stretch;
  padding: clamp(1rem, 3vw, 1.35rem);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 32, 29, 0.98), rgba(28, 78, 56, 0.94)),
    var(--green);
  color: #fff;
  box-shadow: var(--shadow);
}

.home-career-copy {
  display: grid;
  align-content: center;
  padding: clamp(0.4rem, 2vw, 1rem);
}

.home-career-copy h2 {
  max-width: 620px;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.home-career-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.home-career-copy .actions {
  margin-top: 1.25rem;
}

.home-career-copy .button.secondary.light {
  border-color: rgba(255, 255, 255, 0.72);
}

.home-career-media {
  position: relative;
  min-height: clamp(360px, 38vw, 500px);
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.home-career-slides {
  position: absolute;
  inset: 0;
}

.home-career-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 720ms ease, transform 4.2s ease;
}

.home-career-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-career-slide img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.home-career-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(16, 32, 29, 0.65), rgba(16, 32, 29, 0.04) 62%);
}

.home-career-stats {
  position: absolute;
  inset-inline: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.home-career-stats span {
  display: grid;
  gap: 0.12rem;
  padding: 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
}

.home-career-stats strong {
  color: var(--yellow);
  line-height: 1;
  font-size: 1.15rem;
}

.platform-section {
  padding-top: 4rem;
}

.customer-callout-section {
  padding: 3rem 0 1rem;
}

.customer-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 35, 34, 0.95), rgba(36, 95, 69, 0.92)),
    var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.customer-callout h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
}

.customer-callout p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.customer-callout ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.customer-callout .button {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
  white-space: nowrap;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem;
}

.platform-card {
  min-height: 210px;
  padding: 1.2rem;
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(23, 35, 34, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.platform-card:hover {
  transform: translateY(-3px);
  border-color: rgba(101, 114, 103, 0.28);
  box-shadow: var(--shadow);
}

.platform-card.primary {
  background:
    linear-gradient(135deg, rgba(31, 37, 35, 0.96), rgba(101, 114, 103, 0.78)),
    var(--ink);
  color: #fff;
}

.platform-icon {
  width: fit-content;
  padding: 0.32rem 0.52rem;
  border-radius: 7px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.platform-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.12;
}

.platform-card small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.platform-card.primary small {
  color: rgba(255, 255, 255, 0.84);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.stat {
  padding: 1.2rem;
  border-left: 4px solid var(--yellow);
  background: #fff;
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.feature-section {
  position: relative;
}

.people-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 1.15rem;
}

.people-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(23, 35, 34, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.people-card:first-child {
  grid-row: span 2;
}

.people-card:hover,
.equipment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.people-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.people-card:first-child img {
  aspect-ratio: 4 / 5.7;
}

.people-card div {
  padding: 1rem;
}

.people-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.equipment-section {
  margin-top: 1.4rem;
  border-top: 0;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.equipment-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(23, 35, 34, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.equipment-card a {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.equipment-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 8px 0 0;
}

.category-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.92)),
    var(--paper);
  border: 1px solid rgba(228, 221, 208, 0.78);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(31, 37, 35, 0.055);
}

.category-section .section-header {
  align-items: center;
  margin-bottom: 1.45rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(228, 221, 208, 0.78);
}

.category-section .section-header > div {
  max-width: 640px;
}

.category-section .section-header h2 {
  font-size: clamp(1.65rem, 2.25vw, 2.08rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.026em;
}

.category-section .section-header p {
  margin-top: 0.38rem;
  font-size: 0.97rem;
}

.category-section .section-header > div::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 4px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 115, 190, 0.72) 0%, rgba(246, 185, 0, 0.72) 100%);
}

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

.category-tile {
  min-height: 240px;
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--ink);
  box-shadow: 0 18px 46px rgba(23, 35, 34, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-tile.image-tile {
  background-image: var(--category-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.category-tile.category-tile--contain-bg {
  background-size: contain;
}

.category-tile:nth-child(1),
.category-tile:nth-child(4) {
  grid-column: span 2;
}

.category-tile-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.01) brightness(1.04);
  transition: transform 220ms ease, filter 220ms ease;
}

.category-tile-img--contain {
  object-fit: contain;
  object-position: center center;
  padding: 0.45rem 0.8rem 0.7rem;
  transform: scale(1);
  filter: saturate(1.04) contrast(1.03) brightness(1.02);
}

.category-tile::before,
.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.category-tile::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(0, 91, 154, 0.08) 100%),
    linear-gradient(90deg, rgba(5, 49, 78, 0.56) 0%, rgba(0, 91, 154, 0.34) 48%, rgba(0, 115, 190, 0.24) 100%);
}

.category-tile::after {
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
}

.category-shine {
  position: absolute;
  top: -25%;
  right: -16%;
  width: 48%;
  height: 150%;
  display: none;
}

.category-tile-content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  padding: 1.1rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.category-name {
  max-width: 90%;
  font-weight: 900;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  line-height: 1.12;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(5, 24, 36, 0.46);
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-tile:hover .category-tile-img {
  transform: scale(1.09);
  filter: saturate(1.08) contrast(1.05);
}

.category-tile:hover .category-tile-img--contain {
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.05) brightness(1.04);
}

.category-action {
  width: fit-content;
  padding: 0.58rem 0.72rem;
  border-radius: 7px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.category-deal-tile {
  min-height: 276px;
  grid-column: span 2;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 1.05rem;
  border: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 18%, #ff6600 0 24%, transparent 24.5%),
    radial-gradient(circle at 12% 88%, #ff6600 0 25%, transparent 25.5%),
    linear-gradient(118deg, var(--yellow) 0 58%, #0073be 58% 100%);
  color: #000;
  text-decoration: none;
}

.category-deal-tile::before {
  content: "";
  position: absolute;
  right: -3.5rem;
  top: -4.5rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: #ff6600;
  z-index: -1;
  opacity: 0.98;
  animation: dealOrbFloat 5.8s ease-in-out infinite;
}

.category-deal-tile::after {
  content: "";
  position: absolute;
  left: -1rem;
  bottom: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: #ff6600;
  z-index: 1;
  animation: dealOrbFloat 6.4s ease-in-out infinite reverse;
}

.deal-brand-badge {
  position: absolute;
  left: 1.05rem;
  top: 1.05rem;
  z-index: 5;
  width: clamp(6.6rem, 14vw, 8.4rem);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  padding: 0.55rem;
  border-radius: 50%;
  background: #ff6600;
  transform: rotate(-9deg);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
  animation: dealBadgePop 3.2s ease-in-out infinite;
}

.deal-badge-huur {
  color: #fff;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(1.5rem, 3.1vw, 2.45rem);
  font-weight: 800;
  line-height: 0.9;
  text-align: center;
  letter-spacing: 0;
}

.deal-badge-deals {
  margin-top: 0;
  padding: 0.1rem 0.42rem 0.18rem;
  background: var(--yellow);
  color: #000;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.25rem);
  font-weight: 800;
  line-height: 1;
  transform: rotate(-7deg);
}

.deal-tape {
  position: absolute;
  left: -18%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  width: 138%;
  color: #000;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.deal-tape span,
.deal-tape strong {
  display: inline-flex;
  align-items: center;
  min-height: 100%;
  padding: 0.25rem 0.7rem 0.34rem;
}

.deal-tape span {
  background: #ff6600;
  color: #fff;
}

.deal-tape strong {
  background: var(--yellow);
  color: #000;
}

.deal-tape-main {
  top: 49%;
  min-height: 42px;
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  transform: rotate(-7deg);
  animation: dealTapeSweep 5.6s ease-in-out infinite;
}

.deal-tape-small {
  top: 68%;
  z-index: 2;
  min-height: 28px;
  font-size: clamp(0.82rem, 1.8vw, 1.15rem);
  transform: rotate(-13deg);
  animation: dealTapeSweepSmall 6.8s ease-in-out infinite;
}

.deal-product-img {
  display: none;
}

.deal-kicker,
.deal-content {
  position: relative;
  z-index: 6;
}

.deal-kicker {
  width: fit-content;
  padding: 0.3rem 0.48rem;
  border-radius: 999px;
  background: #0073be;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.deal-content {
  display: grid;
  justify-self: end;
  align-content: end;
  gap: 0.48rem;
  width: min(54%, 300px);
  min-height: auto;
  padding: 0.72rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 7px 7px 0 #ff6600;
  transform: rotate(-1deg);
}

.deal-content strong {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.9vw, 2.3rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: none;
}

.deal-animated-title {
  display: flex;
  flex-wrap: wrap;
  gap: 0.05em 0.18em;
  max-width: 100%;
}

.deal-word {
  display: inline-flex;
  white-space: nowrap;
}

.deal-animated-title .deal-letter {
  display: inline-block;
  transform-origin: 50% 80%;
  animation: dealLetterLift 2.35s ease-in-out infinite;
  animation-delay: calc(var(--i) * 64ms);
}

.deal-price {
  position: static;
  justify-self: start;
  display: inline-grid;
  width: clamp(5.35rem, 12vw, 6.3rem);
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  gap: 0.02rem;
  padding: 0.62rem;
  border-radius: 50%;
  background: #0073be;
  color: #fff;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.55vw, 2rem);
  font-weight: 800;
  line-height: 0.82;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  animation: dealPricePulse 3.4s ease-in-out infinite;
}

.deal-price-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0.86;
}

.deal-price-number .deal-letter {
  display: inline-block;
  transform-origin: 50% 72%;
  animation: dealNumberPop 2.6s ease-in-out infinite;
  animation-delay: calc(var(--i) * 82ms);
}

.deal-price small {
  display: block;
  margin: 0;
  font-size: 0.34em;
  font-weight: 800;
  line-height: 1;
}

.deal-condition {
  max-width: 205px;
  color: #000;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.deal-action {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.68rem;
  border-radius: 7px;
  background: #000;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.deal-action:hover,
.deal-action:focus-visible {
  background: #fff;
  color: var(--ink);
}

@keyframes dealLetterLift {
  0%,
  72%,
  100% {
    transform: translateY(0);
    color: var(--ink);
  }

  18% {
    transform: translateY(-0.16em) scale(1.07);
    color: #10201d;
  }
}

@keyframes dealNumberPop {
  0%,
  68%,
  100% {
    transform: translateY(0) scale(1);
  }

  22% {
    transform: translateY(-0.08em) scale(1.1);
  }
}

@keyframes dealPricePulse {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.035);
  }
}

@keyframes dealBadgePop {
  0%,
  100% {
    transform: rotate(-9deg) scale(1);
  }

  42% {
    transform: rotate(-7deg) scale(1.06);
  }
}

@keyframes dealTapeSweep {
  0%,
  100% {
    transform: translateX(-1.5%) rotate(-7deg);
  }

  50% {
    transform: translateX(3%) rotate(-7deg);
  }
}

@keyframes dealTapeSweepSmall {
  0%,
  100% {
    transform: translateX(2%) rotate(-13deg);
  }

  50% {
    transform: translateX(-4%) rotate(-13deg);
  }
}

@keyframes dealOrbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0.4rem, -0.3rem, 0) scale(1.04);
  }
}

.deals-page-hero {
  width: min(var(--hero-container), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  padding-top: 4rem;
}

.deals-page-hero h1 {
  max-width: 760px;
}

.deals-page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.deal-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 0.55fr);
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 37, 35, 0.08);
}

.deal-card.featured-deal-card {
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  align-items: stretch;
  background: #fff;
}

.deal-card-media {
  min-height: 310px;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 2vw, 1.45rem);
  background: #fff;
  border-right: 1px solid rgba(31, 37, 35, 0.08);
}

.deal-card-media img {
  width: min(70%, 230px);
  height: auto;
  max-height: 255px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: #fff;
}

.deal-card-media .product-media-fallback {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: grid;
  place-items: center;
  background: #fff;
}

.deal-card-content {
  display: grid;
  align-content: center;
  gap: 0.62rem;
  padding: clamp(1rem, 2.2vw, 1.35rem);
}

.deal-card-label {
  width: fit-content;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: #f4efe6;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.deal-card h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.deal-card strong {
  color: var(--ink);
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
}

.deal-card-condition {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.deal-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.deal-card p {
  margin: 0;
  color: var(--muted);
}

.deal-card .button {
  width: fit-content;
}

.deal-cart-link {
  text-decoration: none;
}

.deals-note {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-list-header {
  margin-top: 0;
}

.product-grid .card-media {
  background: #fff;
}

.product-grid .card-media img {
  object-fit: contain;
  object-position: center;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.popular-products-section {
  margin-top: 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(31, 37, 35, 0.05);
}

.popular-carousel {
  display: grid;
  gap: 1rem;
  overflow: hidden;
}

.popular-carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.25rem 0.25rem 0.65rem;
}

.popular-carousel-track::-webkit-scrollbar {
  display: none;
}

.popular-slide {
  position: relative;
  flex: 0 0 min(430px, calc((100% - 2rem) / 3));
  min-height: 380px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 29, 0.12);
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  scroll-snap-align: start;
  box-shadow: 0 16px 36px rgba(16, 32, 29, 0.13);
}

.popular-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 32, 29, 0.08) 0%, rgba(16, 32, 29, 0.42) 45%, rgba(16, 32, 29, 0.94) 100%),
    linear-gradient(135deg, rgba(246, 185, 0, 0.22), transparent 44%);
  z-index: 1;
}

.popular-slide-image {
  position: absolute;
  inset: 0;
  display: grid;
  background: #fff;
}

.popular-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-slide-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.55rem;
  padding: 1.05rem;
}

.popular-slide-content .pill {
  width: fit-content;
  max-width: 100%;
  background: rgba(246, 185, 0, 0.95);
  color: var(--ink);
  white-space: normal;
}

.popular-slide-content strong {
  color: #fff;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.08;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.popular-slide-content small {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.35;
}

.popular-slide-cta {
  width: fit-content;
  margin-top: 0.2rem;
  padding: 0.58rem 0.72rem;
  border-radius: 7px;
  background: var(--red);
  color: var(--ink);
  font-weight: 800;
}

.popular-slide:hover,
.popular-slide:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(16, 32, 29, 0.2);
}

.popular-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.popular-carousel-controls > button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 32, 29, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
}

.popular-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.38rem;
}

.popular-carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 32, 29, 0.26);
  cursor: pointer;
}

.popular-carousel-dots button.is-active {
  width: 28px;
  background: var(--yellow);
}

.brand-strip-section {
  margin-top: 2rem;
  background:
    linear-gradient(135deg, rgba(16, 32, 29, 0.98), rgba(0, 91, 154, 0.9)),
    var(--ink);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(16, 32, 29, 0.16);
}

.brand-strip-section .section-header {
  align-items: center;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-strip-section .section-header h2,
.brand-strip-section .section-header p,
.brand-strip-section .eyebrow {
  color: #fff;
}

.brand-strip-section .section-header p {
  color: rgba(255, 255, 255, 0.82);
}

.brand-strip-section .button.secondary {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
}

.brand-marquee {
  overflow: hidden;
  position: relative;
  padding: 0.15rem 0.5rem 0.35rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: brand-marquee 30s linear infinite;
  will-change: transform;
}

.brand-marquee-group {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-right: 0.7rem;
}

.brand-tile {
  flex: 0 0 auto;
  width: clamp(104px, 9.5vw, 150px);
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 32, 29, 0.08);
  box-shadow: 0 8px 18px rgba(10, 20, 19, 0.12);
  text-decoration: none;
  overflow: hidden;
}

.brand-tile img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 28px;
  object-fit: contain;
  display: block;
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track {
    animation: none;
    transform: none;
    width: max-content;
  }
}

.service-strip {
  padding-top: 2.5rem;
}

.service-strip .advisor-card {
  width: min(100%, 1040px);
  margin-inline: auto;
  grid-template-columns: 0.66fr 1fr;
}

.service-strip .advisor-card img {
  min-height: 300px;
}

.service-strip .advisor-card > div {
  padding: 1.25rem 1.3rem 1.25rem 0;
}

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

.spotlight-grid .card {
  box-shadow: 0 10px 24px rgba(23, 35, 34, 0.08);
}

.spotlight-grid .card-media {
  height: 180px;
  aspect-ratio: auto;
  background: #fff;
  position: relative;
}

.spotlight-grid .card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  padding: 0.35rem;
}

.spotlight-grid .card-body {
  min-height: 250px;
}

.spotlight-grid h3 {
  font-size: 1.02rem;
  line-height: 1.18;
}

.spotlight-grid .card-body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.spotlight-grid .pill {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.assortment-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.category-sidebar {
  position: sticky;
  top: 132px;
  max-height: calc(100dvh - 156px);
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 35, 34, 0.05);
}

.category-sidebar h2 {
  font-size: 1.35rem;
}

.category-sidebar nav {
  margin-top: 1rem;
  display: grid;
  gap: 0.35rem;
  padding-right: 0.15rem;
}

.category-sidebar a {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.65rem;
  border-radius: 7px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
}

.category-sidebar a:hover {
  background: #f4efe6;
  color: var(--green);
}

.category-sidebar strong {
  color: var(--green);
  font-size: 0.88rem;
}

.category-sidebar::-webkit-scrollbar {
  width: 10px;
}

.category-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.category-sidebar::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(101, 114, 103, 0.32);
  background-clip: content-box;
}

.category-quick-nav {
  margin: 0 0 1.15rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 35, 34, 0.05);
  overflow: hidden;
}

.category-quick-nav summary {
  list-style: none;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.category-quick-nav summary::-webkit-details-marker {
  display: none;
}

.category-quick-nav summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1;
}

.category-quick-nav[open] summary::after {
  content: "-";
}

.category-quick-nav nav {
  display: grid;
  gap: 0.35rem;
  padding: 0 0.75rem 0.85rem;
}

.category-quick-nav a {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.62rem 0.72rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 650;
}

.category-quick-nav a:hover {
  background: #f8f4eb;
}

.category-quick-nav a.is-active {
  background: #f8f4eb;
  color: var(--green);
}

.category-quick-nav strong {
  color: var(--muted);
  font-size: 0.86rem;
}

.assortment-results .section-header {
  align-items: start;
}

.advisor-card {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 1.4rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 35, 34, 0.06);
}

.advisor-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
}

.advisor-card > div {
  padding: 1.5rem 1.5rem 1.5rem 0;
}

.advisor-card p:not(.eyebrow) {
  color: var(--muted);
}

.rental-guide {
  margin-top: 2rem;
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.schaftwagens-hero {
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}

.schaftwagens-hero-grid,
.schaftwagen-instruction-card {
  width: min(var(--hero-container), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  gap: 1.25rem;
  align-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 32, 29, 0.98), rgba(28, 78, 56, 0.94)),
    var(--green);
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.schaftwagens-hero-grid {
  padding: clamp(1.2rem, 4vw, 2.2rem);
}

.schaftwagens-hero-grid p:not(.eyebrow),
.schaftwagen-instruction-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
}

.schaftwagens-hero-grid h1,
.schaftwagen-instruction-copy h2 {
  color: #fff;
}

.schaftwagen-hero-preview,
.schaftwagen-flyer-preview {
  display: block;
  align-self: stretch;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(16, 32, 29, 0.24);
}

.schaftwagen-hero-preview img,
.schaftwagen-flyer-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.schaftwagen-instruction-card {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  padding: 1rem;
}

.schaftwagen-instruction-copy {
  padding: clamp(0.4rem, 2vw, 1rem);
}

.instruction-points {
  margin: 1.1rem 0 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.instruction-points span {
  padding: 0.45rem 0.6rem;
  border-radius: 999px;
  background: rgba(246, 185, 0, 0.15);
  border: 1px solid rgba(246, 185, 0, 0.34);
  color: #fff;
  font-weight: 900;
  font-size: 0.88rem;
}

.schaftwagen-instruction-compact {
  margin: 1.1rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #1F2523, #657267),
    var(--green);
  color: #fff;
  box-shadow: 0 14px 32px rgba(16, 32, 29, 0.12);
}

.schaftwagen-instruction-compact h2 {
  color: #fff;
}

.schaftwagen-instruction-compact p:not(.eyebrow) {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.terms-page {
  padding-top: 3rem;
}

.terms-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: 1.25rem;
  align-items: stretch;
  padding: clamp(1.1rem, 3vw, 1.8rem);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 32, 29, 0.98), rgba(0, 91, 154, 0.88)),
    var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.terms-copy {
  align-self: center;
}

.terms-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.1rem, 3vw, 3.3rem);
  line-height: 0.96;
}

.terms-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
}

.terms-actions {
  margin-top: 1.65rem;
  display: grid;
  gap: 0.75rem;
  max-width: 440px;
}

.terms-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.terms-switch .button,
.terms-download {
  width: 100%;
}

.terms-switch .button {
  min-height: 54px;
  padding: 0.58rem 0.56rem;
  white-space: normal;
  line-height: 1.08;
  text-align: center;
  font-size: 0.82rem;
}

.terms-download {
  min-height: 46px;
  font-size: 0.88rem;
}

.terms-note {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.terms-details {
  margin-top: 1.15rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  line-height: 1.48;
}

.terms-details h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  line-height: 1.1;
}

.terms-details h3 {
  margin: 1rem 0 0.35rem;
  font-size: 0.98rem;
}

.terms-details h4 {
  margin: 0.8rem 0 0.25rem;
  font-size: 0.9rem;
}

.terms-details p,
.terms-details ul {
  margin: 0.45rem 0;
}

.terms-details ul {
  padding-left: 1.05rem;
}

.terms-preview {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(16, 32, 29, 0.24);
  display: flex;
  flex-direction: column;
}

.terms-preview-label {
  margin: 0;
  padding: 0.9rem 0.95rem 0.45rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-preview-link {
  display: block;
  padding: 0 0.95rem 0.95rem;
}

.terms-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.customer-hero {
  padding-top: 2.5rem;
  padding-bottom: 1.8rem;
}

.customer-hero-grid {
  width: min(var(--hero-container), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.2rem;
  align-items: stretch;
  padding: clamp(1.2rem, 4vw, 2rem);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 35, 34, 0.94), rgba(36, 95, 69, 0.9)),
    var(--ink);
  color: #fff;
}

.customer-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
}

.customer-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

.customer-hero-card {
  display: grid;
  align-content: center;
  gap: 0.55rem;
  padding: 1.2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.customer-hero-card strong {
  color: var(--yellow);
  font-size: 1.35rem;
}

.customer-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.customer-benefits article,
.customer-flow,
.customer-form-layout {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 35, 34, 0.06);
}

.customer-benefits article {
  min-height: 138px;
  padding: 1.05rem 1.1rem;
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.customer-benefits strong {
  font-size: 1.03rem;
}

.customer-benefits span,
.customer-flow span,
.customer-form-layout p {
  color: var(--muted);
}

.customer-flow {
  padding: 1.25rem;
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
  gap: 1.15rem;
  box-shadow: 0 12px 30px rgba(23, 35, 34, 0.08);
}

.customer-flow ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  list-style: none;
  counter-reset: steps;
}

.customer-flow li {
  counter-increment: steps;
  min-height: 160px;
  padding: 1rem 1.05rem;
  border-radius: 8px;
  background: #f8f4ed;
}

.customer-flow li::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  color: var(--yellow);
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.customer-flow strong,
.customer-flow span {
  display: block;
}

.customer-benefits-section {
  padding-bottom: 1.6rem;
}

.customer-flow-section {
  padding-top: 1.2rem;
  padding-bottom: 2.4rem;
}

.customer-form-section {
  padding-top: 2.2rem;
}

.customer-form-layout {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1.2rem;
  align-items: start;
}

.customer-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.customer-form fieldset {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.customer-form legend {
  padding: 0 0.45rem;
  color: var(--green);
  font-weight: 900;
}

.customer-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 900;
}

.customer-form .full,
.customer-form button {
  grid-column: 1 / -1;
}

.customer-form label span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.customer-form input,
.customer-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0.8rem;
  font: inherit;
  background: #f9fbf8;
}

.customer-form input[type="file"] {
  padding: 0.62rem;
  background: #fff;
}

.customer-form .check,
.option-list label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 750;
}

.customer-form .check input,
.option-list input {
  width: auto;
  margin-top: 0.2rem;
}

.option-list {
  display: grid;
  gap: 0.45rem;
  padding: 0.8rem;
  border-radius: var(--radius);
  background: #f8f4ed;
}

.option-list p {
  margin: 0 0 0.2rem;
  color: var(--ink);
  font-weight: 900;
}

.rental-guide p {
  color: var(--muted);
}

.guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.guide-links a {
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  text-decoration: none;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-list details {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f4ed;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 0.65rem 0 0;
}

.equipment-card div {
  padding: 1.1rem 1.15rem 1.2rem;
  flex: 1;
}

.equipment-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.locations-hero {
  padding-top: 4rem;
}

.locations-hero-grid {
  width: min(var(--hero-container), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.25rem;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(23, 35, 34, 0.95), rgba(36, 95, 69, 0.9)),
    #1F2523;
  color: #fff;
  border-radius: 8px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  overflow: hidden;
  position: relative;
}

.locations-hero-grid::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 380px;
  height: 260px;
  background: rgba(246, 185, 0, 0.16);
  transform: rotate(-18deg);
}

.locations-hero-grid > * {
  position: relative;
  z-index: 1;
}

.locations-hero-grid h1 {
  max-width: 760px;
}

.locations-hero-grid p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.locations-hero-card {
  display: grid;
  align-content: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1.1rem;
}

.locations-hero-card strong {
  font-size: 1.2rem;
}

.locations-hero-card span {
  color: rgba(255, 255, 255, 0.78);
}

.location-intro-section {
  padding-top: 0;
}

.location-intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.location-intro article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.15rem;
}

.location-intro span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--yellow);
  font-weight: 800;
}

.location-intro h2 {
  font-size: 1.2rem;
}

.location-intro p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.locations-section {
  padding-top: 2rem;
}

.contact-page-section {
  padding-top: 4.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-card,
.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card {
  padding: clamp(1.2rem, 2vw, 1.7rem);
  display: grid;
  gap: 1rem;
}

.contact-card > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.contact-block {
  display: grid;
  gap: 0.45rem;
  padding-top: 0.2rem;
}

.contact-block h2 {
  font-size: 1.18rem;
}

.contact-block p {
  margin: 0;
  color: var(--muted);
}

.contact-block address {
  display: grid;
  gap: 0.18rem;
  font-style: normal;
}

.contact-block address a {
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 37, 35, 0.14);
}

.contact-social .social-links {
  margin-top: 0.35rem;
}

.contact-social .social-links a {
  border-color: rgba(31, 37, 35, 0.1);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(31, 37, 35, 0.08);
}

.contact-social .social-links a:hover,
.contact-social .social-links a:focus-visible {
  color: var(--green);
  background: var(--yellow);
  border-color: var(--yellow);
}

.contact-form-card {
  padding: clamp(1.2rem, 2vw, 1.7rem);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 800;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.82rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: #faf9f5;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--muted);
}

.contact-form .check input {
  width: auto;
  margin-top: 0.2rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.location-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 35, 34, 0.07);
}

.location-media {
  height: 210px;
  background: #e8eeeb;
  overflow: hidden;
}

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

.location-body {
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
}

.location-body .eyebrow {
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.location-body h3 {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.2;
}

.location-body address {
  display: grid;
  gap: 0.05rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
  line-height: 1.45;
}

.location-body address span:first-child {
  color: var(--ink);
  font-weight: 600;
}

.location-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.location-change-section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.location-change-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(0, 115, 190, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 246, 255, 0.92)),
    #fff;
  box-shadow: 0 16px 36px rgba(0, 91, 154, 0.1);
}

.location-change-banner h2 {
  margin: 0.15rem 0 0.35rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.location-change-banner p {
  margin: 0;
  color: var(--muted);
}

.location-change-banner .button {
  white-space: nowrap;
}

.location-notice {
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(0, 115, 190, 0.18);
  border-radius: 10px;
  background: #fff8df;
  color: #073f63;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.contact-locations-section {
  padding-top: 2rem;
}

.contact-location-change {
  margin-bottom: 1rem;
}

.contact-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-location-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 35, 34, 0.07);
}

.contact-location-card.has-notice {
  border-color: rgba(0, 115, 190, 0.24);
}

.contact-location-card img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  background: #e8eeeb;
}

.contact-location-card > div {
  display: grid;
  gap: 0.62rem;
  padding: 1rem;
}

.contact-location-card h3 {
  font-size: 1.04rem;
}

.contact-location-card address {
  display: grid;
  gap: 0.05rem;
  color: var(--muted);
  font-style: normal;
  line-height: 1.4;
}

.contact-location-card address span:first-child {
  color: var(--ink);
  font-weight: 650;
}

.contact-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.contact-location-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(0, 115, 190, 0.16);
  border-radius: 999px;
  background: #f8fcff;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.contact-location-actions a:hover,
.contact-location-actions a:focus-visible {
  border-color: var(--yellow);
  background: var(--yellow);
}

@media (max-width: 980px) {
  .location-change-banner {
    grid-template-columns: 1fr;
  }

  .location-change-banner .button {
    justify-self: start;
  }

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

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

.location-actions .button {
  min-height: 38px;
  padding: 0.55rem 0.72rem;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: none;
}

.about-hero {
  padding-top: 2.5rem;
  padding-bottom: 1.7rem;
}

.about-hero-grid {
  width: min(var(--hero-container), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 35, 34, 0.96), rgba(36, 95, 69, 0.9)),
    var(--ink);
  color: #fff;
  overflow: hidden;
}

.about-hero-grid h1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.about-hero-grid p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.about-hero-grid img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border-radius: 8px;
  object-fit: cover;
}

.about-intro-section {
  padding-top: 1.6rem;
  padding-bottom: 2rem;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-intro-grid article {
  min-height: 160px;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 35, 34, 0.06);
}

.about-intro-grid span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--yellow);
  font-weight: 800;
}

.about-intro-grid h2 {
  font-size: 1.18rem;
}

.about-intro-grid p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.about-story-section {
  padding-top: 1.4rem;
  padding-bottom: 2rem;
}

.about-story-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 35, 34, 0.07);
}

.about-story-row + .about-story-row {
  margin-top: 1rem;
}

.about-story-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
}

.about-story-row article {
  padding: clamp(0.5rem, 2vw, 1rem);
}

.about-story-row p:not(.eyebrow) {
  color: var(--muted);
}

.about-photo {
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
  background: #edf3f0;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.about-cta-section {
  padding-top: 1.6rem;
}

.career-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 32, 29, 0.9), rgba(16, 32, 29, 0.58)),
    var(--career-image),
    var(--green);
  background-size: cover;
  background-position: center;
}

.career-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(16, 32, 29, 0.82), rgba(16, 32, 29, 0.22) 45%),
    linear-gradient(90deg, rgba(16, 32, 29, 0.94) 0%, rgba(16, 32, 29, 0.66) 52%, rgba(16, 32, 29, 0.36) 100%);
  pointer-events: none;
}

.career-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--career-image) center / cover no-repeat;
}

.career-hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.career-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--hero-container), calc(100% - 32px));
  min-height: 540px;
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 5.5rem 0 5.1rem;
}

.career-hero h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5.4vw, 4.6rem);
}

.career-hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.button.secondary.light {
  background: #fff;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.75);
}

.career-hero-stats {
  width: min(760px, 100%);
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.career-hero-stats span {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.career-hero-stats strong {
  color: var(--yellow);
  font-size: 2rem;
  line-height: 1;
}

.career-open-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 1.15rem;
  align-items: stretch;
}

.career-open-card,
.career-video,
.career-steps article,
.career-benefits article,
.career-job,
.career-extra-grid a,
.career-apply-grid,
.career-form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 35, 34, 0.06);
}

.career-open-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.career-open-card p:not(.eyebrow),
.career-job p,
.career-benefits span,
.career-extra-grid small,
.career-apply-grid p {
  color: var(--muted);
}

.career-open-card a {
  color: var(--blue);
  font-weight: 900;
}

.career-video {
  overflow: hidden;
  background: var(--green);
}

.career-video iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.career-steps,
.career-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.career-steps article,
.career-benefits article {
  padding: 1.1rem;
}

.career-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green);
  font-weight: 900;
}

.career-steps p,
.career-benefits span {
  margin: 0.55rem 0 0;
}

.career-benefits-section {
  padding-top: 1rem;
}

.career-benefits article {
  min-height: 140px;
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.career-benefits strong {
  font-size: 1.02rem;
}

.career-count {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f4efe6;
  color: var(--green);
  font-weight: 900;
  white-space: nowrap;
}

.career-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.career-filter {
  min-height: 40px;
  padding: 0.55rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.career-filter:hover,
.career-filter.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.career-jobs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.career-job {
  min-height: 100%;
  padding: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.career-job-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.career-job-top span:not(.pill) {
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: #f1f4f2;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.career-job h3 {
  font-size: 1.18rem;
}

.career-job details {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.career-job summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 900;
}

.career-job-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  padding-top: 0.75rem;
}

.career-job-details h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.career-job-details ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.career-job-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.career-extra-section {
  padding-top: 1rem;
}

.career-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.career-extra-grid a {
  min-height: 150px;
  padding: 1.05rem;
  display: grid;
  align-content: space-between;
  gap: 0.55rem;
  text-decoration: none;
}

.career-extra-grid span {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.career-extra-grid strong {
  font-size: 1.1rem;
}

.career-apply-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.career-apply-section {
  scroll-margin-top: 8.5rem;
}

@media (max-width: 720px) {
  .career-apply-section {
    scroll-margin-top: 7rem;
  }
}

.career-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.career-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: #f4efe6;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.career-selected {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 8px;
  background: #fff7da;
  color: var(--ink) !important;
  font-weight: 900;
}

.career-form-card {
  min-height: 360px;
  padding: 1rem;
  box-shadow: none;
}

.career-native-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

.career-native-form label {
  display: grid;
  gap: 0.38rem;
  min-width: 0;
}

.career-native-form label.full,
.career-native-form .full {
  grid-column: 1 / -1;
}

.career-native-form label span {
  color: var(--ink);
  font-weight: 900;
  font-size: 0.92rem;
  line-height: 1.25;
}

.career-native-form label strong {
  color: var(--red);
}

.career-native-form input,
.career-native-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8d0c4;
  border-radius: 7px;
  padding: 0.72rem 0.82rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.career-native-form input:focus,
.career-native-form textarea:focus {
  outline: 3px solid rgba(101, 114, 103, 0.16);
  border-color: var(--blue);
}

.career-native-form textarea {
  min-height: 118px;
  resize: vertical;
}

.career-native-form .form-note {
  margin: 0;
  padding: 0.85rem;
  border-radius: 8px;
  background: #fff7da;
  color: var(--ink);
  font-weight: 900;
}

.career-native-form .form-note a,
.career-native-form .form-status a {
  color: var(--blue);
}

.career-native-form button[disabled] {
  opacity: 0.68;
  cursor: progress;
}

@media (min-width: 980px) {
  .career-native-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.form-status.success {
  color: #166534;
}

.form-status.error {
  color: #9d1625;
}

.thanks-page {
  min-height: 68vh;
  display: grid;
  align-items: center;
}

.thanks-card {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.thanks-card h1 {
  margin: 0.15rem 0 0.75rem;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.thanks-card > p {
  max-width: 720px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.thanks-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.thanks-steps article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}

.thanks-steps span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent);
  font-weight: 900;
}

.thanks-steps strong {
  display: block;
  margin-bottom: 0.35rem;
}

.thanks-steps p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .thanks-page {
    align-items: start;
  }

  .thanks-card {
    border-radius: 18px;
  }

  .thanks-steps {
    grid-template-columns: 1fr;
  }
}

.dashboard-page {
  min-height: 70vh;
}

.dashboard-login,
.dashboard-app {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.dashboard-login {
  max-width: 520px;
  margin: 0 auto;
}

.dashboard-login h1,
.dashboard-top h1 {
  margin: 0.2rem 0 0.5rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.dashboard-login-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.dashboard-login-form label,
.dashboard-filters label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 700;
}

.dashboard-login-form input,
.dashboard-filters input,
.dashboard-filters select,
.dashboard-request-side select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 48px;
  padding: 0.8rem 1rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.dashboard-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dashboard-workbase {
  margin-bottom: 1.5rem;
  padding: clamp(1rem, 2.5vw, 1.25rem);
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 99, 160, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(252, 248, 240, 0.98), rgba(246, 242, 233, 0.98));
}

.dashboard-workbase-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.dashboard-workbase-top h2 {
  margin: 0.2rem 0 0.35rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.dashboard-workbase-top p {
  margin: 0;
  color: var(--muted);
}

.dashboard-workbase-status {
  margin-top: 0.45rem !important;
  font-size: 0.92rem;
  font-weight: 800;
}

.dashboard-workbase-search {
  display: grid;
  gap: 0.45rem;
  min-width: min(100%, 320px);
  color: var(--muted);
  font-weight: 700;
}

.dashboard-workbase-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 48px;
  padding: 0.8rem 1rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.dashboard-workbase-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.dashboard-workbase-summary div {
  display: grid;
  gap: 0.1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.dashboard-workbase-summary span {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
  font-weight: 900;
  color: var(--ink);
}

.dashboard-workbase-summary small {
  color: var(--muted);
  font-weight: 800;
}

.dashboard-workbase-issues {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.dashboard-workbase-issues p {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(188, 122, 0, 0.28);
  border-radius: 12px;
  background: rgba(255, 196, 0, 0.14);
  color: var(--ink);
}

.dashboard-workbase-issues strong {
  flex: 0 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}

.dashboard-workbase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.dashboard-workbase-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  align-self: start;
}

.dashboard-workbase-card-wide {
  margin-bottom: 1rem;
}

.dashboard-workbase-card-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.dashboard-workbase-card h3 {
  margin: 0.2rem 0 0;
  font-size: 1.2rem;
}

.dashboard-workbase-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 800;
  color: var(--ink);
}

.dashboard-workbase-note {
  margin: 0;
  color: var(--muted);
}

.dashboard-workbase-list {
  display: grid;
  gap: 0.75rem;
}

.dashboard-workbase-list-full {
  gap: 0.8rem;
}

.dashboard-workbase-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, var(--paper));
  padding: 0.85rem;
  display: grid;
  gap: 0.5rem;
}

.dashboard-workbase-item-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.dashboard-workbase-primary {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.dashboard-workbase-item-id {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.dashboard-workbase-item h4 {
  margin: 0;
  font-size: 1rem;
}

.dashboard-workbase-item p {
  margin: 0;
  color: var(--muted);
}

.dashboard-workbase-meta {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dashboard-workbase-meta div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 0.45rem;
}

.dashboard-workbase-meta dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dashboard-workbase-meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  min-width: 0;
  overflow-wrap: anywhere;
}

.dashboard-workbase-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.dashboard-workbase-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.dashboard-workbase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.1rem;
}

.dashboard-workbase-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.32rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.dashboard-workbase-action:hover {
  border-color: rgba(0, 99, 160, 0.35);
  background: rgba(0, 99, 160, 0.08);
}

.dashboard-workbase-empty {
  text-align: center;
}

.dashboard-rental-planner {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.dashboard-rental-planner-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.dashboard-rental-planner-header h3 {
  margin: 0.2rem 0 0;
  font-size: 1.25rem;
}

.dashboard-rental-planner-header p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.dashboard-rental-planner-list {
  display: grid;
  gap: 0.7rem;
}

.dashboard-rental-day {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(246, 242, 233, 0.7), rgba(255, 255, 255, 0.95));
}

.dashboard-rental-day-date {
  display: grid;
  align-content: start;
  gap: 0.25rem;
}

.dashboard-rental-day-date strong {
  font-size: 1rem;
}

.dashboard-rental-day-date span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.dashboard-rental-day-events {
  display: grid;
  gap: 0.55rem;
}

.dashboard-rental-event {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.dashboard-rental-event > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 99, 160, 0.1);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.dashboard-rental-event[data-event-type="retour"] > span {
  background: rgba(0, 120, 80, 0.11);
  color: #087047;
}

.dashboard-rental-event strong,
.dashboard-rental-event small {
  display: block;
}

.dashboard-rental-event small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.dashboard-rental-route {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 99, 160, 0.1), transparent 30%),
    #fff;
  box-shadow: var(--shadow);
}

.dashboard-rental-route-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.dashboard-rental-route-header h3 {
  margin: 0.2rem 0 0;
  font-size: 1.25rem;
}

.dashboard-rental-route-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.dashboard-rental-route-actions p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.dashboard-rental-route-list {
  display: grid;
  gap: 0.7rem;
}

.dashboard-rental-route-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(0, 99, 160, 0.08), transparent 34%),
    var(--paper);
}

.dashboard-rental-route-map-status {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.dashboard-rental-route-map .leaflet-control-attribution {
  font-size: 0.68rem;
}

.dashboard-route-marker {
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
}

.dashboard-route-marker span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 3px solid #fff;
  border-radius: 999px 999px 999px 4px;
  background: #e53b35;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transform: rotate(-45deg);
}

.dashboard-route-marker b {
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1;
  transform: rotate(45deg);
}

.dashboard-route-tooltip,
.dashboard-route-popup {
  display: grid;
  gap: 0.3rem;
  max-width: 280px;
}

.dashboard-route-tooltip strong,
.dashboard-route-popup strong {
  color: var(--ink);
}

.dashboard-route-tooltip span,
.dashboard-route-popup span {
  color: var(--muted);
  font-weight: 750;
}

.dashboard-route-tooltip ul,
.dashboard-route-popup ul {
  margin: 0.15rem 0 0;
  padding-left: 1rem;
}

.dashboard-rental-stop {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: start;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(246, 242, 233, 0.66), rgba(255, 255, 255, 0.96));
}

.dashboard-rental-stop-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.dashboard-rental-stop-body {
  min-width: 0;
}

.dashboard-rental-stop h4,
.dashboard-rental-stop p {
  margin: 0;
}

.dashboard-rental-stop p {
  color: var(--muted);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.dashboard-rental-stop small {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-weight: 850;
}

.dashboard-rental-stop-inventory {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.dashboard-rental-stop-inventory span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.2rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 850;
}

.dashboard-rental-stop-route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.32rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.dashboard-rental-stop-route:hover {
  border-color: rgba(0, 99, 160, 0.35);
  background: rgba(0, 99, 160, 0.08);
}

.dashboard-rental-missing {
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem;
  border: 1px solid rgba(188, 122, 0, 0.3);
  border-radius: 14px;
  background: rgba(255, 196, 0, 0.12);
}

.dashboard-rental-missing h4,
.dashboard-rental-missing p {
  margin: 0;
}

.dashboard-rental-missing p {
  color: var(--muted);
  font-weight: 750;
}

.dashboard-rental-missing-item {
  display: grid;
  gap: 0.35rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.dashboard-rental-missing-item strong {
  color: var(--ink);
}

.dashboard-rental-missing-item small {
  color: var(--muted);
  font-weight: 800;
}

.dashboard-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
}

.dashboard-count {
  color: var(--muted);
  font-weight: 700;
}

.dashboard-list {
  display: grid;
  gap: 0.85rem;
}

.dashboard-request,
.dashboard-empty {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 1rem;
}

.dashboard-request {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: 1rem;
  align-items: center;
}

.dashboard-date {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.dashboard-request h2 {
  margin: 0.25rem 0;
  font-size: 1.25rem;
}

.dashboard-request p {
  margin: 0;
  color: var(--muted);
}

.dashboard-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.dashboard-meta a,
.dashboard-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.dashboard-request-workbase {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.85rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(246, 242, 233, 0.72), rgba(255, 255, 255, 0.9));
}

.dashboard-request-workbase[data-state="match"] {
  border-color: rgba(0, 120, 80, 0.28);
  background: linear-gradient(180deg, rgba(216, 241, 228, 0.9), rgba(255, 255, 255, 0.92));
}

.dashboard-request-workbase[data-state="possible"],
.dashboard-request-workbase[data-state="loading"] {
  border-color: rgba(188, 122, 0, 0.28);
  background: linear-gradient(180deg, rgba(255, 230, 148, 0.35), rgba(255, 255, 255, 0.92));
}

.dashboard-request-workbase[data-state="error"] {
  border-color: rgba(160, 50, 35, 0.28);
  background: linear-gradient(180deg, rgba(255, 220, 210, 0.55), rgba(255, 255, 255, 0.92));
}

.dashboard-request-workbase strong {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-request-workbase > span {
  color: var(--ink);
  font-weight: 900;
}

.dashboard-request-workbase p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.dashboard-request-workbase p b {
  color: var(--ink);
}

.dashboard-request-workbase-chips,
.dashboard-request-workbase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.dashboard-request-workbase-chips span,
.dashboard-request-workbase-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.24rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.dashboard-request-workbase-action {
  color: var(--blue);
  cursor: pointer;
}

.dashboard-request-workbase-action:hover {
  border-color: rgba(0, 99, 160, 0.35);
  background: rgba(0, 99, 160, 0.08);
}

.dashboard-request-side {
  display: grid;
  gap: 0.65rem;
}

.dashboard-detail[hidden] {
  display: none;
}

.dashboard-detail {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.dashboard-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 37, 35, 0.68);
}

.dashboard-detail-card {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 24px 80px rgba(31, 37, 35, 0.28);
}

.dashboard-detail-card h2 {
  margin: 0.2rem 0 1rem;
}

.dashboard-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.dashboard-detail-list div,
.dashboard-detail-items article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  padding: 0.8rem;
}

.dashboard-detail-list .wide {
  grid-column: 1 / -1;
}

.dashboard-detail-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-detail-list dd {
  margin: 0.25rem 0 0;
  font-weight: 700;
  white-space: pre-wrap;
}

.dashboard-detail-items {
  margin-top: 1.25rem;
}

.dashboard-detail-items article {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.65rem;
}

.dashboard-detail-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
}

@media (max-width: 760px) {
  .dashboard-top,
  .dashboard-request {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dashboard-workbase-top {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .dashboard-actions {
    justify-content: stretch;
  }

  .dashboard-actions .button,
  .dashboard-request-side .button {
    width: 100%;
  }

  .dashboard-filters,
  .dashboard-detail-list {
    grid-template-columns: 1fr;
  }

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

  .dashboard-workbase-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-rental-planner-header,
  .dashboard-rental-route-header,
  .dashboard-rental-day,
  .dashboard-rental-event,
  .dashboard-rental-stop {
    grid-template-columns: 1fr;
  }

  .dashboard-rental-planner-header,
  .dashboard-rental-route-header {
    display: grid;
    align-items: stretch;
  }

  .dashboard-rental-route-actions {
    justify-content: stretch;
  }

  .dashboard-rental-route-actions .button,
  .dashboard-rental-stop-route {
    width: 100%;
  }

  .dashboard-workbase-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

.product-detail {
  padding-top: clamp(1rem, 3vw, 2.2rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.product-crumb {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.product-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.product-media-panel,
.product-summary,
.product-section-card,
.rent-request-card {
  background: #fff;
  border: 1px solid rgba(223, 231, 229, 0.95);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(16, 32, 29, 0.08);
}

.product-media-panel {
  padding: clamp(0.8rem, 2vw, 1.1rem);
  background: #fff;
}

.product-media-gallery {
  display: grid;
  gap: 0.8rem;
  width: 100%;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 76px));
  gap: 0.55rem;
}

.product-thumb {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  padding: 0.18rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-thumb:hover,
.product-thumb:focus-visible {
  border-color: rgba(31, 37, 35, 0.34);
  box-shadow: 0 8px 18px rgba(31, 37, 35, 0.1);
  transform: translateY(-1px);
}

.product-thumb.is-active {
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px rgba(246, 185, 0, 0.26);
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 5px;
  background: #fff;
}

.product-media-fallback {
  min-height: 260px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
}

.product-summary {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 3vw, 1.65rem);
}

.product-detail .product-summary h1 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.12;
}

.product-lead {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1rem;
}

.product-meta-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin: 0;
}

.product-meta-list div {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f4ed;
}

.product-meta-list dt {
  margin: 0 0 0.18rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-meta-list dd {
  margin: 0;
  font-weight: 900;
}

.product-meta-list a,
.product-trust a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.product-price-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 185, 0, 0.12), transparent 44%),
    var(--green);
  color: #fff;
  box-shadow: 0 18px 36px rgba(16, 32, 29, 0.2);
}

.product-price-card.price-card-single,
.rent-summary.rent-summary-single {
  grid-template-columns: 1fr;
}

.product-price-card span,
.product-price-card small,
.rent-summary small,
.mobile-rent-bar small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-price-card strong {
  display: block;
  margin: 0.1rem 0;
  color: var(--yellow);
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  line-height: 1;
}

.price-card-side {
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.price-card-side strong {
  font-size: 1.35rem;
}

.product-price-disclaimer {
  margin: -0.35rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.product-actions .button {
  width: 100%;
}

.button.advice {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: none;
}

.product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-trust span {
  padding: 0.42rem 0.58rem;
  border-radius: 7px;
  background: #eef3ee;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 850;
}

.product-detail-content {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.product-section-card,
.rent-request-card {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.product-section-card h2,
.rent-request-card h2 {
  font-size: clamp(1.15rem, 1.75vw, 1.52rem);
  font-weight: 700;
  line-height: 1.2;
}

.product-section-card p,
.rent-request-card p {
  margin: 0;
  color: var(--muted);
}

.product-description-card {
  display: grid;
  gap: 0.8rem;
}

.product-section-heading {
  margin-bottom: 1rem;
}

.spec-grid,
.suitable-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.spec-card,
.suitable-grid article {
  min-width: 0;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f4ed;
}

.spec-card span,
.suitable-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.spec-card strong,
.suitable-grid strong {
  display: block;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

.suitable-grid strong {
  margin-bottom: 0.25rem;
}

.product-rates-card {
  display: grid;
  gap: 1rem;
}

.rate-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.rate-table caption {
  padding: 0 0 0.6rem;
  color: var(--muted);
  font-weight: 700;
  text-align: left;
}

.rate-table th,
.rate-table td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.rate-table thead th {
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.rate-table tbody th {
  width: 50%;
  color: var(--green);
  font-weight: 700;
}

.rate-table tbody td {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.rate-table tr:last-child th,
.rate-table tr:last-child td {
  border-bottom: 0;
}

.rates-disclaimer {
  grid-column: 1 / -1;
  padding: 0.85rem;
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  background: #fff8df;
  font-size: 0.92rem;
  font-weight: 750;
}

.rate-empty {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #f8f4ed;
}

.rate-empty span {
  color: var(--muted);
}

.rent-request-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  background:
    linear-gradient(135deg, #fff 0%, #fff 58%, rgba(101, 114, 103, 0.06) 100%);
}

.rent-panel-copy {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.rent-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.rent-summary span {
  padding: 0.85rem;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
}

.rent-summary strong {
  color: var(--yellow);
  font-size: 1.25rem;
}

.rent-form {
  display: grid;
  gap: 1rem;
}

.rent-form fieldset,
.rent-form-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.rent-form-section {
  padding: 0.9rem;
  border-radius: 8px;
  background: #f7f8f5;
}

.rent-form legend,
.rent-form-section h3 {
  grid-column: 1 / -1;
  margin: 0;
  margin-bottom: 0.15rem;
  padding: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 900;
}

.rent-form label {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.rent-form label span {
  display: block;
}

.rent-period-field {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.rent-period-field > span {
  display: block;
}

.rent-period-trigger {
  width: 100%;
  display: grid;
  gap: 0.15rem;
  min-height: 58px;
  padding: 0.68rem 0.78rem;
  border: 1px solid #d8d0c4;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
}

.rent-period-trigger:hover,
.rent-period-trigger:focus-visible {
  border-color: rgba(31, 37, 35, 0.36);
  outline: 3px solid rgba(101, 114, 103, 0.12);
}

.rent-period-trigger span,
.rent-period-trigger small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
  text-transform: uppercase;
}

.rent-period-trigger strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.rent-period-error {
  color: #9f1239;
  font-size: 0.82rem;
  font-weight: 650;
}

.rent-form .full,
.rent-form button {
  grid-column: 1 / -1;
}

.rent-form input,
.rent-form select,
.rent-form textarea {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  max-width: 100%;
  min-height: 46px;
  border: 1px solid #d8d0c4;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0.68rem 0.78rem;
}

.rent-form textarea {
  min-height: 116px;
  resize: vertical;
}

.rent-form select {
  padding-right: 2.25rem;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) right 1rem center / 6px 6px no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) right 0.7rem center / 6px 6px no-repeat,
    #fff;
}

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

@media (min-width: 560px) {
  .product-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-meta-list,
  .product-price-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card-side {
    padding-top: 0;
    padding-left: 0.85rem;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (min-width: 740px) {
  .spec-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .rent-form fieldset,
  .rent-form-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  .product-shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
    gap: 1.25rem;
  }

  .product-media-panel {
    position: sticky;
    top: 108px;
  }

  .product-description-card,
  .product-rates-card,
  .rent-request-card {
    grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
    align-items: start;
  }
}

.cart-hero {
  padding-top: clamp(1.6rem, 4vw, 3.2rem);
  padding-bottom: 1rem;
}

.cart-hero > div {
  max-width: 820px;
}

.cart-hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.65rem);
}

.cart-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.cart-hero .actions {
  margin-top: 1.2rem;
}

.cart-section {
  padding-top: 1rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.cart-list-panel,
.cart-request-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 37, 35, 0.07);
}

.cart-list-panel {
  padding: clamp(1rem, 3vw, 1.35rem);
}

.cart-request-panel {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 3vw, 1.25rem);
}

.cart-request-panel h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}

.section-header.compact {
  margin-bottom: 1rem;
}

.cart-empty {
  display: grid;
  gap: 0.5rem;
  padding: 1.1rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #f8f4ed;
}

.cart-empty strong {
  font-size: 1.05rem;
}

.cart-empty span {
  color: var(--muted);
}

.cart-empty .button {
  width: fit-content;
  margin-top: 0.25rem;
}

.cart-shared-period {
  display: grid;
  gap: 0.72rem;
  margin: 0 0 1rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbf8f2;
}

.cart-shared-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink);
  cursor: pointer;
}

.cart-shared-toggle input {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.18rem 0 0;
  accent-color: var(--yellow);
}

.cart-shared-toggle span {
  display: grid;
  gap: 0.16rem;
}

.cart-shared-toggle strong {
  font-weight: 650;
  line-height: 1.25;
}

.cart-shared-toggle small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.cart-shared-period-button {
  width: 100%;
}

.cart-shared-period-button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
}

.cart-items {
  display: grid;
  gap: 0.85rem;
}

.cart-line {
  min-width: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.cart-line-media {
  align-self: start;
  aspect-ratio: 1;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #f4efe6;
  color: var(--muted);
  font-weight: 900;
  text-decoration: none;
}

.cart-line-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-line-main {
  min-width: 0;
  display: grid;
  gap: 0.45rem;
}

.cart-line-main .eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.cart-line-main h3 {
  min-width: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.cart-line-main h3 a {
  text-decoration: none;
}

.cart-line-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.cart-line-meta span {
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  background: #f4efe6;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.period-trigger {
  width: 100%;
  display: grid;
  gap: 0.15rem;
  min-height: 64px;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(31, 37, 35, 0.12);
  border-radius: 8px;
  background: #f8f4ed;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.period-trigger span,
.period-trigger small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.period-trigger strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.cart-line-controls {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 38px 38px 38px minmax(0, 1fr);
  gap: 0.4rem;
  align-items: center;
}

.cart-line-controls button,
.period-nav button,
.period-close,
.period-reset {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.cart-line-controls strong {
  display: grid;
  place-items: center;
  min-height: 38px;
  border-radius: 7px;
  background: #f4efe6;
}

.cart-line-controls .cart-remove {
  justify-self: end;
  padding: 0 0.72rem;
  color: var(--muted);
}

.cart-summary {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
}

.cart-summary strong {
  color: var(--yellow);
  font-size: 1.2rem;
}

.cart-summary span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.cart-quote-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.78rem;
  border: 1px solid rgba(31, 37, 35, 0.12);
  border-radius: 8px;
  background: #fff8df;
  color: var(--ink);
  cursor: pointer;
}

.cart-quote-toggle input {
  width: auto;
  min-height: 0;
  margin-top: 0.24rem;
  accent-color: var(--yellow);
}

.cart-quote-toggle span {
  display: grid;
  gap: 0.12rem;
}

.cart-quote-toggle strong {
  color: var(--ink);
  line-height: 1.25;
}

.cart-quote-toggle small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.kvk-checker {
  display: grid;
  gap: 0.6rem;
  padding: 0.78rem;
  border: 1px solid rgba(0, 115, 190, 0.18);
  border-radius: 8px;
  background: #f8fcff;
}

.kvk-checker-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: end;
}

.kvk-checker .kvk-checker-head .button {
  grid-column: auto;
  width: auto;
  min-height: 46px;
  white-space: nowrap;
}

.kvk-status {
  min-height: 1.1rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.kvk-status.success {
  color: #166534;
}

.kvk-status.error {
  color: #9f1239;
}

.kvk-result {
  display: grid;
  gap: 0.16rem;
  padding: 0.7rem;
  border: 1px solid rgba(0, 115, 190, 0.16);
  border-radius: 8px;
  background: #fff;
}

.kvk-result strong {
  color: var(--ink);
  line-height: 1.25;
}

.kvk-result span,
.kvk-result small {
  color: var(--muted);
  line-height: 1.35;
}

.cart-form {
  gap: 0.78rem;
}

.cart-form .button {
  width: 100%;
}

.cart-form .button[disabled] {
  opacity: 0.58;
  cursor: not-allowed;
}

.period-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.period-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 37, 35, 0.54);
  backdrop-filter: blur(5px);
}

.period-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.period-header,
.period-nav,
.period-footer {
  position: sticky;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.period-header {
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.15rem 0.8rem;
  border-bottom: 1px solid var(--line);
}

.period-header h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

.period-header [data-period-title] {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-weight: 700;
}

.period-close {
  width: 42px;
  height: 42px;
  padding: 0;
  font-size: 1.7rem;
  line-height: 1;
}

.period-nav {
  top: 73px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.period-nav strong {
  min-width: 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.period-nav button {
  padding: 0 0.72rem;
}

.period-months {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  padding: 1rem 1.15rem 1.2rem;
}

.calendar-month h3 {
  margin-bottom: 0.7rem;
  font-size: 1.12rem;
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
}

.calendar-weekday {
  display: grid;
  place-items: center;
  min-height: 28px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-empty {
  min-height: 42px;
}

.calendar-grid button {
  min-width: 0;
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.calendar-grid button:hover:not(:disabled) {
  background: #f4efe6;
}

.calendar-grid button:disabled,
.calendar-grid button.is-disabled {
  color: rgba(101, 114, 103, 0.34);
  cursor: not-allowed;
}

.calendar-grid button.is-range {
  border-radius: 0;
  background: #f0ede7;
}

.calendar-grid button.is-start,
.calendar-grid button.is-end {
  position: relative;
  z-index: 1;
  border-radius: 7px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 8px 16px rgba(31, 37, 35, 0.12);
}

.period-footer {
  bottom: 0;
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem 1.15rem 1.15rem;
  border-top: 1px solid var(--line);
}

.period-footer .button {
  width: 100%;
  min-height: 48px;
}

.period-reset {
  border: 0;
  color: var(--muted);
  background: transparent;
}

body.period-modal-open {
  overflow: hidden;
}

body.period-modal-open .hm-chatbot {
  display: none;
}

@media (min-width: 720px) {
  .cart-line {
    grid-template-columns: 116px minmax(0, 1fr) minmax(170px, auto);
  }

  .cart-line-controls {
    grid-column: auto;
    align-self: center;
    grid-template-columns: 38px 38px 38px;
    justify-content: end;
  }

  .cart-line-controls .cart-remove {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

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

@media (min-width: 980px) {
  .cart-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.38fr);
  }

  .cart-request-panel {
    position: sticky;
    top: 108px;
  }
}

@media (max-width: 520px) {
  .kvk-checker-head {
    grid-template-columns: 1fr;
  }

  .kvk-checker .kvk-checker-head .button {
    width: 100%;
  }
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(240px, 1fr);
  gap: 2rem;
  align-items: start;
}

.content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: min(6vw, 2rem);
}

.content h2,
.content h3 {
  margin-top: 1.5rem;
}

.content p {
  margin: 1rem 0;
}

.content ul {
  padding-left: 1.2rem;
}

.content img {
  border-radius: 8px;
  margin: 1rem 0;
}

.privacy-page .content h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.privacy-page .content h2 {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.08;
}

.privacy-page .content h3 {
  font-size: 1.02rem;
}

.privacy-page .content h4 {
  font-size: 0.95rem;
}

.sidebox {
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  padding: 1.2rem;
  position: sticky;
  top: 92px;
}

.sidebox p {
  color: rgba(255, 255, 255, 0.86);
}

.footer {
  background: var(--ink);
  color: #fff;
  margin-top: 4rem;
}

.footer-inner {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 1fr;
  gap: 1.5rem;
}

.footer-bottom {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 0.95rem 0 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.footer-logo {
  width: min(310px, 100%);
  height: auto;
  margin-bottom: 0.75rem;
}

.footer-certifications {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.85rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.footer-certifications img {
  width: min(240px, 100%);
  height: auto;
  display: block;
}

.footer a,
.footer p {
  color: rgba(255, 255, 255, 0.78);
}

.footer ul {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
}

  .footer li + li {
  margin-top: 0.45rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer .social-links li + li {
  margin-top: 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(246, 185, 0, 0.28);
  border-radius: 8px;
  color: #fff;
  line-height: 1;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 24px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a[aria-label*="Facebook"] svg path {
  fill: currentColor;
  stroke: none;
}

.social-links a[aria-label*="YouTube"] svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.social-links a span:not(.social-icon-letter) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.social-icon-letter {
  font-weight: 900;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--yellow);
  color: var(--green);
  background: var(--yellow);
  box-shadow: none;
}

@media (max-width: 980px) {
  .nav {
    width: min(100% - 24px, var(--container));
    gap: 0.65rem;
  }

  .brand img {
    width: min(218px, 28vw);
  }

  .nav-links {
    gap: 0.12rem;
  }

  .nav-links a,
  .price-mode-toggle,
  .nav-links .button {
    min-height: 38px;
    padding: 0.5rem 0.55rem;
    font-size: 0.84rem;
  }

  .nav-cart strong {
    min-width: 1.22rem;
    height: 1.22rem;
    font-size: 0.68rem;
  }

  .popular-slide {
    flex-basis: calc((100% - 1rem) / 2);
    min-height: 360px;
  }

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

@media (max-width: 760px) {
  .utility {
    justify-content: flex-start;
    padding: 0 1rem;
    overflow-x: auto;
    white-space: nowrap;
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    min-height: 0;
    padding: 0.65rem 0 0.7rem;
    gap: 0.55rem;
  }

  .topbar.menu-open {
    z-index: 1000;
  }

  .nav-cart-quick {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    padding: 0.42rem 0.55rem;
    border: 1px solid rgba(31, 37, 35, 0.12);
    border-radius: 8px;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(16, 32, 29, 0.08);
  }

  .nav-cart-quick,
  .menu-toggle {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-cart-quick .nav-cart-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .nav-cart-quick strong {
    min-width: 1.25rem;
    height: 1.25rem;
    background: var(--ink);
    color: #fff;
    font-size: 0.72rem;
  }

  .menu-toggle {
    appearance: none;
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(16, 32, 29, 0.08);
  }

  .menu-toggle-icon {
    display: grid;
    gap: 4px;
  }

  .menu-toggle-icon span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav.menu-open .menu-toggle-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav.menu-open .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  .nav.menu-open .menu-toggle-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 0.35rem;
    overflow: visible;
    padding-top: 0.2rem;
  }

  .nav.menu-open .nav-links {
    display: grid;
  }

  .nav.menu-open .brand,
  .nav.menu-open .nav-cart-quick,
  .nav.menu-open .menu-toggle,
  .nav.menu-open .nav-links {
    position: relative;
    z-index: 2;
  }

  body.nav-open .nav-backdrop {
    display: none;
  }

  .nav-links a,
  .price-mode-toggle,
  .nav-links .button {
    min-height: 36px;
    width: 100%;
    padding: 0.48rem 0.35rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .brand img {
    width: min(220px, 56vw);
  }

  .search-panel {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .search-panel input {
    min-height: 48px;
  }

  .hero-search div {
    grid-template-columns: 1fr;
  }

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

  .product-grid .card.has-image > a {
    display: grid;
    grid-template-columns: minmax(96px, 30%) minmax(0, 1fr);
    align-items: stretch;
  }

  .product-grid .card-media {
    width: 100%;
    height: 100%;
    min-height: 168px;
    aspect-ratio: auto;
    background: #f4efe6;
  }

  .product-grid .card.rental-card .card-media {
    background: #fff;
  }

  .product-grid .card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .product-grid .card-body {
    min-width: 0;
    padding: 0.9rem 0.85rem;
    gap: 0.42rem;
  }

  .product-grid .card-body h3 {
    font-size: 1rem;
    line-height: 1.18;
  }

  .product-grid .card-body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    font-size: 0.92rem;
  }

  .product-grid .card-cta {
    min-height: 34px;
    padding: 0.44rem 0.6rem;
    font-size: 0.86rem;
  }

  .product-grid .card-cart-button {
    width: calc(100% - 1.4rem);
    margin: 0 0.7rem 0.75rem;
  }

  .hero-inner {
    min-height: 460px;
    padding: 5.6rem 0 4.3rem;
  }

  .quick-entry {
    margin-top: -2.2rem;
  }

  .quick-entry-inner,
  .hero-search div,
  .trust-strip,
  .category-grid,
  .platform-grid,
  .locations-hero-grid,
  .location-intro,
  .locations-grid,
  .about-hero-grid,
  .about-intro-grid,
  .about-story-row,
  .about-story-row.reverse,
  .career-open-grid,
  .career-steps,
  .career-benefits,
  .career-extra-grid,
  .career-apply-grid,
  .customer-callout,
  .customer-hero-grid,
  .customer-benefits,
  .customer-flow,
  .customer-flow ol,
  .customer-form-layout,
  .customer-form,
  .customer-form fieldset,
  .deals-page-hero,
  .deals-grid,
  .deal-card,
  .deal-card.featured-deal-card,
  .product-rates-panel,
  .rent-panel,
  .rent-form fieldset,
  .rent-form-section,
  .spotlight-grid,
  .assortment-layout,
  .advisor-card,
  .rental-guide,
  .schaftwagens-hero-grid,
  .schaftwagen-instruction-card,
  .schaftwagen-instruction-compact {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    gap: 1rem;
  }

  .popular-carousel-track {
    gap: 0.75rem;
    padding-inline: 0;
  }

  .popular-slide {
    flex-basis: min(86vw, 330px);
    min-height: 390px;
  }

  .service-strip .advisor-card {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .service-strip .advisor-card img {
    min-height: 260px;
  }

  .service-strip .advisor-card > div {
    padding: 0.2rem 0.1rem 0.2rem 0;
  }

  .home-career-panel {
    grid-template-columns: 1fr;
  }

  .home-career-media {
    min-height: 420px;
  }

  .home-career-slide img {
    min-height: 100%;
  }

  .section-header,
  .search-panel,
  .article-layout,
  .product-shell,
  .product-info-grid,
  .people-grid,
  .equipment-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-header {
    display: grid;
  }

  .career-hero-inner {
    min-height: 520px;
    padding: 5.2rem 0 4.8rem;
  }

  .career-video iframe {
    min-height: 260px;
    aspect-ratio: 16 / 9;
  }

  .spotlight-grid .card-body {
    min-height: auto;
  }

  .people-card:first-child {
    grid-row: auto;
  }

  .people-card:first-child img,
  .people-card img,
  .equipment-card img {
    aspect-ratio: 4 / 3;
  }

  .sidebox {
    position: static;
  }

  .product-media-panel {
    min-height: 280px;
  }

  .product-summary h1 {
    font-size: clamp(1.75rem, 8vw, 2.6rem);
  }

  .category-sidebar {
    position: static;
  }

  .category-tile,
  .category-tile:nth-child(1),
  .category-tile:nth-child(4),
  .category-deal-tile {
    grid-column: span 1;
  }

  .category-tile,
  .category-deal-tile {
    min-height: 220px;
  }

  .category-deal-tile {
    min-height: 320px;
    padding: 0.95rem;
    background:
      radial-gradient(circle at 88% 10%, #ff6600 0 26%, transparent 26.5%),
      radial-gradient(circle at 9% 91%, #ff6600 0 25%, transparent 25.5%),
      linear-gradient(118deg, var(--yellow) 0 66%, #0073be 66% 100%);
  }

  .category-deal-tile::before {
    right: -4.5rem;
    top: -4.25rem;
    width: 12rem;
    height: 12rem;
  }

  .category-deal-tile::after {
    left: -2.2rem;
    bottom: -3.4rem;
    width: 11rem;
    height: 11rem;
  }

  .deal-brand-badge {
    left: 0.7rem;
    top: 0.75rem;
    width: 4.75rem;
  }

  .deal-badge-huur {
    font-size: 1.35rem;
  }

  .deal-badge-deals {
    padding: 0.08rem 0.32rem 0.14rem;
    font-size: 0.82rem;
  }

  .deal-product-img {
    display: none;
  }

  .deal-tape-main {
    top: 49%;
    min-height: 36px;
    font-size: 1.32rem;
  }

  .deal-tape-small {
    top: 68%;
    min-height: 24px;
    font-size: 0.84rem;
  }

  .deal-content {
    width: min(72%, 230px);
    min-height: auto;
    gap: 0.34rem;
    padding: 0.72rem;
    box-shadow: 5px 5px 0 #ff6600;
  }

  .deal-content strong {
    font-size: clamp(1.45rem, 7vw, 1.95rem);
  }

  .deal-price {
    position: static;
    width: 5.35rem;
    padding: 0.58rem;
    font-size: 1.58rem;
  }

  .deal-condition {
    max-width: 172px;
    font-size: 0.69rem;
  }

  .deal-action {
    min-height: 34px;
    padding: 0.42rem 0.55rem;
    font-size: 0.76rem;
  }

  .deal-card-media {
    min-height: 230px;
    padding: 1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 37, 35, 0.08);
  }

  .deal-card-media img {
    width: min(58%, 178px);
    max-height: 205px;
    aspect-ratio: auto;
    object-fit: contain;
    background: #fff;
  }

  .deal-card-media .product-media-fallback {
    min-height: 0;
    height: auto;
    max-height: 300px;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #fff;
  }

  .deal-card-content {
    position: relative;
    z-index: 1;
    align-content: start;
    background: #fff;
    color: var(--ink);
    padding: 1.05rem;
  }

  .deal-card p,
  .deal-card-condition {
    color: #3f4a45;
    font-weight: 600;
  }

  .deal-card h2,
  .deal-card strong {
    color: var(--ink);
  }

  .deal-card .button,
  .deals-page-hero .button {
    width: 100%;
  }

  .advisor-card img {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .advisor-card > div {
    padding: 1rem;
  }

  .schaftwagens-hero {
    padding-top: 2rem;
  }

  .schaftwagen-hero-preview,
  .schaftwagen-flyer-preview {
    min-height: 360px;
  }

  .schaftwagen-instruction-compact .button,
  .schaftwagens-hero-grid .button,
  .schaftwagen-instruction-card .button {
    width: 100%;
  }

  .product-detail {
    padding-bottom: 5.8rem;
  }

  .mobile-rent-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(92px, auto) minmax(92px, auto);
    gap: 0.45rem;
    align-items: center;
    padding: 0.7rem max(1rem, env(safe-area-inset-left)) calc(0.7rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--green);
    color: #fff;
    box-shadow: 0 -14px 30px rgba(16, 32, 29, 0.22);
  }

  .mobile-rent-bar strong {
    color: var(--yellow);
    font-size: 1.05rem;
  }

  .mobile-rent-bar .button {
    min-height: 42px;
    padding-inline: 0.75rem;
    font-size: 0.88rem;
  }

  .period-modal {
    align-items: end;
    padding: 0;
  }

  .period-dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 18px 18px 0 0;
  }

  .period-header {
    padding: 1rem 1rem 0.75rem;
  }

  .period-nav {
    top: 69px;
    gap: 0.45rem;
    padding: 0.75rem 1rem;
  }

  .period-nav button {
    min-height: 36px;
    padding: 0 0.55rem;
    font-size: 0.85rem;
  }

  .period-months {
    padding: 0.9rem 1rem 1rem;
  }

  .calendar-grid {
    gap: 0.18rem;
  }

  .calendar-grid button,
  .calendar-empty {
    min-height: 40px;
  }

  .cart-line {
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 0.65rem;
  }

  .cart-line-controls {
    grid-template-columns: 36px 36px 36px minmax(0, 1fr);
  }

  .cart-line-controls button,
  .cart-line-controls strong {
    min-height: 36px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  body.rent-form-visible .mobile-rent-bar {
    display: none;
  }

  .footer {
    margin-top: 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0.95rem;
    padding: 1.25rem 0 1.8rem;
  }

  .footer-inner > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-inner > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: min(230px, 100%);
    margin-bottom: 0.45rem;
  }

  .footer-certifications {
    margin-bottom: 0.65rem;
    padding: 0.45rem 0.55rem;
  }

  .footer-certifications img {
    width: min(210px, 100%);
  }

  .footer h3 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
  }

  .footer p,
  .footer a {
    font-size: 0.92rem;
  }

  .footer p {
    margin: 0.35rem 0 0;
  }

  .footer ul {
    margin-top: 0.45rem;
  }

  .footer li + li {
    margin-top: 0.28rem;
  }

  .terms-card {
    grid-template-columns: 1fr;
    gap: 0.95rem;
    padding: 1rem;
  }

  .terms-copy {
    align-self: start;
  }

  .terms-copy h1 {
    max-width: none;
    font-size: clamp(1.9rem, 8vw, 2.45rem);
    line-height: 0.98;
  }

  .terms-copy p:not(.eyebrow) {
    max-width: none;
  }

  .terms-actions {
    max-width: none;
    margin-top: 1.15rem;
  }

  .terms-switch {
    gap: 0.5rem;
  }

  .terms-switch .button {
    min-height: 46px;
    padding: 0.5rem 0.5rem;
    font-size: 0.74rem;
  }

  .terms-download {
    min-height: 44px;
    font-size: 0.83rem;
  }

  .terms-details {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .terms-details h2 {
    font-size: 1.05rem;
  }

  .terms-details h3 {
    font-size: 0.92rem;
  }

  .terms-details h4 {
    font-size: 0.88rem;
  }

  .terms-preview {
    order: 2;
  }

  .terms-preview-label {
    padding: 0.75rem 0.8rem 0.35rem;
    font-size: 0.68rem;
  }

  .terms-preview-link {
    padding: 0 0.8rem 0.8rem;
  }

  .nav-links a.nav-careers {
    box-shadow: none;
  }

  .home-career-section {
    padding-top: 2.2rem;
  }

  .home-career-panel {
    padding: 0.85rem;
  }

  .home-career-copy {
    padding: 0.3rem;
  }

  .home-career-copy .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-career-copy .button {
    width: 100%;
  }

  .home-career-stats {
    position: static;
    margin-top: 0.65rem;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .home-career-stats span {
    padding: 0.82rem 0.9rem;
    border-color: rgba(246, 185, 0, 0.48);
    border-left: 4px solid var(--yellow);
    background:
      linear-gradient(135deg, rgba(16, 32, 29, 0.98), rgba(28, 78, 56, 0.96)),
      var(--green);
    color: #fff;
    box-shadow: 0 10px 22px rgba(16, 32, 29, 0.18);
    backdrop-filter: none;
  }

  .home-career-media {
    display: grid;
    min-height: 0;
    overflow: visible;
    background: transparent;
  }

  .home-career-media::after {
    display: none;
  }

  .home-career-slides {
    display: none;
  }

  .home-career-slide img {
    min-height: 0;
    border-radius: 0;
  }

  .career-hero {
    background-position: center right;
  }

  .career-hero-inner {
    min-height: 460px;
    padding: 4rem 0 3.2rem;
  }

  .career-hero-stats {
    grid-template-columns: 1fr;
  }

  .career-hero-stats span {
    min-height: 72px;
  }

  .career-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .career-filter,
  .career-job-actions .button,
  .career-contact a {
    width: 100%;
  }

  .career-job-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .career-form-card {
    padding: 0.8rem;
  }

  .social-links {
    gap: 0.42rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }
}

.admin-section {
  padding-top: clamp(1rem, 3vw, 2rem);
}

.admin-shell {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.admin-intro,
.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 35, 34, 0.06);
}

.admin-intro {
  padding: clamp(1.1rem, 3vw, 1.8rem);
}

.admin-intro h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
}

.admin-intro p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
}

.admin-status {
  display: inline-flex;
  max-width: 100%;
  margin-top: 0.75rem;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  background: #f4efe6;
  color: var(--green);
  font-weight: 900;
}

.admin-status.warning {
  background: #fff7da;
}

.admin-status.error {
  background: #fff7df;
  color: var(--green);
}

.admin-status.success {
  background: #e8f6ee;
  color: #166534;
}

.admin-form {
  display: grid;
  gap: 1rem;
}

.admin-card {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.admin-card h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
}

.admin-card p {
  margin: 0;
  color: var(--muted);
}

.admin-card label {
  display: grid;
  gap: 0.38rem;
  color: var(--ink);
  font-weight: 900;
}

.admin-card input,
.admin-card textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8d0c4;
  border-radius: 8px;
  padding: 0.72rem 0.82rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 700;
}

.admin-card textarea {
  resize: vertical;
}

.admin-card input:focus,
.admin-card textarea:focus {
  outline: 3px solid rgba(101, 114, 103, 0.16);
  border-color: var(--blue);
}

.admin-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.admin-helper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.admin-helper strong {
  margin-right: 0.2rem;
  color: var(--ink);
}

.admin-helper code {
  border-radius: 999px;
  padding: 0.18rem 0.42rem;
  background: #f4efe6;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.admin-actions-card {
  box-shadow: 0 18px 45px rgba(16, 32, 29, 0.14);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.admin-note {
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .admin-grid-2 {
    grid-template-columns: 1fr;
  }

.admin-actions .button {
    width: 100%;
  }
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 95;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent-card {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(246, 185, 0, 0.13), transparent 36%),
    var(--green);
  color: #fff;
  box-shadow: 0 24px 70px rgba(16, 32, 29, 0.32);
  pointer-events: auto;
}

.cookie-consent-copy {
  display: grid;
  gap: 0.35rem;
}

.cookie-consent-copy .eyebrow {
  color: var(--yellow);
}

.cookie-consent-copy h2,
.cookie-consent-copy p {
  margin: 0;
}

.cookie-consent-copy h2 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.1;
}

.cookie-consent-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.cookie-consent-copy a {
  width: fit-content;
  color: #fff;
  font-weight: 900;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.cookie-consent-preferences {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.cookie-consent-preferences label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  min-width: 0;
  padding: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.cookie-consent-preferences input {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  accent-color: var(--yellow);
}

.cookie-consent-preferences span {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.cookie-consent-preferences strong {
  color: #fff;
}

.cookie-consent-preferences small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.cookie-consent-actions .button {
  min-height: 44px;
  white-space: nowrap;
}

.cookie-consent-actions .button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.75);
}

.price-audience[hidden] {
  display: none;
}

.price-audience {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 3vw, 1rem);
}

.price-audience-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 37, 35, 0.56);
  backdrop-filter: blur(4px);
}

.price-audience-dialog {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(520px, calc(100vw - 2rem));
  max-width: 100%;
  overflow: hidden;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(31, 37, 35, 0.28);
  text-align: center;
}

.price-audience-dialog h2 {
  margin: 0 auto 1.15rem;
  max-width: 100%;
  font-size: clamp(1.35rem, 4.9vw, 1.85rem);
  letter-spacing: -0.032em;
  line-height: 1.08;
  white-space: normal;
  text-wrap: balance;
}

.price-audience-actions {
  display: grid;
  gap: 0.72rem;
}

.price-audience-actions button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.15rem 0.7rem;
  align-items: center;
  min-height: 58px;
  padding: 0.72rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.price-audience-actions button > * {
  min-width: 0;
}

.price-audience-actions button:hover,
.price-audience-actions button:focus-visible,
.price-audience-actions button.is-active {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(246, 185, 0, 0.22);
}

.price-audience-icon {
  grid-row: 1 / span 2;
  min-width: 2.25rem;
  min-height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #f4efe6;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
}

.price-audience-actions strong {
  display: block;
  font-weight: 700;
}

.price-audience-actions small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 430px) {
  .price-audience-dialog {
    width: calc(100vw - 1.5rem);
    padding: 1.2rem;
    border-radius: 18px;
  }

  .price-audience-dialog h2 {
    font-size: clamp(1.08rem, 5.45vw, 1.42rem);
    letter-spacing: -0.04em;
    white-space: nowrap;
  }

  .price-audience-actions button {
    min-height: 56px;
    padding: 0.68rem 0.78rem;
  }
}

@media (max-width: 350px) {
  .price-audience-dialog h2 {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .brand-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    padding-inline: 0.15rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .brand-marquee::-webkit-scrollbar {
    display: none;
  }

  .brand-marquee-track {
    animation: none;
  }

  .brand-marquee-group {
    gap: 0.55rem;
    padding-right: 0.55rem;
  }

  .brand-tile {
    width: clamp(96px, 28vw, 122px);
    height: 56px;
    padding: 0.25rem 0.45rem;
    border-radius: 8px;
  }

  .brand-tile img {
    max-height: 24px;
  }

  .cookie-consent {
    left: 0.75rem;
    right: 0.75rem;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .cookie-consent-card {
    grid-template-columns: 1fr;
    align-items: stretch;
    max-height: min(78vh, 620px);
    overflow: auto;
  }

  .cookie-consent-preferences {
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions .button {
    width: 100%;
  }
}

.hm-chatbot {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 80;
  font-family: inherit;
}

.hm-chatbot-toggle {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.55rem 0.95rem 0.55rem 0.62rem;
  background: var(--green);
  color: #fff;
  box-shadow: 0 18px 42px rgba(16, 32, 29, 0.24);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 950;
  cursor: pointer;
}

.hm-chatbot-toggle:hover,
.hm-chatbot-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(16, 32, 29, 0.32);
}

.hm-chatbot-icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green);
}

.hm-chatbot-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hm-chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 4.25rem;
  width: min(390px, calc(100vw - 2rem));
  max-height: min(680px, calc(100vh - 7.5rem));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 29, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(16, 32, 29, 0.26);
}

.hm-chatbot-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(246, 185, 0, 0.13), transparent 38%),
    var(--green);
  color: #fff;
}

.hm-chatbot-head strong,
.hm-chatbot-head span {
  display: block;
}

.hm-chatbot-head strong {
  font-size: 1.05rem;
  line-height: 1.15;
}

.hm-chatbot-head span {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.hm-chatbot-head button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.hm-chatbot-messages {
  display: grid;
  gap: 0.72rem;
  padding: 0.9rem;
  overflow: auto;
  background: #f8faf7;
}

.hm-chatbot-message {
  max-width: 92%;
  padding: 0.72rem 0.78rem;
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.42;
}

.hm-chatbot-message p {
  margin: 0;
}

.hm-chatbot-message a {
  color: var(--blue);
  font-weight: 900;
}

.hm-chatbot-message.bot {
  justify-self: start;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.hm-chatbot-message.user {
  justify-self: end;
  background: var(--green);
  color: #fff;
}

.hm-chatbot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.7rem;
}

.hm-chatbot-chips button {
  border: 1px solid #e5d27b;
  border-radius: 999px;
  padding: 0.4rem 0.58rem;
  background: #fff7da;
  color: var(--green);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  cursor: pointer;
}

.hm-chatbot-results {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.hm-chatbot-result {
  display: grid;
  gap: 0.2rem;
  padding: 0.68rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.hm-chatbot-result:hover,
.hm-chatbot-result:focus-visible {
  border-color: rgba(101, 114, 103, 0.55);
  box-shadow: 0 10px 26px rgba(101, 114, 103, 0.12);
}

.hm-chatbot-result span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hm-chatbot-result strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.18;
}

.hm-chatbot-result small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.hm-chatbot-form {
  display: grid;
  gap: 0.45rem;
  padding: 0.9rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.hm-chatbot-form label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hm-chatbot-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem;
}

.hm-chatbot-form input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 1px solid #d8d0c4;
  border-radius: 8px;
  padding: 0.7rem 0.78rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.hm-chatbot-form input:focus {
  outline: 3px solid rgba(101, 114, 103, 0.16);
  border-color: var(--blue);
}

.hm-chatbot-form button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0 0.88rem;
  background: var(--red);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

/* Softer typography pass: keep the commercial hierarchy, reduce the heavy blocky feel. */
h1,
h2,
h3,
.hero h1,
.product-detail .product-summary h1,
.cart-hero h1,
.career-hero h1,
.home-career-copy h2,
.customer-callout h2,
.section-header h2 {
  font-weight: 650;
}

.nav-links a,
.button,
.nav-cart-quick,
.card-cta,
.card-cart-button,
.cart-add-button,
.platform-card strong,
.popular-slide-content strong,
.equipment-card h3,
.location-card h2,
.deal-card h2,
.deal-card strong,
.product-actions .button,
.mobile-rent-bar .button,
.hm-chatbot-toggle,
.hm-chatbot-form button {
  font-weight: 650;
}

.utility,
.eyebrow,
.pill,
.meta,
.trust-strip,
.category-name,
.category-action,
.customer-callout ul,
.product-trust span,
.rate-table thead th,
.rate-table tbody th,
.rate-table tbody td,
.rent-form label,
.rent-period-field,
.rent-form-section h3,
.cart-line-meta span,
.rent-period-trigger span,
.rent-period-trigger small,
.period-trigger span,
.period-trigger small,
.period-nav button,
.cart-line-controls button,
.hm-chatbot-chips button,
.hm-chatbot-form label {
  font-weight: 650;
}

.card-body h3,
.product-meta-list dd,
.spec-card strong,
.suitable-grid strong,
.rent-period-trigger strong,
.cart-line-main h3,
.cart-summary strong,
.rent-summary strong,
.product-price-card strong,
.nav-cart strong,
.nav-cart-quick strong {
  font-weight: 700;
}

.section-header p,
.card-body p,
.product-lead,
.product-section-card p,
.rent-request-card p,
.location-card p,
.deal-card p,
.hm-chatbot-message {
  font-weight: 400;
}

@media (max-width: 720px) {
  .hm-chatbot {
    left: 0.75rem;
    right: 0.75rem;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .hm-chatbot.with-rent-bar {
    bottom: calc(5.5rem + env(safe-area-inset-bottom));
  }

  .hm-chatbot-toggle {
    margin-left: auto;
  }

  .hm-chatbot-panel {
    right: 0;
    bottom: 4.2rem;
    width: 100%;
    max-height: min(72vh, 650px);
  }

  .hm-chatbot-message {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

/* Visual refinement pass: typography, palette, controls and surfaces only. */
body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

h1,
h2,
h3,
.hero h1,
.section-header h2,
.product-detail .product-summary h1,
.cart-hero h1,
.career-hero h1,
.home-career-copy h2,
.customer-callout h2,
.deal-card h2 {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-weight: 650;
  letter-spacing: -0.025em;
}

h1,
.hero h1,
.product-detail .product-summary h1,
.career-hero h1,
.cart-hero h1 {
  font-weight: 650;
  letter-spacing: -0.032em;
  line-height: 1.08;
}

h2 {
  line-height: 1.14;
}

h3 {
  line-height: 1.22;
}

p,
li,
.section-header p,
.card-body p,
.product-lead,
.product-section-card p,
.rent-request-card p,
.location-card p,
.deal-card p,
.hm-chatbot-message {
  line-height: 1.55;
}

.eyebrow,
.pill,
.meta,
.deal-card-label,
.product-meta-list dt,
.product-price-card span,
.product-price-card small,
.rent-summary small,
.mobile-rent-bar small,
.rate-table thead th,
.spec-card span,
.suitable-grid span,
.rent-form label,
.rent-period-field,
.rent-form-section h3,
.hm-chatbot-form label {
  color: var(--muted);
  font-size: clamp(0.72rem, 0.82vw, 0.8rem);
  font-weight: 650;
  letter-spacing: 0.035em;
}

.eyebrow {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
}

.hero .eyebrow,
.career-hero .eyebrow,
.deals-page-hero .eyebrow,
.cart-hero .eyebrow {
  color: var(--yellow);
}

.button,
button,
input,
select,
textarea,
.nav-links a,
.price-mode-toggle,
.nav-cart-quick,
.card-cta,
.card-cart-button,
.cart-add-button,
.period-trigger,
.rent-period-trigger {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

.button,
.nav-links .button,
.price-mode-toggle,
.card-cta,
.card-cart-button,
.cart-add-button,
.cart-product-add,
.cart-mobile-add,
.customer-form button,
.career-native-form button,
.hm-chatbot-form button,
.deal-action,
.deal-card .button {
  min-height: 46px;
  border-radius: 16px;
  font-weight: 650;
  box-shadow: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button,
.cart-product-add,
.cart-mobile-add,
.customer-form button,
.career-native-form button,
.hm-chatbot-form button,
.deal-cart-link,
.category-action,
.card-cta {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.button:hover,
.cart-product-add:hover,
.cart-mobile-add:hover,
.customer-form button:hover,
.career-native-form button:hover,
.hm-chatbot-form button:hover,
.deal-cart-link:hover,
.category-action:hover,
.card-cta:hover {
  background: #e8ae00;
  border-color: #e8ae00;
  color: var(--ink);
  transform: translateY(-1px);
}

.button.secondary,
.button.advice,
.nav-links a.nav-cart,
.card-cart-button,
.cart-add-button,
.deal-card .button.secondary,
.button.secondary.light {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary:hover,
.button.advice:hover,
.nav-links a.nav-cart:hover,
.card-cart-button:hover,
.cart-add-button:hover,
.deal-card .button.secondary:hover,
.button.secondary.light:hover {
  background: #f9f6ef;
  border-color: #d7cebf;
  color: var(--ink);
}

.button.secondary.cart-product-add {
  background: var(--hm-blue);
  border-color: var(--hm-blue);
  color: #fff;
}

.button.secondary.cart-product-add:hover {
  background: var(--hm-blue-dark);
  border-color: var(--hm-blue-dark);
  color: #fff;
}

.card-cart-button,
.cart-add-button {
  background: var(--hm-blue);
  border-color: var(--hm-blue);
  color: #fff;
}

.card-cart-button:hover,
.cart-add-button:hover {
  background: var(--hm-blue-dark);
  border-color: var(--hm-blue-dark);
  color: #fff;
}

.card-actions .card-cart-button,
.product-grid .card-actions .card-cart-button {
  flex: 0 0 56px;
  width: 56px;
  min-width: 56px;
  height: 46px;
  min-height: 46px;
  margin: 0;
  padding: 0;
}

.card-actions .card-cta {
  flex: 1 1 auto;
  width: 100%;
}

.nav-links a,
.utility,
.nav-cart strong,
.nav-cart-quick strong {
  font-weight: 650;
}

.card,
.platform-card,
.category-tile,
.category-deal-tile,
.popular-slide,
.people-card,
.equipment-card,
.advisor-card,
.customer-callout,
.customer-hero-card,
.home-career-panel,
.location-card,
.product-media-panel,
.product-summary,
.product-section-card,
.rent-request-card,
.career-open-card,
.career-form-card,
.customer-hero-card,
.locations-hero-card,
.admin-card,
.deal-card,
.cart-list-panel,
.cart-request-panel,
.cart-line,
.hm-chatbot-panel {
  border-color: var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(31, 37, 35, 0.07);
}

.card:hover,
.platform-card:hover,
.people-card:hover,
.equipment-card:hover,
.location-card:hover {
  box-shadow: 0 18px 42px rgba(31, 37, 35, 0.1);
}

.product-thumb,
.product-main-image,
.card-media,
.card-media img,
.product-meta-list div,
.spec-card,
.suitable-grid article,
.rate-table,
.rate-empty,
.rates-disclaimer,
.rent-form-section,
.rent-summary span,
.period-trigger,
.rent-period-trigger,
.career-selected,
.career-native-form .form-note,
.hm-chatbot-result {
  border-color: var(--line);
  border-radius: 16px;
}

.card .card-media,
.card .card-media img {
  border-radius: 16px 16px 0 0;
}

.product-meta-list div,
.spec-card,
.suitable-grid article,
.rate-empty {
  background: #fbf8f2;
}

.category-tile,
.popular-slide,
.equipment-card,
.people-card,
.location-card {
  background-color: #fff;
}

.category-action,
.deal-action {
  border-radius: 16px;
}

.customer-callout,
.home-career-panel,
.popular-products-section,
.band {
  background-color: #fff;
}

.category-deal-tile {
  background:
    radial-gradient(circle at 86% 18%, rgba(246, 185, 0, 0.22) 0 22%, transparent 22.5%),
    linear-gradient(135deg, var(--ink) 0 68%, #2f3835 68% 100%);
  color: #fff;
}

.category-deal-tile::before,
.category-deal-tile::after {
  background: rgba(246, 185, 0, 0.2);
}

.deal-brand-badge {
  background: var(--yellow);
  box-shadow: 0 14px 30px rgba(31, 37, 35, 0.16);
}

.deal-badge-huur {
  color: var(--ink);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 750;
}

.deal-badge-deals,
.deal-tape strong {
  background: #fff;
  color: var(--ink);
}

.deal-tape span {
  background: var(--yellow);
  color: var(--ink);
}

.deal-content {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(31, 37, 35, 0.16);
}

.deal-content strong,
.deal-price,
.deal-condition {
  color: var(--ink);
}

.deal-kicker {
  background: var(--ink);
  color: #fff;
}

.deal-price {
  background: var(--yellow);
  box-shadow: 0 12px 26px rgba(31, 37, 35, 0.15);
}

.product-price-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(31, 37, 35, 0.07);
}

.product-price-card span,
.product-price-card small {
  color: var(--muted);
}

.product-price-card strong {
  color: var(--ink);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
}

.price-card-side {
  border-top-color: var(--line);
}

.rent-summary span {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.rent-summary small {
  color: var(--muted);
}

.rent-summary strong {
  color: var(--ink);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
}

.product-actions .button {
  min-height: 48px;
}

.rate-table thead th {
  background: var(--ink);
  color: #fff;
}

.rate-table tbody th {
  color: var(--muted);
  font-weight: 650;
}

.rate-table tbody td {
  color: var(--ink);
  font-weight: 650;
}

.rates-disclaimer {
  border-left-color: var(--yellow);
  background: #fff8df;
  font-weight: 500;
}

.rent-request-card {
  background: #fff;
}

.rent-form input,
.rent-form select,
.rent-form textarea,
.customer-form input,
.customer-form select,
.customer-form textarea,
.career-native-form input,
.career-native-form textarea,
.hm-chatbot-form input {
  border-color: var(--line);
  border-radius: 14px;
}

/* HuurMaat blue refresh: subtle brand-blue accents over the existing design. */
:root {
  --hm-blue: #0073be;
  --hm-blue-dark: #005b9a;
  --hm-blue-soft: #eaf6ff;
  --hm-blue-wash: #f3faff;
  --hm-blue-line: rgba(0, 115, 190, 0.16);
}

body {
  background:
    radial-gradient(circle at 12% 140px, rgba(0, 115, 190, 0.12), transparent 320px),
    radial-gradient(circle at 88% 620px, rgba(0, 115, 190, 0.08), transparent 360px),
    linear-gradient(180deg, #fff 0, var(--hm-blue-wash) 410px, var(--paper) 780px),
    var(--paper);
}

.topbar {
  border-bottom-color: var(--hm-blue-line);
  background: rgba(255, 255, 255, 0.94);
}

.utility {
  background: linear-gradient(90deg, var(--ink), var(--hm-blue-dark) 58%, var(--hm-blue));
}

.nav-links a:hover,
.price-mode-toggle:hover,
.price-mode-toggle:focus-visible,
.nav-links a.nav-cart {
  background: var(--hm-blue-soft);
  border-color: rgba(0, 115, 190, 0.18);
  color: var(--hm-blue-dark);
}

.hero {
  background: #005b9a;
}

.hero::before {
  background:
    linear-gradient(0deg, rgba(0, 91, 154, 0.34) 0%, rgba(0, 91, 154, 0.16) 100%);
}

.hero-search,
.trust-strip,
.search-panel {
  background:
    linear-gradient(180deg, #fff, var(--hm-blue-wash)),
    #fff;
  border-color: rgba(0, 115, 190, 0.18);
  box-shadow: 0 18px 46px rgba(0, 91, 154, 0.1);
}

.search-panel {
  padding: 0.85rem;
  border: 1px solid rgba(0, 115, 190, 0.18);
  border-radius: 8px;
  align-items: end;
}

.search-panel .search-status {
  grid-column: 1 / -1;
  padding-top: 0.1rem;
}

.hero-search {
  border-color: rgba(0, 115, 190, 0.24);
}

.hero-search input,
.search-panel input {
  background-color: #f8fcff;
  border-color: rgba(0, 115, 190, 0.18);
}

.category-section,
.platform-card,
.card,
.people-card,
.equipment-card,
.deal-card {
  border-color: rgba(0, 115, 190, 0.14);
  box-shadow: 0 14px 36px rgba(0, 91, 154, 0.075);
}

.category-section {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(234, 246, 255, 0.86)),
    var(--paper);
}

.card,
.platform-card,
.deal-card.featured-deal-card {
  background:
    linear-gradient(180deg, #fff 0%, #fff 62%, var(--hm-blue-wash) 100%),
    #fff;
}

.card-media {
  background:
    linear-gradient(135deg, var(--hm-blue-wash), #fff 66%),
    #f4efe6;
}

.card:hover,
.platform-card:hover,
.people-card:hover,
.equipment-card:hover {
  border-color: rgba(0, 115, 190, 0.32);
  box-shadow: 0 18px 46px rgba(0, 91, 154, 0.12);
}

.home-career-panel,
.customer-callout,
.customer-hero-grid,
.locations-hero-grid,
.about-hero-grid,
.platform-card.primary {
  background:
    linear-gradient(135deg, rgba(15, 29, 33, 0.98), rgba(0, 91, 154, 0.88)),
    var(--ink);
}

.locations-hero-grid::after {
  background:
    linear-gradient(135deg, rgba(246, 185, 0, 0.2), rgba(0, 115, 190, 0.2));
}

.locations-hero-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(234, 246, 255, 0.2));
  border-color: rgba(255, 255, 255, 0.42);
}

.location-intro article,
.location-card,
.about-intro-grid article,
.about-story-row,
.advisor-card,
.rental-guide,
.contact-card,
.contact-form-card {
  border-color: rgba(0, 115, 190, 0.14);
  background:
    linear-gradient(180deg, #fff 0%, #fff 64%, var(--hm-blue-wash) 100%),
    #fff;
  box-shadow: 0 14px 36px rgba(0, 91, 154, 0.075);
}

.location-media,
.about-photo {
  background:
    linear-gradient(135deg, var(--hm-blue-soft), #fff);
}

.about-hero-grid img,
.about-photo,
.location-media {
  border: 1px solid rgba(0, 115, 190, 0.16);
  box-shadow: 0 16px 38px rgba(0, 91, 154, 0.12);
}

.location-body .eyebrow {
  color: var(--hm-blue-dark);
}

.location-intro span,
.about-intro-grid span,
.customer-flow li::before {
  color: var(--hm-blue);
}

.customer-hero-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(234, 246, 255, 0.2));
  border-color: rgba(255, 255, 255, 0.42);
}

.customer-benefits article,
.customer-flow,
.customer-form-layout,
.product-price-card,
.rent-request-card,
.rent-summary span {
  border-color: rgba(0, 115, 190, 0.14);
  background:
    linear-gradient(180deg, #fff 0%, #fff 64%, var(--hm-blue-wash) 100%),
    #fff;
  box-shadow: 0 14px 36px rgba(0, 91, 154, 0.075);
}

.category-tile {
  background-color: #13272d;
  box-shadow: 0 18px 42px rgba(7, 63, 99, 0.16);
}

.category-tile::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(0, 91, 154, 0.08) 100%),
    linear-gradient(90deg, rgba(5, 49, 78, 0.56) 0%, rgba(0, 91, 154, 0.34) 48%, rgba(0, 115, 190, 0.24) 100%);
}

.category-tile::after {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(0, 115, 190, 0.12);
}

.category-shine {
  top: auto;
  right: -18%;
  bottom: -42%;
  width: 72%;
  height: 68%;
  border-radius: 999px;
  display: none;
}

.category-action {
  background: #fff;
  color: var(--hm-blue-dark);
  box-shadow: inset 0 0 0 1px rgba(0, 115, 190, 0.18);
}

.category-tile:hover .category-action {
  background: var(--yellow);
  color: var(--ink);
}

.category-deal-tile {
  background:
    radial-gradient(circle at 13% 18%, rgba(246, 185, 0, 0.22), transparent 30%),
    radial-gradient(circle at 88% 84%, rgba(0, 115, 190, 0.42), transparent 34%),
    linear-gradient(135deg, #111d1f 0%, #073f63 57%, var(--hm-blue) 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(7, 63, 99, 0.2);
}

.category-deal-tile::before,
.category-deal-tile::after {
  display: none;
}

.deal-brand-badge {
  background: var(--yellow);
  color: var(--ink);
}

.deal-badge-huur {
  color: var(--ink);
}

.deal-badge-deals {
  background: #fff;
  color: var(--hm-blue-dark);
}

.deal-tape span {
  background: var(--hm-blue);
  color: #fff;
}

.deal-tape strong {
  background: var(--yellow);
  color: var(--ink);
}

.deal-content {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.deal-kicker {
  background: #073f63;
  color: #fff;
}

.deal-price {
  background: var(--yellow);
  color: var(--ink);
}

.deal-action {
  background: #073f63;
  color: #fff;
}

.customer-flow li {
  background:
    linear-gradient(180deg, var(--hm-blue-soft), #fff);
  border: 1px solid rgba(0, 115, 190, 0.12);
}

.customer-form fieldset {
  border-color: rgba(0, 115, 190, 0.14);
  background: rgba(243, 250, 255, 0.46);
}

.customer-form input,
.customer-form textarea,
.rent-form input,
.rent-form select,
.rent-form textarea {
  border-color: rgba(0, 115, 190, 0.18);
  background-color: #f8fcff;
}

.customer-form .kvk-checker {
  grid-column: 1 / -1;
  background: #fff;
}

.customer-form .kvk-checker .kvk-checker-head .button {
  grid-column: auto;
  width: auto;
}

.location-card .location-notice,
.contact-location-card .location-notice {
  border-color: rgba(0, 115, 190, 0.18);
  background: #fff8df;
  color: #073f63;
  font-weight: 650;
}

.cart-quote-toggle input[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: auto;
  flex: 0 0 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
  min-height: 0;
  margin: 0.18rem 0 0;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: initial;
  accent-color: var(--yellow);
  cursor: pointer;
}

.cart-quote-toggle:has(input[type="checkbox"]:checked) {
  border-color: rgba(0, 115, 190, 0.34);
  background: #fff3be;
  box-shadow: inset 0 0 0 1px rgba(0, 115, 190, 0.08);
}

.deal-card-label {
  background: var(--hm-blue-soft);
  color: var(--hm-blue-dark);
}
