:root {
  --bg: #f5f8fc;
  --surface: #ffffff;
  --ink: #102137;
  --muted: #516174;
  --brand: #4586c6;
  --brand-2: #e8642c;
  --line: #dde5ef;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(16, 33, 55, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
}

body.cookie-banner-active::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(16, 33, 55, 0.38);
  z-index: 110;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1700px, 96vw);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.muted {
  background: var(--bg);
}

.centered {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.brand img {
  width: 74px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  flex: 1;
}

.nav-link {
  text-decoration: none;
  padding: 8px 8px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.nav-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-2);
}

.nav-icon svg {
  width: 100%;
  height: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-2);
  border-bottom-color: var(--brand);
}

.nav-caret {
  color: var(--brand-2);
  display: inline-flex;
}

.nav-caret-icon {
  width: 14px;
  height: 14px;
}

.nav-item {
  position: relative;
}

.nav-item-mega .mega-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.22s ease;
}

.site-nav.nav-hover-ready .nav-item-mega:hover .mega-menu,
.site-nav.nav-hover-ready .nav-item-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav.nav-hover-ready .nav-item-mega.nav-suppress-open:hover .mega-menu,
.site-nav.nav-hover-ready .nav-item-mega.nav-suppress-open:focus-within .mega-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
}

.nav-item-about .sub-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.22s ease;
}

.site-nav.nav-hover-ready .nav-item-about:hover .sub-menu,
.site-nav.nav-hover-ready .nav-item-about:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav.nav-hover-ready .nav-item-about.nav-suppress-open:hover .sub-menu,
.site-nav.nav-hover-ready .nav-item-about.nav-suppress-open:focus-within .sub-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
}

.sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(16, 33, 55, 0.12);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 90;
}

.sub-menu a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  padding: 10px 10px;
  border-radius: 8px;
}

.sub-menu a:hover {
  color: var(--brand-2);
  background: var(--bg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -160px;
  width: min(1120px, 92vw);
  background: var(--bg);
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(16, 33, 55, 0.16);
  padding: 22px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  z-index: 90;
}

.mega-left {
  display: flex;
  flex-direction: column;
}

.mega-left a {
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.mega-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.mega-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 26px;
}

.mega-card h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
}

.mega-card p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.mega-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 14px;
  background: #fff;
}

.mega-btn {
  display: inline-flex;
  text-decoration: none;
  background: var(--brand-2);
  color: #fff;
  border-radius: 10px;
  padding: 10px 24px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 10px;
  padding: 8px;
  width: 40px;
  height: 40px;
  font: inherit;
  align-items: center;
  justify-content: center;
}

.menu-toggle-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle-lines span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.btn.nav-demo-btn {
  margin-left: auto;
  border-radius: 999px;
  padding: 12px 24px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.hero {
  background: linear-gradient(165deg, #ffffff 0%, #eef4fb 100%);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

.two-col > .card {
  align-self: stretch;
}

.hero .two-col {
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

h1, h2, h3 {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.75rem, 3.9vw, 2.9rem); }
h2 { font-size: clamp(1.4rem, 2.7vw, 2.05rem); }
h3 { font-size: 1.15rem; }

.system-page-title {
  display: flex;
  align-items: center;
}

.system-page-logo {
  width: clamp(170px, 24vw, 300px);
  max-height: 92px;
  height: auto;
  object-fit: contain;
}

.lead {
  color: var(--muted);
  max-width: 62ch;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.26s ease, border-color 0.26s ease, color 0.26s ease;
}

.btn-primary {
  background: var(--brand-2);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand);
  border-color: var(--brand);
}

.btn-secondary {
  background: var(--brand);
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--brand-2);
  border-color: var(--brand-2);
}

.btn-outline {
  border-color: var(--line);
  color: var(--brand);
  background: #fff;
}

.btn-light {
  background: #fff;
  color: var(--brand);
}

.media-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero .media-card {
  width: min(100%, 560px);
  justify-self: end;
  aspect-ratio: 4 / 3;
  min-height: 420px;
}

.media-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.custom-video-player {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  container-type: inline-size;
}

.custom-video-player video {
  width: 100%;
  height: 100%;
  display: block;
}

.custom-video-controls {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  padding: 8px;
  background: rgba(16, 33, 55, 0.50);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.custom-video-player.controls-hidden:not(:hover):not(:focus-within) .custom-video-controls {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.custom-video-center-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  width: 68px;
  height: 68px;
  border: 4px solid rgba(255, 255, 255, 1);
  border-radius: 999px;
  background: rgba(16, 33, 55, 0.25);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
  z-index: 3;
}

.custom-video-center-play .custom-video-icon {
  width: 30px;
  height: 30px;
  margin-left: 2px;
}

.custom-video-center-play.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.custom-video-center-play:hover,
.custom-video-center-play:focus-visible {
  background: rgba(232, 100, 44, 0.88);
  border-color: rgba(232, 100, 44, 0.95);
  outline: none;
}

.custom-video-btn {
  border: 1px solid rgba(255, 255, 255, 0.0);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border-radius: 8px;
  width: 36px;
  height: 32px;
  padding: 0;
  font: inherit;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.custom-video-btn:hover,
.custom-video-btn:focus-visible {
  background: var(--brand-2);
  border-color: var(--brand-2);
  outline: none;
}

.custom-video-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.custom-video-icon svg {
  width: 100%;
  height: 100%;
}

.custom-video-time {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  min-width: 66px;
}

.custom-video-seek,
.custom-video-volume {
  width: 100%;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(to right, var(--brand-2) 0%, var(--brand-2) var(--range-fill, 0%), rgba(255, 255, 255, 0.2) var(--range-fill, 0%), rgba(255, 255, 255, 0.2) 100%);
  border-radius: 999px;
  height: 3px;
  border: 0;
  box-shadow: 0 0 0 2px rgba(96, 96, 96, 0.18);
}

.custom-video-seek {
  min-width: 0;
}

.custom-video-seek::-webkit-slider-thumb,
.custom-video-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 0;
  background: var(--brand-2);
  box-shadow: 0 0 0 2px rgba(96, 96, 96, 0.18);
  cursor: pointer;
}

.custom-video-seek::-moz-range-thumb,
.custom-video-volume::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 0;
  background: var(--brand-2);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.custom-video-seek::-moz-range-track,
.custom-video-volume::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.2);
}

.custom-video-volume-wrap {
  position: relative;
  display: inline-flex;
}

.custom-video-volume-wrap::after {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: 100%;
  height: 12px;
}

.custom-video-volume-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  width: 40px;
  height: 120px;
  background: rgba(16, 33, 55, 0.50);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  padding: 8px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.custom-video-volume-wrap:hover .custom-video-volume-popover,
.custom-video-volume-wrap:focus-within .custom-video-volume-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.custom-video-volume {
  width: 100px;
  height: 6px;
  transform: rotate(-90deg);
  transform-origin: center;
}

