:root {
  --bg: #f3efe8;
  --surface: #fffdf8;
  --surface-strong: #111722;
  --surface-muted: #dbe2ea;
  --text: #18202b;
  --text-soft: #526072;
  --accent: #ef6b2e;
  --accent-deep: #c54a0d;
  --line: rgba(24, 32, 43, 0.12);
  --shadow: 0 24px 80px rgba(12, 19, 30, 0.12);
  --radius: 28px;
  --shell: min(1180px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  /* Keeps in-page targets (e.g. #main-content, skip link) below the sticky header. */
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 107, 46, 0.12), transparent 25%),
    linear-gradient(180deg, #fff8ef 0%, var(--bg) 52%, #edf1f5 100%);
  min-width: 320px;
}

[hidden] {
  display: none !important;
}

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

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  background: var(--surface-strong);
  color: white;
  border-radius: 1rem;
}

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

[data-site-header] {
  position: sticky;
  top: 0;
  z-index: 500;
  width: 100%;
  /* Solid strip so hero/card shadows don’t read through the bar while scrolling. */
  background-color: var(--surface);
}

.site-header {
  background-color: var(--surface);
  border-bottom: 1px solid rgba(17, 23, 34, 0.08);
  /* Mega menu top = full header height + this offset (accent line + border + air). */
  --site-header-accent-line-h: 2px;
  --site-header-dropdown-below: calc(
    var(--site-header-accent-line-h) + 1px + 0.35rem
  );
}

.site-header::after {
  content: "";
  display: block;
  height: var(--site-header-accent-line-h);
  background: linear-gradient(90deg, transparent, rgba(239, 107, 46, 0.75), transparent);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  min-width: 0;
  position: static;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
  flex: 0 1 auto;
}

.brand-lockup__mark {
  width: 5.25rem;
  height: 5.25rem;
  flex: none;
}

.brand-lockup__text {
  display: grid;
  gap: 0.36rem;
  position: relative;
}

.brand-lockup__name {
  display: grid;
  gap: 0.08rem;
  line-height: 1;
  position: relative;
  padding-left: 0.7rem;
  justify-items: center;
  text-align: center;
}

.brand-lockup__name-main {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: clamp(1.34rem, 1.95vw, 1.76rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.brand-lockup__name-sub {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 1.18vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  text-shadow: none;
}

.brand-lockup__name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.08rem;
  bottom: 0.08rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  box-shadow: 0 6px 16px rgba(239, 107, 46, 0.24);
}

.brand-lockup__tag {
  color: var(--text-soft);
  font-size: 0.82rem;
  white-space: nowrap;
  padding-left: 0.15rem;
}

.eyebrow {
  color: var(--accent);
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  position: static;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav__panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 0;
  padding: 0.4rem 0.5rem;
  border-radius: 999px;
  background: rgba(17, 23, 34, 0.04);
  border: 1px solid rgba(17, 23, 34, 0.06);
}

.site-nav__panel > a,
.nav-dropdown__toggle {
  position: relative;
  padding: 0.72rem 0.95rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.site-nav__panel > a.is-active,
.site-nav__panel > a:hover,
.nav-dropdown__toggle:hover {
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: static;
}

/* Hover intent (see site.js) keeps the panel open while moving from the toggle down to the menu. */
@media (min-width: 781px) {
  .nav-dropdown.is-mega-hover .nav-dropdown__menu {
    display: block;
  }
}

.nav-dropdown__menu {
  position: absolute;
  /* Line up with content below the header: inner row + accent ::after + border + small gap. */
  top: calc(100% + var(--site-header-dropdown-below));
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(calc(100vw - 2rem), 72rem);
  max-width: calc(100vw - 2rem);
  max-height: min(76vh, 38rem);
  z-index: 20;
  padding: 1.1rem;
  background: var(--surface);
  border: 2px solid rgba(24, 32, 43, 0.22);
  border-radius: 1.25rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 0 0 2px rgba(239, 107, 46, 0.22),
    0 0 0 5px rgba(255, 252, 247, 0.98),
    0 0 0 6px rgba(17, 23, 34, 0.06),
    0 32px 90px rgba(12, 19, 30, 0.18),
    0 10px 28px rgba(12, 19, 30, 0.09);
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(239, 107, 46, 0.7) rgba(17, 23, 34, 0.08);
}

.nav-dropdown__menu.is-open,
.nav-dropdown:hover .nav-dropdown__menu {
  display: block;
}

.nav-dropdown-backdrop {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(17, 23, 34, 0.26);
  backdrop-filter: blur(12px) saturate(1.06);
  -webkit-backdrop-filter: blur(12px) saturate(1.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 200ms ease,
    visibility 200ms ease;
}

body:has(.nav-dropdown__menu.is-open) {
  overflow: hidden;
}

body:has(.nav-dropdown__menu.is-open) .nav-dropdown-backdrop {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) and (pointer: fine) and (min-width: 781px) {
  body:has(.nav-dropdown:hover) .nav-dropdown-backdrop,
  body:has(.nav-dropdown.is-mega-hover) .nav-dropdown-backdrop {
    opacity: 1;
    visibility: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown-backdrop {
    transition: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .nav-dropdown-backdrop {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(17, 23, 34, 0.52);
  }
}

.nav-dropdown__menu::-webkit-scrollbar {
  width: 10px;
}

.nav-dropdown__menu::-webkit-scrollbar-track {
  background: rgba(17, 23, 34, 0.07);
  border-radius: 999px;
}

.nav-dropdown__menu::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(239, 107, 46, 0.9), rgba(197, 74, 13, 0.9));
  border-radius: 999px;
}

.nav-dropdown__menu--mega::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  width: 8rem;
  height: 3px;
  background: linear-gradient(90deg, rgba(239, 107, 46, 0.15), rgba(239, 107, 46, 0.95));
  border-radius: 999px;
}

.nav-dropdown__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0 1rem;
  border-bottom: 1px solid rgba(17, 23, 34, 0.08);
}

.nav-dropdown__intro h2 {
  margin: 0.2rem 0 0;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1;
}

.nav-dropdown__intro p {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
}

.nav-dropdown__menu ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.nav-dropdown__overview {
  display: inline-flex;
  font-weight: 700;
  color: var(--accent-deep);
}

.mega-grid {
  display: none;
}

.mega-company-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.75rem;
  padding: 1rem 0 1.15rem;
  border-bottom: 1px solid rgba(17, 23, 34, 0.08);
}

.mega-company {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  padding: 0.9rem 0.75rem;
  border: 1px solid rgba(17, 23, 34, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.mega-company:hover,
.mega-company:focus-visible,
.mega-company.is-active {
  transform: translateY(-2px);
  border-color: rgba(239, 107, 46, 0.4);
  background: rgba(255, 247, 240, 0.95);
  box-shadow: 0 14px 28px rgba(17, 23, 34, 0.08);
}

.mega-company span {
  font-weight: 700;
  color: var(--text);
}

.brand-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.mega-company .brand-logo-img {
  max-height: 2.35rem;
  max-width: 7.5rem;
}

.mega-mobile-hint {
  display: none;
}

.mega-browser {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  padding-top: 1rem;
}

.mega-panel {
  padding: 1rem;
  border-radius: 1.1rem;
  background: rgba(17, 23, 34, 0.03);
  border: 1px solid rgba(17, 23, 34, 0.06);
}

.mega-panel__header h3 {
  margin: 0.2rem 0 0;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.mega-category-list,
.mega-product-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.mega-category {
  display: grid;
  gap: 0.25rem;
  text-align: left;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 23, 34, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
  min-width: 0;
}

.mega-category:hover,
.mega-category:focus-visible,
.mega-category.is-active {
  transform: translateY(-2px);
  border-color: rgba(239, 107, 46, 0.35);
  background: rgba(255, 247, 240, 0.95);
  box-shadow: 0 12px 26px rgba(17, 23, 34, 0.07);
}

.mega-category-list {
  max-height: 21.25rem;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 0.3rem;
  padding-bottom: 0.35rem;
  padding-right: 0.35rem;
  align-content: start;
  scrollbar-width: thin;
  scrollbar-color: rgba(239, 107, 46, 0.7) rgba(17, 23, 34, 0.08);
}

.mega-category-list::-webkit-scrollbar {
  width: 8px;
}

.mega-category-list::-webkit-scrollbar-track {
  background: rgba(17, 23, 34, 0.06);
  border-radius: 999px;
}

.mega-category-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(239, 107, 46, 0.92), rgba(197, 74, 13, 0.92));
  border-radius: 999px;
}

.mega-category strong {
  font-weight: 700;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.3;
}

.mega-category span,
.mega-category small,
.mega-product-card span {
  color: var(--text-soft);
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  line-height: 1.35;
}

.mega-product-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: 21.25rem;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 0.3rem;
  padding-bottom: 0.35rem;
  padding-right: 0.35rem;
  align-content: start;
  scrollbar-width: thin;
  scrollbar-color: rgba(239, 107, 46, 0.7) rgba(17, 23, 34, 0.08);
}

.mega-product-list::-webkit-scrollbar {
  width: 8px;
}

.mega-product-list::-webkit-scrollbar-track {
  background: rgba(17, 23, 34, 0.06);
  border-radius: 999px;
}

.mega-product-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(239, 107, 46, 0.92), rgba(197, 74, 13, 0.92));
  border-radius: 999px;
}

.mega-product-card {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 23, 34, 0.08);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
  min-width: 0;
}

.mega-product-card strong {
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.3;
}

.mega-product-card:hover,
.mega-product-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(239, 107, 46, 0.35);
  box-shadow: 0 12px 26px rgba(17, 23, 34, 0.08);
}

.nav-dropdown__menu li span {
  display: block;
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-top: 0.2rem;
}

.nav-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  background: white;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.5px;
  flex: none;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.nav-toggle:hover {
  border-color: rgba(239, 107, 46, 0.35);
  background: rgba(255, 247, 240, 0.95);
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 1px;
  background: var(--text);
  transition: transform 200ms ease, opacity 200ms ease;
}

