:root {
  --bg: #efefef;
  --surface: #ffffff;
  --ink: #070707;
  --muted: #3f3f3f;
  --brand-top: #34abb2;
  --brand: rgb(229, 0, 125);
  --brand-strong: #b30063;
  --accent: #ff4ca4;
  --line: #cfcfcf;
  --radius: 18px;
  --shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --section-air: var(--s-6);
  --finder-overlap: clamp(120px, 15vh, 190px);
  --header-offset: 84px;
  --content-shell-width: min(1400px, 95%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Myriad Pro", "MyriadPro-Regular", "Arial", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: var(--header-offset);
}

body.nav-open {
  overflow: hidden;
}

html.page-transitions body.page-exit main > :not(.page-hero):not(.over-subnav-section) {
  opacity: 0;
  transform: none;
  transition: opacity 0.12s ease;
}

@media (prefers-reduced-motion: reduce) {
  html.page-transitions body.page-exit main > :not(.page-hero):not(.over-subnav-section) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

.container {
  width: var(--content-shell-width);
  margin: 0 auto;
}

/* Keep all regular content aligned to the same shell width as the header.
   Hero/map sections stay full-bleed by explicit exclusion. */
main > .section:not(.section-finder-map):not(.section-finder-map-hero):not(.page-hero):not(.hero):not(.hero-with-slider):not(.location-page-map-hero) > *:not(.finder-layout):not(.finder-layout-full):not(.location-page-map-canvas):not(.location-concept-map-wrap) {
  width: min(100%, var(--content-shell-width));
  max-width: var(--content-shell-width);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 40;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(7, 7, 7, 0.05);
  transition: transform 0.26s ease, background-color 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.header-compact {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(7, 7, 7, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding: 10px 0;
  transition: padding 0.22s ease;
}

.site-header.header-compact .nav-wrap {
  padding: 7px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 0;
}

.brand img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(42vw, 260px);
  transition: height 0.22s ease;
}

.site-header.header-compact .brand img {
  height: 50px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 6px;
}

.nav-has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1d1d1d;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-dropdown-toggle::after {
  content: "";
  margin-left: 7px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active,
.nav-has-dropdown:focus-within .nav-dropdown-toggle,
.nav-has-dropdown.is-open .nav-dropdown-toggle {
  color: #000;
  background: rgba(52, 171, 178, 0.12);
}

.nav-has-dropdown.is-open .nav-dropdown-toggle::after,
.nav-has-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-has-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin-top: 6px;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 28px rgba(7, 7, 7, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}

.site-nav ul.nav-dropdown {
  gap: 0;
  padding: 0;
}

.nav-dropdown li {
  width: 100%;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown,
.nav-has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav .nav-dropdown a:not(.nav-cta-link) {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 38px;
  padding: 8px 12px;
  line-height: 1.2;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #1f1f1f;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.site-nav .nav-dropdown a:not(.nav-cta-link):hover,
.site-nav .nav-dropdown a:not(.nav-cta-link).active {
  background: rgba(52, 171, 178, 0.2);
  color: #0b4c50;
}

.site-nav .nav-dropdown a:not(.nav-cta-link)::after {
  display: none;
}

.site-nav a:not(.nav-cta-link) {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1d1d1d;
  border-radius: 10px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav a:not(.nav-cta-link)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 20px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.is-open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav a:not(.nav-cta-link):hover,
.site-nav a:not(.nav-cta-link).active {
  color: #000;
  background: rgba(52, 171, 178, 0.12);
}

.site-nav a:not(.nav-cta-link):hover::after,
.site-nav a:not(.nav-cta-link).active::after {
  width: 66%;
}

.nav-cta-item {
  margin-left: 6px;
}

.site-nav .nav-cta-link {
  min-height: 42px;
  padding: 0.62rem 1rem;
  white-space: nowrap;
  box-shadow: 0 8px 16px rgba(229, 0, 125, 0.24);
}

.site-nav .nav-cta-link.active {
  outline: 2px solid rgba(52, 171, 178, 0.7);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  min-height: 46px;
  padding: 0.72rem 1.25rem;
  border: 2px solid transparent;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: rgb(229, 0, 125);
  color: #fff;
  box-shadow: 0 10px 18px rgba(229, 0, 125, 0.25);
}

.btn-primary:hover {
  background: var(--brand-top);
  color: #fff;
}

.btn-secondary {
  background: rgb(229, 0, 125);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--brand-top);
  color: #fff;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.btn-ghost {
  background: #fff;
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--brand-top);
  border-color: var(--brand-top);
  color: #fff;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 70;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 2px solid rgba(229, 0, 125, 0.35);
  background: #fff;
  color: var(--brand);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 14px 26px rgba(229, 0, 125, 0.32);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(52, 171, 178, 0.45);
  outline-offset: 2px;
}

.hero {
  padding: var(--s-6) 0 var(--s-5);
}

.hero h1,
.page-hero h1 {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.page-hero {
  min-height: clamp(300px, 38vh, 360px);
  padding: 0;
  display: flex;
  align-items: center;
}

.hero .btn,
.page-hero .btn,
.hero-with-slider .btn {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.hero .btn:hover,
.hero .btn:focus-visible,
.page-hero .btn:hover,
.page-hero .btn:focus-visible,
.hero-with-slider .btn:hover,
.hero-with-slider .btn:focus-visible {
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.contact-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("images/contact/Quiosk-contact.jpg") center center / cover no-repeat;
  pointer-events: none;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(52, 171, 178, 0.3), rgba(11, 50, 54, 0.72));
  pointer-events: none;
}

.support-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.support-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("images/contact/vraag-storing.jpg") center center / cover no-repeat;
  pointer-events: none;
}

.support-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(52, 171, 178, 0.35), rgba(11, 50, 54, 0.72));
  pointer-events: none;
}

.support-hero h1 {
  margin: 0;
  color: #fff;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.38);
}

.contact-core {
  margin-top: -110px;
  position: relative;
  z-index: 6;
  padding-top: 0;
  background: transparent !important;
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  margin: 0;
  color: #fff;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.38);
}

.contact-panel {
  background: #fff;
  border: 2px solid rgba(52, 171, 178, 0.6);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(7, 7, 7, 0.14);
  padding: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.contact-info h2 {
  margin: 0 0 14px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 4px solid var(--brand);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-list li {
  padding: 10px 12px;
  border: 1px solid rgba(52, 171, 178, 0.28);
  border-radius: 10px;
  background: #fcfeff;
}

.contact-item-link {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.contact-item-static {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
}

.contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 171, 178, 0.14);
  border: 1px solid rgba(52, 171, 178, 0.48);
}

.contact-icon img {
  width: 16px;
  height: 16px;
  display: block;
}

.contact-key {
  display: block;
  margin-bottom: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #186c73;
}

.contact-list li:hover {
  border-color: rgba(229, 0, 125, 0.55);
  box-shadow: 0 8px 18px rgba(229, 0, 125, 0.12);
}

.contact-item-link:hover .contact-key {
  color: var(--brand);
}

.contact-map-wrap {
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  flex: 1;
}

.contact-map-cta {
  padding: 12px;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--line);
  background: #f7fbfc;
}

.partners-hero-bg {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 78vh, 760px);
  padding: 0;
  display: flex;
  align-items: center;
}

.partners-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("images/word-partner/hero-background.jpg") center center / cover no-repeat;
  pointer-events: none;
}

.partners-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(52, 171, 178, 0.7);
  pointer-events: none;
}

.partners-hero-bg .hero-copy {
  max-width: 980px;
}

.partners-hero-bg .hero-copy h1 {
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.partners-hero-bg .hero-copy > p {
  max-width: 1040px;
  line-height: 1.6;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.partners-hero-bg .hero-copy .trust-line {
  max-width: 1040px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.partners-hero-bg .hero-bullet-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.32rem;
  max-width: 1040px;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}

.hero-with-slider {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 78vh, 760px);
  padding: 0;
  display: flex;
  align-items: center;
}

.hero-with-slider .container {
  position: relative;
  z-index: 2;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  touch-action: pan-y;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(52, 171, 178, 0.5);
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 18s infinite;
  pointer-events: none;
}

.hero-slider.is-js .hero-slide {
  animation: none;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.5s ease, transform 5.5s ease;
}

.hero-slider.is-js .hero-slide.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.55);
}

.hero-arrow-prev {
  left: 16px;
}

.hero-arrow-next {
  right: 16px;
}

.home-slide-1 {
  background-image: url("images/home/quiok-1.jpg");
}

.home-slide-2 {
  background-image: url("images/home/Quiosk_Nistelrode_01.jpg");
  animation-delay: 6s;
}

.home-slide-3 {
  background-image: url("images/home/quiok-3.jpg");
  animation-delay: 12s;
}

.fans-slide-1 {
  background-image: url("images/voor-onze-fans/hero/Quiosk42.jpg");
}

.fans-slide-2 {
  background-image: url("images/voor-onze-fans/hero/quiok-2.jpg");
  animation-delay: 6s;
}

.fans-slide-3 {
  background-image: url("images/voor-onze-fans/hero/Quiosk42.jpg");
  animation-delay: 12s;
}

.hero-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.partners-hero-grid {
  align-items: stretch;
  grid-template-columns: 1fr;
}

.partners-hero-badges {
  margin-top: var(--s-3);
}

.partners-hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 0;
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.partners-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-quiosk-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  align-items: stretch;
}

.partners-about-overlap {
  margin-top: -110px;
  position: relative;
  z-index: 6;
  background: transparent !important;
  padding-top: 0;
}

.page-word-partner main > .partners-about-overlap {
  box-shadow: none;
}

.page-word-partner .site-header {
  border-bottom: 0;
}

.page-word-partner main > .partners-about-overlap::before {
  display: none;
}

.partners-about-overlap .container.card {
  border: 0;
  box-shadow: 0 22px 54px rgba(7, 7, 7, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #ffffff);
  padding: clamp(18px, 2vw, 30px);
}

.partners-about-overlap .container.card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: 0 22px 54px rgba(7, 7, 7, 0.14);
}

.about-quiosk-copy {
  min-width: 0;
  border: 0;
  border-radius: 16px;
  background: #fff;
  padding: clamp(18px, 2vw, 28px);
  box-shadow: 0 10px 24px rgba(7, 7, 7, 0.08);
}

.about-quiosk-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
  text-align: left;
  text-wrap: balance;
}

.about-quiosk-copy p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.about-quiosk-copy h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  color: rgb(229, 0, 125);
}

.about-quiosk-media {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #fff;
  padding: clamp(18px, 2vw, 28px);
  box-shadow: 0 10px 24px rgba(7, 7, 7, 0.08);
}

.about-quiosk-media-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: grab;
}

.about-quiosk-media-trigger:active {
  cursor: grabbing;
}

.about-quiosk-media-trigger img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
  transition: transform 0.32s ease;
}

.about-quiosk-media-trigger:hover img {
  transform: scale(1.02);
}

.about-quiosk-media-cta {
  position: absolute;
  right: 14px;
  top: 14px;
  transform: none;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 0;
  background: rgb(229, 0, 125);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(229, 0, 125, 0.34);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  pointer-events: none;
}

.about-quiosk-media-trigger:hover .about-quiosk-media-cta {
  background: var(--brand-top);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(52, 171, 178, 0.36);
}

.about-quiosk-media-badge {
  display: none;
}

.about-quiosk-cta-block {
  margin-top: var(--s-3);
  padding-top: var(--s-2);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}

.lead-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  min-height: 100%;
  padding: 30px 24px;
  border: 2px solid rgb(229, 0, 125);
  background: rgb(229, 0, 125);
  color: #fff;
  box-shadow: 0 12px 26px rgba(229, 0, 125, 0.28);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.lead-banner h2,
.lead-banner p {
  margin: 0;
  text-align: center;
}

.lead-banner p {
  max-width: 560px;
}

.lead-banner:hover {
  transform: translateY(-3px);
  border-color: var(--brand-top);
  background: var(--brand-top);
  box-shadow: 0 18px 30px rgba(52, 171, 178, 0.34);
}

.partner-references-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "prev viewport next"
    ". dots .";
  align-items: center;
  gap: 12px;
  background: #fff;
}

.partner-references-arrow-prev {
  grid-area: prev;
}

.partner-references-viewport {
  grid-area: viewport;
}

.partner-references-arrow-next {
  grid-area: next;
}

.partner-references-viewport {
  overflow-x: hidden;
  overflow-y: visible;
  padding: 8px 6px 14px;
  background: #fff;
}

.partner-references-track {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  transition: transform 0.34s ease;
  will-change: transform;
  background: #fff;
}

.partner-references-track-single {
  justify-content: center;
}

.partner-reference-card {
  flex: 0 0 clamp(620px, 64vw, 860px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 20px;
  min-height: 280px;
  border: 1px solid rgba(52, 171, 178, 0.26);
  background: #fff;
  box-shadow: 0 6px 16px rgba(16, 35, 38, 0.08);
}

.partner-references-slider .partner-reference-card:hover,
.partner-references-slider .partner-reference-card:focus-within {
  transform: none;
  box-shadow: 0 6px 16px rgba(16, 35, 38, 0.08);
  border-color: rgba(52, 171, 178, 0.26);
}

.partner-references-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(52, 171, 178, 0.45);
  background: #fff;
  color: #113437;
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background-color .2s ease;
}

.partner-references-arrow:hover,
.partner-references-arrow:focus-visible {
  transform: translateY(-1px);
  border-color: var(--brand);
  color: var(--brand);
}

.partner-references-arrow:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none;
}

.partner-references-dots {
  grid-area: dots;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
}

.partner-references-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(52, 171, 178, 0.5);
  background: rgba(52, 171, 178, 0.2);
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.partner-references-dot:hover,
.partner-references-dot:focus-visible {
  transform: scale(1.08);
  border-color: var(--brand-top);
}

.partner-references-dot.is-active {
  background: var(--brand);
  border-color: var(--brand);
}

.partner-reference-avatar {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  object-fit: contain;
  padding: 10px;
  background: #fff;
  display: block;
  border: 2px solid rgba(52, 171, 178, 0.35);
}

.partner-reference-quote {
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.72;
  color: #1c3133;
  text-wrap: pretty;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.partner-reference-card-template .partner-reference-quote {
  min-height: 7.2em;
}

.partner-reference-card-template:first-child .partner-reference-quote {
  min-height: 0;
}

.partner-reference-toggle {
  display: none;
}

.partner-reference-content {
  width: 100%;
}

.partner-reference-featured-head {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
}

.partner-reference-logo-slot {
  width: 120px;
  height: 120px;
  min-height: 120px;
  border: 1px solid rgba(52, 171, 178, 0.3);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #456b6e;
  font-weight: 700;
  font-size: 0.72rem;
  background: #fff;
  overflow: hidden;
  margin: 0 auto;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.partner-reference-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 6px;
}

.partner-reference-logo-slot span {
  display: none;
}

.partner-reference-logo-slot.is-empty span {
  display: inline;
}

.partner-reference-person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.partner-reference-footer {
  margin-top: auto;
  width: min(100%, 420px);
  padding-top: 16px;
  position: relative;
  display: flex;
  justify-content: center;
}

.partner-reference-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 300px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-top) 0%, var(--brand) 100%);
}