@container (max-width: 560px) {
  .custom-video-controls {
    gap: 6px;
    padding: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
  }

  .custom-video-btn {
    width: 30px;
    height: 28px;
  }

  .custom-video-icon {
    width: 14px;
    height: 14px;
  }

  .custom-video-time {
    font-size: 0.68rem;
    min-width: 58px;
  }

  .custom-video-volume-popover {
    width: 36px;
    height: 104px;
  }

  .custom-video-volume {
    width: 84px;
  }
}

@container (max-width: 420px) {
  .custom-video-controls {
    gap: 4px;
    padding: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
  }

  .custom-video-btn {
    width: 26px;
    height: 24px;
    border-radius: 6px;
  }

  .custom-video-icon {
    width: 12px;
    height: 12px;
  }

  .custom-video-time {
    font-size: 0.62rem;
    min-width: 50px;
  }

  .custom-video-volume-popover {
    width: 32px;
    height: 92px;
    padding: 6px 4px;
  }

  .custom-video-volume {
    width: 72px;
  }
}

.trusted-strip-section {
  padding-top: 24px;
}

.trusted-strip {
  border: 0;
  border-radius: 16px;
  background: var(--surface);
  padding: 18px 0;
}

.trusted-strip-title {
  margin: 0;
  padding: 0 20px 10px;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.25;
  color: var(--ink);
}

.trusted-strip-viewport {
  overflow: hidden;
  position: relative;
}

.trusted-strip-viewport::before,
.trusted-strip-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.trusted-strip-viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), rgba(255, 255, 255, 0));
}

.trusted-strip-viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), rgba(255, 255, 255, 0));
}

.trusted-strip-track {
  display: flex;
  align-items: center;
  gap: 2px;
  width: max-content;
  padding: 2px 20px 2px;
  animation: trusted-scroll 34s linear infinite;
}

.trusted-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  padding: 8px 10px;
  width: 290px;
  height: 104px;
  background: transparent;
}

.trusted-logo {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
}

@keyframes trusted-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-strip-track {
    animation: none;
  }
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.section-head p {
  margin: 0 0 0 auto;
  text-align: right;
}

.text-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.error-page-section {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
}

.error-page-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fe 100%);
}

.error-page-card h1 {
  margin-bottom: 10px;
}

.error-page-card .lead {
  margin: 0 auto;
}

.error-page-actions {
  justify-content: center;
}

.error-page-help {
  padding-top: 14px;
  color: var(--muted);
}

.system-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.system-card .text-link {
  margin-top: auto;
}

.awards-grid {
  align-items: stretch;
}

.award-card {
  overflow: hidden;
}

.award-image {
  width: 75%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  padding: 10px;
}

.about-gallery {
  margin-top: 12px;
}

.about-hero-grid {
  align-items: center;
}

.about-hero-media {
  width: 100%;
  max-width: 560px;
  justify-self: center;
  aspect-ratio: 4 / 3;
  margin: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-intro-grid {
  align-items: stretch;
}

.about-intro-grid .card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.about-mission .lead,
.about-mission p {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.about-mission p:not(.lead) {
  color: var(--muted);
}

.support-hero {
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg) 100%);
}

.audience-page-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--line);
}

.audience-page-hero h1 {
  color: #fff;
}

.audience-page-hero .lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 62ch;
}

.audience-page-hero-children-send {
  background-image: linear-gradient(180deg, rgba(16, 33, 55, 0.42) 0%, rgba(16, 33, 55, 0.72) 100%), url('../Images/Homepage/ChildrenSEND.png');
}

.audience-page-hero-adult-special-needs {
  background-image: linear-gradient(180deg, rgba(16, 33, 55, 0.42) 0%, rgba(16, 33, 55, 0.72) 100%), url('../Images/Homepage/AdultSpecialNeeds.png');
}

.audience-page-hero-older-people-care {
  background-image: linear-gradient(180deg, rgba(16, 33, 55, 0.42) 0%, rgba(16, 33, 55, 0.72) 100%), url('../Images/Homepage/OlderPeopleCare.png');
}

.audience-page-hero-commercial {
  background-image: linear-gradient(180deg, rgba(16, 33, 55, 0.42) 0%, rgba(16, 33, 55, 0.72) 100%), url('../Images/Homepage/Commercial.png');
}

.audience-page-hero-home-use {
  background-image: linear-gradient(180deg, rgba(16, 33, 55, 0.42) 0%, rgba(16, 33, 55, 0.72) 100%), url('../Images/Homepage/HomeUse.png');
}

.audience-page-hero-hospitals-healthcare {
  background-image: linear-gradient(180deg, rgba(16, 33, 55, 0.42) 0%, rgba(16, 33, 55, 0.72) 100%), url('../Images/Homepage/Healthcare.png');
}

.support-hero-grid {
  align-items: stretch;
}

.support-hero-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support-hero-grid h1 {
  max-width: 18ch;
}

.support-hero-chips {
  margin-top: 10px;
}

.support-hero-panel {
  align-self: stretch;
  border: 1px solid var(--line);
  background: var(--surface);
}

.support-hero-panel h2 {
  margin-bottom: 10px;
}

.support-hero-panel .feature-list {
  margin-top: 0;
}

.support-audiences {
  padding-top: 56px;
}

.support-section-head {
  margin-bottom: 20px;
}

.support-section-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.support-card-grid {
  gap: 18px;
}

.support-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.support-card-image {
  width: calc(100% + 36px);
  max-width: none;
  margin: -18px -18px 8px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}

.support-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.support-card:hover,
.support-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.support-card-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--brand-2);
  font-weight: 700;
  border: 1px solid var(--line);
}

.support-card h3 {
  margin-bottom: 2px;
}

.support-card-link {
  margin-top: auto;
  font-weight: 700;
}

.support-cta-band {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  border-top: 1px solid var(--line);
}

.audience-send-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.audience-send-download-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.audience-send-download-icon svg {
  width: 100%;
  height: 100%;
}

.audience-send-media-section {
  padding-top: 22px;
}

.audience-send-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.audience-send-media-card {
  position: relative;
  min-height: 220px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.audience-send-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-send-media-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px;
  background: linear-gradient(180deg, rgba(16, 33, 55, 0) 0%, rgba(16, 33, 55, 0.82) 100%);
}

.audience-send-media-overlay strong {
  color: #fff;
  font-size: 0.95rem;
}


[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-support-section {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 52%, var(--surface) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-products-section .section-head {
  margin-bottom: 16px;
}

.home-product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-product-tile {
  position: relative;
  min-height: 260px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-product-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 33, 55, 0.12) 24%, rgba(16, 33, 55, 0.84) 100%);
  z-index: 1;
}

.home-product-tile:hover,
.home-product-tile:focus-visible {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 12px 28px rgba(16, 33, 55, 0.2);
}

.home-product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-product-overlay {
  position: relative;
  z-index: 2;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 16px;
}

.home-product-overlay strong {
  font-size: 1.16rem;
  line-height: 1.2;
}

.home-product-overlay span {
  color: rgba(255, 255, 255, 0.93);
  font-size: 0.9rem;
}

.products-section-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.products-landing-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(232, 100, 44, 0.2) 0%, transparent 46%),
    radial-gradient(circle at 18% 84%, rgba(69, 134, 198, 0.22) 0%, transparent 40%),
    linear-gradient(160deg, #f8fbff 0%, #eaf2fb 52%, #f6f8fc 100%);
}