.button,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
  touch-action: manipulation;
}

.button {
  padding: 0.95rem 1.35rem;
  background: var(--accent);
  color: white;
}

.button:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}

.button--secondary {
  background: var(--surface-strong);
}

.button--secondary:hover {
  background: #0a0f18;
}

.button--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.button--ghost:hover {
  border-color: rgba(24, 32, 43, 0.3);
  background: rgba(255, 255, 255, 0.65);
}

.button--nav {
  margin-left: 0;
  padding-inline: 0.95rem;
  background: transparent;
  color: var(--text);
  border-color: rgba(24, 32, 43, 0.08);
  box-shadow: none;
}

.button--nav:hover,
.button--nav.is-active {
  background: var(--accent);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(239, 107, 46, 0.18);
}

:focus-visible {
  outline: 3px solid rgba(239, 107, 46, 0.34);
  outline-offset: 2px;
}

main {
  display: block;
}

.page-hero,
.home-hero {
  padding: 2.5rem 0 1.5rem;
}

.home-hero__frame,
.page-hero__frame,
.brand-hero,
.detail-panel,
.contact-panel,
.panel {
  background: linear-gradient(145deg, rgba(17, 23, 34, 0.98), rgba(24, 34, 50, 0.94));
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.brand-hero,
.contact-panel {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.99), rgba(250, 246, 239, 0.97));
  color: var(--text);
  border: 1px solid rgba(24, 32, 43, 0.08);
  box-shadow: 0 22px 56px rgba(17, 23, 34, 0.08);
}

.detail-panel {
  background:
    linear-gradient(180deg, rgba(255, 254, 251, 0.995), rgba(252, 249, 244, 0.985));
  color: var(--text);
  border: 1px solid rgba(24, 32, 43, 0.06);
  box-shadow: 0 18px 42px rgba(17, 23, 34, 0.05);
}

.home-hero__frame::before,
.page-hero__frame::before,
.brand-hero::before,
.detail-panel::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(239, 107, 46, 0.34), transparent 40%),
    linear-gradient(90deg, transparent 45%, rgba(255, 255, 255, 0.08) 46%, transparent 47%),
    url("../images/banners/industrial-grid.svg") center/cover no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.brand-hero::before,
.contact-panel::before {
  background:
    radial-gradient(circle at top left, rgba(239, 107, 46, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), transparent 34%),
    url("../images/banners/industrial-grid.svg") center/cover no-repeat;
  opacity: 0.16;
}

.detail-panel::before {
  background:
    radial-gradient(circle at top left, rgba(239, 107, 46, 0.045), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), transparent 30%),
    url("../images/banners/industrial-grid.svg") center/cover no-repeat;
  opacity: 0.08;
}

.home-hero__content,
.page-hero__content,
.brand-hero,
.detail-panel,
.contact-panel {
  position: relative;
  z-index: 1;
}

.brand-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2.2rem clamp(1.4rem, 3vw, 2.6rem);
}

.home-hero__content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  padding: clamp(1.6rem, 3vw, 2.8rem);
}

.page-hero__content {
  padding: 2.6rem clamp(1.6rem, 3vw, 3rem);
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.brand-card h2,
.download-card h2,
.detail-copy h1,
.contact-copy h1 {
  margin: 0;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.95;
  text-wrap: balance;
}

.hero-copy h1 {
  font-size: clamp(1.65rem, 3.5vw, 3.2rem);
}

.page-hero h1,
.section-heading h2,
.brand-card h2,
.download-card h2,
.detail-copy h1,
.contact-copy h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  line-height: 1;
}

.hero-copy p,
.page-hero p,
.detail-lead,
.contact-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  max-width: 42rem;
}

.brand-hero p,
.detail-lead,
.contact-copy p {
  color: var(--text-soft);
}

.hero-actions,
.detail-actions,
.download-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero-stats {
  display: grid;
  gap: 0.85rem;
  align-content: center;
}

.hero-stats article,
.mini-stat {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  padding: 1rem 1.1rem;
}

.brand-hero .detail-actions .button,
.detail-copy .detail-actions .button,
.contact-copy .detail-actions .button {
  background: var(--accent-deep);
  color: white;
  border-color: rgba(197, 74, 13, 0.22);
}

.brand-hero .detail-actions .button:hover,
.detail-copy .detail-actions .button:hover,
.contact-copy .detail-actions .button:hover {
  background: #a23d0c;
}

.brand-hero .detail-actions .button--ghost,
.detail-copy .detail-actions .button--ghost,
.contact-copy .detail-actions .button--ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-color: rgba(24, 32, 43, 0.12);
}

.brand-hero .detail-actions .button--ghost:hover,
.detail-copy .detail-actions .button--ghost:hover,
.contact-copy .detail-actions .button--ghost:hover {
  background: white;
  border-color: rgba(24, 32, 43, 0.18);
}

.brand-hero .detail-actions .button--secondary,
.detail-copy .detail-actions .button--secondary,
.contact-copy .detail-actions .button--secondary {
  background: #14202d;
  color: white;
}

.brand-hero .detail-actions .button--secondary:hover,
.detail-copy .detail-actions .button--secondary:hover,
.contact-copy .detail-actions .button--secondary:hover {
  background: #0d1722;
}

.hero-stats strong,
.mini-stat strong {
  display: block;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 2rem;
}

.section {
  padding: 1.2rem 0 2.4rem;
}

.about-page .section {
  padding-bottom: 1.2rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-heading p {
  max-width: 44rem;
  color: var(--text-soft);
  margin: 0.3rem 0 0;
}

.marquee,
.grid,
.brand-grid,
.products-grid,
.awards-grid,
.benefit-grid,
.stats-grid,
.downloads-grid,
.footer-grid {
  display: grid;
  gap: 1.2rem;
}

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

.brand-chip,
.product-card,
.award-card,
.brand-card,
.download-card,
.benefit-card,
.mini-contact,
.story-card,
.certificate-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.5rem;
  box-shadow: 0 18px 44px rgba(17, 23, 34, 0.08);
  overflow: hidden;
}

.brand-chip {
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
}

.brand-chip .brand-logo-img {
  max-height: 2.85rem;
  max-width: min(100%, 12.5rem);
}

.brand-card .brand-logo-img {
  max-height: 3.4rem;
  max-width: min(100%, 15rem);
  justify-self: start;
}

.brand-hero .brand-logo-img {
  max-height: clamp(2.5rem, 5vw, 4rem);
  max-width: min(100%, 22rem);
}

/* Logos with tagline / stacked wordmark (e.g. BIPICO) need extra vertical room */
.mega-company .brand-logo-img--tagline {
  max-height: 3.05rem;
  max-width: 8.75rem;
}

.brand-chip .brand-logo-img--tagline {
  max-height: 3.65rem;
  max-width: min(100%, 14rem);
}

.brand-card .brand-logo-img--tagline {
  max-height: 4.15rem;
  max-width: min(100%, 16.5rem);
}

.brand-hero .brand-logo-img--tagline {
  max-height: clamp(3rem, 6.2vw, 4.85rem);
  max-width: min(100%, 24rem);
}

.download-card__header .brand-logo-img--tagline {
  max-height: 3.85rem;
  max-width: min(100%, 12.5rem);
}

/* Portrait / stacked marks (e.g. Aries): prioritize height, narrower max-width */
.mega-company .brand-logo-img--portrait {
  max-height: 3.65rem;
  max-width: 3.4rem;
}

.brand-chip .brand-logo-img--portrait {
  max-height: 4.5rem;
  max-width: 4.15rem;
}

.brand-card .brand-logo-img--portrait {
  max-height: 5.35rem;
  max-width: 4.85rem;
}

.brand-hero .brand-logo-img--portrait {
  max-height: clamp(4rem, 9vw, 7rem);
  max-width: min(100%, 6.75rem);
}

.download-card__header .brand-logo-img--portrait {
  max-height: 4.35rem;
  max-width: 4.05rem;
}

.products-grid,
.brand-grid,
.downloads-grid,
.awards-grid,
.benefit-grid,
.stats-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.product-card,
.award-card,
.brand-card,
.download-card,
.benefit-card {
  display: grid;
  min-width: 0;
}

.product-card,
.award-card,
.benefit-card {
  grid-column: span 4;
}

.brand-card,
.download-card {
  grid-column: span 6;
  padding: 1.5rem;
  gap: 1rem;
}

.downloads-grid .download-card {
  grid-column: span 4;
}

.pdf-preview {
  width: 100%;
  min-height: 22rem;
  border: 1px solid rgba(17, 23, 34, 0.08);
  border-radius: 1rem;
  background: #ffffff;
}

.download-card--pdf {
  gap: 0.8rem;
  padding: 1rem 1rem 0.95rem;
}

.download-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.download-card__header h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.95rem);
  line-height: 1;
}

.download-card__header img {
  max-width: min(100%, 11rem);
  max-height: 3.25rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.pdf-cover {
  display: block;
  padding: 0.65rem;
  border-radius: 1.05rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 242, 236, 0.96));
  border: 1px solid rgba(24, 32, 43, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pdf-cover:hover,
.pdf-cover:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(197, 74, 13, 0.22);
  box-shadow: 0 18px 40px rgba(17, 23, 34, 0.1);
}

.pdf-cover img {
  width: 100%;
  aspect-ratio: 3.2 / 2.15;
  object-fit: contain;
  object-position: top center;
  border-radius: 0.75rem;
  background: white;
}

.download-card__footer {
  display: grid;
  gap: 0.8rem;
}

.download-card__updated {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
}

.product-card__body,
.award-card__body {
  padding: 1.2rem;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}

.product-card h3,
.award-card h3,
.benefit-card h3,
.story-card h2,
.certificate-card h2 {
  margin: 0.3rem 0 0.5rem;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  text-wrap: balance;
}

.product-card h3 {
  margin: 0;
  flex: 1 1 auto;
}

.product-card p,
.award-card p,
.brand-card p,
.download-card p,
.benefit-card p,
.story-card p,
.certificate-card p,
.detail-copy p,
label span,
.form-note {
  color: var(--text-soft);
}