.partner-reference-footer .partner-reference-person-wrap {
  width: auto;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.partner-reference-person-shell {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 1px solid rgba(52, 171, 178, 0.35);
  background: linear-gradient(160deg, rgba(52, 171, 178, 0.12), rgba(255, 255, 255, 0.92));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.partner-reference-person-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partner-reference-person-fallback {
  display: none;
  color: #2f6164;
  font-weight: 800;
  font-size: 0.88rem;
}

.partner-reference-person-shell.is-empty .partner-reference-person-fallback {
  display: inline;
}

.partner-reference-meta {
  display: grid;
  gap: 3px;
  text-align: center;
}

.partner-reference-client,
.partner-reference-name {
  margin: 0;
}

.partner-reference-client {
  font-size: 0.8rem;
  color: #53787b;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.partner-reference-name {
  font-size: 1.16rem;
  color: #113437;
  font-weight: 900;
}

.partner-references-slider.is-draggable .partner-references-viewport {
  cursor: grab;
}

.partner-references-slider.is-dragging .partner-references-viewport {
  cursor: grabbing;
}

.partner-photo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.partner-photo-strip img {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.partner-photo-strip img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  filter: saturate(1.06);
}

.partner-photo-viewable {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.image-lightbox-img {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.image-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.image-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.image-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.16);
}

.image-lightbox-nav-prev {
  left: 18px;
}

.image-lightbox-nav-next {
  right: 18px;
}

.quiosk-360-modal {
  position: fixed;
  inset: 0;
  z-index: 96;
  background: rgba(0, 0, 0, 0.82);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.quiosk-360-modal.is-open {
  display: flex;
}

.quiosk-360-dialog {
  position: relative;
  width: min(1120px, 96vw);
  max-height: 94vh;
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  border: 0;
  padding: 14px 14px 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.quiosk-360-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 46px 10px 4px;
}

.quiosk-360-title {
  font-size: 1.03rem;
  line-height: 1.2;
  font-weight: 800;
  color: #0f2f31;
}

.quiosk-360-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quiosk-360-zoom {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.quiosk-360-zoom-btn,
.quiosk-360-zoom-reset {
  min-height: 30px;
  border: 1px solid rgba(7, 7, 7, 0.2);
  background: #fff;
  color: #111;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.quiosk-360-zoom-btn {
  width: 30px;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
}

.quiosk-360-zoom-reset {
  padding: 0 10px;
  font-size: 0.78rem;
}

.quiosk-360-zoom-btn:hover,
.quiosk-360-zoom-reset:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.quiosk-360-zoom-value {
  min-width: 42px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #2d686c;
}

.quiosk-360-counter {
  margin: 0;
  min-width: 64px;
  text-align: right;
  font-size: 0.86rem;
  font-weight: 800;
  color: #2d686c;
}

.quiosk-360-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  background: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 5;
}

.quiosk-360-close:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.quiosk-360-stage {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 0;
  background: #fff;
  cursor: grab;
  touch-action: pan-y;
}

.quiosk-360-stage:active {
  cursor: grabbing;
}

.quiosk-360-image {
  width: 100%;
  height: min(68vh, 640px);
  object-fit: contain;
  object-position: center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: center center;
  transition: transform 0.18s ease;
}

.quiosk-360-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(7, 7, 7, 0.56);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.quiosk-360-nav:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.quiosk-360-nav:hover {
  background: rgba(229, 0, 125, 0.9);
  border-color: rgba(229, 0, 125, 0.95);
}

.quiosk-360-nav-prev {
  left: 10px;
}

.quiosk-360-nav-next {
  right: 10px;
}

.quiosk-360-hint {
  margin: 12px 6px 0;
  text-align: center;
  font-size: 0.86rem;
  color: #4c4c4c;
  letter-spacing: 0.01em;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 48px 16px 18px;
  font-weight: 800;
  color: var(--ink);
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 900;
}

.faq-item[open] {
  border-color: rgba(52, 171, 178, 0.75);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-inline-link {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.faq-inline-link:hover {
  color: var(--brand-strong);
}

.faq-item .faq-list {
  margin: 0;
  padding: 0 18px 14px 38px;
  color: var(--muted);
}

.faq-item .faq-list li + li {
  margin-top: 4px;
}

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

.hero-copy {
  max-width: 900px;
}

.hero-with-slider .hero-copy {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.page-hero .container {
  text-align: center;
}

.page-hero .container p {
  max-width: 72ch;
  margin: 0.7rem auto 0;
}

.hero-with-slider .hero-copy h1 {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.03;
  text-wrap: balance;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  margin: 0;
  max-width: 980px;
}

.hero-with-slider .hero-copy > p {
  margin: 0;
  max-width: 760px;
}

.hero-with-slider .hero-copy .cta-row {
  justify-content: center;
  margin-top: 6px;
}

.proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: var(--s-2);
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Myriad Pro", "MyriadPro-Semibold", "Arial", sans-serif;
  line-height: 1.1;
  margin-top: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.9rem);
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

main > .section > .container > h2,
main > .section > .container.card > h2 {
  display: block;
  width: fit-content;
  padding-bottom: 8px;
  margin: 0 auto 18px;
  text-align: center;
  border-bottom: 4px solid rgb(229, 0, 125);
}

main > .section > .container > p,
main > .section > .container.card > p {
  max-width: 74ch;
  margin: 0 auto 20px;
  text-align: center;
}

p {
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--muted);
}

.hero-with-slider h1,
.hero-with-slider .reveal > p {
  color: #fff;
}

.section {
  padding: var(--section-air) 0;
  position: relative;
}

main > .section:last-child {
  padding-bottom: var(--s-5);
}

.section > .container {
  width: min(1400px, 95%);
  margin: 0 auto;
}

main > .section:nth-of-type(odd) {
  background: #ffffff;
}

main > .section:nth-of-type(even) {
  background: #f2fbfc;
}

main > .section + .section {
  box-shadow: inset 0 1px 0 var(--line);
}

main > .section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand-top);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-3);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-top);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.card .section-icon {
  transition: transform 0.22s ease, filter 0.22s ease;
}

.card:hover .section-icon {
  transform: translateY(-2px) scale(1.04);
}

.card h3 {
  margin: 0 0 10px;
  line-height: 1.25;
  text-wrap: balance;
  transition: color 0.22s ease;
}

.card h2,
.card h3,
.card p,
.card label {
  text-align: left;
}

.card p {
  margin: 0;
}

.card p + p {
  margin-top: 10px;
}

.grid-2 > .card h3,
.grid-3 > .card h3,
.grid-4 > .card h3,
.home-value-grid .card h3,
.home-how-grid .card h3 {
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
}

.mobile-accordion-toggle {
  border: 0;
  background: transparent;
  width: 100%;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: default;
}

.card:hover h3 {
  color: var(--brand);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 16px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
}

@media (min-width: 921px) {
  .over-intro-head {
    max-width: 1100px;
  }

  .over-intro-head h2 {
    white-space: nowrap;
  }
}

.section-head > p:not(.section-kicker) {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-head code {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.section-kicker {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  line-height: 1;
}

.section-kicker-row {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  vertical-align: middle;
}

.section-kicker-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.home-value-strip {
  margin-top: -28px;
  position: relative;
  z-index: 8;
}

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

.value-card {
  border-top: 4px solid var(--brand-top);
  background: rgba(255, 255, 255, 0.96);
}

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

.how-card {
  position: relative;
  border-top: 4px solid rgba(52, 171, 178, 0.8);
  overflow: hidden;
}

.how-step {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 8px 16px rgba(229, 0, 125, 0.25);
}

.card.lead-banner {
  background: rgb(229, 0, 125) !important;
  border: 2px solid rgb(229, 0, 125) !important;
  color: #fff !important;
  padding: 44px 32px;
  box-shadow: 0 18px 34px rgba(229, 0, 125, 0.34);
}

.card.lead-banner h2,
.card.lead-banner p {
  color: #fff;
  text-align: center;
  max-width: 680px;
}

.card.lead-banner .btn {
  background: #fff;
  color: rgb(229, 0, 125);
  border-color: #fff;
  margin-top: 8px;
  min-width: 270px;
}

.card.lead-banner:hover {
  background: var(--brand-top) !important;
  border-color: var(--brand-top) !important;
  box-shadow: 0 22px 36px rgba(52, 171, 178, 0.34);
  transform: translateY(-4px);
}

.section-icon {
  width: 52px;
  height: 52px;
  display: inline-block;
  margin-bottom: var(--s-2);
}

.section-icon-inverse {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.hero-with-slider .card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(3px);
}

.badges,
.chips,
.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: var(--s-3);
}

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

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

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

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

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

.chips .card strong {
  display: block;
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.2;
  color: var(--ink);
}

.badge {
  border-radius: 14px;
  background: #fff;
  border: 2px solid #141414;
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.step-number {
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#proces .process-flow {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  isolation: isolate;
  overflow: visible;
}

#proces .process-flow::before,
#proces .process-flow::after {
  content: "";
  position: absolute;
  left: 2.5%;
  right: 2.5%;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  transform: translateY(-50%);
  pointer-events: none;
}

#proces .process-flow::before {
  background: rgba(52, 171, 178, 0.28);
  z-index: -2;
}

#proces .process-flow::after {
  background: linear-gradient(90deg, var(--brand-top), var(--brand));
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  z-index: -1;
  transition: transform 1s ease;
}

#proces .process-flow.is-visible::after {
  transform: translateY(-50%) scaleX(1);
}

#proces .process-flow [data-process-step] {
  position: relative;
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 8px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.72s ease, transform 0.82s ease;
}

#proces .process-flow [data-process-step]:nth-child(1) {
  transition-delay: 0.18s;
}

#proces .process-flow [data-process-step]:nth-child(2) {
  transition-delay: 0.4s;
}

#proces .process-flow [data-process-step]:nth-child(3) {
  transition-delay: 0.62s;
}

#proces .process-flow [data-process-step]:nth-child(4) {
  transition-delay: 0.84s;
}

#proces .process-flow [data-process-step]:nth-child(5) {
  transition-delay: 1.06s;
}

#proces .process-flow.is-visible [data-process-step] {
  opacity: 1;
  transform: translateY(0);
}


#proces .process-flow .step-number {
  font-size: clamp(1.3rem, 1.65vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 0.18rem;
  line-height: 1.05;
}

#proces .process-flow .step-subtitle {
  margin: 0 0 0.5rem;
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  font-weight: 700;
  color: #2b2b2b;
  line-height: 1.25;
}

#proces .process-flow [data-process-step] p:not(.step-number):not(.step-subtitle) {
  font-size: 0.99rem;
  line-height: 1.55;
}

.over-process-flow {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  isolation: isolate;
  overflow: visible;
}

.over-process-flow::before,
.over-process-flow::after {
  content: "";
  position: absolute;
  left: 2.5%;
  right: 2.5%;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  transform: translateY(-50%);
  pointer-events: none;
}

.over-process-flow::before {
  background: rgba(52, 171, 178, 0.28);
  z-index: -2;
}

.over-process-flow::after {
  background: linear-gradient(90deg, var(--brand-top), var(--brand));
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  z-index: -1;
  transition: transform 1s ease;
}

.over-process-flow.is-visible::after {
  transform: translateY(-50%) scaleX(1);
}

.over-process-flow [data-process-step] {
  position: relative;
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 8px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.72s ease, transform 0.82s ease;
}

.over-process-flow [data-process-step]:nth-child(1) {
  transition-delay: 0.18s;
}

.over-process-flow [data-process-step]:nth-child(2) {
  transition-delay: 0.4s;
}

.over-process-flow [data-process-step]:nth-child(3) {
  transition-delay: 0.62s;
}

.over-process-flow [data-process-step]:nth-child(4) {
  transition-delay: 0.84s;
}

.over-process-flow [data-process-step]:nth-child(5) {
  transition-delay: 1.06s;
}

.over-process-flow.is-visible [data-process-step] {
  opacity: 1;
  transform: translateY(0);
}