.products-landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 26px;
  align-items: center;
}

.products-hero-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.products-hero-mosaic img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #edf3fb;
  padding: 10px;
  box-shadow: 0 10px 24px rgba(16, 33, 55, 0.1);
}

.products-hero-mosaic img:last-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  padding: 0;
}

.products-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.products-collection-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.products-collection-meta span {
  border: 1px solid rgba(69, 134, 198, 0.35);
  background: rgba(69, 134, 198, 0.08);
  color: #1d5f98;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.products-showcase-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(16, 33, 55, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  opacity: 0;
  transform: translateY(12px);
  animation: products-card-reveal 0.55s cubic-bezier(0.2, 0.72, 0.24, 1) forwards;
}

.products-showcase-grid .products-showcase-card:nth-child(1) { animation-delay: 0.04s; }
.products-showcase-grid .products-showcase-card:nth-child(2) { animation-delay: 0.1s; }
.products-showcase-grid .products-showcase-card:nth-child(3) { animation-delay: 0.16s; }
.products-showcase-grid .products-showcase-card:nth-child(4) { animation-delay: 0.22s; }
.products-showcase-grid .products-showcase-card:nth-child(5) { animation-delay: 0.28s; }
.products-showcase-grid .products-showcase-card:nth-child(6) { animation-delay: 0.34s; }
.products-showcase-grid .products-showcase-card:nth-child(7) { animation-delay: 0.4s; }
.products-showcase-grid .products-showcase-card:nth-child(8) { animation-delay: 0.46s; }

.products-showcase-card:hover,
.products-showcase-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(69, 134, 198, 0.65);
  box-shadow: 0 16px 30px rgba(16, 33, 55, 0.14);
}

.products-showcase-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  align-items: stretch;
}

.products-showcase-featured .products-showcase-media {
  height: 100%;
  min-height: 320px;
  aspect-ratio: auto;
}

.products-showcase-media-gallery {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 6px;
  padding: 6px 8px;
  background: linear-gradient(165deg, #f7fbff 0%, #edf3fa 100%);
  border-right: 1px solid rgba(221, 229, 239, 0.85);
  height: 100%;
}

.products-showcase-media-main {
  border-radius: 12px;
  border: 1px solid #d5e2f0;
  background: #e9eff7;
}

.products-showcase-featured .products-showcase-media-main {
  height: 100%;
  min-height: 420px;
  aspect-ratio: auto;
}

.products-showcase-gallery-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(130px, 24%);
  gap: 6px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.products-showcase-gallery-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #d7e3f1;
  background: #e9eff7;
  scroll-snap-align: start;
}

.products-showcase-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #e9eff7;
}

.products-showcase-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.products-showcase-content h3 {
  margin: 0;
}

.products-showcase-kicker {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(232, 100, 44, 0.14);
  border: 1px solid rgba(232, 100, 44, 0.38);
  color: #a7441b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 9px;
}

.products-showcase-content p {
  margin: 0;
  color: var(--muted);
}

.products-showcase-content .chip-row {
  margin-top: 2px;
}

.products-showcase-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.products-showcase-stat-row span {
  border-radius: 8px;
  background: #f3f7fc;
  border: 1px solid #d9e5f2;
  color: #264863;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 8px;
}

.products-showcase-content .text-link {
  margin-top: auto;
  font-weight: 700;
}

@keyframes products-card-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.products-showcase-logo-card {
  background:
    linear-gradient(155deg, rgba(69, 134, 198, 0.08) 0%, rgba(69, 134, 198, 0.02) 40%),
    linear-gradient(320deg, rgba(232, 100, 44, 0.08) 0%, rgba(232, 100, 44, 0.02) 36%),
    #fff;
}

.products-showcase-logo-wrap {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-bottom: 1px solid rgba(221, 229, 239, 0.85);
  background: linear-gradient(160deg, rgba(245, 248, 252, 0.75) 0%, rgba(233, 239, 247, 0.95) 100%);
}

.products-showcase-logo {
  width: min(220px, 70%);
  max-height: 66px;
  object-fit: contain;
}

.products-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.products-compare-card {
  height: 100%;
  border: 1px solid var(--line);
}

.products-compare-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.products-compare-card p {
  margin: 0 0 8px;
}

.products-compare-card p:last-child {
  margin-bottom: 0;
}

.products-ecosystem {
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #fff 0%, #f5f9ff 100%);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(16, 33, 55, 0.08);
}

.products-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.products-ecosystem-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.products-ecosystem-grid h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1rem;
}