.form-status {
  min-height: 0;
  margin: 0;
}

.toast {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-1rem);
  opacity: 0;
  padding: 0.85rem 1.6rem;
  border-radius: 0.5rem;
  font-family: var(--ff-body, "Source Sans 3", sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  max-width: calc(100% - 2rem);
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast--success {
  background: #1f7a44;
  color: #fff;
}

.toast--error {
  background: #b23a2b;
  color: #fff;
}

.form-botcheck {
  display: none !important;
}

.download-card__meta {
  display: grid;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text-soft);
}

.button--small {
  padding: 0.62rem 0.9rem;
  font-size: 0.9rem;
  gap: 0.45rem;
}

.download-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0;
  gap: 0.6rem;
  flex-wrap: nowrap;
}

.download-card__actions .button {
  flex: 0 1 auto;
}

.download-card__request {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.95rem;
  background: rgba(17, 23, 34, 0.06);
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.button__icon {
  width: 0.95rem;
  height: 0.95rem;
  flex: none;
}

.product-card__footer,
.detail-tags,
.brand-card__tags,
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-card__footer {
  margin-top: auto;
  align-items: center;
  justify-content: flex-end;
}

.brand-card__tags {
  padding: 0;
  margin: 0;
}

[data-pricelist-filters] {
  margin-bottom: 1.15rem;
}

.product-card__category,
.detail-tags span,
.brand-card__tags li,
.chip {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(17, 23, 34, 0.06);
  color: var(--text);
  list-style: none;
}

.product-card__category {
  flex: 0 0 auto;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(201, 140, 54, 0.12);
  color: var(--accent-deep);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.product-card__arrow {
  display: inline-block;
  transition: transform 180ms ease;
}

.product-card__link:hover .product-card__arrow,
.product-card__link:focus-visible .product-card__arrow {
  transform: translateX(0.28rem);
}

.chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.chip.is-active {
  background: var(--surface-strong);
  color: white;
  border-color: transparent;
}

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

.industry-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.industry-list li {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(17, 23, 34, 0.06);
}

.story-card,
.certificate-card,
.mini-contact {
  padding: 1.5rem;
}

.stats-grid .mini-stat {
  grid-column: span 3;
}

.benefit-card {
  padding: 1.5rem;
}

.benefit-card p {
  margin: 0;
}

.mini-contact {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(245,248,251,0.9));
}

.mini-contact form,
.contact-form {
  display: grid;
  gap: 0.9rem;
}

body[data-page="home"] .home-hero {
  padding-top: 2rem;
}

body[data-page="home"] .home-hero--new {
  background:
    radial-gradient(circle at 12% 16%, rgba(239, 107, 46, 0.34), transparent 38%),
    radial-gradient(circle at 84% 20%, rgba(97, 153, 199, 0.2), transparent 35%),
    linear-gradient(150deg, rgba(13, 19, 29, 0.98), rgba(20, 29, 44, 0.94));
}

body[data-page="home"] .hero-atmosphere {
  position: relative;
  min-height: 18rem;
  overflow: visible;
}

body[data-page="home"] .hero-atm__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
  will-change: transform, opacity;
}

body[data-page="home"] .hero-atm__glow--warm {
  width: 20rem;
  height: 20rem;
  top: 5%;
  right: -2rem;
  background: radial-gradient(circle, rgba(239, 107, 46, 0.32), transparent 70%);
  animation: atmGlow 5s ease-in-out infinite;
}

body[data-page="home"] .hero-atm__glow--cool {
  width: 15rem;
  height: 15rem;
  bottom: -1rem;
  left: 0;
  background: radial-gradient(circle, rgba(97, 153, 199, 0.22), transparent 70%);
  animation: atmGlow 6s ease-in-out infinite reverse;
}

body[data-page="home"] .hero-atm__ring {
  position: absolute;
  width: 18rem;
  height: 18rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(239, 107, 46, 0.15);
  pointer-events: none;
  animation: atmRing 25s linear infinite;
}

body[data-page="home"] .hero-atm__ring::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px 3px rgba(239, 107, 46, 0.55);
}

body[data-page="home"] .hero-atm__ring::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 25%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(97, 153, 199, 0.8);
  box-shadow: 0 0 10px 2px rgba(97, 153, 199, 0.4);
}

body[data-page="home"] .hero-atm__img {
  position: absolute;
  border-radius: 1.5rem;
  overflow: hidden;
}

body[data-page="home"] .hero-atm__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="home"] .hero-atm__img--main {
  width: min(100%, 19rem);
  aspect-ratio: 4 / 3;
  right: 0;
  top: 50%;
  transform: translateY(-55%) rotate(2deg);
  border: 1px solid rgba(239, 107, 46, 0.25);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 50px rgba(239, 107, 46, 0.12);
  animation: atmMainFloat 6s ease-in-out infinite;
}

body[data-page="home"] .hero-atm__img--main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(239, 107, 46, 0.1));
  pointer-events: none;
}

body[data-page="home"] .hero-atm__img--accent {
  width: min(100%, 11rem);
  aspect-ratio: 3 / 2;
  left: -0.5rem;
  bottom: 0.8rem;
  transform: rotate(-3deg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 35px rgba(97, 153, 199, 0.08);
  animation: atmAccentFloat 7s ease-in-out infinite;
}

body[data-page="home"] .hero-atm__img--accent img {
  filter: brightness(0.88) contrast(1.1) saturate(0.9);
}

body[data-page="home"] .hero-atm__img--accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 40%, rgba(97, 153, 199, 0.1));
  pointer-events: none;
}

body[data-page="home"] .hero-atm__sparks span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 180, 107, 0.8);
  box-shadow: 0 0 8px rgba(239, 107, 46, 0.5);
  pointer-events: none;
  animation: atmSpark 3.5s ease-in-out infinite;
}

body[data-page="home"] .hero-atm__sparks span:nth-child(1) { width: 3px; height: 3px; top: 12%; right: 18%; animation-delay: 0s; }
body[data-page="home"] .hero-atm__sparks span:nth-child(2) { width: 2px; height: 2px; top: 28%; right: 52%; animation-delay: 0.45s; }
body[data-page="home"] .hero-atm__sparks span:nth-child(3) { width: 3px; height: 3px; top: 58%; right: 8%; animation-delay: 0.9s; }
body[data-page="home"] .hero-atm__sparks span:nth-child(4) { width: 4px; height: 4px; top: 78%; right: 55%; animation-delay: 1.35s; }
body[data-page="home"] .hero-atm__sparks span:nth-child(5) { width: 2px; height: 2px; top: 18%; right: 72%; animation-delay: 1.8s; }
body[data-page="home"] .hero-atm__sparks span:nth-child(6) { width: 3px; height: 3px; top: 45%; right: 28%; animation-delay: 2.25s; }
body[data-page="home"] .hero-atm__sparks span:nth-child(7) { width: 2px; height: 2px; top: 68%; right: 42%; animation-delay: 2.7s; }
body[data-page="home"] .hero-atm__sparks span:nth-child(8) { width: 3px; height: 3px; top: 35%; right: 12%; animation-delay: 3.15s; }

@keyframes atmGlow {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes atmMainFloat {
  0%, 100% { transform: translateY(-55%) rotate(2deg); }
  50% { transform: translateY(-58%) rotate(1.5deg); }
}

@keyframes atmAccentFloat {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-2.5deg) translateY(-5px); }
}

@keyframes atmRing {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes atmSpark {
  0%, 100% { opacity: 0.2; transform: scale(0.8) translateY(0); }
  50% { opacity: 1; transform: scale(1.4) translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .hero-atmosphere *,
  body[data-page="home"] .hero-atmosphere *::before,
  body[data-page="home"] .hero-atmosphere *::after {
    animation: none !important;
  }
}

/* ── Hero Slider / Carousel ── */

.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(26rem, 60vh, 42rem);
  overflow: hidden;
  background: #0d131d;
}

.hero-slider__track {
  position: absolute;
  inset: 0;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}

.hero-slider__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slider__slide.is-exiting {
  opacity: 0;
  z-index: 2;
  transition: opacity 1s ease;
}

.hero-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  animation: none;
}

.hero-slider__slide.is-active img {
  animation: heroKenBurns1 8s ease-in-out forwards;
}

.hero-slider__slide:nth-child(2).is-active img {
  animation-name: heroKenBurns2;
}

.hero-slider__slide:nth-child(3).is-active img {
  animation-name: heroKenBurns3;
}

.hero-slider__slide:nth-child(4).is-active img {
  animation-name: heroKenBurns4;
}

.hero-slider__slide:nth-child(5).is-active img {
  animation-name: heroKenBurns1;
}

.hero-slider__slide:nth-child(6).is-active img {
  animation-name: heroKenBurns2;
}

@keyframes heroKenBurns1 {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

@keyframes heroKenBurns2 {
  0%   { transform: scale(1.1) translate(-1%, 0); }
  100% { transform: scale(1) translate(1%, 1%); }
}

@keyframes heroKenBurns3 {
  0%   { transform: scale(1) translate(1%, 0); }
  100% { transform: scale(1.1) translate(-0.5%, -1.5%); }
}

@keyframes heroKenBurns4 {
  0%   { transform: scale(1.08) translate(0, -1%); }
  100% { transform: scale(1) translate(0, 1%); }
}

.hero-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(13, 19, 29, 0.92) 0%, rgba(13, 19, 29, 0.72) 45%, rgba(13, 19, 29, 0.3) 70%, transparent 100%),
    linear-gradient(180deg, transparent 60%, rgba(13, 19, 29, 0.5) 100%);
  pointer-events: none;
}

.hero-slider__overlay .shell {
  pointer-events: auto;
}

.hero-slider__content {
  max-width: 36rem;
  color: #fff;
  animation: heroContentIn 1.2s ease-out both;
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider__content .eyebrow {
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  display: block;
  margin-bottom: 0.75rem;
}

.hero-slider__content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
}

.hero-slider__content p {
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.5rem;
  max-width: 30rem;
}