.over-process-flow .step-number {
  font-size: clamp(1.3rem, 1.65vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 0.18rem;
  line-height: 1.05;
}

.over-process-flow .step-subtitle {
  margin: 0 0 0.5rem;
  font-size: clamp(1.02rem, 1.1vw, 1.2rem);
  font-weight: 800;
  color: #1e1e1e;
  line-height: 1.3;
}

.over-process-flow [data-process-step] p:not(.step-number):not(.step-subtitle) {
  font-size: 0.99rem;
  line-height: 1.55;
}

.trust-line {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

.hero-with-slider .trust-line {
  color: #fff;
  opacity: 0.95;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-2);
}

.cta-row-center {
  justify-content: center;
}

.feature-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.result-card {
  border-left: 6px solid var(--brand);
}

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

.form-grid.form-stack {
  grid-template-columns: 1fr;
}

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

input,
textarea,
select,
button {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  border: 2px solid #bdbdbd;
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(229, 0, 125, 0.32);
  border-color: var(--brand);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.banner {
  background: #fff;
  color: var(--ink);
  border: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: var(--s-5);
  display: grid;
  grid-template-columns: 30% 70%;
  gap: clamp(18px, 2.6vw, 34px);
  align-items: stretch;
}

.banner-media {
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  border: 0;
  min-height: 320px;
}

.banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.banner-single {
  grid-template-columns: 1fr;
}

.banner-single .banner-content {
  max-width: 920px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.banner-content-center {
  align-items: center;
  text-align: center;
}

.banner-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.banner-title-row .section-icon {
  margin-bottom: 0;
}

.banner-title-row h2 {
  margin: 0;
}

.home-core h2 {
  margin-bottom: var(--s-3);
}

.home-core {
  margin-top: -110px;
  position: relative;
  z-index: 6;
  padding-top: 0;
  background: transparent !important;
}

.home-core .container {
  position: relative;
  z-index: 2;
}

.home-core .grid-3 {
  align-items: stretch;
}

.home-core .card {
  border: 2px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to bottom, var(--brand-top), var(--brand)) border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.home-core .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 34px rgba(52, 171, 178, 0.32);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(var(--brand-top), var(--brand-top)) border-box;
}

.home-core .card .btn {
  margin-top: auto;
}

@media (min-width: 921px) {
  .home-core .card {
    padding: 18px;
    gap: 8px;
  }

  .home-core .card h3 {
    min-height: 0;
    margin-bottom: 6px;
  }
}

.home-news .container > p {
  margin-bottom: 24px;
}

.news-grid {
  align-items: stretch;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border-width: 2px;
  border-color: rgba(52, 171, 178, 0.45);
  cursor: pointer;
}

.news-media {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.news-card:hover .news-media img {
  transform: scale(1.03);
}

.news-date {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(52, 171, 178, 0.7);
  background: rgba(52, 171, 178, 0.12);
  color: #186c73;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.news-card h3,
.news-card p {
  margin: 0;
}

.news-card .btn {
  margin-top: auto;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(6, 22, 24, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.news-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.news-modal-dialog {
  position: relative;
  width: min(860px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  border: 2px solid rgba(52, 171, 178, 0.42);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.news-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.news-modal-media {
  aspect-ratio: 16 / 7;
  border-bottom: 1px solid var(--line);
}

.news-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-modal-body {
  padding: 20px;
}

.news-modal-body h3 {
  margin: 10px 0 12px;
}

.news-modal-content p {
  margin: 0 0 10px;
}

.blog-hub-wrap {
  display: grid;
  gap: 20px;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border-color: rgba(52, 171, 178, 0.45);
}

.blog-featured-media {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.blog-featured:hover .blog-featured-media img {
  transform: scale(1.03);
}

.blog-featured-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgb(229, 0, 125);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.blog-featured-content {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 6px;
}

.blog-featured-content h2,
.blog-featured-content p {
  margin: 0;
}

.blog-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border-color: rgba(52, 171, 178, 0.4);
  width: min(980px, 100%);
  margin: 0 auto;
}

.blog-control-group {
  display: grid;
  gap: 8px;
}

.blog-control-group h3 {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #197278;
}

.blog-year-nav,
.blog-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-chip,
.blog-filter {
  border: 1px solid rgba(52, 171, 178, 0.42);
  background: #fff;
  color: #17484b;
  border-radius: 999px;
  min-height: 36px;
  padding: 0 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.blog-chip:hover,
.blog-filter:hover,
.blog-chip.is-active,
.blog-filter.is-active {
  background: rgba(52, 171, 178, 0.2);
  border-color: rgba(52, 171, 178, 0.62);
  color: #0d4f54;
}

.blog-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.blog-year {
  position: relative;
  display: grid;
  gap: 12px;
  padding-left: 28px;
  width: 100%;
  margin: 0 auto;
}

.blog-year::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(52, 171, 178, 0.22);
}

.blog-year-head h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.blog-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 16px 52px 16px 16px;
  border-color: rgba(52, 171, 178, 0.34);
  opacity: 1;
  transform: translateY(0);
  cursor: pointer;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.blog-timeline-item:hover,
.blog-timeline-item:focus-visible {
  border-color: rgba(52, 171, 178, 0.55);
  box-shadow: 0 14px 26px rgba(7, 7, 7, 0.08);
  transform: translateY(-2px);
  outline: none;
}

.blog-timeline-item::after {
  content: ">";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(52, 171, 178, 0.45);
  background: rgba(52, 171, 178, 0.12);
  color: #0e575c;
  font-weight: 900;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.js .blog-timeline-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.24s ease;
}

.js .blog-timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-timeline-item::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(52, 171, 178, 0.55);
  background: #fff;
}

.blog-item-date {
  display: grid;
  gap: 3px;
  text-align: right;
  align-self: center;
  padding-right: 2px;
}

.blog-item-date strong {
  font-size: 1rem;
  line-height: 1.1;
}

.blog-item-date span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a7178;
}

.blog-detail-section .container {
  width: min(1180px, 95%);
}

.blog-detail-section {
  padding-top: 10px;
}

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

.blog-detail-sidecol {
  display: grid;
  gap: 10px;
  align-self: start;
}

.blog-detail-sidebar {
  position: sticky;
  top: 92px;
  padding: 16px;
  border-color: rgba(52, 171, 178, 0.4);
}

.blog-detail-sidebar h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.blog-detail-topback {
  width: 100%;
  min-height: 40px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.blog-detail-year {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.blog-detail-year:first-of-type {
  margin-top: 0;
}

.blog-detail-year h3 {
  margin: 0;
  font-size: 0.9rem;
  color: #186d74;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-detail-link {
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 0.94rem;
  line-height: 1.35;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.blog-detail-link:hover {
  border-color: rgba(52, 171, 178, 0.38);
  background: rgba(52, 171, 178, 0.14);
}

.blog-detail-link.is-active {
  border-color: rgba(229, 0, 125, 0.45);
  background: rgba(229, 0, 125, 0.1);
  color: #9f0058;
  font-weight: 800;
}

.blog-detail-article {
  padding: 18px;
  border-color: rgba(52, 171, 178, 0.35);
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 10px;
}

.blog-detail-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(52, 171, 178, 0.55);
  background: rgba(52, 171, 178, 0.12);
  color: #176a70;
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-detail-article p {
  margin: 0 0 12px;
  line-height: 1.65;
}

.blog-detail-article .news-media {
  margin-bottom: 0;
}

.blog-detail-title {
  margin: 4px 0 14px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  position: relative;
  padding-bottom: 10px;
}

.blog-detail-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 84px;
  height: 2px;
  border-radius: 999px;
  background: rgba(52, 171, 178, 0.55);
}

.blog-item-content {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  grid-template-areas:
    "thumb title"
    "thumb desc";
  gap: 10px 16px;
  align-items: start;
}

.blog-item-thumb {
  grid-area: thumb;
  width: 100%;
  max-width: 168px;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(52, 171, 178, 0.35);
}

.blog-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.22s ease;
}

.blog-timeline-item:hover .blog-item-thumb img {
  transform: scale(1.04);
}

.blog-item-content h4,
.blog-item-content p {
  margin: 0;
}

.blog-item-content h4 {
  grid-area: title;
}

.blog-item-content p {
  grid-area: desc;
  line-height: 1.5;
}

.blog-timeline-item:hover::after,
.blog-timeline-item:focus-visible::after {
  border-color: rgba(52, 171, 178, 0.62);
  background: rgba(52, 171, 178, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 24px));
  z-index: 120;
}

.cookie-banner-inner {
  border: 1px solid rgba(52, 171, 178, 0.28);
  border-top: 4px solid rgb(229, 0, 125);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(7, 7, 7, 0.18);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-banner-copy {
  min-width: 0;
}

.cookie-banner-copy h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
  line-height: 1.2;
  color: #102326;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #263437;
}

.cookie-banner p a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-banner-actions .btn {
  min-height: 42px;
  padding: 0.62rem 1.04rem;
}

.cookie-banner-actions .btn-primary {
  min-width: 162px;
  box-shadow: 0 8px 18px rgba(229, 0, 125, 0.26);
}

.cookie-banner-actions .btn-primary:hover {
  transform: translateY(-1px);
}

.cookie-banner-actions .btn-secondary {
  opacity: 1;
  background: #fff;
  color: #16393d;
  border-color: rgba(52, 171, 178, 0.45);
}

.cookie-banner-actions .btn-secondary:hover {
  background: #fff;
  color: #0f3134;
  border-color: rgba(52, 171, 178, 0.7);
}

.footer-copy .footer-copy-cookie-link {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-copy .footer-copy-cookie-link:hover {
  color: var(--brand);
}

@media (max-width: 1100px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-controls {
    grid-template-columns: 1fr;
  }

  .blog-hub-wrap {
    width: min(960px, 100%);
  }

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

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

  .blog-detail-sidecol {
    gap: 8px;
  }

  .blog-detail-sidebar {
    position: static;
    top: auto;
  }
}

@media (max-width: 760px) {
  .cookie-banner {
    bottom: 12px;
    width: calc(100% - 16px);
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
  }

  .cookie-banner-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }

  .partners-about-overlap .about-quiosk-copy h2 {
    font-size: clamp(1.28rem, 5.8vw, 1.7rem);
    line-height: 1.22;
    max-width: 20ch;
    margin-inline: auto;
    text-align: center;
  }

  .partners-about-overlap .about-quiosk-copy p {
    text-align: center;
  }

  .partners-about-overlap .about-quiosk-copy .cta-row {
    justify-content: center;
  }

  .over-subnav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .over-subnav a {
    width: 100%;
    min-height: 40px;
  }

  .press-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .press-card {
    gap: 10px;
    padding: 14px;
  }

  .press-meta {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
  }

  .press-card .btn,
  .press-card-link {
    width: 100%;
    justify-content: center;
  }

  .media-photo-actions {
    gap: 6px;
  }

  .media-photo-actions .btn {
    flex: 1 1 100%;
    width: 100%;
  }

  .media-photo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .media-photo-card {
    padding: 12px;
    gap: 10px;
  }

  .media-photo {
    aspect-ratio: 4 / 3;
  }

  .brand-download-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand-download-card {
    gap: 10px;
    padding: 12px;
  }

  .brand-preview {
    min-height: 120px;
    padding: 10px;
  }

  .brand-preview img {
    max-height: 92px;
  }

  .blog-hub-wrap {
    width: 100%;
  }

  .blog-year {
    padding-left: 0;
    max-width: none;
  }

  .blog-year::before,
  .blog-timeline-item::before {
    display: none;
  }

  .blog-timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 50px 14px 14px;
  }

  .blog-timeline-item::after {
    right: 10px;
    top: 12px;
    transform: none;
  }

  .blog-item-date {
    grid-auto-flow: column;
    align-items: baseline;
    justify-content: start;
    gap: 8px;
    text-align: left;
    align-self: start;
    padding-right: 0;
  }

  .blog-item-thumb {
    max-width: 100%;
  }

  .blog-item-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "thumb"
      "title"
      "desc";
    gap: 9px;
  }

  .blog-item-date span {
    font-size: 0.78rem;
  }

  .blog-detail-sidebar {
    padding: 14px;
  }

  .blog-detail-link {
    font-size: 0.9rem;
  }

  .blog-detail-layout > .blog-detail-article {
    order: 1;
  }

  .blog-detail-layout > .blog-detail-sidecol {
    order: 2;
  }
}

main > .section.quick-search {
  background: rgb(229, 0, 125);
}

.quick-search-band {
  border: 2px solid rgba(229, 0, 125, 0.6);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  padding: 20px;
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.quick-search-copy {
  display: grid;
  gap: 8px;
}

.quick-search-copy h2 {
  margin: 0;
  text-align: center;
}

.quick-search-copy p {
  margin: 0;
  max-width: 52ch;
}

.quick-search-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.quick-search-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.quick-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 10px;
  align-items: center;
  max-width: none;
  margin: 0;
  width: 100%;
}

.quick-search-input-wrap {
  min-height: 52px;
  border: 1px solid rgba(13, 38, 43, 0.16);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(13, 38, 43, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}

.quick-search-icon {
  width: 18px;
  height: 18px;
  color: rgba(13, 38, 43, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quick-search-icon svg {
  width: 18px;
  height: 18px;
}

.quick-search-form input[type="text"] {
  min-height: 52px;
  font-size: 16px;
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.quick-search-form .btn {
  min-height: 52px;
  padding-inline: 22px;
  border-radius: 999px;
}

.quick-search-submit-icon {
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quick-search-submit-icon svg {
  width: 17px;
  height: 17px;
  display: block;
}

.quick-search-nearby-btn {
  width: 52px;
  min-width: 52px;
  padding: 0;
  justify-content: center;
  background: var(--brand-top);
  border-color: var(--brand-top);
  color: #fff;
  box-shadow: 0 8px 18px rgba(52, 171, 178, 0.28);
}

.quick-search-nearby-btn::before {
  content: "⌖";
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.quick-search-nearby-label {
  display: none;
}

.quick-search-nearby-btn svg {
  display: none;
}

.quick-search-nearby-btn:hover,
.quick-search-nearby-btn:focus-visible {
  background: #2d989f;
  border-color: #2d989f;
  color: #fff;
}

.quick-search-nearby-btn[aria-busy="true"] {
  opacity: 0.7;
}

.quick-search-radius-wrap {
  display: inline-flex;
}

.quick-search-radius {
  min-height: 52px;
  border: 1px solid rgba(13, 38, 43, 0.16);
  border-radius: 999px;
  background: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%230d262b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 9px;
  box-shadow: 0 6px 16px rgba(13, 38, 43, 0.12);
  color: var(--ink);
  padding: 0 42px 0 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.quick-search-radius:focus {
  border-color: rgba(52, 171, 178, 0.75);
  box-shadow: 0 0 0 3px rgba(52, 171, 178, 0.15), 0 6px 16px rgba(13, 38, 43, 0.12);
}

.product-showcase .container > p {
  margin-bottom: 24px;
}

.popular-products-wrap {
  width: var(--content-shell-width);
  max-width: var(--content-shell-width);
  margin: 0 auto;
  padding: 0;
}

.popular-products-wrap > h2 {
  text-align: center;
}

.spotlight {
  border: 2px solid rgba(52, 171, 178, 0.45);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  touch-action: pan-y;
}

.spotlight-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  justify-content: center;
}

.spotlight-tab {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(52, 171, 178, 0.45);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.spotlight-tab.is-active {
  border-color: rgba(229, 0, 125, 0.7);
  background: rgba(229, 0, 125, 0.12);
  color: #b50063;
}

.spotlight-panel {
  display: none;
  flex-direction: column;
  gap: 18px;
}

.spotlight-panel.is-active {
  display: flex;
}

.spotlight-title-wide {
  margin: 0;
  width: 100%;
  font-size: clamp(2rem, 2.9vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.spotlight-panel-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.spotlight-copy {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 250, 251, 0.98) 100%);
  border: 1px solid rgba(52, 171, 178, 0.18);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(13, 38, 43, 0.06);
}

.spotlight-quote {
  margin: 0;
  padding-left: 14px;
  border-left: 5px solid var(--brand);
  color: #b50063;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 800;
}

.spotlight-copy p {
  margin: 0;
}

.spotlight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spot-chip {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(52, 171, 178, 0.24);
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.spot-chip.chip-new {
  border-color: rgba(229, 0, 125, 0.6);
  color: #b50063;
}

.spot-chip.chip-sale {
  border-color: rgba(229, 0, 125, 0.6);
  background: rgba(229, 0, 125, 0.12);
  color: #b50063;
}

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

.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 16px;
  border: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: inset 0 0 0 1px rgba(52, 171, 178, 0.16);
}

.usp-item span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: rgba(52, 171, 178, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.highlight-product-card {
  border: 1px solid rgba(52, 171, 178, 0.3);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(13, 38, 43, 0.08);
}

.highlight-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, rgba(255, 237, 242, 0.9), rgba(240, 249, 250, 0.92));
}

.highlight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent 45%);
  pointer-events: none;
}

.highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.spotlight-panel:hover .highlight-media img {
  transform: scale(1.04);
}

.highlight-label {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(229, 0, 125, 0.45);
  background: rgba(229, 0, 125, 0.12);
  color: #b40063;
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.highlight-product-card h4 {
  margin: 12px 0 0;
  font-size: 1.15rem;
  line-height: 1.1;
  text-align: center;
}

.spotlight-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.spotlight-dot {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(52, 171, 178, 0.55);
  background: #fff;
  color: rgba(13, 38, 43, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.spotlight-dot::before {
  content: attr(data-step);
}

.spotlight-dot:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 0, 125, 0.55);
  box-shadow: 0 6px 14px rgba(229, 0, 125, 0.18);
}

.spotlight-dot.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(229, 0, 125, 0.35);
}

.product-slider {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 12px;
  align-items: center;
}

.product-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.product-track {
  display: flex;
  gap: var(--s-3);
  transition: transform 0.8s ease;
  will-change: transform;
}

.product-card {
  flex: 0 0 calc((100% - (var(--s-3) * 5)) / 6);
  position: relative;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 4px solid var(--brand-top);
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: none;
  border-top-color: var(--brand-top);
}

.product-card h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.2;
}

.product-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-info-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  font-size: 0.92rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(229, 0, 125, 0.34);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.product-info-btn:hover {
  background: var(--brand-top);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(52, 171, 178, 0.3);
}

.product-info-btn:focus-visible {
  outline: 3px solid rgba(52, 171, 178, 0.45);
  outline-offset: 2px;
}

.product-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: #fff;
  color: #151515;
  font-size: 1.45rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-arrow:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.product-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(7, 7, 7, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-dialog {
  position: relative;
  width: min(520px, 100%);
  background: #fff;
  border-radius: 14px;
  border: 2px solid rgba(52, 171, 178, 0.45);
  padding: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.product-modal-dialog h3 {
  margin: 0 0 8px;
}

.product-modal-dialog p {
  margin: 0;
}

.product-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.home-proof-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-4);
  align-items: stretch;
  min-height: 360px;
}

.home-proof-layout > * {
  min-width: 0;
}

.proof-left {
  min-width: 0;
  display: flex;
  align-items: stretch;
  min-height: 100%;
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px 0;
  width: 100%;
  min-height: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.logo-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  animation: logoScroll 34s linear infinite;
}

.logo-group {
  width: 180px;
  display: grid;
  gap: 12px;
}

.logo-item {
  height: 84px;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.logo-item img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-item img.logo-no-bg {
  mix-blend-mode: normal;
}

.proof-right {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f5f5f5;
  height: 100%;
  min-height: 100%;
}

.proof-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.insta-feed {
  background: #f2fbfc;
}

.insta-wrap {
  width: var(--content-shell-width);
  max-width: var(--content-shell-width);
  margin: 0 auto;
  padding: 0;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.insta-slider {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
}

.insta-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.insta-track {
  display: flex;
  transition: transform 0.4s ease;
}

.insta-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.insta-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  aspect-ratio: 1 / 1;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.32s ease, transform 0.32s ease, box-shadow 0.22s ease;
}

.insta-card.is-pending {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.insta-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.insta-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.insta-card:hover img,
.insta-card:hover video {
  transform: scale(1.03);
}

.insta-card-empty {
  visibility: hidden;
}

.insta-arrow {
  position: relative;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand);
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.insta-arrow:hover {
  background: var(--brand-top);
  color: #fff;
}

.insta-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.insta-follow {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.insta-follow .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.social-follow-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
}

.social-follow-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.insta-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.insta-modal.is-open {
  display: flex;
}

.insta-modal-dialog {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.insta-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.insta-modal-close:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.insta-modal-media {
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-modal-media img {
  width: min(96vw, 1600px);
  max-height: 92vh;
  object-fit: contain;
  display: block;
}

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

.banner .section-icon-inverse {
  filter: none;
  opacity: 1;
}

.finder-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1rem;
}

.finder-layout-full {
  width: 100%;
  grid-template-columns: 1fr;
  gap: 0;
}

.map {
  min-height: clamp(720px, 82vh, 960px);
  border-radius: 0;
  border: 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.section-finder-map {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
}

.section-finder-map-hero {
  padding-top: 0;
  background: transparent !important;
}

.section-finder-map-hero .map {
  min-height: calc(100vh - 88px);
  min-height: calc(100dvh - 88px);
}

.finder-map-stack {
  position: relative;
}

.finder-map-controls {
  position: absolute;
  top: 20px;
  left: max(16px, calc((100vw - min(1400px, 95vw)) / 2));
  z-index: 5;
  width: min(500px, calc(100% - 32px));
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid rgba(229, 0, 125, 0.38);
  border-top: 4px solid rgb(229, 0, 125);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.13);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.finder-map-controls:hover {
  border-color: rgba(229, 0, 125, 0.55);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.finder-control-head {
  padding: 14px 18px 8px;
  border-bottom: 1px solid #e7f2f3;
}

.finder-control-head h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.08;
  font-weight: 900;
  color: #091f21;
  letter-spacing: 0.01em;
  text-align: center;
}

.finder-control-body {
  padding: 14px 18px 18px;
  display: grid;
  gap: 10px;
}

.finder-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.finder-search-row .btn {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
}

.finder-control-body input[type="text"] {
  min-height: 52px;
  border: 1px solid rgba(13, 38, 43, 0.18);
  border-radius: 999px;
  padding: 0 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #122a2c;
  background: #fff;
  box-shadow: 0 5px 14px rgba(13, 38, 43, 0.08);
  width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.finder-control-body input[type="text"]::placeholder {
  color: #6d8486;
}

.finder-control-body input[type="text"]:focus {
  outline: none;
  border-color: rgba(229, 0, 125, 0.72);
  box-shadow: 0 0 0 3px rgba(229, 0, 125, 0.16), 0 5px 14px rgba(13, 38, 43, 0.08);
}

.finder-radius-label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  font-size: 0.88rem;
  color: #11393c;
  letter-spacing: 0.005em;
}

.finder-radius-label select {
  min-height: 52px;
  border: 1px solid rgba(13, 38, 43, 0.18);
  border-radius: 999px;
  padding: 0 42px 0 16px;
  font-size: 0.98rem;
  font-weight: 700;
  background: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%230d262b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 9px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #122a2c;
  box-shadow: 0 5px 14px rgba(13, 38, 43, 0.08);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.finder-radius-label select:focus {
  outline: none;
  border-color: rgba(229, 0, 125, 0.72);
  box-shadow: 0 0 0 3px rgba(229, 0, 125, 0.16), 0 5px 14px rgba(13, 38, 43, 0.08);
}

.finder-alpha-overlap {
  margin-top: 0;
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.finder-results-overlap {
  margin-top: calc(-1 * var(--finder-overlap-dynamic, var(--finder-overlap)) - 1px);
  position: relative;
  z-index: 6;
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
}

.section-finder-map + .finder-results-overlap {
  box-shadow: none !important;
}

.section-finder-map + .finder-results-overlap::before {
  content: none !important;
}

.finder-results-summary {
  border: 0 !important;
  border-top: 4px solid var(--brand-top);
  padding: 14px 20px 16px;
  text-align: center;
  margin-bottom: 14px;
}

.finder-overlap-search {
  width: 100%;
  margin: 2px auto 14px;
}

.finder-overlap-search .finder-search-shell {
  align-items: center;
  gap: 12px;
}

.finder-overlap-search .finder-search-form {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 10px;
}

.finder-overlap-search .finder-search-logo {
  width: 42px;
  height: 42px;
}

.finder-results-line {
  margin: 0;
  font-size: clamp(1.02rem, 1.9vw, 1.22rem);
  font-weight: 800;
  color: #0e2f31;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding-bottom: 0;
  border-bottom: 0;
}

.finder-results-line strong {
  font-size: clamp(2.2rem, 4.8vw, 3.3rem);
  line-height: 0.95;
  font-weight: 900;
  color: var(--brand);
  display: inline-block;
  padding-bottom: 0;
  border-bottom: 0;
}

.finder-results-line span {
  display: block;
  line-height: 1.25;
}

.finder-no-location {
  margin: 14px auto 0;
  width: min(760px, 100%);
  border-radius: 14px;
  border: 1px solid rgba(229, 0, 125, 0.3);
  background: linear-gradient(180deg, rgba(255, 243, 250, 0.95), rgba(255, 250, 253, 0.98));
  box-shadow: 0 12px 28px rgba(229, 0, 125, 0.14);
  padding: 14px 16px;
  font-size: 1rem;
  color: #1e4b4f;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 921px) {
  .finder-results-summary .finder-no-location,
  .finder-no-location-secondary {
    margin-left: auto;
    margin-right: auto;
  }
}

.finder-no-location.is-visible {
  animation: finderNoLocationIn 0.32s ease;
}

.finder-no-location-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.finder-no-location-text {
  font-weight: 700;
  line-height: 1.35;
}

.finder-no-location-text strong {
  color: #0d2f31;
}

.finder-no-location-meta {
  font-size: 0.86rem;
  color: #587678;
}

.finder-no-location-secondary {
  margin-top: 18px;
}

.finder-no-location[hidden] {
  display: none !important;
}

.finder-detail-link {
  margin: 8px 0 0;
  text-align: center;
}

.finder-detail-link a {
  font-weight: 800;
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.finder-tip-btn {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
}

.finder-tip-btn-prominent {
  border: 1px solid rgba(229, 0, 125, 0.4);
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  text-underline-offset: 0;
  border-radius: 999px;
  padding: 8px 16px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(229, 0, 125, 0.24);
}

.finder-tip-btn:hover {
  color: var(--brand-strong);
}

.finder-tip-btn-prominent:hover {
  color: #fff;
  background: var(--brand-top);
  border-color: rgba(52, 171, 178, 0.45);
}

@keyframes finderNoLocationIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.finder-tip-modal {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(5, 10, 14, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.finder-tip-modal.is-open {
  display: flex;
}

.finder-tip-dialog {
  width: min(560px, 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(52, 171, 178, 0.36);
  border-top: 4px solid var(--brand-top);
  background: #fff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  padding: 20px;
  position: relative;
}

.finder-tip-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.finder-tip-dialog h3 {
  margin: 0 0 8px;
}

.finder-tip-dialog > p {
  margin: 0 0 14px;
}

.finder-tip-form {
  display: grid;
  gap: 10px;
}

.finder-tip-form label {
  display: grid;
  gap: 5px;
  font-weight: 700;
  color: #112c2e;
}

.finder-tip-form button[type="submit"] {
  justify-self: start;
}

.finder-location-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 16px 54px 16px 16px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to bottom, var(--brand-top), var(--brand)) border-box;
}

.finder-location-card::after {
  content: "\203A";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(52, 171, 178, 0.36);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f474b;
  background: #fff;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease,
    border-color 0.22s ease;
}

.finder-location-card:hover::after,
.finder-location-card:focus-visible::after {
  transform: translateY(-50%) translateX(2px);
  background: rgb(229, 0, 125);
  border-color: rgb(229, 0, 125);
  color: #fff;
}

.finder-location-card:focus-visible {
  outline: 3px solid rgba(52, 171, 178, 0.42);
  outline-offset: 2px;
}

.finder-location-media {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  column-gap: 12px;
  min-width: 0;
}

.finder-location-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(52, 171, 178, 0.32);
  background: #fff;
  flex-shrink: 0;
}

.finder-location-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.finder-location-name {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.2;
  color: #102f32;
}

.finder-location-card .finder-location-name {
  margin: 0 !important;
}

.finder-location-address {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.3;
  color: #3e6265;
}

.finder-location-distance {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--brand-accent);
}

.quiosk-map-card {
  min-width: 240px;
  max-width: 320px;
  padding: 4px 8px 8px;
  display: grid;
  gap: 8px;
  border-radius: 10px;
  background: #fff;
}

.quiosk-map-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.quiosk-map-card-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(52, 171, 178, 0.35);
  background: #fff;
  flex-shrink: 0;
}

.quiosk-map-card h4 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 900;
  color: #0f2f31;
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quiosk-map-card p {
  margin: 0;
  padding-left: 28px;
  color: #355b5e;
  font-size: 0.92rem;
  line-height: 1.4;
}

.quiosk-map-card-actions {
  margin-top: 2px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.quiosk-map-card-actions .btn {
  min-height: 34px;
  min-width: 0;
  width: 100%;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

.quiosk-map-card-close {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(52, 171, 178, 0.45);
  background: #fff;
  color: #124b50;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.quiosk-map-card-close:hover,
.quiosk-map-card-close:focus-visible {
  background: rgb(229, 0, 125);
  border-color: rgb(229, 0, 125);
  color: #fff;
}

.gm-style .gm-style-iw-c {
  border: 2px solid transparent;
  border-radius: 14px !important;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to bottom, var(--brand-top), var(--brand)) border-box !important;
  padding: 2px 8px 8px !important;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
}

.gm-style button.gm-ui-hover-effect {
  display: none !important;
}

.section.finder-results-overlap + .section .container {
  padding-top: 8px;
}

main[data-finder] > .section + .section {
  box-shadow: none !important;
}

main[data-finder] > .section + .section::before {
  content: none !important;
}

.finder-alpha-card {
  background: #fff;
  border: 2px solid rgba(52, 171, 178, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
  padding: 18px;
}

.finder-alpha-card h2 {
  display: block;
  width: fit-content;
  margin: 0 auto 14px;
  padding-bottom: 8px;
  text-align: center;
  border-bottom: 4px solid var(--brand);
}

.finder-alpha-card > p {
  max-width: 74ch;
  margin: 0 auto 14px;
  text-align: center;
  color: var(--muted);
}

.location-detail-hero {
  background: linear-gradient(180deg, rgba(52, 171, 178, 0.18), rgba(255, 255, 255, 0.94));
}

.location-detail-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.section-title-left {
  margin: 0;
  text-align: left;
}

.location-detail-address {
  margin: 8px 0 4px;
  font-weight: 700;
}

.location-detail-meta {
  margin: 0;
  color: #2f2f2f;
}

.location-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.location-detail-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 16px;
}

.location-detail-map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 340px;
}

.location-detail-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

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

.assortment-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  display: grid;
  gap: 4px;
}

.assortment-item span {
  font-size: 0.88rem;
  color: #3f3f3f;
}

.location-photo-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.location-photo-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.location-concept-header {
  display: grid;
  gap: 12px;
}

.location-concept-header h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
  line-height: 1.08;
}

.location-concept-header p {
  margin: 0;
}

.location-concept-address {
  font-weight: 800;
}

.location-concept-address a {
  text-underline-offset: 3px;
}

.location-concept-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-concept-back-link {
  border-color: rgba(52, 171, 178, 0.45);
}

.location-concept-updated {
  font-size: 0.92rem;
  color: var(--muted);
}

.location-concept-main {
  padding-top: 10px;
}

.location-concept-layout {
  display: grid;
  gap: 18px;
}

.location-concept-content {
  display: grid;
  gap: 14px;
  align-content: start;
}

.location-concept-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.location-concept-photo-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.location-concept-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.location-concept-product {
  appearance: none;
  border: 1px solid rgba(52, 171, 178, 0.32);
  border-top: 4px solid var(--brand-top);
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  display: grid;
  gap: 6px;
  text-align: left;
  cursor: pointer;
  transition: border-color .22s ease, transform .22s ease;
}

.location-concept-product:hover {
  border-color: var(--brand-top);
  transform: translateY(-2px);
}

.location-concept-product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.location-concept-product span {
  font-size: 0.82rem;
  font-weight: 800;
  color: #173c3f;
  line-height: 1.2;
}

.location-concept-map-card {
  display: grid;
  gap: 10px;
}

.location-concept-map-wrap {
  position: relative;
  width: 100%;
  height: 52vh;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #dfeff0;
}

.location-concept-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-concept-map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #315255;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(52, 171, 178, 0.16), rgba(255, 255, 255, 0.92));
  z-index: 1;
  transition: opacity .25s ease;
}

.location-concept-map-placeholder.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.location-concept-nearby {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.location-concept-nearby-item {
  border: 1px solid rgba(52, 171, 178, 0.32);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  display: grid;
  gap: 4px;
  color: inherit;
  text-decoration: none;
  transition: border-color .22s ease, transform .22s ease;
}

.location-concept-nearby-item:hover {
  border-color: var(--brand-top);
  transform: translateY(-2px);
}

.location-concept-nearby-item strong {
  font-size: 1rem;
}

.location-concept-nearby-item span {
  font-size: 0.9rem;
  color: #325356;
}

.location-concept-nearby-item em {
  font-style: normal;
  color: var(--brand-accent);
  font-weight: 800;
  font-size: 0.86rem;
}

.location-concept-loading {
  color: #426568;
  margin: 0;
}

.location-concept-dialog {
  width: min(92vw, 440px);
  border: 0;
  border-radius: 14px;
  padding: 18px 16px 16px;
}

.location-concept-dialog::backdrop {
  background: rgba(0, 0, 0, 0.42);
}

.location-concept-dialog h3 {
  margin: 0 34px 6px 0;
}

.location-concept-dialog p {
  margin: 0;
}

.location-concept-dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(52, 171, 178, 0.4);
  background: #fff;
  color: #123538;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.location-concept-sticky-nav {
  display: none;
}

.location-page-map-hero {
  position: relative;
  padding: 0;
  min-height: calc(100vh - var(--header-offset));
  height: calc(100vh - var(--header-offset));
  overflow: hidden;
  background: #dfeff0;
}

.location-page-map-canvas {
  position: absolute;
  inset: 0;
  isolation: isolate;
}

.location-page-map-canvas iframe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-page-overlay-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  pointer-events: none;
}

.location-page-overlay {
  position: relative;
  pointer-events: auto;
  width: min(50vw, 760px);
  height: auto;
  max-height: none;
  margin: 0;
  border-radius: 0;
  border: 0;
  border-right: 1px solid rgba(52, 171, 178, 0.35);
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 16px 0 34px rgba(0, 0, 0, 0.16);
  padding: 26px 28px;
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: visible;
}

.location-page-compact .location-page-map-hero {
  position: relative;
  display: block;
  min-height: calc(100vh - var(--header-offset));
  height: calc(100vh - var(--header-offset));
  overflow: visible;
  border-radius: var(--radius);
  margin-top: 24px;
  margin-bottom: 18px;
}

.location-page-compact .location-page-map-canvas {
  position: relative;
  inset: 0;
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  border-radius: inherit;
  overflow: hidden;
  border: 1px solid rgba(52, 171, 178, 0.28);
  box-shadow: 0 18px 38px rgba(11, 28, 36, 0.12);
  isolation: isolate;
}

.location-page-compact .location-page-map-canvas iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

.location-page-compact .location-page-overlay-wrap {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: min(40%, 640px);
  max-width: min(40%, 640px);
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  pointer-events: auto;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.location-page-compact .location-page-overlay {
  position: relative;
  pointer-events: auto;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(52, 171, 178, 0.3);
  box-shadow: 18px 0 36px rgba(11, 28, 36, 0.16);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media (min-width: 921px) {
  body.location-page-compact main {
    max-width: var(--content-shell-width);
    width: 100%;
    margin: 0 auto;
  }

  body.location-page-compact .location-page-map-hero {
    display: block;
    min-height: calc(100vh - var(--header-offset));
    height: calc(100vh - var(--header-offset));
    border-radius: var(--radius);
    margin-top: 24px;
    margin-bottom: 18px;
  }

  body.location-page-compact .location-page-overlay-wrap {
    width: min(40%, 640px);
    max-width: min(40%, 640px);
    height: 100%;
    min-height: 0;
    padding-left: 0;
    pointer-events: none;
  }

  body.location-page-compact .location-page-overlay {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 0;
    pointer-events: auto;
    border-radius: var(--radius);
  }

  body.location-page-compact .location-page-map-canvas {
    width: 100%;
    max-width: none;
    height: 100%;
    border-radius: inherit;
  }
}

@media (max-width: 920px) {
  .location-page-compact .location-page-map-hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(46vh, 54vh) auto;
    min-height: auto;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .location-page-compact .location-page-map-canvas {
    flex: initial;
    width: 100%;
    max-width: 100%;
    min-height: min(54vh, 480px);
  }

  .location-page-compact .location-page-overlay-wrap {
    position: relative;
    left: auto;
    top: auto;
    flex: initial;
    width: 100%;
    max-width: 100%;
    display: block;
    pointer-events: auto;
  }

  .location-page-compact .location-page-overlay {
    height: auto;
    max-height: none;
    border-radius: 0;
    border-left: 0;
    border-top: 1px solid rgba(52, 171, 178, 0.35);
    box-shadow: 0 -10px 22px rgba(0, 0, 0, 0.14);
    overflow-y: visible;
  }
}

.location-page-close {
  position: absolute;
  top: 24px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(52, 171, 178, 0.45);
  background: #fff;
  color: #124b50;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  z-index: 6;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.location-page-close:hover,
.location-page-close:focus-visible {
  background: rgb(229, 0, 125);
  border-color: rgb(229, 0, 125);
  color: #fff;
  transform: translateY(-1px);
}

.location-page-overlay h1 {
  margin: 0;
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  line-height: 1.08;
  text-transform: none;
  letter-spacing: 0;
}

.location-page-subtitle {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #264a4d;
}

.location-page-overlay h2 {
  margin: 8px 0 0;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
}

.location-page-address {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #183b3d;
}

.location-page-address a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-page-address-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-page-address-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.location-page-address a:hover {
  color: var(--brand);
}

.location-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-page-products {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.location-page-product {
  border: 1px solid rgba(52, 171, 178, 0.32);
  border-radius: 12px;
  padding: 8px;
  background: #fff;
  display: grid;
  gap: 6px;
  align-content: start;
}

.location-page-product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.location-page-product span {
  font-size: 0.78rem;
  font-weight: 800;
  color: #173c3f;
  line-height: 1.2;
}

.location-page-updated {
  margin: 0;
  font-size: 0.9rem;
  color: #4a6a6d;
}

.location-concept-v2 .location-page-overlay {
  gap: 16px;
  animation: none;
  transition: none;
  transform: none;
  will-change: auto;
}

.location-concept-v2 .location-page-overlay-wrap {
  animation: none;
  transition: none;
  transform: none;
  will-change: auto;
}

.location-concept-v2 .location-page-map-canvas,
.location-concept-v2 .location-page-map-canvas iframe,
.location-concept-v2 .location-map-canvas-api {
  animation: none;
  transition: none;
  transform: none;
  will-change: auto;
}

.location-concept-v2 .site-header,
.location-concept-v2 .site-header.header-compact {
  border-bottom: 0;
  box-shadow: none;
}

.location-concept-v2 .location-page-overlay::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(229, 0, 125), rgba(52, 171, 178, 0.95));
}

.location-concept-v2 .location-hero-copy {
  display: grid;
  gap: 8px;
  padding-top: 8px;
}

.location-concept-v2 .location-page-eyebrow {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(52, 171, 178, 0.35);
  background: rgba(52, 171, 178, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a6e74;
}

.location-concept-v2 .location-page-overlay h1 {
  max-width: 100%;
  line-height: 1.12;
  margin-bottom: 2px;
}

.location-concept-v2 .location-page-address,
.location-concept-v2 .location-page-updated,
.location-concept-v2 .location-page-subtitle {
  max-width: 100%;
}

.location-concept-v2 .location-page-subtitle {
  margin-top: -2px;
}

.location-concept-v2 .location-page-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-concept-v2 .location-page-fact {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(52, 171, 178, 0.36);
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.8rem;
  font-weight: 800;
  color: #114245;
}

.location-concept-v2 .location-page-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.location-concept-v2 .location-page-actions .btn {
  width: 100%;
  min-height: 48px;
  justify-content: center;
}

.location-concept-v2 .location-page-actions .btn-primary {
  box-shadow: 0 10px 20px rgba(229, 0, 125, 0.18);
}

.location-concept-v2 .location-page-actions .btn-ghost {
  border-color: rgba(52, 171, 178, 0.45);
  color: #12545a;
}

.location-concept-v2 .location-seo-placeholder-inline {
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(52, 171, 178, 0.24);
  display: grid;
  gap: 8px;
}

.location-concept-v2 .location-seo-placeholder-inline h3 {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
  color: #103d41;
}

.location-concept-v2 .location-seo-placeholder-inline p,
.location-concept-v2 .location-seo-placeholder-inline li {
  max-width: 100%;
  line-height: 1.7;
  color: #1d494d;
}

.location-concept-v2 .location-seo-placeholder-inline ul {
  margin-top: 0;
  margin-bottom: 0;
  gap: 5px;
}

.location-concept-v2 .location-products-head {
  display: grid;
  gap: 4px;
  margin-top: 4px;
}

.location-concept-v2 .location-products-head h3 {
  margin: 0;
  font-size: clamp(1.02rem, 1.3vw, 1.25rem);
}

.location-concept-v2 .location-products-head p {
  margin: 0;
  font-size: 0.9rem;
  color: #426468;
}

.location-concept-v2 .location-page-products--interactive {
  margin-top: 6px;
}

.location-concept-v2 .location-page-product span {
  display: block;
  margin-top: 2px;
}

.location-products-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  color: #2f6469;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.location-page-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.location-page-media img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(52, 171, 178, 0.28);
}

.location-page-products--interactive .location-page-product-btn {
  appearance: none;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}

.location-page-products--interactive .location-page-product-btn:hover {
  border-color: var(--brand-top);
  transform: translateY(-2px);
}

.location-concept-map-skeleton {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  font-weight: 700;
  color: #2c4c4f;
  background: linear-gradient(135deg, rgba(52, 171, 178, 0.16), rgba(255, 255, 255, 0.94));
  transition: opacity .24s ease;
}

.location-concept-map-skeleton.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.location-map-canvas-api {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.location-map-canvas-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
}

.location-map-fallback-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  transform: translate3d(-50%, -100%, 0);
  display: none;
  pointer-events: auto;
  cursor: pointer;
  -webkit-transform: translate3d(-50%, -100%, 0);
}

@media (max-width: 920px) {
  .location-map-fallback-marker {
    display: block;
  }
}

.location-map-fallback-marker img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(15, 37, 46, 0.28));
}

.location-map-nav-control {
  margin: 10px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #103538;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.location-map-nav-control:hover {
  background: #f7fbfb;
}

.location-map-mode-control {
  margin: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.26);
}

.location-map-mode-btn {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(16, 53, 56, 0.22);
  border-radius: 999px;
  background: #fff;
  color: #1c4e53;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.location-map-mode-btn:hover {
  background: #f2fbfc;
}

.location-map-mode-btn.is-active {
  background: linear-gradient(135deg, #34abb2 0%, #e6007e 100%);
  border-color: transparent;
  color: #fff;
}

.location-page-overlay.is-marker-active {
  box-shadow: -16px 0 34px rgba(0, 0, 0, 0.12), inset 0 0 0 2px rgba(52, 171, 178, 0.38);
}

.location-page-nearby {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(52, 171, 178, 0.35);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.section.location-nearby-fullbleed {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #f4f8f9 0%, #eef4f5 100%);
}

.location-page-nearby h2 {
  margin: 0;
  text-align: center;
}

.location-page-nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.finder-results-grid {
  gap: 10px;
}

.location-page-nearby-item {
  border: 1px solid rgba(52, 171, 178, 0.32);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  color: inherit;
  text-decoration: none;
  display: grid;
  gap: 4px;
  transition: border-color .2s ease, transform .2s ease;
}

.finder-location-card.location-page-nearby-item {
  display: flex;
  gap: 0;
  padding: 16px 54px 16px 16px;
  border: 2px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to bottom, var(--brand-top), var(--brand)) border-box;
}

.finder-location-card.location-page-nearby-item .finder-location-name {
  font-size: 1.04rem;
  line-height: 1.2;
}

.finder-location-card.location-page-nearby-item .finder-location-address {
  font-size: 0.91rem;
  line-height: 1.3;
}

.finder-location-card.location-page-nearby-item .finder-location-distance {
  font-size: 0.84rem;
  line-height: 1.25;
}

.location-page-nearby-item:hover {
  border-color: var(--brand-top);
  transform: translateY(-2px);
}

.location-page-nearby-item span {
  font-size: 0.92rem;
  color: #34575a;
}

.location-page-nearby-item em {
  font-style: normal;
  font-weight: 800;
  color: var(--brand-accent);
  font-size: 0.85rem;
}

.location-page-nearby-loading {
  margin: 0;
  color: #4a6a6d;
}

.location-page-product-dialog {
  width: min(90vw, 430px);
  border: 0;
  border-radius: 14px;
  padding: 18px 16px 14px;
}

.location-page-product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.42);
}

.location-page-product-dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(52, 171, 178, 0.45);
  border-radius: 50%;
  background: #fff;
  color: #17393c;
  cursor: pointer;
  line-height: 1;
  font-size: 1.1rem;
}

.location-page-sticky-nav {
  display: none;
}

.location-seo-placeholder h2,
.location-seo-placeholder h3 {
  text-align: left;
  margin: 0;
}

.location-seo-placeholder h3 {
  margin-top: 4px;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
}

.location-seo-placeholder p {
  text-align: left;
  margin: 0;
}

.location-seo-placeholder ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #274b4e;
  display: grid;
  gap: 6px;
}

.location-seo-placeholder hr {
  border: 0;
  border-top: 1px solid rgba(52, 171, 178, 0.32);
  margin: 6px 0;
}

.location-seo-placeholder-inline {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(52, 171, 178, 0.28);
}

.location-seo-placeholder-inline h2 {
  font-size: clamp(1.05rem, 1.25vw, 1.3rem);
}

.location-seo-placeholder-inline p,
.location-seo-placeholder-inline li {
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (min-width: 921px) {
  .location-page-map-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas: "content map";
    min-height: calc(100vh - var(--header-offset));
    height: calc(100vh - var(--header-offset));
    overflow: hidden;
  }

  .location-page-map-canvas {
    grid-area: map;
    position: relative;
    inset: unset;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .location-page-map-canvas iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .location-page-overlay-wrap {
    grid-area: content;
    position: relative;
    display: block;
    height: 100%;
    min-height: 0;
    pointer-events: auto;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
  }

  .location-page-overlay {
    width: 100%;
    height: 100%;
    min-height: 0;
    box-shadow: none;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 920px) {
  .location-concept-v2 .location-page-map-hero {
    min-height: auto;
    height: auto;
    display: block;
    overflow: visible;
  }

  .location-concept-v2 .location-page-map-canvas {
    position: relative;
    width: 100%;
    height: 42vh;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
  }

  .location-concept-v2 .location-page-overlay-wrap {
    position: relative;
    display: block;
    height: auto;
    min-height: 0;
    overflow: visible;
    touch-action: auto;
  }

  .location-concept-v2 .location-page-overlay {
    height: auto;
    min-height: 0;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
    border-top: 0;
    padding: 22px 18px 24px;
    gap: 16px;
    overflow: visible;
    touch-action: auto;
  }

  .location-page-close {
    top: 22px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .location-concept-v2 .location-page-overlay::before {
    left: 0;
    right: 0;
    top: 0;
    border-radius: 0;
  }

  .location-concept-v2 .location-page-overlay h1 {
    max-width: 100%;
    font-size: clamp(1.28rem, 5.8vw, 1.72rem);
    line-height: 1.2;
  }

  .location-concept-v2 .location-page-address,
  .location-concept-v2 .location-page-updated,
  .location-concept-v2 .location-page-subtitle,
  .location-concept-v2 .location-seo-placeholder-inline p,
  .location-concept-v2 .location-seo-placeholder-inline li {
    max-width: 100%;
  }

  .location-concept-v2 .location-page-address {
    font-size: 1rem;
    line-height: 1.58;
  }

  .location-concept-v2 .location-page-updated,
  .location-concept-v2 .location-page-subtitle {
    font-size: 0.95rem;
    line-height: 1.64;
  }

  .location-concept-v2 .location-page-eyebrow {
    font-size: 0.72rem;
    min-height: 26px;
    padding: 0 9px;
  }

  .location-concept-v2 .location-page-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .location-concept-v2 .location-page-fact {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    min-height: 34px;
    padding: 0 10px;
  }

  .location-concept-v2 .location-page-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .location-concept-v2 .location-page-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    font-size: 0.98rem;
    padding-inline: 14px;
  }

  .location-concept-v2 .location-page-actions .btn:nth-child(n + 3) {
    grid-column: 1 / -1;
  }

  .location-concept-v2 .location-seo-placeholder-inline {
    margin-top: 0;
    padding-top: 10px;
  }

  .location-concept-v2 .location-seo-placeholder-inline h3 {
    font-size: 1.03rem;
    line-height: 1.36;
    margin-top: 14px;
    margin-bottom: 3px;
  }

  .location-concept-v2 .location-seo-placeholder-inline p,
  .location-concept-v2 .location-seo-placeholder-inline li {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .location-concept-v2 .location-products-head h3 {
    font-size: 1rem;
  }

  .location-concept-v2 .location-products-head p {
    font-size: 0.86rem;
  }

  .location-page-media {
    grid-template-columns: 1fr;
  }

  .location-page-media img {
    height: 180px;
  }

  .location-page-nearby-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .location-page-nearby h2 {
    font-size: clamp(1.2rem, 5.2vw, 1.55rem);
  }

  .finder-location-card.location-page-nearby-item {
    min-height: 92px;
    padding: 14px 48px 14px 12px;
  }

  .finder-location-card.location-page-nearby-item .finder-location-name {
    font-size: 1rem;
  }

  .finder-location-card.location-page-nearby-item .finder-location-address,
  .finder-location-card.location-page-nearby-item .finder-location-distance {
    font-size: 0.88rem;
  }

  .location-page-sticky-nav {
    display: none;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 320;
    width: min(92vw, 520px);
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    min-height: 48px;
  }

  .location-page-map-hero {
    min-height: auto;
    height: auto;
    overflow: visible;
  }

  .location-page-overlay-wrap {
    align-items: flex-end;
    overflow: visible;
    touch-action: auto;
  }

  .location-page-overlay {
    width: min(100%, 100%);
    height: auto;
    max-height: 66vh;
    border-right: 0;
    border-top: 0;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -16px 30px rgba(0, 0, 0, 0.2);
    padding: 18px 16px 16px;
    overflow: visible;
    touch-action: auto;
  }

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

  .location-page-products--interactive {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (3 * 8px)) / 4);
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .location-page-products--interactive .location-page-product {
    scroll-snap-align: start;
    min-width: 0;
    padding: 7px;
  }

  .location-page-products--interactive .location-page-product span {
    font-size: 0.76rem;
    line-height: 1.22;
  }

  .location-page-products--interactive::-webkit-scrollbar {
    display: none;
  }

  .location-products-swipe-hint {
    display: inline-flex;
  }

  .location-page-map-canvas iframe {
    left: 0;
  }
}

@media (max-width: 560px) {
  .location-concept-v2 .location-page-map-canvas {
    height: 40vh;
    border-radius: 0 0 14px 14px;
  }

  .location-concept-v2 .location-page-overlay {
    padding: 20px 14px 22px;
    gap: 14px;
  }

  .location-concept-v2 .location-page-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .location-concept-v2 .location-page-actions .btn:nth-child(n + 3) {
    grid-column: auto;
  }

  .location-concept-v2 .location-page-facts {
    gap: 7px;
  }
}

.over-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.over-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("images/over-quiosk/over-quiosk-hero.jpg") center center / cover no-repeat;
  pointer-events: none;
}

.over-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(52, 171, 178, 0.35), rgba(11, 50, 54, 0.72));
  pointer-events: none;
}

.over-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.over-hero h1 {
  margin: 0;
  color: #fff;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.38);
}

.over-hero p {
  margin: 0.7rem auto 0;
  color: #fff;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
}

@media (min-width: 921px) {
  .over-hero p {
    white-space: nowrap;
  }
}

.jobs-hero .container {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.jobs-hero h1 {
  max-width: 18ch;
  line-height: 1.06;
  text-wrap: balance;
  margin: 0;
}

.jobs-hero p {
  max-width: 46ch;
  margin: 0;
  line-height: 1.45;
  text-wrap: pretty;
}

.over-subnav-section {
  position: relative;
  z-index: 3;
  padding-top: 18px;
  padding-bottom: 8px;
  background: rgba(239, 239, 239, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(52, 171, 178, 0.16);
}

.over-subnav-section.is-fixed {
  position: fixed;
  top: var(--header-offset);
  left: 0;
  right: 0;
  z-index: 34;
  padding-top: 0;
  margin-top: 0;
  background: var(--bg);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.over-subnav-section .container {
  width: min(100%, 100%);
  padding-left: max(12px, 2vw);
  padding-right: max(12px, 2vw);
}

.over-subnav {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 4px;
}

.over-subnav a {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(52, 171, 178, 0.42);
  background: #fff;
  color: #13494d;
  font-weight: 700;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.over-subnav a:hover {
  border-color: rgba(52, 171, 178, 0.62);
  background: rgba(52, 171, 178, 0.16);
}

.over-subnav a.active {
  border-color: rgba(229, 0, 125, 0.45);
  background: rgba(229, 0, 125, 0.1);
  color: #9d0057;
}

@media (min-width: 921px) {
  .over-subnav-section {
    min-height: 69px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .over-subnav-section .container {
    height: 69px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .over-subnav {
    width: 100%;
    justify-content: center;
    padding-bottom: 0;
  }

  .over-subnav-section.is-fixed {
    min-height: 69px;
  }
}

@media (max-width: 920px) {
  .over-subnav-section {
    position: static;
    top: auto;
    z-index: auto;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom: 0;
  }

  .over-subnav-section.is-fixed {
    position: static;
    left: auto;
    right: auto;
  }

  .over-subnav-section .container {
    width: min(100%, 94%);
    padding-left: 0;
    padding-right: 0;
  }

  .over-subnav {
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }
}

.press-grid {
  display: grid;
  gap: 16px;
}

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

.press-grid-downloads {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}

.section-press-downloads .section-head {
  text-align: center;
}

.section-press-downloads .press-card {
  width: 100%;
  max-width: 560px;
  justify-self: center;
}

.press-card {
  display: grid;
  gap: 12px;
  align-content: start;
  border-color: rgba(52, 171, 178, 0.45);
  padding: 16px;
  min-height: 100%;
}

.press-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.press-source {
  font-size: 0.82rem;
  font-weight: 800;
  color: #1a6d74;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.press-card h3,
.press-card p {
  margin: 0;
}

.press-card h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.3;
}

.press-card .btn,
.press-card-link {
  margin-top: auto;
  width: fit-content;
}

.press-card-link {
  min-height: 42px;
}

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

.media-photo-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-color: rgba(52, 171, 178, 0.45);
}

.media-photo {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(52, 171, 178, 0.35);
  aspect-ratio: 16 / 10;
}

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

.media-photo-card:hover .media-photo img {
  transform: scale(1.03);
}

.media-photo-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.brand-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  justify-items: center;
}

.brand-download-card {
  display: grid;
  gap: 12px;
  border-color: rgba(52, 171, 178, 0.45);
  padding: 14px;
  width: 100%;
  max-width: 560px;
}

.brand-download-grid > .brand-download-card:only-child {
  grid-column: 1 / -1;
  justify-self: center;
}

.brand-preview {
  display: grid;
  place-items: center;
  min-height: 140px;
  border: 1px solid rgba(52, 171, 178, 0.35);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}

.brand-preview-light {
  background: #f7f7f7;
}

.brand-preview img {
  max-width: 100%;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
}

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

  .press-grid-downloads {
    grid-template-columns: minmax(0, 560px);
  }
}

.media-photo-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.over-card p {
  margin: 0;
  color: #1f1f1f;
}

.over-card p + p {
  margin-top: 10px;
}

.over-intro-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.over-tabs {
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
  border-color: transparent;
  box-shadow: none;
}

.over-tabs-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.over-tab-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  position: sticky;
  top: 96px;
}

.over-tab-btn {
  border: 1px solid rgba(52, 171, 178, 0.45);
  background: #fff;
  color: #123437;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-align: left;
  justify-content: flex-start;
  width: 100%;
}

.over-tab-btn:hover {
  border-color: var(--brand-top);
  color: #0f2e31;
}

.over-tab-btn.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.over-tab-panels {
  min-width: 0;
  margin: 0;
  text-align: left;
}

.over-tab-panel {
  display: none;
  background: transparent;
  border: 0;
  border-radius: 14px;
  padding: 6px 2px;
}

.over-tab-panel.is-active {
  display: block;
  animation: overTabFade 0.34s ease;
}

.over-panel-toggle {
  display: none;
}

.over-panel-body {
  margin: 0;
}

.over-tab-panel p {
  margin: 0;
  line-height: 1.65;
  color: #1f1f1f;
}

.over-tab-panel p + p {
  margin-top: 10px;
}

.over-tab-lead {
  font-size: 1.05rem;
  font-weight: 700;
  color: #103335;
}

.over-inline-link {
  font-weight: 800;
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.over-inline-link:hover {
  color: var(--brand);
}

.over-tab-panel .over-list {
  max-width: 100%;
  margin: 10px 0 0;
  text-align: left;
}

.over-list {
  margin: 10px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

.over-photo-block {
  padding: 12px;
}

.over-team-card {
  padding: 18px;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  align-items: stretch;
}

.over-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: 100%;
  align-content: start;
}

.over-team-photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 100%;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.over-team-photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(16, 35, 38, 0.14);
  border-color: rgba(52, 171, 178, 0.45);
}

.over-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.over-team-quote {
  border: 1px solid rgba(52, 171, 178, 0.28);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
  padding: 16px 18px;
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 100%;
}

.over-team-quote h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.28;
  color: #103335;
}

.over-team-quote-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 600;
  color: #173a3c;
}

.over-team-quote-extra {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #244547;
}

.over-team-quote-highlight {
  margin: 2px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(52, 171, 178, 0.14), rgba(229, 0, 125, 0.12));
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 800;
  color: #153739;
}

.over-team-quote-kicker {
  margin: 0 0 10px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand-strong);
}

.over-team-quote-author {
  margin: 0;
  font-weight: 800;
  color: var(--brand-strong);
}

.jobs-intro-card {
  border: 1px solid rgba(52, 171, 178, 0.36);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
  box-shadow: 0 12px 30px rgba(16, 35, 38, 0.08);
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.jobs-intro-card h2 {
  margin-top: 4px;
  margin-bottom: 10px;
  text-align: center;
}

.jobs-intro-card p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 70ch;
}

.jobs-intro-card .feature-list {
  margin: 14px 0 8px;
}

.jobs-intro-highlights {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.jobs-intro-highlights li {
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(52, 171, 178, 0.42);
  border-radius: 999px;
  background: rgba(52, 171, 178, 0.1);
  color: #134043;
  font-weight: 800;
  line-height: 1.3;
}

.jobs-intro-card .cta-row {
  justify-content: center;
}

#vacatures {
  scroll-margin-top: calc(var(--header-offset) + 20px);
}

.jobs-photo-card {
  padding: 18px;
}

.jobs-photo-collage {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 12px;
}

.jobs-photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 20px rgba(16, 35, 38, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.jobs-photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(16, 35, 38, 0.16);
  border-color: rgba(52, 171, 178, 0.42);
}

.jobs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jobs-photo-hero {
  grid-column: span 3;
  grid-row: span 2;
}

.jobs-photo-wide {
  grid-column: span 2;
}

.jobs-photo-tall {
  grid-column: span 2;
  grid-row: span 2;
}

.jobs-vacancy-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
  padding-left: 24px;
}