.products-ecosystem-grid p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .products-showcase-featured {
    grid-column: 1 / -1;
  }

  .products-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-compare-grid {
    grid-template-columns: 1fr;
  }

  .products-ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .products-landing-hero-grid {
    grid-template-columns: 1fr;
  }

  .products-showcase-grid {
    grid-template-columns: 1fr;
  }

  .products-showcase-featured {
    grid-template-columns: 1fr;
  }

  .products-showcase-media-gallery {
    border-right: 0;
    border-bottom: 1px solid rgba(221, 229, 239, 0.85);
  }

  .products-showcase-featured .products-showcase-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .products-showcase-media-main {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .products-hero-mosaic img {
    aspect-ratio: 16 / 10;
  }

  .products-hero-mosaic img:last-child {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 560px) {
  .products-ecosystem {
    padding: 16px;
  }

  .products-ecosystem-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .products-showcase-card {
    opacity: 1;
    transform: none;
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.lumatone-demo-section .section-head p {
  max-width: 760px;
  margin-left: auto;
  margin-right: 0;
}

.lumatone-demo {
  --lumatone-card-soft: rgba(120, 166, 255, 0.14);
  --lumatone-card-mid: rgba(120, 166, 255, 0.08);
  --lumatone-card-deep: rgba(120, 166, 255, 0.22);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(140% 90% at 14% 10%, var(--lumatone-card-soft) 0%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(120% 90% at 86% 88%, var(--lumatone-card-deep) 0%, rgba(255, 255, 255, 0) 54%),
    linear-gradient(165deg, #f8fbff 0%, color-mix(in srgb, var(--lumatone-card-mid) 70%, #f0f6ff 30%) 100%);
  transition: background 0.7s ease;
}

.lumatone-device-wrap {
  --lumatone-outline-soft: rgba(255, 70, 70, 0.42);
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  display: flex;
  border-radius: 18px;
  padding: 10px;
  background: radial-gradient(circle at 50% 12%, var(--lumatone-outline-soft), rgba(255, 70, 70, 0) 56%);
  transition: background 1.6s ease;
}

.lumatone-device-shell {
  --lumatone-outline-color: #ff2f34;
  --lumatone-outline-glow: rgba(255, 61, 61, 0.55);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  border: 11px solid var(--lumatone-outline-color);
  box-shadow: 0 0 34px var(--lumatone-outline-glow);
  background: linear-gradient(180deg, #ece8e5 0%, #d9d5d0 100%);
  padding: 18px;
  transition: border-color 1.6s ease, box-shadow 1.8s ease;
}

.lumatone-device-header {
  text-align: center;
  color: #3e6fa6;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.lumatone-device-screen {
  display: grid;
  flex: 1;
  min-height: 0;
  grid-template-columns: 56px 1fr;
  gap: 0;
  border-radius: 14px;
  border: 12px solid #2f2f34;
  background: #9fcae4;
  overflow: hidden;
}

.lumatone-screen-sidebar {
  background: linear-gradient(180deg, #2091e2 0%, #1c7ec6 100%);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lumatone-side-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(7, 66, 111, 0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
}

.lumatone-side-icon-alert {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgb(149, 5, 0);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
}

.lumatone-screen-sidebar [data-lumatone-stop-trigger],
.lumatone-screen-sidebar [data-omiroom-stop-trigger] {
  cursor: pointer;
}

.lumatone-screen-main {
  position: relative;
  padding: 8px 10px 10px;
}

.lumatone-theme-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.lumatone-theme-btn {
  border: 1px solid rgba(70, 96, 124, 0.22);
  border-radius: 10px;
  background: #e8f0f8;
  color: #143455;
  padding: 0;
  min-height: 84px;
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(31, 61, 88, 0.14);
}

.lumatone-theme-thumb {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lumatone-theme-label {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px 6px;
  background: rgba(245, 249, 255, 0.75);
  border-top: 1px solid rgba(83, 111, 141, 0.22);
  line-height: 1.2;
  font-size: 0.72rem;
  font-weight: bold;
  color: #0a0a0a;
}

.lumatone-theme-btn.is-active {
  border-color: #246093;
  box-shadow: 0 0 0 2px rgba(36, 96, 147, 0.26), 0 3px 9px rgba(20, 51, 80, 0.2);
}

.lumatone-sound-panel {
  border: 1px solid rgba(54, 105, 156, 0.22);
  border-radius: 14px;
  background: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.lumatone-sound-panel h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.lumatone-sound-panel p {
  margin-top: 0;
}

.lumatone-room-visualizer {
  --lumatone-room-color: #78a6ff;
  position: relative;
  height: clamp(280px, 34vw, 360px);
  border-radius: 16px;
  border: 1px solid rgba(118, 134, 152, 0.42);
  overflow: hidden;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #dce3eb 0%, #cfd8e2 100%);
  perspective: 900px;
}

.lumatone-room-gl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.lumatone-room-visualizer.is-webgl::before,
.lumatone-room-visualizer.is-webgl .lumatone-room-backwall,
.lumatone-room-visualizer.is-webgl .lumatone-room-leftwall,
.lumatone-room-visualizer.is-webgl .lumatone-room-rightwall,
.lumatone-room-visualizer.is-webgl .lumatone-room-floor,
.lumatone-room-visualizer.is-webgl .lumatone-room-cove,
.lumatone-room-visualizer.is-webgl .lumatone-room-beanbag {
  display: none;
}

.lumatone-room-visualizer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(130% 85% at 50% -12%, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0) 56%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.01) 56%, rgba(0, 0, 0, 0.08) 100%);
  opacity: 1;
  z-index: 7;
  pointer-events: none;
}

.lumatone-room-backwall,
.lumatone-room-leftwall,
.lumatone-room-rightwall,
.lumatone-room-floor {
  position: absolute;
  transition: background 0.55s ease, box-shadow 0.55s ease;
}

.lumatone-room-backwall {
  top: 16px;
  left: 50%;
  width: 4px;
  height: 60%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(142, 154, 168, 0.85) 0%, rgba(110, 122, 136, 0.78) 100%);
  box-shadow: 0 0 14px rgba(37, 53, 70, 0.2);
  z-index: 4;
}

.lumatone-room-leftwall {
  top: 8px;
  left: 0;
  width: 52%;
  height: 62%;
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 86%);
  background: linear-gradient(115deg, #dee5ed 0%, #c2ccd7 100%);
  z-index: 3;
}

.lumatone-room-rightwall {
  top: 8px;
  right: 0;
  width: 52%;
  height: 62%;
  clip-path: polygon(0 8%, 100% 0, 100% 86%, 0 100%);
  background: linear-gradient(245deg, #e5eaf0 0%, #cad2dc 100%);
  z-index: 3;
}

.lumatone-room-floor {
  left: 0;
  right: 0;
  bottom: 0;
  height: 44%;
  clip-path: polygon(6% 0, 94% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, #aeb8c3 0%, #98a3af 100%);
  border-top: 2px solid rgba(238, 243, 250, 0.92);
  z-index: 2;
}

.lumatone-room-cove {
  position: absolute;
  z-index: 6;
  top: 30px;
  height: 3px;
  border-radius: 999px;
  background: rgba(249, 252, 255, 0.95);
  box-shadow:
    0 0 10px color-mix(in srgb, var(--lumatone-room-color) 74%, white 26%),
    0 0 24px color-mix(in srgb, var(--lumatone-room-color) 76%, white 24%);
  transition: box-shadow 0.45s ease;
}

.lumatone-room-cove-left {
  left: 12%;
  width: 39%;
  transform: rotate(-7deg);
  transform-origin: right center;
}

.lumatone-room-cove-right {
  right: 12%;
  width: 39%;
  transform: rotate(7deg);
  transform-origin: left center;
}

.lumatone-room-beanbag {
  display: none;
}

.lumatone-room-beanbag-left {
  left: 14%;
  width: 70px;
  height: 54px;
}

.lumatone-room-beanbag-center {
  left: 41%;
  width: 82px;
  height: 62px;
}

.lumatone-room-beanbag-right {
  right: 14%;
  width: 72px;
  height: 56px;
}

.lumatone-room-caption {
  position: absolute;
  z-index: 8;
  right: 10px;
  bottom: 8px;
  margin: 0;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #173f62;
  background: rgba(246, 250, 255, 0.68);
  border: 1px solid rgba(79, 112, 143, 0.26);
}

.lumatone-room-stop {
  position: absolute;
  z-index: 9;
  left: 10px;
  bottom: 8px;
  padding: 6px 10px;
  min-height: auto;
  background: rgba(246, 250, 255, 0.82);
  border-color: rgba(79, 112, 143, 0.34);
  backdrop-filter: blur(2px);
}

.lumatone-room-visualizer[data-lumatone-room] .lumatone-room-backwall {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--lumatone-room-color) 30%, #b6c0cc 70%) 0%, color-mix(in srgb, var(--lumatone-room-color) 12%, #95a1af 88%) 100%);
}

.lumatone-room-visualizer[data-lumatone-room] .lumatone-room-leftwall,
.lumatone-room-visualizer[data-lumatone-room] .lumatone-room-rightwall {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--lumatone-room-color) 58%, transparent 42%) 0%, transparent 78%),
    linear-gradient(210deg, #dbe3ec 0%, #c2ccd7 100%);
}

.lumatone-room-visualizer[data-lumatone-room] .lumatone-room-rightwall {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--lumatone-room-color) 50%, transparent 50%) 0%, transparent 80%),
    linear-gradient(245deg, #e5eaf0 0%, #cad2dc 100%);
}

.lumatone-room-visualizer[data-lumatone-room] .lumatone-room-floor {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--lumatone-room-color) 22%, transparent 78%) 0%, transparent 72%),
    linear-gradient(180deg, #aeb8c3 0%, #98a3af 100%);
}