.hero-slider__content .hero-actions {
  display: flex;
  gap: 0.75rem;
}

.hero-slider__dots {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.6rem;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.hero-slider__dot:hover {
  border-color: #fff;
  transform: scale(1.2);
}

.hero-slider__dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.15);
}

.hero-slider__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.1);
}

.hero-slider__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.1s linear;
}

.hero-slider__progress-bar.is-animating {
  transition: width 3s linear;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__slide {
    transition: opacity 0.3s ease;
  }

  .hero-slider__slide img,
  .hero-slider__slide.is-active img {
    animation: none !important;
    transform: scale(1) !important;
  }

  .hero-slider__progress-bar {
    display: none;
  }
}

body[data-page="home"] .home-brand-section {
  padding-top: 2.5rem;
}

body[data-page="home"] .section-heading--tight {
  margin-bottom: 0.95rem;
}

body[data-page="home"] .home-logo-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.55rem;
  padding: 1.2rem 0.45rem 0.9rem;
  border-radius: 1.4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(239, 107, 46, 0.12), transparent 35%),
    radial-gradient(circle at 85% 85%, rgba(54, 95, 124, 0.12), transparent 32%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.85), rgba(244, 240, 232, 0.82));
  border: 1px solid rgba(17, 23, 34, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 16px 34px rgba(17, 23, 34, 0.08);
}

body[data-page="home"] .home-logo-row .home-logo-link {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.34rem;
  min-height: 6.6rem;
  padding: 0.65rem 0.35rem;
  border-radius: 0.95rem;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 170ms ease, border-color 170ms ease, background-color 170ms ease;
}

body[data-page="home"] .home-logo-row .home-logo-link::before {
  content: "";
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(239, 107, 46, 0.24), rgba(239, 107, 46, 0));
  filter: blur(10px);
  opacity: 0;
  transition: opacity 170ms ease;
}

body[data-page="home"] .home-logo-row .home-logo-link .brand-logo-img {
  max-height: 3.85rem;
  max-width: 92%;
  width: auto;
  position: relative;
  z-index: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 1;
  transition: transform 170ms ease;
}

body[data-page="home"] .home-logo-name {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 170ms ease, transform 170ms ease;
}

body[data-page="home"] .home-logo-row .home-logo-link:hover,
body[data-page="home"] .home-logo-row .home-logo-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(239, 107, 46, 0.3);
  background: rgba(255, 255, 255, 0.44);
}

body[data-page="home"] .home-logo-row .home-logo-link:hover::before,
body[data-page="home"] .home-logo-row .home-logo-link:focus-visible::before {
  opacity: 1;
}

body[data-page="home"] .home-logo-row .home-logo-link:hover .brand-logo-img,
body[data-page="home"] .home-logo-row .home-logo-link:focus-visible .brand-logo-img {
  transform: translateY(-1px) scale(1.02);
}

body[data-page="home"] .home-logo-row .home-logo-link:hover .home-logo-name,
body[data-page="home"] .home-logo-row .home-logo-link:focus-visible .home-logo-name {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="home"] .featured-rail {
  --featured-gap: 1rem;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-columns: max(14.5rem, calc((100% - (3 * var(--featured-gap))) / 4));
  gap: var(--featured-gap);
  overflow-x: hidden;
  padding-bottom: 0.95rem;
  align-items: stretch;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
  scrollbar-color: rgba(239, 107, 46, 0.86) rgba(17, 23, 34, 0.1);
}

body[data-page="home"] .featured-rail-shell {
  display: grid;
  gap: 0.45rem;
}

body[data-page="home"] [data-filter-controls] {
  margin-bottom: 0;
}

body[data-page="home"] .featured-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

body[data-page="home"] .featured-toolbar [data-filter-controls] {
  flex: 1 1 auto;
  min-width: 0;
}

body[data-page="home"] .featured-toolbar__link {
  flex: 0 0 auto;
}

body[data-page="home"] .featured-rail.is-scrollable {
  overflow-x: scroll;
}

body[data-page="home"] .featured-rail-controls {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
}

body[data-page="home"] .featured-rail-shell.is-scrollable .featured-rail-controls {
  display: flex;
}

body[data-page="home"] .featured-rail-nav {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 23, 34, 0.1);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 26px rgba(17, 23, 34, 0.16);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}

body[data-page="home"] .featured-rail-nav-group {
  display: inline-flex;
  gap: 0.5rem;
}

body[data-page="home"] .featured-rail-nav span {
  font-size: 1.2rem;
  line-height: 1;
}

body[data-page="home"] .featured-rail-nav:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 14px 28px rgba(17, 23, 34, 0.22);
}

body[data-page="home"] .featured-rail-nav:disabled {
  opacity: 0.45;
  cursor: default;
}

body[data-page="home"] .featured-rail::-webkit-scrollbar {
  height: 11px;
}

body[data-page="home"] .featured-rail::-webkit-scrollbar-track {
  background:
    linear-gradient(90deg, rgba(17, 23, 34, 0.07), rgba(17, 23, 34, 0.12), rgba(17, 23, 34, 0.07));
  border: 1px solid rgba(17, 23, 34, 0.08);
  border-radius: 999px;
  box-shadow: inset 0 1px 3px rgba(17, 23, 34, 0.12);
}

body[data-page="home"] .featured-rail::-webkit-scrollbar-thumb {
  background:
    linear-gradient(90deg, rgba(239, 107, 46, 0.98), rgba(197, 74, 13, 0.94)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.22) 0 7px,
      rgba(255, 255, 255, 0.08) 7px 14px
    );
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    0 2px 8px rgba(197, 74, 13, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

body[data-page="home"] .featured-rail::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(90deg, rgba(255, 131, 72, 0.99), rgba(218, 88, 29, 0.96)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.3) 0 7px,
      rgba(255, 255, 255, 0.12) 7px 14px
    );
}

body[data-page="home"] .featured-rail::-webkit-scrollbar-thumb:active {
  background:
    linear-gradient(90deg, rgba(231, 96, 36, 1), rgba(180, 63, 12, 0.98)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.24) 0 7px,
      rgba(255, 255, 255, 0.08) 7px 14px
    );
}

body[data-page="home"] .featured-mini-card {
  display: grid;
  grid-template-columns: 5.35rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.7rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 23, 34, 0.08);
  min-height: 8.4rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body[data-page="home"] .featured-mini-card:hover,
body[data-page="home"] .featured-mini-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(239, 107, 46, 0.34);
  box-shadow: 0 16px 28px rgba(17, 23, 34, 0.1);
}

body[data-page="home"] .featured-mini-card__media {
  border-radius: 0.85rem;
  overflow: hidden;
  background: rgba(17, 23, 34, 0.05);
  align-self: stretch;
}

body[data-page="home"] .featured-mini-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="home"] .featured-mini-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  min-width: 0;
}

body[data-page="home"] .featured-mini-card__brand {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

body[data-page="home"] .featured-mini-card h3 {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.2;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
}

body[data-page="home"] .featured-mini-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body[data-page="home"] .featured-mini-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  align-self: flex-end;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent-deep);
}

body[data-page="home"] .dealer-profile-panel {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 1.45rem;
  background:
    linear-gradient(130deg, rgba(255, 253, 248, 0.98), rgba(245, 241, 232, 0.95));
  border: 1px solid rgba(17, 23, 34, 0.08);
  box-shadow: 0 24px 48px rgba(17, 23, 34, 0.08);
}

body[data-page="home"] .dealer-profile__main,
body[data-page="home"] .dealer-profile__details {
  padding: 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(17, 23, 34, 0.07);
}

body[data-page="home"] .dealer-profile__main {
  background: rgba(255, 255, 255, 0.78);
}

body[data-page="home"] .dealer-profile__details {
  background: linear-gradient(180deg, rgba(17, 23, 34, 0.94), rgba(24, 34, 50, 0.95));
  color: white;
}

body[data-page="home"] .dealer-profile__main h2,
body[data-page="home"] .dealer-profile__details h3 {
  margin: 0.35rem 0 0.7rem;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  line-height: 1;
}

body[data-page="home"] .dealer-profile__main p {
  margin: 0;
  color: var(--text-soft);
}

body[data-page="home"] .dealer-stat-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

body[data-page="home"] .dealer-stat {
  padding: 0.8rem 0.85rem;
  border-radius: 0.85rem;
  background: rgba(17, 23, 34, 0.06);
}

body[data-page="home"] .dealer-stat strong {
  display: block;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.22rem;
  line-height: 1;
}

body[data-page="home"] .dealer-stat span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

body[data-page="home"] .dealer-profile__details h3 {
  font-size: 1.5rem;
}

body[data-page="home"] .dealer-profile__details ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