.jobs-vacancy-timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-top), var(--brand));
  border-radius: 999px;
}

.jobs-vacancy-block {
  border: 1px solid rgba(52, 171, 178, 0.28);
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  position: relative;
}

.jobs-vacancy-timeline .jobs-vacancy-block::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 16px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  border: 3px solid var(--brand-top);
  box-shadow: 0 0 0 2px rgba(52, 171, 178, 0.12);
}

.jobs-vacancy-block-full {
  grid-column: 1 / -1;
}

.jobs-vacancy-title {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.08rem;
  color: #103335;
}

.jobs-vacancy-title .section-icon {
  width: 28px;
  height: 28px;
  margin: 0;
}

.jobs-vacancy-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.jobs-vacancy-list li {
  position: relative;
  padding-left: 18px;
  margin: 0;
  line-height: 1.45;
  color: #1f2f30;
}

.jobs-vacancy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-top), var(--brand));
  transform: translateY(-50%);
}

.jobs-vacancy-meta {
  margin: 0 0 8px;
  color: #1f2f30;
  line-height: 1.4;
}

.jobs-vacancy-role {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.46rem);
  line-height: 1.2;
  font-weight: 900;
  color: #103335;
}

.jobs-vacancy-subtitle {
  margin: 8px 0 8px;
  font-size: 0.98rem;
  font-weight: 800;
  color: #134043;
}