.lumatone-sound-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.lumatone-sound-btn {
  border: 1px solid #c9d8e7;
  border-radius: 10px;
  background: #f6f9fd;
  color: #1f4b73;
  font-weight: 700;
  padding: 9px 10px;
  cursor: pointer;
}

.lumatone-sound-btn.is-playing {
  border-color: #2e6aa0;
  background: #e4f0ff;
  color: #123a5f;
}

.lumatone-volume-row {
  margin-bottom: 12px;
}

.lumatone-volume-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #2a4f71;
}

.lumatone-volume-row input[type="range"] {
  width: 100%;
}

.lumatone-sound-status {
  margin: 8px 0 0;
  font-weight: 600;
  color: #27567f;
}

.lumatone-panel-actions {
  margin-top: auto;
  justify-content: space-between;
  align-items: center;
}

.lumatone-demo-cta {
  margin-left: auto;
}

@media (max-width: 980px) {
  .lumatone-demo {
    grid-template-columns: 1fr;
  }

  .lumatone-device-shell {
    padding: 14px;
    border-width: 9px;
  }

  .lumatone-device-header {
    margin-bottom: 8px;
    font-size: clamp(0.9rem, 2.4vw, 1.2rem);
  }

  .lumatone-device-screen {
    grid-template-columns: 42px 1fr;
    border-width: 9px;
  }

  .lumatone-screen-sidebar {
    padding: 6px 4px;
    gap: 5px;
  }

  .lumatone-side-icon {
    width: 21px;
    height: 21px;
    font-size: 0.62rem;
  }

  .lumatone-screen-main {
    padding: 5px 6px 6px;
  }

  .lumatone-theme-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .lumatone-theme-btn {
    min-height: 68px;
    border-radius: 7px;
  }

  .lumatone-theme-label {
    padding: 2px 3px;
    font-size: 0.52rem;
    line-height: 1.1;
  }
}

@media (max-width: 700px) {
  .lumatone-device-wrap {
    padding: 7px;
    aspect-ratio: auto;
  }

  .lumatone-device-shell {
    padding: 10px;
    border-width: 7px;
    border-radius: 18px;
  }

  .lumatone-device-header {
    margin-bottom: 5px;
    font-size: 0.85rem;
  }

  .lumatone-device-screen {
    grid-template-columns: 34px 1fr;
    border-width: 6px;
    border-radius: 10px;
  }

  .lumatone-screen-sidebar {
    padding: 6px 3px;
    gap: 4px;
  }

  .lumatone-side-icon {
    width: 18px;
    height: 18px;
    font-size: 0.6rem;
    border-width: 0;
  }

  .lumatone-side-icon:nth-child(n + 6) {
    display: none;
  }

  .lumatone-screen-main {
    padding: 5px;
    overflow: hidden;
  }

  .lumatone-theme-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .lumatone-theme-btn {
    min-height: 54px;
    border-radius: 6px;
  }

  .lumatone-theme-label {
    padding: 2px 3px;
    font-size: 0.5rem;
    line-height: 1.05;
    border-top-width: 1px;
  }

  .lumatone-sound-grid {
    grid-template-columns: 1fr;
  }

  .lumatone-panel-actions {
    gap: 8px;
  }
}

.products-hero {
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg) 100%);
}

.products-hero-chips {
  margin-top: 10px;
}

.products-jump-section {
  padding: 18px 0 8px;
}

.products-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.products-jump-link {
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.products-jump-link:hover,
.products-jump-link:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
}

.products-family-block {
  margin-bottom: 16px;
  border: 1px solid var(--line);
}

.products-family-block:last-child {
  margin-bottom: 0;
}

.products-family-block > p {
  margin-top: 0;
}

.products-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.products-model-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.products-model-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.products-model-card:hover,
.products-model-card:focus-within {
  transform: translateY(-2px);
  border-color: var(--brand);
}

.products-model-card h4 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.products-model-card p {
  margin: 0;
}

.products-model-card .text-link {
  margin-top: auto;
  font-weight: 700;
}

.products-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.products-use-card {
  height: 100%;
  border: 1px solid var(--line);
}

.products-use-card p {
  margin: 0;
}

.products-install-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.products-install-lane {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--line);
}

.products-install-lane-accent {
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg) 100%);
}

.products-upsell-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.products-upsell-step {
  position: relative;
  overflow: hidden;
}

.products-upsell-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.products-step-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-2);
  font-weight: 700;
}

.products-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.products-content-card {
  height: 100%;
  border: 1px solid var(--line);
}

.product-hero {
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg) 100%);
}

.product-hero-layout {
  align-items: stretch;
}

.product-hero-layout > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.product-intro-lead {
  color: var(--brand-2);
}

.product-hero-product-strip {
  margin: 14px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 560px);
}

.product-hero-product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #e9eff7;
  display: block;
}

.product-hero .chip-row {
  margin-top: 2px;
}

.product-hero-video-card {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 320px;
}

.product-metric-grid {
  gap: 12px;
}

.product-metric-card {
  border: 1px solid var(--line);
  box-shadow: none;
}

.product-metric-card h3 {
  margin-bottom: 6px;
  color: var(--brand);
}

.product-metric-card p {
  margin: 0;
}

.product-detail-grid {
  align-items: stretch;
}

.product-info-section {
  padding-bottom: 24px;
}

.product-usage-section {
  padding-top: 24px;
}

.product-info-tabs {
  padding: 0;
  overflow: hidden;
}

.product-info-tab-list {
  border-bottom: 1px solid var(--line);
}

.product-info-viewport {
  background: var(--surface);
}

.product-info-panel {
  padding: 22px;
}

.product-info-panel h2 {
  margin-bottom: 10px;
}

.product-info-panel .feature-list {
  margin-top: 0;
}

.product-use-grid,
.product-media-grid,
.product-faq-grid {
  margin-bottom: 14px;
}

.product-benefit-grid {
  margin-bottom: 14px;
  align-items: stretch;
}

.product-benefit-grid .card,
.product-use-grid .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-benefit-grid .card h3,
.product-use-grid .card h3 {
  margin: 0 0 6px;
}

.product-value-grid {
  margin-bottom: 14px;
  align-items: stretch;
}

.product-value-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-value-card h3 {
  margin: 0;
}

.product-value-card p {
  margin: 0;
}

.product-benefits-band {
  background: linear-gradient(180deg, var(--brand) 0%, #4e8fd0 100%);
  color: #fff;
}

.product-benefits-head h2 {
  color: #fff;
}

.product-benefits-head p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
}

.product-benefits-icon-grid {
  gap: 24px 20px;
  margin-bottom: 20px;
}

.product-benefit-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.product-benefit-icon {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.product-benefit-icon svg {
  width: 38px;
  height: 38px;
}

.product-benefit-icon-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  max-width: 30ch;
}

.product-flip-section {
  padding-top: 20px;
}

.product-flip-card {
  border: 0;
  background: transparent;
  padding: 0;
}