body[data-page="home"] .dealer-profile__details li {
  border-radius: 0.75rem;
  padding: 0.7rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

body[data-page="home"] .dealer-profile__details .button {
  margin-top: 1rem;
}

body[data-page="home"] .why-choose-lane {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

body[data-page="home"] .why-choose-card {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(17, 23, 34, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 28px rgba(17, 23, 34, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body[data-page="home"] .why-choose-card:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 107, 46, 0.34);
  box-shadow: 0 20px 34px rgba(17, 23, 34, 0.12);
}

body[data-page="home"] .why-choose-card h3 {
  margin: 0;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.3rem;
  line-height: 1.04;
}

body[data-page="home"] .why-choose-card p {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
}

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

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(24, 32, 43, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.page-grid {
  display: grid;
  gap: 1.2rem;
}

body[data-page="products"] .products-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(17, 23, 34, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

body[data-page="products"] .products-search {
  display: grid;
  gap: 0.35rem;
  width: min(30rem, 100%);
}

body[data-page="products"] .products-search span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  font-weight: 700;
}

body[data-page="products"] .products-search input {
  min-height: 2.8rem;
  border-radius: 0.95rem;
}

body[data-page="products"] .products-toolbar__meta {
  margin: 0;
  color: var(--text-soft);
}

body[data-page="products"] .company-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

body[data-page="products"] .company-tile {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(17, 23, 34, 0.09);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(246, 242, 236, 0.83));
  box-shadow: 0 14px 30px rgba(17, 23, 34, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

body[data-page="products"] .company-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 107, 46, 0.32);
  box-shadow: 0 18px 34px rgba(17, 23, 34, 0.11);
}

body[data-page="products"] .company-tile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

body[data-page="products"] .company-tile .brand-logo-img {
  max-height: 2.4rem;
  max-width: min(100%, 9rem);
}

body[data-page="products"] .company-tile h2 {
  margin: 0;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

body[data-page="products"] .company-tile p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

body[data-page="products"] .company-tile__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

body[data-page="products"] .company-tile__stat {
  display: grid;
  gap: 0.08rem;
  align-content: center;
  min-height: 3rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(17, 23, 34, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

body[data-page="products"] .company-tile__stat strong {
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.12rem;
  line-height: 1;
  color: var(--text);
}

body[data-page="products"] .company-tile__stat span {
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.67rem;
  font-weight: 700;
}

body[data-page="products"] .company-tile__cat-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 0 -0.34rem;
  padding-bottom: 0.16rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  font-weight: 700;
}

body[data-page="products"] .company-tile__cat-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5.6rem;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(239, 107, 46, 0.92), rgba(239, 107, 46, 0.22));
  box-shadow: 0 2px 8px rgba(239, 107, 46, 0.24);
}

body[data-page="products"] .company-tile:hover .company-tile__cat-title::after {
  width: 6.8rem;
}

body[data-page="products"] .company-tile__categories {
  list-style: none;
  margin: -0.16rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

body[data-page="products"] .company-tile__categories li {
  display: inline-flex;
}

body[data-page="products"] .company-tile__categories span {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.25rem 0.55rem;
  border-radius: 0.55rem;
  border: 1px dashed rgba(17, 23, 34, 0.24);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.25;
}

body[data-page="brand"] .brand-directory-toolbar {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 0.65rem;
}

body[data-page="brand"] .brand-directory-toolbar [data-category-filters] {
  width: 100%;
  margin: 0;
}

body[data-page="brand"] .brand-search {
  display: grid;
  gap: 0.34rem;
  width: 100%;
}

body[data-page="brand"] .brand-search span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  font-weight: 700;
}

body[data-page="brand"] .brand-search input {
  min-height: 2.7rem;
  border-radius: 0.9rem;
}

body[data-page="brand"] .brand-directory-meta {
  margin: 0 0 0.75rem;
  color: var(--text-soft);
  text-align: right;
}

body[data-page="brand"] .brand-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

body[data-page="brand"] .brand-load-more {
  position: relative;
  margin: 1rem auto 0;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.78rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 74, 13, 0.28);
  background:
    linear-gradient(90deg, rgba(239, 107, 46, 0.96), rgba(197, 74, 13, 0.96));
  color: #fff;
  box-shadow:
    0 14px 28px rgba(197, 74, 13, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

body[data-page="brand"] .brand-load-more::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.24) 48%, transparent 66%);
  transform: translateX(-140%);
  transition: transform 450ms ease;
}

body[data-page="brand"] .brand-load-more:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 32px rgba(197, 74, 13, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  filter: saturate(1.08);
}

body[data-page="brand"] .brand-load-more:hover::before {
  transform: translateX(140%);
}

body[data-page="brand"] .brand-load-more__arrow {
  display: inline-block;
  transition: transform 160ms ease;
}

body[data-page="brand"] .brand-load-more:hover .brand-load-more__arrow {
  transform: translateX(4px);
}

body[data-page="brand"] .brand-load-more[hidden] {
  display: none !important;
}

body[data-page="brand"] .brand-compact-card {
  display: grid;
  grid-template-columns: 5.9rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.7rem;
  border-radius: 1rem;
  border: 1px solid rgba(17, 23, 34, 0.09);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(245, 241, 234, 0.84));
  box-shadow: 0 12px 26px rgba(17, 23, 34, 0.08);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

body[data-page="brand"] .brand-compact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 107, 46, 0.32);
  box-shadow: 0 16px 30px rgba(17, 23, 34, 0.11);
}

body[data-page="brand"] .brand-compact-card__media {
  border-radius: 0.8rem;
  overflow: hidden;
  background: rgba(17, 23, 34, 0.04);
}

body[data-page="brand"] .brand-compact-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="brand"] .brand-compact-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

body[data-page="brand"] .brand-compact-card__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.6rem;
}

body[data-page="brand"] .brand-compact-card h3 {
  margin: 0;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
}

body[data-page="brand"] .brand-compact-card p {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body[data-page="brand"] .brand-compact-card__category {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(239, 107, 46, 0.12);
  color: var(--accent-deep);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body[data-page="brand"] .brand-compact-card__meta {
  margin-top: 0.45rem;
}

body[data-page="brand"] .brand-compact-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.23rem 0.52rem;
  border-radius: 0.55rem;
  background: rgba(17, 23, 34, 0.06);
  color: var(--text-soft);
  font-size: 0.76rem;
}

body[data-page="brand"] .brand-compact-card__link {
  margin-top: auto;
  align-self: flex-end;
}

body[data-page="product-detail"] .related-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

body[data-page="product-detail"] .related-mini-card {
  display: grid;
  grid-template-columns: 4.8rem minmax(0, 1fr);
  gap: 0.65rem;
  padding: 0.6rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(17, 23, 34, 0.08);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(246, 242, 236, 0.82));
  box-shadow: 0 10px 22px rgba(17, 23, 34, 0.07);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

body[data-page="product-detail"] .related-mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 107, 46, 0.32);
  box-shadow: 0 14px 24px rgba(17, 23, 34, 0.1);
}

body[data-page="product-detail"] .related-mini-card__media {
  border-radius: 0.7rem;
  overflow: hidden;
  background: rgba(17, 23, 34, 0.05);
}

body[data-page="product-detail"] .related-mini-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="product-detail"] .related-mini-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

body[data-page="product-detail"] .related-mini-card__category {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 1.5rem;
  padding: 0.16rem 0.48rem;
  border-radius: 999px;
  background: rgba(239, 107, 46, 0.12);
  color: var(--accent-deep);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body[data-page="product-detail"] .related-mini-card h3 {
  margin: 0.35rem 0 0;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body[data-page="product-detail"] .related-mini-card__link {
  margin-top: auto;
  align-self: flex-end;
  font-size: 0.82rem;
}

.detail-panel,
.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding: 1.6rem;
}

body[data-page="product-detail"] .detail-panel {
  gap: 1.35rem;
  padding: 1.15rem;
  border-radius: 1.3rem;
  background:
    radial-gradient(circle at 12% 16%, rgba(239, 107, 46, 0.08), transparent 34%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 236, 0.92));
}