.jobs-route-visual {
  margin: 14px 0 4px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(52, 171, 178, 0.26);
  background: linear-gradient(180deg, rgba(52, 171, 178, 0.08), rgba(229, 0, 125, 0.04));
}

.jobs-route-head h3 {
  margin: 0;
  font-size: 1.06rem;
  color: #103335;
}

.jobs-route-head p {
  margin: 4px 0 0;
  color: #2a4f52;
}

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

.jobs-route-kpi {
  background: #fff;
  border: 1px solid rgba(52, 171, 178, 0.26);
  border-radius: 10px;
  padding: 10px 12px;
}

.jobs-route-kpi-label {
  display: block;
  font-size: 0.82rem;
  color: #2b5b60;
}

.jobs-route-kpi-value {
  display: block;
  margin-top: 2px;
  font-size: 1.4rem;
  line-height: 1.1;
  color: #0f3134;
}

.jobs-route-line {
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.jobs-route-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(52, 171, 178, 0.28);
}

.jobs-route-dot-start {
  background: var(--brand-top);
}

.jobs-route-dot-mid {
  background: #4ea5ad;
}

.jobs-route-dot-end {
  background: var(--brand);
}

.jobs-route-bar {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-top), var(--brand));
}

.jobs-route-map {
  margin: 12px 0 0;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(52, 171, 178, 0.28);
  background: #fff;
}