.product-flip-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}

.product-flip-copy h2 {
  margin-bottom: 10px;
}

.product-flip-copy .lead {
  color: var(--ink);
  font-weight: 600;
}

.product-flip-copy p {
  margin-bottom: 10px;
}

.product-flip-media {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}

.product-flip-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #000;
}

.product-compat-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 16px;
}

.product-compat-copy h3 {
  color: #fff;
  margin-bottom: 8px;
}

.product-compat-copy p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 8px;
}

.product-benefits-band .chip {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.product-media-placeholder-card {
  border: 1px solid var(--line);
  box-shadow: none;
  padding: 14px;
}

.product-media-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  border: 1px dashed var(--line);
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 14px;
}

.product-media-placeholder strong {
  color: var(--ink);
}

.product-media-placeholder span {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 34ch;
}

.product-centered-cta {
  justify-content: center;
}

.product-usage-card {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.product-usage-heading {
  text-align: center;
  padding: 28px 22px 8px;
  margin: 0;
}

.product-usage-intro {
  padding: 0 22px 24px;
}

.product-usage-intro .lead {
  margin: 0 0 12px;
  max-width: 100%;
}

.product-usage-tab-list {
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.product-usage-viewport {
  background: transparent;
}

.product-usage-panel {
  padding: 24px;
}

.product-usage-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.product-usage-panel-grid > :first-child {
    max-width: 100 ch;
}

@media (max-width: 1400px) {
  .product-usage-panel-grid > :first-child {
      max-width: 48ch;
  }

  .product-usage-panel-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.5fr);
  }
}

.product-usage-media-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scroll-snap-type: x mandatory;
}

.product-usage-media-strip > * {
  scroll-snap-align: start;
}

.product-usage-media-strip .product-media-placeholder {
  scroll-snap-align: start;
}

.product-usage-media-video, .product-usage-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  object-fit: cover;
  scroll-snap-align: start;
}

.product-accessory-grid {
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-accessory-grid .card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-product-component {
  height: 100%;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
}

.product-product-component .products-step-kicker {
  margin: 0;
}

.product-product-component h3 {
  margin: 0;
  font-size: 0.95rem;
}

.product-component-subhead {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.product-component-list {
  margin-top: 0;
}

.product-component-media {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #e9eff7;
}

.product-component-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-product-component .product-media-placeholder {
  aspect-ratio: 16 / 9;
  padding: 8px;
}

.product-product-component .product-media-placeholder span {
  font-size: 0.8rem;
}

.product-activity-packs-section {
  background: #e8ecf2;
}

.product-activity-packs-head h2 {
  color: var(--ink);
}

.product-activity-packs-head p {
  color: var(--muted);
  margin: 0;
}

.product-activity-packs-grid {
  margin-top: 30px;
  column-gap: 18px;
  row-gap: 44px;
  align-items: stretch;
}

.product-activity-pack-card {
  height: 100%;
  border: 1px solid var(--line);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  padding-top: 36px;
}

.product-activity-pack-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
}

.product-activity-pack-icon svg {
  width: 28px;
  height: 28px;
}

.product-activity-pack-card h3 {
  text-align: center;
  color: var(--brand);
  margin: 0;
}

.product-pack-list {
  margin-top: 6px;
}

.product-pack-list li {
  color: var(--ink);
}

.product-pack-list strong {
  color: var(--brand);
}

.home-support-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.home-support-intro {
  position: sticky;
  top: 104px;
}

.home-support-intro h2 {
  max-width: 15ch;
}

.home-support-intro .lead {
  margin-bottom: 20px;
}

.home-support-rail {
  list-style: none;
  margin: 0;
  padding: 0 0 0 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-support-rail::before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
}

.home-support-item {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 188px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.home-support-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 33, 55, 0.08) 16%, rgba(16, 33, 55, 0.84) 100%);
  z-index: 1;
}

.home-support-item:hover,
.home-support-item:focus-visible {
  transform: translateX(6px) scale(1.01);
  border-color: var(--brand);
  box-shadow: 0 12px 28px rgba(16, 33, 55, 0.22);
}

.home-support-rail li:nth-child(even) .home-support-item {
  margin-left: 24px;
}

.home-support-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: end;
  min-height: 188px;
  padding: 14px;
}

.home-support-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.86rem;
}

.home-support-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-support-copy strong {
  font-size: 1.05rem;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 12px rgba(16, 33, 55, 0.42);
}

.home-support-copy span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.93rem;
  text-shadow: 0 2px 10px rgba(16, 33, 55, 0.42);
}

.home-support-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .products-jump-section {
    padding-top: 14px;
  }

  .products-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-use-grid {
    grid-template-columns: 1fr;
  }

  .products-install-grid,
  .products-upsell-grid,
  .products-content-grid {
    grid-template-columns: 1fr;
  }

  .product-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-usage-panel-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-benefits-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-product-strip {
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .home-product-tile {
    scroll-snap-align: start;
  }

  .home-support-layout {
    grid-template-columns: 1fr;
  }

  .home-support-intro {
    position: static;
  }

  .audience-send-media-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 1220px) {
  .product-hero-layout,
  .product-detail-grid,
  .product-value-grid,
  .product-accessory-grid,
  .product-faq-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-video-card {
    min-height: 260px;
  }

  .product-activity-packs-grid {
    grid-template-columns: 1fr;
  }

  .product-accessory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .product-flip-layout {
    grid-template-columns: 1fr;
  }

  .product-flip-media {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 740px) {
  .home-support-rail {
    padding-left: 0;
  }

  .home-support-rail::before {
    display: none;
  }

  .home-support-rail li:nth-child(even) .home-support-item {
    margin-left: 0;
  }

  .home-support-item:hover,
  .home-support-item:focus-visible {
    transform: none;
  }

  .products-model-grid {
    grid-template-columns: 1fr;
  }

  .product-metric-grid {
    grid-template-columns: 1fr;
  }

  .product-media-placeholder-card {
    padding: 10px;
  }

  .product-media-placeholder {
    aspect-ratio: 4 / 3;
    padding: 10px;
  }

  .product-info-section {
    padding-bottom: 16px;
  }

  .product-usage-section {
    padding-top: 16px;
  }

  .product-info-panel {
    padding: 16px 14px;
  }

  .product-benefits-icon-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-benefit-icon {
    width: 64px;
    height: 64px;
  }

  .product-benefit-icon svg {
    width: 32px;
    height: 32px;
  }

  .product-usage-heading {
    padding: 20px 14px 6px;
  }

  .product-usage-tab-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 8px 16px;
    padding: 0 14px;
  }

  .product-usage-panel {
    padding: 16px 14px;
  }

  .product-usage-media-strip {
    grid-auto-columns: minmax(180px, 1fr);
  }

  .product-accessory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-support-overlay {
    min-height: 170px;
  }
}

.about-gallery-card {
  overflow: hidden;
  padding: 0;
}

.about-gallery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 10px;
}

.feature-list {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.feature-list li {
  margin-bottom: 8px;
}

.support-tabs {
  padding: 0;
}

.support-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 0 22px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.support-tab {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--ink);
  padding: 16px 4px 14px;
  font: inherit;
  font-weight: 700;
  transition: color 0.34s ease, border-color 0.34s ease;
  cursor: pointer;
}