body[data-page="product-detail"] .detail-gallery__thumb-wrap {
  padding: 0.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(17, 23, 34, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

body[data-page="product-detail"] .detail-gallery__stage {
  padding: 0.55rem;
  border-radius: 1rem;
  border: 1px solid rgba(17, 23, 34, 0.08);
  background: rgba(255, 255, 255, 0.68);
}

body[data-page="product-detail"] .detail-gallery__frame {
  border-radius: 0.9rem;
}

body[data-page="product-detail"] .detail-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

body[data-page="product-detail"] .detail-copy__head h1 {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  line-height: 1.02;
}

body[data-page="product-detail"] .detail-copy__head .detail-lead {
  margin-top: 0.55rem;
  color: var(--text-soft);
}

body[data-page="product-detail"] .detail-tags--product {
  margin-top: 0.2rem;
}

body[data-page="product-detail"] .detail-quick-facts {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

body[data-page="product-detail"] .detail-quick-facts li {
  display: grid;
  gap: 0.12rem;
  min-height: 3rem;
  padding: 0.45rem 0.6rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(17, 23, 34, 0.08);
  background: rgba(255, 255, 255, 0.74);
}

body[data-page="product-detail"] .detail-quick-facts span {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  font-weight: 700;
}

body[data-page="product-detail"] .detail-quick-facts strong {
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.25;
}

body[data-page="product-detail"] .detail-actions {
  margin-top: 0.85rem;
}

body[data-page="product-detail"] .detail-actions .button {
  min-height: 2.35rem;
  padding: 0.58rem 0.78rem;
  font-size: 0.83rem;
}

body[data-page="product-detail"] .detail-actions .button .button__icon {
  width: 0.98rem;
  height: 0.98rem;
  fill: currentColor;
  flex: none;
}

body[data-page="product-detail"] .detail-actions .detail-action--pricelist {
  background: #111111;
  color: #ffffff;
  border-color: rgba(17, 17, 17, 0.9);
}

body[data-page="product-detail"] .detail-actions .detail-action--pricelist:hover {
  background: #000000;
  border-color: #000000;
}

body[data-page="product-detail"] .detail-spec-card {
  margin-top: 0.8rem;
  padding: 0.75rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(17, 23, 34, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

body[data-page="product-detail"] .detail-spec-card h2 {
  margin: 0 0 0.5rem;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}

body[data-page="product-detail"] .detail-spec-card .spec-table {
  margin-top: 0;
}

body[data-page="product-detail"] .detail-spec-card .spec-table caption {
  display: none;
}

.detail-media,
.detail-copy,
.contact-copy,
.contact-info {
  position: relative;
  z-index: 1;
}

.enquiry-panel {
  grid-template-columns: minmax(0, 1fr);
  max-width: 60rem;
  margin: 0 auto;
}

.enquiry-copy {
  max-width: none;
}

.contact-page .contact-panel {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2.6rem;
}

.contact-page .contact-copy {
  padding-top: 0.45rem;
}

.contact-page .contact-copy .eyebrow {
  margin-bottom: 0.5rem;
  display: inline-block;
}

.contact-page .contact-copy h1 {
  font-size: clamp(1.85rem, 2.6vw, 2.15rem);
  line-height: 1.05;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.detail-gallery__thumbs {
  display: grid;
  gap: 0.85rem;
}

.detail-gallery__thumbs--scroll {
  max-height: 24rem;
  overflow-y: auto;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  padding-right: 0.3rem;
}

.detail-gallery__thumbs--scroll::-webkit-scrollbar {
  width: 0.45rem;
}

.detail-gallery__thumbs--scroll::-webkit-scrollbar-thumb {
  background: rgba(201, 140, 54, 0.6);
  border-radius: 999px;
}

.detail-gallery__thumb {
  display: grid;
  place-items: center;
  padding: 0.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.1rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.detail-gallery__thumb:hover,
.detail-gallery__thumb:focus-visible,
.detail-gallery__thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(201, 140, 54, 0.95);
  box-shadow: 0 1rem 2rem rgba(6, 12, 18, 0.22);
}

.detail-gallery__thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.detail-gallery__stage {
  min-width: 0;
}

.detail-gallery__frame {
  display: grid;
  place-items: center;
  min-height: 42rem;
  padding: 1.4rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(201, 140, 54, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.detail-gallery__frame img {
  width: 100%;
  height: 100%;
  max-height: 38rem;
  object-fit: contain;
  object-position: center top;
  border-radius: 1.2rem;
  filter: drop-shadow(0 1.5rem 2rem rgba(0, 0, 0, 0.18));
}

.detail-media img {
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  overflow: hidden;
}

.spec-table caption {
  text-align: left;
  padding-top: 0.2rem;
  padding-bottom: 0.8rem;
  font-weight: 700;
  margin-top: 0.1rem;
}

.spec-table th,
.spec-table td {
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.breadcrumbs a {
  color: var(--accent-deep);
}

.contact-info ul,
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.contact-social-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  transition: color 160ms ease;
}

.contact-social-link svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: none;
  vertical-align: middle;
}

.contact-social-link__text {
  text-decoration: underline transparent;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: text-decoration-color 160ms ease;
}

.contact-social-link__arrow {
  display: inline;
  font-size: 0.9em;
}

.contact-social-link:hover,
.contact-social-link:focus-visible {
  color: var(--accent-deep);
}

.contact-social-link:hover .contact-social-link__text,
.contact-social-link:focus-visible .contact-social-link__text {
  text-decoration-color: currentColor;
}

.contact-social-link:hover .contact-social-link__arrow,
.contact-social-link:focus-visible .contact-social-link__arrow {
  transform: translateX(0.2rem);
}

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

.owner-card {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border-radius: 1.1rem;
  background: rgba(17, 23, 34, 0.04);
  border: 1px solid rgba(24, 32, 43, 0.08);
}

.owner-card h3 {
  margin: 0;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.owner-card p,
.owner-card__pending {
  color: var(--text-soft);
}

.owner-card a {
  font-weight: 700;
  color: var(--accent-deep);
}

.owner-card__detail {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-weight: 600;
}

.owner-card__detail svg {
  width: 1rem;
  height: 1rem;
  fill: var(--accent-deep);
  flex: none;
}

.owner-card__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.owner-card__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: #eefaf3;
  color: #168c4b;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(22, 140, 75, 0.18);
  box-shadow: 0 8px 18px rgba(22, 140, 75, 0.08);
}

.owner-card__whatsapp:hover {
  background: #e3f6eb;
  border-color: rgba(22, 140, 75, 0.28);
}

.owner-card__whatsapp svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: #25d366;
  flex: none;
}

.contact-info iframe {
  width: 100%;
  min-height: 19rem;
  border: 0;
  border-radius: 1.25rem;
}

.office-locations--contact {
  margin-top: 0.5rem;
}

.office-locations--contact .office-tabs {
  background: rgba(24, 32, 43, 0.05);
  border-radius: 0.7rem;
  padding: 0.25rem;
}

.office-locations--contact .office-tab {
  font-size: 0.88rem;
  padding: 0.5rem 0.8rem;
}

.contact-map-frame {
  overflow: hidden;
  border-radius: 1.1rem;
  border: 1px solid rgba(24, 32, 43, 0.08);
}

.contact-map-frame iframe {
  width: 100%;
  min-height: 17rem;
  border: 0;
  display: block;
}

.site-footer {
  padding-top: 2rem;
  position: relative;
}

.site-footer::before {
  content: "";
  display: block;
  width: min(1120px, calc(100vw - 2rem));
  height: 1px;
  margin: 0 auto 1.25rem;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(24, 32, 43, 0.08) 12%,
      rgba(239, 107, 46, 0.55) 50%,
      rgba(24, 32, 43, 0.08) 88%,
      transparent 100%
    );
  box-shadow: 0 10px 24px rgba(239, 107, 46, 0.08);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 0.5fr 0.65fr 1.45fr 1.2fr;
  gap: 1.15rem;
  padding: 2rem 0;
}

.site-footer__panel {
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 244, 237, 0.82));
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(17, 23, 34, 0.08);
}

.site-footer__brand-panel {
  display: grid;
  align-items: center;
  justify-items: center;
  align-self: start;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 244, 237, 0.82));
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(17, 23, 34, 0.08);
}

.site-footer__grid h2 {
  margin: 0 0 0.85rem;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__brand img {
  width: min(100%, 8.5rem);
  height: auto;
}

.site-footer__panel--contact ul {
  gap: 0.9rem;
}

.site-footer__panel--contact li {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
}

.site-footer__panel--contact li svg {
  width: 1rem;
  height: 1rem;
  fill: var(--accent-deep);
  margin-top: 0.18rem;
}

.site-footer__panel--contact li span,
.site-footer__panel--contact li a {
  color: var(--text);
}

.site-footer__panel--contact li.footer-instagram-item {
  display: block;
}

.site-footer__panel--contact li.footer-instagram-item a.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
}

.site-footer__panel--contact li.footer-instagram-item a.contact-social-link span {
  color: inherit;
}

.site-footer__panel--contact li.footer-instagram-item a.contact-social-link:hover,
.site-footer__panel--contact li.footer-instagram-item a.contact-social-link:focus-visible {
  color: var(--accent-deep);
}

.site-footer__panel--contact li.footer-instagram-item svg {
  fill: none;
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0;
}

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

.site-footer__owner {
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  background: rgba(17, 23, 34, 0.04);
  border: 1px solid rgba(24, 32, 43, 0.07);
}

.site-footer__owner h3 {
  margin: 0 0 0.5rem;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1;
}

.site-footer__owner ul {
  display: grid;
  gap: 0.45rem;
}

.site-footer__owner li {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
}

.site-footer__owner li svg {
  width: 1rem;
  height: 1rem;
  fill: var(--accent-deep);
  margin-top: 0.18rem;
}

.site-footer__owner a {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.office-locations {
  display: grid;
  gap: 0.65rem;
}

.office-tabs {
  display: flex;
  gap: 0.35rem;
  background: rgba(24, 32, 43, 0.06);
  border-radius: 0.6rem;
  padding: 0.2rem;
}

.office-tab {
  flex: 1;
  padding: 0.45rem 0.6rem;
  border: none;
  border-radius: 0.45rem;
  background: transparent;
  color: var(--text-soft);
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.office-tab:hover {
  color: var(--text);
}

.office-tab.is-active {
  background: white;
  color: var(--accent-deep);
  box-shadow: 0 1px 4px rgba(24, 32, 43, 0.1);
}

.office-panel {
  display: none;
}

.office-panel.is-active {
  display: grid;
  gap: 0.55rem;
  animation: officeReveal 250ms ease;
}

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

.office-panel__address {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text);
}

.office-panel__address svg {
  width: 1rem;
  height: 1rem;
  fill: var(--accent-deep);
  margin-top: 0.12rem;
}

.site-footer__map-frame {
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(24, 32, 43, 0.08);
  background: white;
}

.site-footer__map-frame iframe {
  width: 100%;
  height: 10rem;
  border: 0;
}

.site-footer__bar {
  border-top: 1px solid rgba(24, 32, 43, 0.08);
  padding: 0.55rem 0 0.9rem;
  color: var(--text-soft);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1024px) {
  .home-hero__content,
  .detail-panel,
  .contact-panel,
  .split,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

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

  .site-header__inner {
    gap: 0.75rem;
  }

  .brand-lockup__tag {
    white-space: normal;
  }

  .site-nav__panel {
    gap: 0.2rem;
  }

  .site-nav__panel > a,
  .nav-dropdown__toggle {
    font-size: 0.84rem;
    padding: 0.68rem 0.66rem;
  }

  .button--nav {
    padding-inline: 0.8rem;
  }

  .nav-dropdown__menu {
    width: min(calc(100vw - 1.5rem), 60rem);
  }

  .product-card,
  .award-card,
  .benefit-card,
  .brand-card,
  .download-card {
    grid-column: span 6;
  }

  .stats-grid .mini-stat {
    grid-column: span 6;
  }

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

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

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

  .detail-gallery__thumbs--scroll {
    max-height: 18rem;
  }

  .detail-gallery__frame {
    min-height: 34rem;
  }

  .product-card__head {
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-page="products"] .company-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="product-detail"] .related-compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-slider {
    height: clamp(22rem, 50vh, 34rem);
  }

  .hero-slider__content h1 {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  }

  .hero-slider__overlay {
    background:
      linear-gradient(90deg, rgba(13, 19, 29, 0.94) 0%, rgba(13, 19, 29, 0.76) 50%, rgba(13, 19, 29, 0.35) 75%, transparent 100%),
      linear-gradient(180deg, transparent 50%, rgba(13, 19, 29, 0.55) 100%);
  }

  body[data-page="home"] .dealer-profile-panel {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .why-choose-lane {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="product-detail"] .detail-quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header__inner {
    align-items: center;
  }

  .site-nav {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav__panel {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    width: min(18rem, calc(100vw - 2rem));
    padding: 0.5rem;
    background: var(--surface);
    border-radius: 1rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    white-space: normal;
  }

  .site-nav__panel.is-open {
    display: flex;
  }

  .site-nav__panel > a,
  .site-nav__panel .nav-dropdown__toggle {
    display: flex;
    width: 100%;
    padding: 0.65rem 0.85rem;
    border-radius: 0.65rem;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: left;
    justify-content: flex-start;
    background: transparent;
    color: var(--text);
    border: none;
    transition: background-color 140ms ease, color 140ms ease;
  }

  .site-nav__panel > a:hover,
  .site-nav__panel > a.is-active {
    background: rgba(239, 107, 46, 0.08);
    color: var(--accent-deep);
    transform: none;
  }

  .site-nav__panel .button--nav {
    margin-top: 0;
    padding: 0.65rem 0.85rem;
    border-radius: 0.65rem;
    text-align: left;
    justify-content: flex-start;
    background: transparent;
    color: var(--text);
    border-color: transparent;
    font-size: 0.92rem;
    box-shadow: none;
  }

  .site-nav__panel .button--nav:hover,
  .site-nav__panel .button--nav.is-active {
    background: rgba(239, 107, 46, 0.08);
    color: var(--accent-deep);
    transform: none;
    box-shadow: none;
  }

  .brand-lockup__mark {
    width: 3.75rem;
    height: 3.75rem;
  }

  .brand-lockup {
    gap: 0.65rem;
  }

  .brand-lockup__tag {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__menu {
    position: static;
    width: 100%;
    max-width: 100%;
    max-height: none;
    margin-top: 0.35rem;
    transform: none;
    overflow: visible;
    padding: 0.6rem;
    z-index: auto;
    border: 1px solid rgba(24, 32, 43, 0.1);
    border-radius: 0.75rem;
    background: rgba(245, 242, 236, 0.6);
    box-shadow: none;
  }

  .nav-dropdown__menu--mega::before {
    display: none;
  }

  .nav-dropdown__intro {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0.25rem 0.45rem;
    border-bottom: 1px solid rgba(17, 23, 34, 0.06);
    gap: 0.5rem;
    margin-bottom: 0.15rem;
  }

  .nav-dropdown__intro div {
    display: none;
  }

  .nav-dropdown__overview {
    font-size: 0.8rem;
  }

  .mega-browser {
    display: none;
  }

  .mega-company-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.35rem 0 0;
    border-bottom: none;
  }

  .mega-company {
    display: grid;
    place-items: center;
    padding: 0.6rem 0.4rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(17, 23, 34, 0.06);
    background: rgba(255, 255, 255, 0.7);
    min-height: 3.2rem;
    gap: 0;
  }

  .mega-company:hover,
  .mega-company:focus-visible,
  .mega-company.is-active {
    transform: none;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(239, 107, 46, 0.25);
    box-shadow: none;
  }

  .mega-company span {
    display: none;
  }

  .mega-company .brand-logo-img {
    max-height: 1.75rem;
    max-width: 5.5rem;
  }

  .mega-company .brand-logo-img--tagline {
    max-height: 2.1rem;
    max-width: 6rem;
  }

  .mega-company .brand-logo-img--portrait {
    max-height: 2.4rem;
    max-width: 2.5rem;
  }

  .mega-mobile-hint {
    display: block;
    margin-top: 0.45rem;
    padding: 0.45rem 0.5rem;
    font-size: 0.75rem;
    color: var(--text-soft);
    text-align: center;
    line-height: 1.35;
  }

  .mega-grid,
  .industry-list,
  .owner-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .detail-gallery__frame {
    min-height: 24rem;
    padding: 1rem;
  }

  .detail-gallery__frame img {
    max-height: 21rem;
  }

  .download-card__header {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .product-card,
  .award-card,
  .benefit-card,
  .brand-card,
  .download-card,
  .stats-grid .mini-stat {
    grid-column: span 12;
  }

  body[data-page="products"] .products-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  body[data-page="products"] .products-search {
    width: 100%;
  }

  body[data-page="products"] .company-directory {
    grid-template-columns: 1fr;
  }

  body[data-page="brand"] .brand-compact-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="brand"] .brand-compact-card {
    grid-template-columns: 1fr;
  }

  body[data-page="brand"] .brand-compact-card__media {
    max-height: 13rem;
  }

  body[data-page="product-detail"] .related-compact-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="product-detail"] .detail-quick-facts {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .featured-rail {
    --featured-gap: 0.65rem;
    display: grid;
    grid-auto-flow: row;
    grid-template-rows: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-columns: unset;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 34rem;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-gutter: auto;
  }

  body[data-page="home"] .featured-rail.is-scrollable {
    overflow-x: hidden;
  }

  body[data-page="home"] .featured-rail-shell {
    position: relative;
  }

  body[data-page="home"] .featured-rail-shell::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5rem;
    background: linear-gradient(180deg, transparent, rgba(243, 239, 232, 0.95));
    pointer-events: none;
    z-index: 2;
    border-radius: 0 0 0.5rem 0.5rem;
  }

  body[data-page="home"] .featured-rail-shell.is-scrollable .featured-rail-controls {
    display: none;
  }

  body[data-page="home"] .featured-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    max-width: 100%;
    overflow: hidden;
  }

  body[data-page="home"] .featured-toolbar__link {
    align-self: flex-end;
    font-size: 0.88rem;
  }

  .hero-slider {
    height: clamp(20rem, 45vh, 28rem);
  }

  .hero-slider__content {
    max-width: 100%;
  }

  .hero-slider__content h1 {
    font-size: clamp(1.25rem, 5vw, 1.65rem);
  }

  .hero-slider__content p {
    font-size: 0.88rem;
  }

  .hero-slider__overlay {
    background:
      linear-gradient(180deg, rgba(13, 19, 29, 0.65) 0%, rgba(13, 19, 29, 0.88) 50%, rgba(13, 19, 29, 0.92) 100%);
    align-items: flex-end;
    padding-bottom: 2.8rem;
  }

  .hero-slider__dots {
    bottom: 1rem;
  }

  .hero-slider__dot {
    width: 8px;
    height: 8px;
  }

  body[data-page="home"] .dealer-stat-grid,
  body[data-page="home"] .why-choose-lane {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-logo-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.95rem 0.25rem 0.7rem;
  }

  body[data-page="home"] .home-logo-row .home-logo-link {
    min-height: 6rem;
    padding: 0.55rem 0.3rem;
  }

  body[data-page="home"] .home-logo-row .home-logo-link .brand-logo-img {
    max-height: 3.5rem;
    max-width: 88%;
  }

  body[data-page="home"] .home-logo-name {
    font-size: 0.66rem;
  }

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

  .brand-hero .brand-logo-img {
    max-width: 100%;
  }

  .brand-hero .brand-logo-img--portrait {
    max-width: min(100%, 10rem);
    max-height: 7rem;
  }

  .contact-page .contact-panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.2rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .site-footer__brand-panel {
    padding: 0.85rem;
  }

  .site-footer__brand img {
    width: min(100%, 6rem);
  }

  .site-footer__owners {
    grid-template-columns: 1fr;
  }

  .site-nav__panel {
    max-height: calc(100dvh - 6rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .chip-group,
  [data-filter-controls],
  [data-pricelist-filters],
  [data-category-filters] {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(239, 107, 46, 0.5) rgba(17, 23, 34, 0.06);
    padding-bottom: 0.55rem;
    max-width: 100%;
    width: 100%;
    mask-image: linear-gradient(90deg, #000 0%, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 85%, transparent 100%);
  }

  .chip-group.is-scrolled-end,
  [data-filter-controls].is-scrolled-end,
  [data-pricelist-filters].is-scrolled-end,
  [data-category-filters].is-scrolled-end {
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 100%);
  }

  .chip-group.is-scrolled-mid,
  [data-filter-controls].is-scrolled-mid,
  [data-pricelist-filters].is-scrolled-mid,
  [data-category-filters].is-scrolled-mid {
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 85%, transparent 100%);
  }

  .chip-group.is-no-overflow,
  [data-filter-controls].is-no-overflow,
  [data-pricelist-filters].is-no-overflow,
  [data-category-filters].is-no-overflow {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .chip-group::-webkit-scrollbar,
  [data-filter-controls]::-webkit-scrollbar,
  [data-pricelist-filters]::-webkit-scrollbar,
  [data-category-filters]::-webkit-scrollbar {
    height: 4px;
  }

  .chip-group::-webkit-scrollbar-track,
  [data-filter-controls]::-webkit-scrollbar-track,
  [data-pricelist-filters]::-webkit-scrollbar-track,
  [data-category-filters]::-webkit-scrollbar-track {
    background: rgba(17, 23, 34, 0.06);
    border-radius: 999px;
  }

  .chip-group::-webkit-scrollbar-thumb,
  [data-filter-controls]::-webkit-scrollbar-thumb,
  [data-pricelist-filters]::-webkit-scrollbar-thumb,
  [data-category-filters]::-webkit-scrollbar-thumb {
    background: rgba(239, 107, 46, 0.5);
    border-radius: 999px;
  }

  .chip-group .chip,
  [data-filter-controls] .chip,
  [data-pricelist-filters] .chip,
  [data-category-filters] .chip {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .spec-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0.75rem;
  }

  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table tr {
    padding: 0.65rem 0.8rem;
    border-top: 1px solid rgba(24, 32, 43, 0.08);
  }

  .spec-table th,
  .spec-table td {
    padding: 0.15rem 0;
    border: none;
  }

  .spec-table th {
    font-size: 0.78rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .spec-table td {
    font-weight: 600;
  }

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

  .award-card {
    grid-column: span 1;
  }

  .downloads-grid .download-card {
    grid-column: span 12;
  }

  body[data-page="home"] .featured-mini-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    min-height: auto;
    border-radius: 0.85rem;
    overflow: hidden;
  }

  body[data-page="home"] .featured-mini-card__media {
    border-radius: 0;
    aspect-ratio: 4 / 3;
    align-self: stretch;
  }

  body[data-page="home"] .featured-mini-card__body {
    padding: 0.55rem 0.6rem 0.65rem;
    gap: 0.25rem;
  }

  body[data-page="home"] .featured-mini-card__brand {
    font-size: 0.64rem;
  }

  body[data-page="home"] .featured-mini-card h3 {
    font-size: 0.92rem;
    line-height: 1.15;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body[data-page="home"] .featured-mini-card p {
    font-size: 0.76rem;
    -webkit-line-clamp: 2;
    line-height: 1.3;
  }

  body[data-page="home"] .featured-mini-card__link {
    font-size: 0.78rem;
    margin-top: 0.2rem;
  }

  .button {
    padding: 0.8rem 1.1rem;
    font-size: 0.9rem;
  }

  .page-hero__content {
    padding: 1.6rem clamp(1rem, 3vw, 1.6rem);
  }

  .brand-hero {
    padding: 1.4rem clamp(1rem, 3vw, 1.6rem);
  }

  .detail-panel {
    padding: 0.85rem;
  }

  .contact-panel {
    padding: 1.2rem;
  }

  .enquiry-panel {
    padding: 1.2rem;
  }

  .hero-slider__content .hero-actions {
    flex-wrap: wrap;
  }

  .hero-slider__content .hero-actions .button {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
  }

  body[data-page="product-detail"] .detail-gallery__frame {
    min-height: 18rem;
    padding: 0.75rem;
  }

  body[data-page="product-detail"] .detail-gallery__frame img {
    max-height: 16rem;
  }

  body[data-page="product-detail"] .detail-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
  }

  body[data-page="product-detail"] .detail-gallery__thumb-wrap {
    padding: 0.35rem;
  }

  body[data-page="product-detail"] .detail-copy__head h1 {
    font-size: clamp(1.35rem, 5vw, 1.65rem);
  }

  body[data-page="product-detail"] .detail-actions {
    flex-wrap: wrap;
  }

  body[data-page="product-detail"] .detail-spec-card {
    padding: 0.55rem;
  }

  body[data-page="product-detail"] .related-mini-card {
    grid-template-columns: 3.8rem minmax(0, 1fr);
    gap: 0.5rem;
    padding: 0.45rem;
  }

  body[data-page="product-detail"] .related-mini-card h3 {
    font-size: 0.92rem;
  }

  .breadcrumbs {
    font-size: 0.84rem;
    gap: 0.3rem;
  }

  .owner-card {
    padding: 0.8rem;
  }

  .owner-card__whatsapp {
    padding: 0.65rem 0.8rem;
    font-size: 0.88rem;
  }

  .office-tabs {
    flex-wrap: nowrap;
    gap: 0.25rem;
    padding: 0.25rem;
    border-radius: 0.7rem;
  }

  .office-tab {
    flex: 1 1 0%;
    min-width: 0;
    white-space: nowrap;
    min-height: 2.75rem;
    padding: 0.5rem 0.35rem;
    font-size: 0.78rem;
    text-align: center;
    border-radius: 0.5rem;
  }

  .download-card__actions {
    flex-wrap: wrap;
  }

  .contact-info iframe,
  .contact-map-frame iframe {
    min-height: 14rem;
  }
}

@media (max-width: 480px) {
  :root {
    --shell: calc(100vw - 1.25rem);
  }

  .brand-lockup__mark {
    width: 3.5rem;
    height: 3.5rem;
  }

  .brand-lockup__name-main {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
  }

  .brand-lockup__name-sub {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .brand-lockup__tag {
    font-size: 0.72rem;
    display: none;
  }

  .brand-lockup {
    gap: 0.55rem;
  }

  .nav-toggle {
    width: 2.5rem;
    height: 2.5rem;
    gap: 3.5px;
  }

  .nav-toggle span {
    width: 1rem;
  }

  .site-header__inner {
    padding: 0.65rem 0;
  }

  .site-nav__panel {
    width: min(16rem, calc(100vw - 2rem));
  }

  .page-hero__content {
    padding: 1.2rem 0.85rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .hero-slider {
    height: clamp(16rem, 42vh, 24rem);
  }

  .hero-slider__content h1 {
    font-size: clamp(1.1rem, 5.5vw, 1.45rem);
  }

  .hero-slider__content p {
    font-size: 0.82rem;
    margin-bottom: 1rem;
  }

  .hero-slider__content .hero-actions .button {
    font-size: 0.8rem;
    padding: 0.6rem 0.85rem;
  }

  .hero-slider__overlay {
    padding-bottom: 2.2rem;
  }

  .hero-slider__dots {
    bottom: 0.65rem;
    gap: 0.4rem;
  }

  .hero-slider__dot {
    width: 7px;
    height: 7px;
  }

  body[data-page="home"] .home-logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
    padding: 0.7rem 0.3rem 0.55rem;
  }

  body[data-page="home"] .home-logo-row .home-logo-link:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  body[data-page="home"] .home-logo-row .home-logo-link {
    min-height: 6.2rem;
    padding: 0.6rem 0.4rem;
  }

  body[data-page="home"] .home-logo-row .home-logo-link .brand-logo-img {
    max-height: 3.8rem;
    max-width: 85%;
  }

  body[data-page="home"] .home-logo-name {
    font-size: 0.68rem;
  }

  body[data-page="home"] .featured-rail {
    grid-template-columns: 1fr;
    max-height: 30rem;
  }

  body[data-page="home"] .featured-mini-card {
    grid-template-columns: 4.2rem minmax(0, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
    overflow: visible;
  }

  body[data-page="home"] .featured-mini-card__media {
    border-radius: 0.6rem;
    aspect-ratio: 1;
    align-self: center;
  }

  body[data-page="home"] .featured-mini-card__body {
    padding: 0;
    gap: 0.15rem;
  }

  body[data-page="home"] .featured-mini-card__brand {
    font-size: 0.6rem;
  }

  body[data-page="home"] .featured-mini-card h3 {
    font-size: 0.88rem;
  }

  body[data-page="home"] .featured-mini-card p {
    -webkit-line-clamp: 1;
    font-size: 0.76rem;
  }

  body[data-page="home"] .featured-mini-card__link {
    font-size: 0.75rem;
  }

  body[data-page="home"] .dealer-profile-panel {
    padding: 0.7rem;
    gap: 0.7rem;
  }

  body[data-page="home"] .dealer-profile__main,
  body[data-page="home"] .dealer-profile__details {
    padding: 0.85rem;
  }

  body[data-page="home"] .dealer-stat-grid {
    gap: 0.5rem;
  }

  body[data-page="home"] .why-choose-card {
    padding: 0.8rem;
  }

  body[data-page="home"] .why-choose-card h3 {
    font-size: 1.1rem;
  }

  body[data-page="home"] .why-choose-card p {
    font-size: 0.88rem;
  }

  .section-heading h2,
  .brand-card h2,
  .download-card h2,
  .detail-copy h1,
  .contact-copy h1 {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  }

  .section {
    padding: 0.8rem 0 1.6rem;
  }

  .story-card,
  .certificate-card,
  .mini-contact {
    padding: 1rem;
  }

  .brand-hero {
    padding: 1rem 0.85rem;
    gap: 1rem;
  }

  .detail-panel {
    padding: 0.65rem;
    gap: 1rem;
  }

  .contact-panel,
  .enquiry-panel {
    padding: 0.85rem;
  }

  body[data-page="products"] .products-toolbar {
    padding: 0.65rem;
  }

  body[data-page="products"] .company-tile {
    padding: 0.75rem;
  }

  body[data-page="products"] .company-tile h2 {
    font-size: 1.2rem;
  }

  body[data-page="products"] .company-tile__categories span {
    font-size: 0.72rem;
    padding: 0.2rem 0.4rem;
  }

  body[data-page="brand"] .brand-compact-card {
    padding: 0.55rem;
    gap: 0.55rem;
  }

  body[data-page="brand"] .brand-compact-card h3 {
    font-size: 1.05rem;
  }

  body[data-page="brand"] .brand-compact-card p {
    font-size: 0.82rem;
  }

  body[data-page="product-detail"] .detail-gallery__frame {
    min-height: 14rem;
    padding: 0.55rem;
  }

  body[data-page="product-detail"] .detail-gallery__frame img {
    max-height: 12rem;
  }

  body[data-page="product-detail"] .detail-gallery__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="product-detail"] .detail-copy__head h1 {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
  }

  body[data-page="product-detail"] .detail-quick-facts li {
    padding: 0.35rem 0.45rem;
  }

  body[data-page="product-detail"] .detail-quick-facts span {
    font-size: 0.6rem;
  }

  body[data-page="product-detail"] .detail-quick-facts strong {
    font-size: 0.78rem;
  }

  body[data-page="product-detail"] .detail-actions .button {
    font-size: 0.78rem;
    padding: 0.5rem 0.65rem;
  }

  body[data-page="product-detail"] .related-mini-card {
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: 0.4rem;
    padding: 0.35rem;
  }

  body[data-page="product-detail"] .related-mini-card h3 {
    font-size: 0.85rem;
    margin-top: 0.2rem;
  }

  body[data-page="product-detail"] .related-mini-card__category {
    font-size: 0.58rem;
    padding: 0.12rem 0.38rem;
  }

  .owner-grid {
    gap: 0.65rem;
  }

  .owner-card h3 {
    font-size: 1.25rem;
  }

  .download-card--pdf {
    padding: 0.7rem;
  }

  .download-card__header h2 {
    font-size: clamp(1.1rem, 4vw, 1.45rem);
  }

  .download-card__actions .button--small {
    padding: 0.5rem 0.7rem;
    font-size: 0.82rem;
  }

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

  input,
  select,
  textarea {
    padding: 0.8rem 0.85rem;
    font-size: 1rem;
    border-radius: 0.8rem;
  }

  .button {
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    min-height: 2.75rem;
  }

  label {
    font-size: 0.92rem;
  }

  .site-footer__panel {
    padding: 0.85rem;
  }

  .site-footer__grid h2 {
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
  }

  .site-footer__owner {
    padding: 0.65rem 0.7rem;
  }

  .site-footer__owner h3 {
    font-size: 0.92rem;
  }

  .site-footer__owner a {
    font-size: 0.82rem;
  }

  .site-footer__bar {
    padding: 0.4rem 0 0.65rem;
    font-size: 0.82rem;
  }

  .breadcrumbs {
    font-size: 0.78rem;
  }

  .eyebrow {
    font-size: 0.78rem;
  }
}