.jobs-route-map img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 9px;
}

.jobs-route-map figcaption {
  margin-top: 7px;
  font-size: 0.88rem;
  color: #2d6064;
  text-align: center;
}

@media (max-width: 920px) {
  .jobs-intro-highlights {
    justify-content: center;
  }

  .jobs-photo-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
  }

  .jobs-photo-hero,
  .jobs-photo-wide,
  .jobs-photo-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .jobs-vacancy-grid {
    padding-left: 20px;
  }

  .jobs-vacancy-timeline::before {
    left: 7px;
  }

  .jobs-vacancy-timeline .jobs-vacancy-block::before {
    left: -18px;
  }

  .jobs-route-kpis {
    grid-template-columns: 1fr;
  }

  .jobs-route-map {
    padding: 6px;
  }
}

@media (max-width: 640px) {
  .page-jobs .jobs-hero h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.35rem);
    line-height: 1.06;
    max-width: 12ch;
  }

  .page-jobs .jobs-hero p {
    font-size: 0.98rem;
    line-height: 1.56;
    max-width: 30ch;
  }

  .page-jobs .jobs-intro-card {
    text-align: center;
  }

  .page-jobs .jobs-intro-card .section-kicker-row {
    justify-content: center;
  }

  .page-jobs .jobs-intro-card .cta-row {
    display: grid;
  }

  .page-jobs .jobs-intro-card .cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .page-jobs #vacatures .section-head {
    text-align: center;
  }

  .page-jobs .over-tabs {
    padding: 12px;
  }

  .page-jobs .over-tab-panel {
    margin-top: 8px;
    border: 1px solid rgba(52, 171, 178, 0.28);
    border-radius: 12px;
    background: #fff;
  }

  .page-jobs .over-panel-toggle {
    min-height: 56px;
    padding: 0 16px;
    font-size: 1.02rem;
  }

  .page-jobs .over-tab-panel.is-open .over-panel-body {
    padding: 14px 16px 16px;
    max-height: none;
    overflow: visible;
    transition: none;
  }

  .page-jobs .jobs-route-visual {
    padding: 12px;
  }

  .page-jobs .jobs-route-kpi {
    padding: 12px;
  }

  .page-jobs .jobs-route-kpi-value {
    font-size: 1.55rem;
  }

  .page-jobs .jobs-vacancy-grid {
    padding-left: 0;
    gap: 10px;
  }

  .page-jobs .jobs-vacancy-timeline::before,
  .page-jobs .jobs-vacancy-timeline .jobs-vacancy-block::before {
    display: none;
  }

  .page-jobs .jobs-vacancy-block {
    padding: 14px;
  }

  .page-jobs .jobs-vacancy-title {
    font-size: 1.02rem;
    line-height: 1.34;
  }

  .page-jobs .jobs-vacancy-list {
    gap: 9px;
  }

  .page-jobs .jobs-vacancy-list li {
    line-height: 1.58;
  }

  .page-jobs .cta-row {
    display: grid;
    gap: 10px;
  }

  .page-jobs .cta-row .btn {
    width: 100%;
    justify-content: center;
  }
}

.over-photo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.over-photo-strip img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: block;
}

.over-topic-gap {
  padding-top: calc(var(--section-air) + 18px);
}

.over-list-checks {
  list-style: none;
  padding-left: 0;
}

.over-list-checks li {
  position: relative;
  padding-left: 24px;
}

.over-list-checks li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--brand);
  font-weight: 900;
}

.over-cta-card {
  text-align: center;
}

.over-stat-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.over-stat-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(52, 171, 178, 0.34);
  border-radius: 14px;
  background: #fff;
  min-height: 104px;
  padding: 12px 10px;
  display: grid;
  align-content: center;
  align-items: center;
  justify-items: center;
  gap: 5px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(16, 35, 38, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  animation: factCardIn 520ms ease both;
}

.over-stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: rgb(229, 0, 125);
}

.over-stat-item::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -42px;
  top: -52px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 171, 178, 0.17) 0%, rgba(52, 171, 178, 0) 72%);
  pointer-events: none;
}

.over-stat-item:nth-child(1) { animation-delay: 50ms; }
.over-stat-item:nth-child(2) { animation-delay: 100ms; }
.over-stat-item:nth-child(3) { animation-delay: 150ms; }
.over-stat-item:nth-child(4) { animation-delay: 200ms; }
.over-stat-item:nth-child(5) { animation-delay: 250ms; }
.over-stat-item:nth-child(6) { animation-delay: 300ms; }
.over-stat-item:nth-child(7) { animation-delay: 350ms; }
.over-stat-item:nth-child(8) { animation-delay: 400ms; }
.over-stat-item:nth-child(9) { animation-delay: 450ms; }
.over-stat-item:nth-child(10) { animation-delay: 500ms; }

.over-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(16, 35, 38, 0.13);
  border-color: rgba(229, 0, 125, 0.5);
}