.support-tab:hover {
  color: var(--brand);
}

.support-tab.active {
  border-color: var(--brand-2);
  color: var(--brand-2);
}

.support-tab:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.support-tab-viewport {
  position: relative;
  overflow: hidden;
  transition: height 0.52s ease;
}

.support-tab-panel {
  position: absolute;
  inset: 0;
  padding: 22px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.34s ease, transform 0.52s ease;
}

.support-tab-panel.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.support-tab-panel h2 {
  margin-bottom: 12px;
}

.support-training-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.support-training-media {
  justify-self: end;
  width: 100%;
}

.support-warranty-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.support-warranty-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-warranty-list {
  margin-top: 0;
}

.support-warranty-list li {
  margin-bottom: 10px;
}

.support-warranty-aside {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: var(--bg);
}

.support-warranty-aside h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.support-warranty-aside .feature-list {
  margin-top: 0;
}

.support-partners-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.support-partners-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-partners-list {
  margin-top: 0;
}

.support-partners-list li {
  margin-bottom: 10px;
}

.support-partners-aside {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: var(--bg);
}

.support-partners-aside h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.support-partners-aside .feature-list {
  margin-top: 0;
}

.training-key {
  font-weight: 700;
}

.training-key-primary {
  color: var(--brand-2);
}

.training-key-secondary {
  color: var(--brand);
}

.warranty-key {
  font-weight: 700;
}

.warranty-key-primary {
  color: var(--brand-2);
}

.warranty-key-secondary {
  color: var(--brand);
}

.partners-key {
  font-weight: 700;
}

.partners-key-primary {
  color: var(--brand-2);
}

.partners-key-secondary {
  color: var(--brand);
}

.support-training-video {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #000;
  display: block;
  margin: 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
}

.case-study-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  background: #f2f2f2;
  border-color: #ececec;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.case-study-filter-heading {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  margin-right: 6px;
}

.case-study-filter-field {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-2);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.case-study-filter-field:hover {
  border-color: var(--brand);
}

.case-study-filter-field:focus-within {
  border-color: var(--brand-2);
  background: var(--bg);
}

.case-study-filter-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.case-study-filter-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.case-study-dropdown {
  position: relative;
}

.case-study-filter-trigger {
  border: 0;
  background: transparent;
  color: currentColor;
  font-weight: 600;
  font-size: 1rem;
  padding: 0;
  line-height: 1.1;
  cursor: pointer;
  font-family: inherit;
}

.case-study-filter-trigger:focus-visible {
  outline: none;
}

.case-study-filter-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 26px rgba(16, 33, 55, 0.14);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 30;
}

.case-study-dropdown.open .case-study-filter-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.case-study-filter-option {
  border: 0;
  background: transparent;
  text-align: left;
  width: 100%;
  color: var(--ink);
  border-radius: 8px;
  padding: 8px 10px;
  font: inherit;
  cursor: pointer;
}

.case-study-filter-option:hover {
  background: var(--bg);
  color: var(--brand);
}

.case-study-filter-option.active {
  background: var(--bg);
  color: var(--brand-2);
  font-weight: 600;
}

.case-study-filter-caret {
  font-size: 0.82rem;
  line-height: 1;
  pointer-events: none;
}

.case-study-filter-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
}

.case-study-filter-count {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
}

.case-study-card {
  gap: 10px;
}

.case-study-link {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.case-study-link:hover,
.case-study-link:focus-visible {
  border-color: var(--brand);
  box-shadow: 0 12px 26px rgba(16, 33, 55, 0.14);
}

.case-study-card[hidden] {
  display: none !important;
}

.case-study-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
}

.case-study-pagination {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.case-study-page-status {
  margin: 0;
  text-align: center;
  font-weight: 600;
}

.case-study-pagination .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.case-study-empty {
  margin-top: 8px;
}

.case-study-brand-text {
  color: var(--brand-2);
  font-weight: 700;
}

.case-study-brand-text-2 {
  color: var(--brand);
  font-weight: 700;
}

.case-study-chip-row {
  gap: 6px;
}

.case-study-chip {
  font-size: 0.78rem;
  padding: 5px 9px;
  font-weight: 500;
  color: var(--muted);
  border-color: #e4ebf4;
}

.case-study-hero-stat {
  margin: 16px 0 0;
  color: var(--brand-2);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 700;
}

.case-study-back-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 10px;
}

.case-study-back-inline:hover,
.case-study-back-inline:focus-visible {
  color: var(--brand-2);
}

.case-study-back-float {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 110;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 10px 24px rgba(16, 33, 55, 0.26);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, background-color 0.22s ease;
}

.case-study-back-float:hover,
.case-study-back-float:focus-visible {
  background: var(--brand-2);
}

.case-study-back-float.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.case-study-media-section {
  padding-top: 14px;
}

.case-study-media-section + .section {
  padding-top: 18px;
}

.case-study-video {
  width: min(100%, 780px);
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #000;
  display: block;
  margin: 0 auto;
}

.case-study-video-caption {
  margin-top: 10px;
  font-size: 0.75em;
  color: var(--muted);
}

.case-study-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.case-study-gallery-item {
  margin: 0;
}

.case-study-gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: block;
}

@media (max-width: 980px) {
  .case-study-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .case-study-gallery {
    grid-auto-flow: column;
    grid-auto-columns: minmax(72%, 1fr);
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }

  .case-study-gallery-item {
    scroll-snap-align: start;
  }
}

.case-study-feature-wrap {
  max-width: 940px;
  margin: 0 auto;
}

.case-study-feature-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.case-study-flow {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.case-study-section {
  padding: 8px 0;
}

.case-study-section + .case-study-section {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 28px;
}

.case-study-section h2 {
  margin-bottom: 12px;
}

.case-study-section p {
  margin: 0 0 12px;
}

.case-study-section p:last-child {
  margin-bottom: 0;
}

.case-study-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.case-study-stat-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  background: var(--bg);
}