.over-stat-item strong {
  display: block;
  font-size: clamp(1.28rem, 1.75vw, 1.86rem);
  line-height: 1.06;
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.over-stat-item strong.fact-text {
  font-size: clamp(0.96rem, 1.25vw, 1.16rem);
  line-height: 1.2;
}

.over-stat-item span {
  margin-top: 0;
  font-size: 0.82rem;
  color: #1f1f1f;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

@keyframes factCardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.alpha-jump-nav {
  display: grid;
  grid-template-columns: repeat(13, minmax(0, 1fr));
  gap: 6px;
  margin: 0 0 12px;
}

.alpha-jump-link {
  min-height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(52, 171, 178, 0.34);
  background: #fff;
  color: #134043;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.alpha-jump-link:hover,
.alpha-jump-link:focus-visible {
  border-color: var(--brand);
  background: rgba(229, 0, 125, 0.12);
  color: #9f0058;
}

.alpha-jump-link.is-disabled {
  opacity: 0.4;
  border-style: dashed;
  pointer-events: none;
}

.alpha-item {
  border: 1px solid rgba(52, 171, 178, 0.3);
  border-radius: 10px;
  background: #f9fcfc;
  padding: 10px;
  scroll-margin-top: calc(var(--header-offset) + 16px);
}

.alpha-item-title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  font-weight: 800;
  font-size: 1.15rem;
  color: #10373a;
  border-bottom: 1px solid rgba(52, 171, 178, 0.24);
}

.alpha-item-body {
  padding: 10px 0 0;
}

.alpha-city-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.alpha-city-link {
  display: flex;
  align-items: center;
  min-height: 38px;
  width: 100%;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(52, 171, 178, 0.36);
  background: #fff;
  color: #134043;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.alpha-city-link:hover {
  border-color: rgb(229, 0, 125);
  background: rgba(229, 0, 125, 0.1);
  color: #9f0058;
}

.finder-city-overview-cta {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.finder-city-overview-bar {
  margin-top: 6px;
  margin-bottom: 18px;
}

.finder-city-overview-section {
  padding-top: 14px;
  padding-bottom: 0;
}

.finder-city-overview-section .finder-city-overview-bar {
  margin: 0;
}

.finder-city-overview-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  border-radius: 14px;
  background: #34abb2;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(52, 171, 178, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.finder-city-overview-link:hover,
.finder-city-overview-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(52, 171, 178, 0.34);
  filter: brightness(0.96);
}

.city-overview-card .section-head {
  margin-bottom: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.city-overview-card .section-head h2,
.city-overview-card .section-head p {
  text-align: center;
  width: 100%;
}

.city-overview-card .section-head p {
  margin-top: 8px;
}

.city-overview-card [data-city-count] {
  color: var(--brand);
  display: inline-block;
  line-height: 1;
  border-bottom: 3px solid var(--brand);
  padding-bottom: 1px;
  margin-right: 4px;
}

.city-overview-loading {
  margin: 6px 0;
  color: var(--text-muted);
  font-weight: 700;
}

.city-overview-hero .container {
  text-align: center;
}

.city-overview-hero {
  min-height: clamp(260px, 34vh, 340px);
}

.city-overview-hero::before {
  background: linear-gradient(180deg, #34abb2 0%, #e5007d 100%);
}

.city-overview-hero::after {
  content: none;
}

.city-overview-hero h1 {
  margin-left: auto;
  margin-right: auto;
}

.city-overview-hero .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.city-overview-hero .btn {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

@media (max-width: 920px) {
  .city-overview-hero {
    min-height: clamp(340px, 52vh, 460px);
  }

  .city-overview-hero .section-lead {
    max-width: 34ch;
    line-height: 1.45;
  }

  .city-overview-card {
    padding: 16px;
  }

  .city-overview-card .section-head {
    margin-bottom: 12px;
  }

  .city-overview-card .section-head h2 {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
  }

  .alpha-jump-nav {
    display: grid !important;
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
    gap: 6px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .alpha-jump-link {
    min-height: 38px;
    font-size: 0.92rem;
    padding: 0;
  }

  .alpha-accordion {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .alpha-item {
    padding: 12px;
  }

  .alpha-item-title {
    min-height: 42px;
    font-size: 1.1rem;
  }

  .alpha-city-link {
    min-height: 42px;
    font-size: 0.98rem;
  }
}

@media (max-width: 560px) {
  .city-overview-hero {
    min-height: clamp(360px, 56vh, 500px);
  }
}

.city-split-top {
  padding-top: 18px;
}

.city-split-wrap {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  gap: 16px;
  align-items: stretch;
  position: relative;
}

.city-split-wrap::before {
  content: none;
}

.city-split-content {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px;
}

.city-split-content h1 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 2.35vw, 2.35rem);
  line-height: 1.12;
}

.city-split-content p {
  margin: 0 0 12px;
}

.city-split-content p:last-of-type {
  margin-bottom: 14px;
}

.city-split-content .cta-row {
  margin-top: 14px;
  justify-content: flex-start;
  gap: 10px;
}

.city-split-content .btn {
  min-height: 44px;
}

.city-split-chips {
  margin-top: 4px;
  margin-bottom: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-split-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(52, 171, 178, 0.32);
  background: rgba(52, 171, 178, 0.1);
  color: #155055;
  font-weight: 800;
  font-size: 0.82rem;
}

.city-split-map .map {
  min-height: 540px;
  border-radius: inherit;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.city-split-map {
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(52, 171, 178, 0.28);
  box-shadow: 0 18px 38px rgba(11, 28, 36, 0.12);
  isolation: isolate;
}

#tilburg-city-map,
#tilburg-city-map > div,
#tilburg-city-map .gm-style {
  border-radius: var(--radius) !important;
}

.city-locations-overlap {
  margin-top: -14px;
  position: relative;
  z-index: 2;
}

.city-locations-overlap .section-head {
  margin-bottom: 12px;
  text-align: center;
}

.city-locations-overlap .location-page-nearby-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.city-locations-overlap .location-page-nearby-item {
  min-height: 104px;
  width: min(100%, 360px);
}

.city-tip-location-card {
  display: grid;
  gap: 12px;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 18px;
  background: linear-gradient(180deg, #f3f5f6 0%, #eceff1 100%);
  border: 1px solid rgba(10, 38, 44, 0.12);
  box-shadow: 0 10px 22px rgba(9, 24, 31, 0.08);
}

.city-tip-location-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  text-align: center;
  color: #11343a;
  max-width: 28ch;
}

.city-tip-location-card .btn {
  justify-self: center;
}

.city-benefits-list {
  list-style: none;
  padding-left: 0;
  gap: 10px;
}

.city-benefits-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  min-height: 34px;
}

.city-benefits-list .section-icon {
  width: 24px;
  height: 24px;
  margin: 0;
}

.city-benefits-list span {
  font-weight: 700;
  line-height: 1.35;
}

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

.city-benefit-card {
  border: 1px solid rgba(52, 171, 178, 0.26);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.city-benefit-card .section-icon {
  width: 24px;
  height: 24px;
  margin: 0;
}

.city-benefit-card h3 {
  margin: 0;
  min-height: 0;
  font-size: 1rem;
  line-height: 1.25;
  text-align: center;
}

.city-benefit-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
}

.city-products-mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.city-product-tile {
  grid-column: span 1;
  border: 1px solid rgba(52, 171, 178, 0.2);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfc 100%);
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 1 / 1;
  box-shadow: 0 10px 20px rgba(11, 28, 36, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
}

.city-product-tile.is-featured {
  grid-column: span 1;
  grid-row: span 1;
}

.city-product-tile.is-featured-a {
  grid-column: span 1;
  grid-row: span 1;
}

.city-product-tile.is-featured-b {
  grid-column: span 1;
  grid-row: span 1;
}

.city-product-tile img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.city-product-tile:hover,
.city-product-tile:focus-within {
  border-color: rgba(52, 171, 178, 0.34);
  box-shadow: 0 16px 30px rgba(11, 28, 36, 0.14);
  transform: translateY(-2px);
}

.city-product-tile:hover img,
.city-product-tile:focus-within img {
  transform: scale(1.04);
}

.city-detail-hero .cta-row {
  margin-top: 16px;
}

.city-detail-stats {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.city-detail-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
}

.city-detail-intro .card {
  max-width: 980px;
}

.city-finder-section .container.city-finder-layout {
  width: var(--content-shell-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.city-map-panel,
.city-list-panel {
  border-radius: var(--radius-lg);
}

.city-map-panel {
  position: sticky;
  top: calc(var(--header-offset, 84px) + 16px);
  overflow: hidden;
  padding: 0;
}

.city-detail-map {
  min-height: 680px;
  border-radius: inherit;
}

.city-list-panel {
  padding: 18px;
}

.city-list-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.city-filter-input {
  width: 100%;
}

.city-sort-wrap select {
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(52, 171, 178, 0.42);
  padding: 0 34px 0 12px;
  color: var(--text);
  background: #fff;
  font-weight: 700;
}

.city-list-meta {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-weight: 700;
}

.city-location-list {
  display: grid;
  gap: 10px;
}

.city-location-card {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.city-location-card.is-active {
  border-color: rgba(229, 0, 125, 0.62);
  box-shadow: 0 10px 24px rgba(229, 0, 125, 0.16);
}

.city-products-section .card {
  max-width: var(--content-shell-width);
  margin: 0 auto;
}

.city-products-grid {
  margin-top: 10px;
}

.city-products-section .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.city-products-section .section-head h2,
.city-products-section .section-head p {
  text-align: center;
}

@media (max-width: 980px) {
  .city-split-wrap {
    grid-template-columns: 1fr;
  }

  .city-split-map .map {
    min-height: 420px;
  }

  .city-locations-overlap {
    margin-top: -8px;
  }

  .city-finder-section .container.city-finder-layout {
    grid-template-columns: 1fr;
  }

  .city-map-panel {
    position: static;
  }

  .city-detail-map {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .city-split-top {
    padding-top: 10px;
  }

  .city-split-content {
    padding: 16px;
  }

  .city-split-content h1 {
    font-size: clamp(1.35rem, 6.2vw, 1.8rem);
    line-height: 1.15;
  }

  .city-split-chips span {
    font-size: 0.78rem;
  }

  .city-split-map .map {
    min-height: 340px;
  }

  .city-benefit-cards {
    grid-template-columns: 1fr;
  }

  .city-products-mosaic {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .city-product-tile {
    min-height: 0;
    border-radius: 12px;
    flex: 0 0 78%;
    aspect-ratio: 1 / 1;
    scroll-snap-align: start;
  }

  .city-product-tile.is-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .city-product-tile.is-featured-a,
  .city-product-tile.is-featured-b {
    grid-column: auto;
    grid-row: auto;
  }

  .city-locations-overlap {
    margin-top: 0;
  }

  .city-list-toolbar {
    grid-template-columns: 1fr;
  }

  .city-sort-wrap select {
    width: 100%;
  }

  .city-detail-map {
    min-height: 350px;
  }
}

.pin {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  border: 2px solid #fff;
  position: absolute;
}

.site-footer {
  margin-top: 0;
  padding: 0;
  width: 100%;
  background: var(--brand-top);
  border-top: 0;
}

.site-footer .footer-inner {
  width: var(--content-shell-width);
  margin: 0 auto;
  padding: 30px 0 34px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "brand"
    "cta"
    "links"
    "social"
    "copy";
  gap: 12px;
  align-items: center;
  justify-items: center;
  color: #fff;
}

.site-footer .footer-social {
  grid-area: social;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.site-footer .footer-brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.site-footer .footer-logo {
  width: min(180px, 100%);
  height: auto;
  display: block;
}

.site-footer .footer-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.55;
  position: relative;
  padding-right: 14px;
  white-space: nowrap;
  font-size: 0.95rem;
}

.site-footer .footer-links a:hover {
  text-decoration: underline;
}

.site-footer .footer-links a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.6);
}

.site-footer .footer-links {
  grid-area: links;
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  min-width: 0;
}

.site-footer .footer-cta {
  grid-area: cta;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.site-footer .footer-cta .btn {
  white-space: nowrap;
  min-height: 42px;
  padding: 0.62rem 1rem;
  font-size: 0.94rem;
}

.site-footer .footer-cta .btn-primary {
  min-width: 168px;
}

.site-footer .footer-cta .btn-secondary {
  min-width: 196px;
}

.site-footer .footer-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: transparent;
}

.site-footer .footer-cta .btn-secondary:hover {
  border-color: rgb(229, 0, 125);
  color: #fff;
  background: rgb(229, 0, 125);
}

.site-footer .footer-cta .btn-primary {
  background: rgb(229, 0, 125);
  border-color: rgb(229, 0, 125);
  color: #fff;
}

.site-footer .footer-cta .btn-primary:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.site-footer .footer-copy {
  grid-area: copy;
  justify-self: center;
  align-self: end;
  margin: 6px 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.site-footer .footer-copy .footer-copy-separator {
  opacity: 0.75;
}

@media (max-width: 1200px) {
  .site-footer .footer-inner {
    gap: 14px;
    justify-items: center;
  }

  .site-footer .footer-brand,
  .site-footer .footer-links,
  .site-footer .footer-cta,
  .site-footer .footer-social {
    justify-content: center;
    justify-self: center;
  }

  .site-footer .footer-links {
    flex-wrap: wrap;
  }

  .site-footer .footer-copy {
    text-align: center;
    justify-content: center;
  }
}

.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgb(229, 0, 125);
  border: 1px solid rgb(229, 0, 125);
  color: #fff;
  text-decoration: none;
}

.site-footer .footer-social a:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.site-footer .footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 0.7s ease forwards;
}

.reveal.delay {
  animation-delay: 0.12s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes overTabFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  8% {
    opacity: 1;
    transform: scale(1.03);
  }
  30% {
    opacity: 1;
    transform: scale(1.08);
  }
  38% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

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

@media (max-width: 920px) {
  :root {
    --header-offset: 92px;
  }

  .hero-grid,
  .home-proof-layout,
  .grid-3,
  .grid-4,
  .grid-2,
  .badges,
  .finder-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .over-stat-item {
    min-height: 96px;
    padding: 12px 9px 11px;
  }

  .over-tabs-shell {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .over-tab-list {
    display: none;
    position: static;
  }

  .over-tab-panel {
    display: block;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
  }

  .grid-2 > .card h3,
  .grid-3 > .card h3,
  .grid-4 > .card h3,
  .home-value-grid .card h3,
  .home-how-grid .card h3 {
    min-height: 0;
  }

  .over-panel-toggle {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 0;
    background: #fff;
    color: #123437;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    border-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  }

  .over-panel-toggle::after {
    content: "+";
    color: var(--brand);
    font-size: 1.15rem;
    line-height: 1;
    font-weight: 900;
  }

  .over-tab-panel.is-open .over-panel-toggle::after {
    content: "−";
  }

  .over-tab-panel.is-open {
    border-color: rgba(229, 0, 125, 0.45);
    box-shadow: 0 10px 22px rgba(229, 0, 125, 0.12);
  }

  .over-tab-panel.is-open .over-panel-toggle {
    background: rgba(229, 0, 125, 0.1);
    color: #8f004e;
    box-shadow: inset 4px 0 0 var(--brand);
  }

  .over-panel-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 14px;
    transition: max-height 0.26s ease, opacity 0.22s ease, padding 0.22s ease;
  }

  .over-tab-panel.is-open .over-panel-body {
    max-height: 1200px;
    opacity: 1;
    padding: 12px 14px 14px;
  }

  .page-jobs .over-tab-panel.is-open .over-panel-body {
    max-height: none;
    overflow: visible;
  }

  #proces .process-flow {
    grid-template-columns: repeat(5, minmax(240px, 1fr));
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .over-process-flow {
    grid-template-columns: repeat(5, minmax(240px, 1fr));
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  #proces .process-flow [data-process-step] {
    scroll-snap-align: start;
  }

  .over-process-flow [data-process-step] {
    scroll-snap-align: start;
  }

  #proces .process-flow::before,
  #proces .process-flow::after {
    left: 0;
    right: 0;
  }

  .over-process-flow::before,
  .over-process-flow::after {
    left: 0;
    right: 0;
  }

  .nav-wrap {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    padding: var(--s-2) 0;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 52;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-offset) + 4px);
    right: 12px;
    width: min(330px, calc(100% - 24px));
    max-height: calc(100dvh - (var(--header-offset) + 16px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(7, 7, 7, 0.2);
    transform: translateX(calc(100% + 24px));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.2s ease;
    z-index: 51;
  }

  .js .site-nav {
    display: block;
  }

  .js .site-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
  }

  .site-nav a:not(.nav-cta-link) {
    white-space: normal;
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    justify-content: flex-start;
    line-height: 1.25;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    border: 1px solid var(--line);
    background: #fff;
    min-height: 44px;
    padding: 8px 12px;
    line-height: 1.25;
  }

  .nav-dropdown-toggle::after {
    margin-left: auto;
  }

  .nav-has-dropdown {
    position: static;
    display: block;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    margin-top: 8px;
    margin-left: 12px;
    width: calc(100% - 12px);
    padding: 0;
    border: 1px solid rgba(52, 171, 178, 0.28);
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
    display: none !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    background: rgba(52, 171, 178, 0.09);
  }

  .site-nav ul.nav-dropdown {
    gap: 0;
    padding: 0;
  }

  .nav-has-dropdown:hover .nav-dropdown,
  .nav-has-dropdown:focus-within .nav-dropdown {
    display: none;
  }

  .nav-has-dropdown.is-open .nav-dropdown {
    display: grid !important;
    gap: 0;
  }

  .nav-has-dropdown.is-open:hover .nav-dropdown,
  .nav-has-dropdown.is-open:focus-within .nav-dropdown {
    display: grid !important;
    gap: 0;
  }

  .site-nav .nav-dropdown a:not(.nav-cta-link) {
    min-height: 38px;
    font-size: 0.93rem;
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 8px 12px;
    line-height: 1.2;
  }

  .site-nav .nav-dropdown a:not(.nav-cta-link)::before {
    display: none;
  }

  .nav-has-dropdown.is-open > .nav-dropdown-toggle {
    border-color: rgba(52, 171, 178, 0.42);
    background: rgba(52, 171, 178, 0.14);
  }

  .site-nav a:not(.nav-cta-link)::after {
    display: none;
  }

  .nav-cta-item {
    margin-left: 0;
    margin-top: 4px;
  }

  .site-nav .nav-cta-link {
    width: 100%;
    justify-content: center;
  }

  .brand img {
    height: 46px;
  }

  .hero-with-slider {
    min-height: clamp(560px, 72vh, 680px);
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.55rem;
  }

  .btn-link {
    min-height: 0;
  }

  .cta-row .btn,
  .cta-row .btn-link {
    flex: 1 1 220px;
    justify-content: center;
  }

  .logo-group {
    width: 150px;
  }

  .partners-hero-media {
    height: auto;
    min-height: 0;
  }

  .partners-hero-media img {
    height: auto;
  }

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

  .partner-reference-card {
    flex-basis: 72%;
    min-height: 260px;
  }

  .partner-reference-featured-head {
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .partner-reference-logo-slot {
    width: 104px;
    height: 104px;
    min-height: 104px;
  }

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

  .about-quiosk-media-trigger img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: auto;
  }

  .about-quiosk-copy,
  .about-quiosk-media {
    padding: 16px;
  }

  .quiosk-360-dialog {
    width: 100%;
    max-width: 100%;
    padding: 12px;
  }

  .quiosk-360-topbar {
    padding: 4px 44px 8px 2px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .quiosk-360-title {
    font-size: 0.96rem;
  }

  .quiosk-360-toolbar {
    width: 100%;
    justify-content: space-between;
  }

  .quiosk-360-zoom {
    flex-wrap: wrap;
  }

  .quiosk-360-counter {
    font-size: 0.8rem;
  }

  .quiosk-360-image {
    height: min(48vh, 380px);
  }

  .quiosk-360-nav {
    width: 38px;
    height: 38px;
    font-size: 1.12rem;
  }

  :root {
    --section-air: var(--s-5);
  }

  p {
    font-size: 1rem;
  }

  .site-footer .footer-inner {
    width: min(100%, 94%);
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0 24px;
    justify-items: center;
  }

  .site-footer .footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .site-footer .footer-logo {
    width: min(170px, 90%);
  }

  .site-footer .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .site-footer .footer-cta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .site-footer .footer-copy {
    text-align: center;
    grid-column: 1 / -1;
    margin-top: 2px;
    justify-content: center;
  }

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

  .insta-slider {
    grid-template-columns: 38px 1fr 38px;
  }

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

  .home-core {
    margin-top: -84px;
  }

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

  .spotlight-panel {
    gap: 12px;
  }

  .spotlight-panel-body {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .spotlight-panel .highlight-product-card {
    order: 1;
  }

  .spotlight-panel .spotlight-copy {
    order: 2;
  }

  .spotlight {
    padding: 12px;
  }

  .spotlight-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .spotlight-tab {
    width: 100%;
    min-width: 0;
    text-align: center;
    min-height: 40px;
    padding: 6px 10px;
    line-height: 1.2;
  }

  .spotlight-copy,
  .highlight-product-card,
  .quick-search-copy,
  .quick-search-form {
    min-width: 0;
  }

  .spotlight-copy {
    padding: 18px;
    gap: 14px;
  }

  .spotlight-title-wide {
    font-size: 1.32rem;
    line-height: 1.15;
  }

  .spotlight-usp {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .usp-item {
    min-height: 48px;
    padding: 12px 14px;
    align-items: center;
    line-height: 1.2;
  }

  .usp-item span {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    line-height: 1;
  }

  .product-card {
    flex-basis: calc((100% - (var(--s-3) * 3)) / 4);
  }

  .quick-search-band {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 12px;
  }

  .quick-search-shell {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quick-search-logo {
    width: 40px;
    height: 40px;
  }

  .finder-overlap-search .finder-search-form.quick-search-form {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "input radius"
      "search nearby";
    gap: 12px 10px;
    max-width: 100%;
    justify-self: stretch;
    align-items: center;
  }

  .quick-search-input-wrap {
    grid-area: input;
    min-height: 54px;
  }

  .quick-search-radius-wrap {
    grid-area: radius;
    width: 100%;
  }

  .quick-search-radius {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .quick-search-form .btn {
    grid-row: auto;
    width: 100%;
    min-height: 56px;
    padding-inline: 16px;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    gap: 7px;
    border-width: 2px;
    letter-spacing: 0;
  }

  .quick-search-form [data-search-submit] {
    grid-area: search;
    min-width: 0;
    box-shadow: 0 10px 20px rgba(229, 0, 125, 0.24);
  }

  .quick-search-nearby-btn {
    grid-area: nearby;
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 10px 20px rgba(52, 171, 178, 0.24);
  }

  .quick-search-submit-icon {
    width: 17px;
    height: 17px;
    transform: translateY(-0.25px);
  }

  .quick-search-nearby-btn::before {
    content: none;
  }

  .quick-search-nearby-btn svg {
    display: block;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    transform: translateY(-0.25px);
  }

  .quick-search-nearby-label {
    display: inline;
    font-size: 0.93rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
  }

  .finder-results-line {
    margin-top: 10px;
  }

  .finder-results-overlap {
    margin-top: calc(-1 * min(var(--finder-overlap-dynamic, var(--finder-overlap)), 76px));
  }

  .finder-city-overview-section {
    padding-top: 10px;
  }
}

@media (max-width: 680px) {
  :root {
    --finder-overlap: clamp(100px, 22vh, 170px);
  }

  .container {
    width: min(100%, 94%);
  }

  .hero {
    padding: 44px 0 36px;
  }

  .home-value-strip {
    margin-top: -18px;
  }

  .home-value-grid,
  .home-how-grid,
  .over-stat-grid {
    grid-template-columns: 1fr;
  }

  .over-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .over-stat-item {
    min-height: 90px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(16, 35, 38, 0.07);
  }

  .over-stat-item strong {
    font-size: 1.1rem;
  }

  .over-stat-item strong.fact-text {
    font-size: 0.94rem;
  }

  .over-stat-item span {
    font-size: 0.78rem;
  }

  .over-photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .over-team-card {
    padding: 14px;
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .over-team-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    border-radius: 14px;
    height: auto;
  }

  .over-team-photo {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .over-team-quote {
    padding: 18px 16px;
    gap: 12px;
  }

  .over-team-quote h3 {
    font-size: 1.12rem;
    line-height: 1.35;
  }

  .over-team-quote-text {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .over-team-quote-extra {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .over-team-quote-highlight {
    font-size: 0.95rem;
    line-height: 1.62;
    padding: 10px 12px;
  }

  .over-team-grid::-webkit-scrollbar {
    height: 6px;
  }

  .over-team-grid::-webkit-scrollbar-thumb {
    background: rgba(52, 171, 178, 0.45);
    border-radius: 999px;
  }

  .jobs-photo-card {
    padding: 12px;
  }

  .jobs-photo-collage {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .jobs-photo {
    flex: 0 0 84%;
    height: 210px;
    scroll-snap-align: start;
  }

  .jobs-photo-hero,
  .jobs-photo-wide,
  .jobs-photo-tall {
    flex-basis: 84%;
    grid-column: auto;
    grid-row: auto;
  }

  .over-topic-gap {
    padding-top: calc(var(--section-air) + 24px);
  }

  .over-tab-list {
    display: none;
  }

  .page-hero {
    min-height: clamp(220px, 30vh, 260px);
    padding: 0;
  }

  .contact-core {
    margin-top: -64px;
  }

  .contact-panel {
    padding: 18px;
  }

  .mobile-accordion-card {
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;
  }

  .mobile-accordion-card .section-icon {
    width: 32px;
    height: 32px;
    margin: 0;
    grid-column: 1;
    grid-row: 1;
  }

  .mobile-accordion-card h2 {
    margin: 0;
    grid-column: 2;
    grid-row: 1;
  }

  .mobile-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.25;
  }

  .mobile-accordion-toggle::after {
    content: "+";
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(229, 0, 125, 0.6);
    border-radius: 999px;
    color: rgb(229, 0, 125);
    background: rgba(229, 0, 125, 0.08);
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1;
    transition: background-color 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  }

  .mobile-accordion-card.is-open .mobile-accordion-toggle::after {
    content: "−";
    transform: scale(1.03);
    background: rgba(229, 0, 125, 0.16);
    border-color: rgba(229, 0, 125, 0.78);
  }

  .mobile-accordion-content {
    grid-column: 2;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    transition: max-height 0.28s ease, opacity 0.22s ease, margin-top 0.22s ease;
  }

  .mobile-accordion-card.is-open .mobile-accordion-content {
    max-height: 180px;
    opacity: 1;
    margin-top: 10px;
  }

  .contact-map-wrap iframe {
    height: 220px;
    min-height: 220px;
  }

  .hero-with-slider {
    min-height: clamp(520px, 66vh, 620px);
  }

  .hero-arrow {
    display: none !important;
  }

  .hero-with-slider .hero-copy {
    gap: 10px;
    padding-inline: 6px;
  }

  .hero-with-slider .hero-copy h1 {
    font-size: clamp(1.45rem, 6.8vw, 2rem);
    max-width: 16ch;
    line-height: 1.08;
    letter-spacing: 0.035em;
    text-wrap: balance;
    margin-inline: auto;
  }

  .hero-with-slider .hero-copy > p {
    max-width: 34ch;
    margin-inline: auto;
  }

  .hero-with-slider .hero-copy .cta-row {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  h1 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  h2 {
    font-size: clamp(1.35rem, 5.4vw, 1.9rem);
  }

  .card {
    padding: 18px;
  }

  .banner {
    padding: 28px 20px;
    grid-template-columns: 1fr;
  }

  .banner-media {
    min-height: 240px;
  }

  .proof-pill {
    min-height: 30px;
    font-size: 0.82rem;
    padding: 0 10px;
  }

  .logo-track {
    gap: 24px;
    animation-duration: 28s;
  }

  .proof-right {
    min-height: 240px;
  }

  .map {
    min-height: 720px;
  }

  .section-finder-map-hero .map {
    min-height: calc(100vh - 80px);
  }

  .finder-map-controls {
    top: 12px;
    left: 12px;
    width: min(400px, calc(100% - 24px));
  }

  .finder-results-overlap {
    margin-top: calc(-1 * min(var(--finder-overlap-dynamic, var(--finder-overlap)), 76px));
  }

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

  .alpha-jump-nav {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .section-icon {
    width: 44px;
    height: 44px;
  }

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

  .insta-slider {
    grid-template-columns: 34px 1fr 34px;
    gap: 8px;
  }

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

  .product-slider {
    grid-template-columns: 36px 1fr 36px;
    gap: 8px;
  }

  .product-card {
    flex-basis: calc((100% - var(--s-3)) / 2);
  }

  .product-info-btn {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  .spotlight-chips {
    gap: 6px;
  }

  .spot-chip {
    min-height: 28px;
    font-size: 0.72rem;
    padding: 0 9px;
  }

  .home-core {
    margin-top: -64px;
  }

  .partners-about-overlap {
    margin-top: -64px;
  }

  .map {
    min-height: 660px;
  }

  .section-finder-map-hero .map {
    min-height: calc(100vh - 72px);
    min-height: calc(100dvh - 72px);
  }

  .finder-map-controls {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
  }

  .finder-results-overlap {
    margin-top: calc(-1 * min(var(--finder-overlap-dynamic, var(--finder-overlap)), 76px));
  }

  .finder-results-summary {
    padding: 14px 16px;
    margin-bottom: 12px;
  }

  .section.finder-results-overlap + .section .container {
    padding-top: 6px;
  }

  .finder-control-body {
    gap: 8px;
  }

  .finder-search-row {
    grid-template-columns: 1fr;
  }

  .finder-radius-label select {
    min-height: 48px;
  }

  .finder-overlap-search .finder-search-shell {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .finder-overlap-search .finder-search-logo {
    display: none;
  }

  .finder-overlap-search .finder-search-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .alpha-accordion {
    grid-template-columns: 1fr;
  }

  .alpha-jump-nav {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .finder-alpha-card {
    padding: 14px;
  }

  .location-detail-top {
    grid-template-columns: 1fr;
  }

  .section-title-left {
    text-align: center;
  }

  .location-detail-address,
  .location-detail-meta {
    text-align: center;
  }

  .location-detail-actions {
    justify-content: center;
  }

  .location-detail-grid {
    grid-template-columns: 1fr;
  }

  .location-assortment-grid {
    grid-template-columns: 1fr;
  }

  .location-photo-grid {
    grid-template-columns: 1fr;
  }

  .location-photo-grid img {
    height: 220px;
  }

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

  .location-concept-map-card {
    order: -1;
  }

  .location-concept-map-wrap {
    height: 45vh;
  }

  .location-concept-photo-grid {
    grid-template-columns: 1fr;
  }

  .location-concept-photo-grid img {
    height: 180px;
  }

  .location-concept-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-concept-nearby {
    grid-template-columns: 1fr;
  }

  .location-concept-sticky-nav {
    display: inline-flex;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 300;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    width: min(92vw, 520px);
    justify-content: center;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
}

@media (min-width: 921px) {
  .section-finder-map-hero .map {
    min-height: clamp(620px, calc(100vh - var(--header-offset) + 36px), 860px);
    min-height: clamp(620px, calc(100dvh - var(--header-offset) + 36px), 860px);
  }

  .location-concept-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
  }

  .location-concept-v2 .location-page-map-hero {
    --detail-surface-bg: transparent;
    --detail-content-bg: #ffffff;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    grid-template-areas: "content map";
    gap: 24px;
    min-height: 0;
    height: auto;
    overflow: visible;
    background: var(--detail-surface-bg);
    align-items: stretch;
    padding: 0;
    border-radius: var(--radius);
  }

  .location-concept-v2 .location-page-map-canvas {
    grid-area: map;
    position: relative;
    top: auto;
    height: auto;
    min-height: 100%;
    width: 100%;
    overflow: hidden;
    background: transparent;
    align-self: stretch;
    border-radius: var(--radius);
    border: 1px solid rgba(52, 171, 178, 0.18);
    box-shadow: none;
  }

  .location-concept-v2 .location-page-overlay-wrap {
    grid-area: content;
    position: relative;
    height: 100%;
    min-height: 0;
    pointer-events: auto;
    overflow: visible;
    touch-action: auto;
  }

  .location-concept-v2 .location-page-overlay {
    --location-content-gutter: clamp(22px, 2.4vw, 48px);
    height: 100%;
    min-height: 0;
    pointer-events: auto;
    overflow: visible;
    padding-left: var(--location-content-gutter);
    padding-right: var(--location-content-gutter);
    background: var(--detail-content-bg);
    border: 1px solid rgba(52, 171, 178, 0.18);
    box-shadow: 0 18px 38px rgba(11, 28, 36, 0.08);
  }
}

@media (max-width: 420px) {
  .over-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .partner-references-slider {
    grid-template-columns: 1fr;
    grid-template-areas: "viewport";
    gap: 8px;
  }

  .partner-references-arrow,
  .partner-references-dots {
    display: none;
  }

  .partner-references-viewport {
    overflow: visible;
    padding-bottom: 0;
  }

  .partner-references-track {
    width: 100%;
    display: grid;
    gap: 12px;
    transition: none;
    transform: none !important;
  }

  .partner-reference-card {
    flex: 1 1 auto;
    width: 100%;
    padding: 18px;
    min-height: 220px;
  }

  .partner-reference-featured-head {
    flex-wrap: wrap;
  }

  .partner-reference-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid rgba(52, 171, 178, 0.42);
    background: #fff;
    color: #14464a;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
  }

  .partner-reference-toggle::after {
    content: "+";
    margin-left: 8px;
    font-size: 1.05rem;
    line-height: 1;
  }

  .partner-reference-card.is-expanded .partner-reference-toggle::after {
    content: "-";
  }

  .partner-reference-content {
    display: none;
  }

  .partner-reference-card.is-expanded .partner-reference-content {
    display: block;
  }
}

@media (hover: none) {
  .over-stat-item:hover {
    transform: none;
    box-shadow: 0 8px 22px rgba(16, 35, 38, 0.06);
    border-color: rgba(52, 171, 178, 0.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .over-stat-item {
    animation: none;
    transition: none;
  }
}

@media (max-width: 480px) {
  .cookie-banner-actions {
    grid-template-columns: 1fr;
  }

  .over-topic-gap {
    padding-top: calc(var(--section-air) + 32px);
  }

  .hero-with-slider .hero-copy h1 {
    letter-spacing: 0.035em;
  }

  .home-core {
    margin-top: -48px;
  }

  .partners-about-overlap {
    margin-top: -48px;
  }

  .quiosk-360-image {
    height: min(42vh, 320px);
  }

  .contact-core {
    margin-top: -48px;
  }

  .cta-row .btn,
  .cta-row .btn-link {
    width: 100%;
    flex-basis: 100%;
  }

  .quick-search-copy h2 {
    margin-bottom: 6px;
  }

  .spotlight-title-wide {
    font-size: 1.08rem;
    line-height: 1.28;
  }

  .btn {
    min-height: 44px;
    padding: 0.68rem 1rem;
  }

  .logo-group {
    width: 130px;
  }

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

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

  .over-photo-strip {
    grid-template-columns: 1fr;
  }

  .over-team-card {
    padding: 14px;
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .over-team-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    border-radius: 14px;
    height: auto;
  }

  .over-team-photo {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .over-team-quote {
    padding: 18px 16px;
    gap: 12px;
  }

  .over-team-quote h3 {
    font-size: 1.12rem;
    line-height: 1.35;
  }

  .over-team-quote-text {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .over-team-quote-extra {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .over-team-quote-highlight {
    font-size: 0.95rem;
    line-height: 1.62;
    padding: 10px 12px;
  }

  .over-team-grid::-webkit-scrollbar {
    height: 6px;
  }

  .over-team-grid::-webkit-scrollbar-thumb {
    background: rgba(52, 171, 178, 0.45);
    border-radius: 999px;
  }

  .product-card {
    flex-basis: 100%;
  }

  .product-info-btn {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .partner-references-slider {
    grid-template-columns: 1fr;
    grid-template-areas:
      "viewport";
    gap: 8px;
  }

  .partner-references-arrow {
    display: none;
  }

  .partner-references-viewport {
    overflow: visible;
    padding-bottom: 0;
  }

  .partner-references-track {
    width: 100%;
    display: grid;
    gap: 12px;
    transition: none;
    transform: none !important;
  }

  .partner-reference-card {
    flex: 1 1 auto;
    width: 100%;
    padding: 18px;
    min-height: 220px;
  }

  .partner-reference-featured-head {
    flex-wrap: wrap;
  }

  .partner-references-dots {
    display: none;
  }

  .partner-reference-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid rgba(52, 171, 178, 0.42);
    background: #fff;
    color: #14464a;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
  }

  .partner-reference-toggle::after {
    content: "+";
    margin-left: 8px;
    font-size: 1.05rem;
    line-height: 1;
  }

  .partner-reference-card.is-expanded .partner-reference-toggle::after {
    content: "-";
  }

  .partner-reference-content {
    display: none;
  }

  .partner-reference-card.is-expanded .partner-reference-content {
    display: block;
  }

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

  .partner-photo-strip img {
    height: 120px;
  }

  .insta-arrow {
    width: 30px;
    height: 30px;
    font-size: 1.25rem;
  }

  .logo-item {
    height: 74px;
    min-height: 74px;
  }

}