.case-study-stat-value {
  margin: 0;
  color: var(--brand-2);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.case-study-stat-label {
  margin: 6px 0 0;
  color: var(--muted);
}

.case-study-quote {
  margin: 4px 0;
  border-left: 4px solid var(--brand);
  padding: 6px 0 6px 14px;
  color: var(--ink);
  font-size: 1.05rem;
  font-style: italic;
}

.case-study-section-links .cta-row,
.case-study-section-cta .cta-row {
  margin-top: 14px;
}

@media (max-width: 860px) {
  .case-study-filter-heading {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2px;
  }

  .case-study-filter-meta {
    width: 100%;
    margin-left: 0;
  }

  .case-study-back-float {
    left: 12px;
    bottom: 12px;
    padding: 9px 12px;
  }

  .case-study-stats-grid {
    grid-template-columns: 1fr;
  }
}

.accent {
  background: linear-gradient(135deg, var(--brand), #2f5f91);
  color: #fff;
}

.accent p {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  background: var(--bg);
  color: var(--ink);
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.footer-shell {
  padding: 36px 0 22px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) 1fr;
  gap: 48px;
  align-items: start;
}

.footer-kicker {
  margin: 0;
  color: var(--brand);
  font-size: 1.02rem;
  font-weight: 700;
}

.footer-phone {
  display: inline-block;
  margin-top: 6px;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.footer-address {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.footer-social {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--brand-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--brand-2);
  background: var(--surface);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-social a:hover {
  background: var(--brand-2);
  color: #fff;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-col h3 {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 1.05rem;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  margin: 0 0 8px;
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
}

.footer-bottom-links {
  display: flex;
  gap: 12px;
}

.footer-bottom-links a {
  text-decoration: none;
  color: var(--muted);
}

.footer-link-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  padding: 0;
  cursor: pointer;
}

.footer-bottom-links a:hover {
  color: var(--brand);
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--brand);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
}

.cookie-banner-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 34px rgba(16, 33, 55, 0.2);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.cookie-banner-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.cookie-banner-copy p {
  margin: 0;
  color: var(--muted);
}

.cookie-banner-copy a {
  display: inline-block;
  margin-top: 8px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 33, 55, 0.5);
}

.cookie-modal-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 38px rgba(16, 33, 55, 0.25);
  padding: 22px;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cookie-modal-header h2 {
  margin: 0;
}

.cookie-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal-intro {
  margin: 10px 0 0;
  color: var(--muted);
}

.cookie-preference-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.cookie-preference-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  cursor: pointer;
}

.cookie-preference-item strong {
  display: block;
  margin-bottom: 2px;
}

.cookie-preference-item small {
  color: var(--muted);
}

.cookie-preference-item input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.cookie-preference-item-disabled {
  background: var(--bg);
  cursor: not-allowed;
}

.cookie-modal-footer {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.floating-demo-btn {
  display: none;
  position: fixed;
  right: 12px;
  z-index: 100;
  background: var(--brand-2);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 10px 24px rgba(232, 100, 44, 0.3);
}

.floating-demo-btn:hover {
  filter: brightness(0.96);
}

.page-hero {
  background-color: var(--bg);
  border-bottom: 1px solid var(--line);
}

.form-shell {
  max-width: 740px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.contact-layout {
  align-items: stretch;
}

.contact-layout > .form-shell,
.contact-layout > .card {
  height: 100%;
}

.contact-layout > .form-shell {
  max-width: none;
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.wide {
  grid-column: 1 / -1;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.small {
  font-size: 0.86rem;
  color: var(--muted);
}

.form-status {
  margin-top: 10px;
  color: #106b3f;
  font-weight: 600;
}

@media (max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .hero .media-card {
    justify-self: center;
    width: 100%;
    max-width: none;
    min-height: 0;
  }

  .trusted-strip-track {
    animation-duration: 40s;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 4vw;
    flex-direction: column;
    gap: 0;
    z-index: 60;
    margin-left: 0;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 12px 4px;
    border-bottom: 1px solid #f2f2f2;
  }

  .nav-link:hover,
  .nav-link.active {
    border-bottom-color: #f2f2f2;
  }

  .nav-caret {
    margin-left: auto;
  }

  .nav-item-mega .mega-menu {
    display: none;
  }

  .nav-item-about .sub-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    width: 100%;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    padding: 4px 0 2px;
    gap: 0;
  }

  .nav-item-about.open .sub-menu {
    display: flex;
  }

  .nav-item-about.open .sub-menu a {
    font-size: 0.95rem;
    padding: 10px 4px;
    border-bottom: 1px solid #f2f2f2;
    border-radius: 0;
    background: transparent;
  }

  .nav-item-mega.open .mega-menu {
    display: grid;
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    padding: 6px 0 2px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav-item-mega.open .mega-left a {
    font-size: 0.95rem;
    padding: 10px 4px;
    border-bottom: 1px solid #f2f2f2;
  }

  .nav-item-mega.open .mega-cards {
    display: none;
  }
}

@media (max-width: 1100px) {
  .nav-demo-btn {
    display: none;
  }

  .floating-demo-btn {
    display: inline-flex;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 740px) {
  .section {
    padding: 56px 0;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-demo-btn {
    display: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 4vw;
    flex-direction: column;
    gap: 0;
    z-index: 60;
    margin-left: 0;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 12px 4px;
    border-bottom: 1px solid #f2f2f2;
  }

  .nav-link:hover,
  .nav-link.active {
    border-bottom-color: #f2f2f2;
  }

  .nav-caret {
    margin-left: auto;
  }

  .nav-item-mega .mega-menu {
    display: none;
  }

  .nav-item-about .sub-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    width: 100%;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    padding: 4px 0 2px;
    gap: 0;
  }

  .nav-item-about.open .sub-menu {
    display: flex;
  }

  .nav-item-about.open .sub-menu a {
    font-size: 0.95rem;
    padding: 10px 4px;
    border-bottom: 1px solid #f2f2f2;
    border-radius: 0;
    background: transparent;
  }

  .nav-item-mega.open .mega-menu {
    display: grid;
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    padding: 6px 0 2px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav-item-mega.open .mega-left a {
    font-size: 0.95rem;
    padding: 10px 4px;
    border-bottom: 1px solid #f2f2f2;
  }

  .nav-item-mega.open .mega-cards {
    display: none;
  }

  .grid-4,
  .grid-2,
  .grid-3,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .case-study-filters {
    gap: 10px;
  }

  .case-study-filter-meta {
    justify-content: flex-start;
  }

  .case-study-pagination {
    flex-direction: column;
    align-items: stretch;
  }

  .case-study-page-status {
    order: -1;
  }

  .support-tab-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 14px;
    padding: 0 14px;
  }

  .support-tab {
    white-space: nowrap;
  }

  .support-tab-panel {
    padding: 18px 14px;
  }

  .support-training-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .support-warranty-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .support-partners-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .support-training-media {
    justify-self: stretch;
  }

  .footer-shell {
    padding: 30px 0 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-phone {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .footer-social {
    margin-top: 16px;
  }

  .cookie-banner {
    top: 82px;
    left: 10px;
    right: 10px;
    bottom: 0;
    max-height: none;
    display: flex;
    align-items: flex-end;
  }

  .cookie-banner-inner {
    width: 100%;
    grid-template-columns: 1fr;
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    gap: 10px;
  }

  .cookie-banner-title {
    font-size: 0.94rem;
    margin-bottom: 4px;
  }

  .cookie-banner-copy p {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .cookie-banner-copy a {
    margin-top: 6px;
    font-size: 0.9rem;
  }

  .cookie-banner-actions {
    justify-content: flex-start;
    position: sticky;
    bottom: 0;
    background: var(--surface);
    padding-top: 8px;
    margin-top: 4px;
    gap: 6px;
  }

  .cookie-banner-actions .btn {
    font-size: 0.82rem;
    padding: 8px 10px;
  }

  .cookie-modal {
    padding: 10px;
  }

  .cookie-modal-panel {
    padding: 16px;
  }

  .floating-demo-btn {
    display: inline-flex;
    right: 12px;
    bottom: 12px;
    font-size: 0.86rem;
    padding: 9px 12px;
  }
}
