:root {
  --color-primary: #0e5f56;
  --color-primary-dark: #0b3835;
  --color-secondary: #20394d;
  --color-accent: #d7862e;
  --color-background: #f5f7f3;
  --color-background-muted: #eef4f1;
  --color-surface: #ffffff;
  --color-surface-subtle: #e8f2ee;
  --color-surface-contrast: #101c25;
  --color-border: #dde6e1;
  --color-text-primary: #13202a;
  --color-text-secondary: #66737f;
  --color-text-muted: #334a5b;
  --color-text-inverse: #ffffff;
  --color-text-inverse-soft: #eaf3ef;
  --color-text-footer: #dbe5e4;
  --color-text-footer-muted: #c4d1cf;
  --color-text-on-secondary: #dbe6ed;
  --color-success: #0e5f56;
  --color-warning: #d7862e;
  --color-danger: #b42318;
  --color-zalo: #0a72d7;
  --color-transparent: transparent;
  --overlay-surface-strong: rgba(255, 255, 255, 0.95);
  --overlay-surface-hero: rgba(255, 255, 255, 0.88);
  --overlay-background-hero: rgba(247, 249, 245, 0.96);
  --overlay-accent-hero: rgba(215, 134, 46, 0.18);
  --overlay-border-inverse: rgba(255, 255, 255, 0.22);
  --overlay-surface-inverse: rgba(255, 255, 255, 0.08);
  --overlay-border-footer: rgba(255, 255, 255, 0.14);
  --shadow-none: none;
  --shadow-sm: 0 18px 44px rgba(19, 32, 42, 0.18);
  --shadow-md: 0 24px 60px rgba(19, 32, 42, 0.14);
  --shadow-lg: 0 24px 60px rgba(19, 32, 42, 0.14);
  --space-0: 0;
  --space-4: 4px;
  --space-7: 7px;
  --space-8: 8px;
  --space-9: 9px;
  --space-10: 10px;
  --space-12: 12px;
  --space-13: 13px;
  --space-14: 14px;
  --space-15: 15px;
  --space-16: 16px;
  --space-18: 18px;
  --space-20: 20px;
  --space-22: 22px;
  --space-24: 24px;
  --space-28: 28px;
  --space-30: 30px;
  --space-32: 32px;
  --space-34: 34px;
  --space-38: 38px;
  --space-40: 40px;
  --space-46: 46px;
  --space-48: 48px;
  --space-52: 52px;
  --space-64: 64px;
  --space-72: 72px;
  --space-74: 74px;
  --space-78: 78px;
  --space-84: 84px;
  --space-92: 92px;
  --radius-0: 0;
  --radius-4: 4px;
  --radius-6: 6px;
  --radius-8: 8px;
  --radius-10: 10px;
  --radius-12: 12px;
  --radius-16: 16px;
  --radius-24: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.18s;
  --transition-normal: 0.18s;
  --transition-slow: 0.18s;
  --ease-default: ease;
  --transition-category-card: transform var(--transition-fast) var(--ease-default), border-color var(--transition-fast) var(--ease-default);
  font-family: Arial, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--space-0);
  color: var(--color-text-primary);
  background: var(--color-background);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 60;
  padding: var(--space-10) var(--space-14);
  color: var(--color-text-inverse);
  background: var(--color-primary-dark);
  border-radius: var(--radius-6);
}

.skip-link:focus {
  top: 12px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: var(--space-18);
  padding: var(--space-8) clamp(var(--space-18), 5vw, var(--space-72));
  color: var(--color-text-inverse-soft);
  background: var(--color-primary-dark);
  font-size: 14px;
}

.topbar p {
  margin: var(--space-0);
}

.topbar div {
  display: flex;
  gap: var(--space-18);
  white-space: nowrap;
}

.topbar a {
  color: var(--color-text-inverse);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--overlay-surface-strong);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(16px);
}

.site-header__container {
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: center;
  gap: var(--space-32);
  width: 100%;
  max-width: 1280px;
  min-height: 80px;
  margin: var(--space-0) auto;
  padding: var(--space-12) clamp(var(--space-18), 5vw, var(--space-72));
}

.brand,
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-12);
  min-width: max-content;
}

.brand-mark,
.site-header__logo-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--color-text-inverse);
  background: var(--color-primary);
  border-radius: var(--radius-8);
  font-weight: 900;
}

.brand strong,
.brand small,
.site-header__logo strong,
.site-header__logo small {
  display: block;
}

.brand small,
.site-header__logo small {
  max-width: 250px;
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.3;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.site-header__actions {
  display: flex;
  justify-content: flex-end;
}

.site-header__nav a {
  padding: var(--space-10) var(--space-12);
  border-radius: var(--radius-8);
  color: var(--color-text-muted);
}

.site-header__nav a:hover,
.site-header__nav a.is-active,
.site-header__nav .site-header__portal-link {
  color: var(--color-primary);
  background: var(--color-surface-subtle);
}

@media (min-width: 1181px) {
  .site-header__nav {
    gap: var(--space-8);
    line-height: 1;
  }

  .site-header__nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: var(--space-12) var(--space-14);
    transition: color var(--transition-fast) var(--ease-default), background var(--transition-fast) var(--ease-default), transform var(--transition-fast) var(--ease-default);
  }

  .site-header__nav a:hover,
  .site-header__nav a:focus-visible,
  .site-header__nav a.is-active {
    color: var(--color-primary);
    background: var(--color-surface-subtle);
    transform: translateY(-1px);
  }

  .site-header__nav a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: var(--space-12) var(--space-20);
  color: var(--color-text-inverse);
  background: var(--color-accent);
  border-radius: var(--radius-8);
  box-shadow: var(--shadow-none);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: box-shadow var(--transition-fast) var(--ease-default), transform var(--transition-fast) var(--ease-default);
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  color: var(--color-text-inverse);
  background: var(--color-accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.site-header__cta:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.site-header__cta:active {
  box-shadow: var(--shadow-none);
  transform: translateY(0);
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-8);
  background: var(--color-surface);
}

.site-header__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: var(--space-4) auto;
  background: var(--color-text-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: var(--space-13) var(--space-18);
  border: 1px solid var(--color-transparent);
  border-radius: var(--radius-8);
  font-weight: 900;
  text-align: center;
}

.btn-primary {
  color: var(--color-text-inverse);
  background: var(--color-primary);
}

.btn-secondary {
  color: var(--color-text-inverse);
  background: var(--color-secondary);
}

.btn-light {
  color: var(--color-primary);
  background: var(--color-surface);
  border-color: var(--color-border);
}

.btn-zalo {
  color: var(--color-text-inverse);
  background: var(--color-zalo);
}

.hero {
  min-height: calc(100vh - 112px);
  padding: clamp(var(--space-64), 7vw, var(--space-92)) clamp(var(--space-18), 6vw, var(--space-84));
  background:
    linear-gradient(120deg, var(--overlay-background-hero), var(--overlay-surface-hero)),
    radial-gradient(circle at 86% 18%, var(--overlay-accent-hero), var(--color-transparent) 28%),
    linear-gradient(180deg, var(--color-surface), var(--color-background-muted));
}

.hero__container {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(var(--space-48), 5vw, var(--space-78));
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: var(--space-0) auto;
}

.hero__content {
  align-self: center;
}

.eyebrow,
.section-label {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__eyebrow {
  display: inline-block;
  margin: var(--space-0);
  padding: var(--space-8) var(--space-12);
  color: var(--color-accent);
  background: var(--color-surface-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero__title,
.hero h1 {
  max-width: 840px;
  margin: var(--space-18) var(--space-0) var(--space-0);
  color: var(--color-text-primary);
  font-size: clamp(42px, 4.8vw, 66px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero__description {
  margin: var(--space-20) var(--space-0) var(--space-0);
  line-height: 1.7;
}

.hero__content > p,
.hero-copy > p {
  max-width: 660px;
  color: var(--color-text-secondary);
  font-size: clamp(17px, 1.3vw, 18px);
}

.hero__actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-top: var(--space-32);
}

.hero__actions .btn {
  min-height: 52px;
  padding: var(--space-14) var(--space-20);
  border-radius: var(--radius-10);
  box-shadow: var(--shadow-none);
}

.hero__actions .btn-primary {
  box-shadow: var(--shadow-sm);
}

.hero__actions .btn-light {
  background: var(--overlay-surface-strong);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
  margin-top: var(--space-40);
}

.trust-row span {
  padding: var(--space-16);
  background: var(--overlay-surface-strong);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-10);
  color: var(--color-text-secondary);
}

.trust-row strong {
  display: block;
  color: var(--color-primary);
  font-size: 28px;
  line-height: 1.1;
}

.hero__media,
.hero-showcase {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 590px;
  min-height: 560px;
  padding: var(--space-28);
  background: var(--overlay-surface-strong);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-24);
  box-shadow: var(--shadow-md);
}

.showcase-main {
  width: 88%;
  margin-left: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-none);
}

.showcase-card {
  position: absolute;
  display: grid;
  gap: var(--space-8);
  width: 210px;
  padding: var(--space-12);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-sm);
  font-weight: 900;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius-8);
}

.card-top {
  top: 58px;
  left: var(--space-0);
}

.card-bottom {
  right: var(--space-8);
  bottom: var(--space-38);
}

.section,
.promise-section,
.portal-cta,
.contact-section {
  padding: var(--space-74) clamp(var(--space-18), 6vw, var(--space-84));
}

.section-head {
  max-width: 820px;
  margin-bottom: var(--space-30);
}

.section-head h2,
.promise-section h2,
.custom-copy h2,
.portal-cta h2,
.contact-copy h2 {
  margin: var(--space-8) var(--space-0) var(--space-0);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-head p,
.custom-copy p,
.portal-cta p,
.contact-copy p {
  color: var(--color-text-secondary);
  font-size: 17px;
}

.products-section {
  background:
    linear-gradient(180deg, var(--color-surface), var(--color-background-muted));
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(176px, auto);
  gap: var(--space-18);
}

.category-card {
  display: flex;
  min-height: 176px;
  flex-direction: column;
  justify-content: flex-start;
  padding: var(--space-22);
  background: var(--overlay-surface-strong);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-none);
  transition: border-color var(--transition-fast) var(--ease-default), box-shadow var(--transition-fast) var(--ease-default), transform var(--transition-fast) var(--ease-default);
}

.category-card:hover,
.category-card:focus-visible {
  background: var(--color-surface);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.category-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: var(--space-18);
  border-radius: var(--radius-10);
}

.category-card span {
  display: block;
  margin-bottom: var(--space-8);
  color: var(--color-text-primary);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.category-card small {
  color: var(--color-text-secondary);
  line-height: 1.55;
}

.category-feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: auto;
}

.category-visual-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--color-background-muted), var(--color-surface));
}

.category-visual-section .section-head {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: var(--space-34);
  margin-left: auto;
  text-align: center;
}

.category-home-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: var(--space-20);
  align-items: center;
  max-width: 1180px;
  margin: var(--space-0) auto var(--space-28);
  padding: var(--space-24);
  background:
    linear-gradient(135deg, var(--color-surface), var(--color-background-muted));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-none);
  transition: border-color var(--transition-fast) var(--ease-default), box-shadow var(--transition-fast) var(--ease-default), transform var(--transition-fast) var(--ease-default);
}

.category-home-hero:hover,
.category-home-hero:focus-visible {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.category-home-hero:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.category-home-hero__icon {
  display: grid;
  width: var(--space-72);
  height: var(--space-72);
  place-items: center;
  color: var(--color-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-16);
}

.category-home-hero__icon svg {
  width: var(--space-40);
  height: var(--space-40);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.category-home-hero__copy {
  display: grid;
  gap: var(--space-8);
  min-width: 0;
}

.category-home-hero__copy strong {
  color: var(--color-text-primary);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.category-home-hero__copy small {
  max-width: 660px;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.category-home-hero__cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: var(--space-10) var(--space-16);
  color: var(--color-text-inverse);
  background: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.category-group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: var(--space-0) auto;
  gap: var(--space-20);
}

.category-group-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-none);
  transition: border-color var(--transition-fast) var(--ease-default), box-shadow var(--transition-fast) var(--ease-default), transform var(--transition-fast) var(--ease-default);
}

.category-group-card:hover,
.category-group-card:focus-visible,
.category-group-card:focus-within {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.category-group-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.category-group-card__media {
  position: relative;
  display: grid;
  height: 196px;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--color-secondary), var(--color-primary-dark));
}

.category-group-card__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.category-group-card__placeholder {
  isolation: isolate;
  place-items: center;
  padding: var(--space-24);
  color: var(--color-text-inverse);
  text-align: center;
}

.category-group-card__placeholder::before {
  position: absolute;
  inset: var(--space-18);
  z-index: -1;
  content: "";
  border: 1px solid var(--overlay-border-inverse);
  border-radius: var(--radius-16);
}

.category-group-card__placeholder::after {
  position: absolute;
  right: var(--space-24);
  bottom: var(--space-24);
  width: var(--space-84);
  height: var(--space-84);
  content: "";
  border: 1px solid var(--overlay-border-inverse);
  border-radius: var(--radius-full);
  opacity: 0.55;
}

.category-group-card__placeholder--chair {
  background:
    linear-gradient(135deg, var(--color-secondary), var(--color-primary-dark));
}

.category-group-card__placeholder--sofa {
  background:
    linear-gradient(135deg, var(--color-primary-dark), var(--color-secondary));
}

.category-group-card__placeholder--rack {
  background:
    linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.category-group-card__placeholder-text {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--space-46);
  padding: var(--space-10) var(--space-16);
  color: var(--color-text-inverse);
  background: var(--overlay-surface-inverse);
  border: 1px solid var(--overlay-border-inverse);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.category-group-card__icon-badge {
  position: absolute;
  left: var(--space-16);
  bottom: var(--space-16);
  display: grid;
  width: var(--space-48);
  height: var(--space-48);
  place-items: center;
  color: var(--color-primary);
  background: var(--overlay-surface-strong);
  border: 1px solid var(--overlay-border-inverse);
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-sm);
}

.category-group-card__icon-badge svg {
  width: var(--space-28);
  height: var(--space-28);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.category-group-card__body {
  flex: 1;
  padding: var(--space-22);
}

.category-group-card__body h3 {
  margin: var(--space-0) var(--space-0) var(--space-10);
  color: var(--color-text-primary);
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.category-group-card__body p {
  margin: var(--space-0);
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.category-subgroup-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.7fr);
  gap: var(--space-24);
  align-items: center;
  max-width: 1180px;
  margin-top: var(--space-32);
  margin-right: auto;
  margin-left: auto;
  padding: var(--space-24);
  background:
    linear-gradient(135deg, var(--color-surface), var(--color-background-muted));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-none);
}

.category-subgroup-panel__head h3 {
  margin: var(--space-8) var(--space-0) var(--space-0);
  color: var(--color-text-primary);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0;
}

.category-subgroup-panel__head p {
  margin: var(--space-12) var(--space-0) var(--space-0);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.category-subgroup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-10);
  align-content: start;
}

.category-subgroup-card {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: var(--space-10);
  padding: var(--space-10) var(--space-12);
  color: var(--color-text-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-12);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: var(--shadow-none);
  transition: border-color var(--transition-fast) var(--ease-default), background var(--transition-fast) var(--ease-default), box-shadow var(--transition-fast) var(--ease-default), transform var(--transition-fast) var(--ease-default);
}

.category-subgroup-card:hover,
.category-subgroup-card:focus-visible {
  background: var(--color-surface-subtle);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.category-subgroup-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.category-subgroup-card__icon {
  display: grid;
  flex: 0 0 var(--space-38);
  width: var(--space-38);
  height: var(--space-38);
  place-items: center;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-10);
  background: var(--color-background-muted);
  transition: color var(--transition-fast) var(--ease-default), background var(--transition-fast) var(--ease-default), border-color var(--transition-fast) var(--ease-default);
}

.category-subgroup-card:hover .category-subgroup-card__icon,
.category-subgroup-card:focus-visible .category-subgroup-card__icon {
  color: var(--color-accent);
  background: var(--color-surface);
  border-color: var(--color-primary);
}

.category-subgroup-card__icon svg {
  width: var(--space-24);
  height: var(--space-24);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.category-subgroup-card__label {
  min-width: 0;
}

.product-listing-section {
  background: var(--color-surface);
}

.product-listing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-18);
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--overlay-surface-strong);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-none);
  transition: border-color var(--transition-fast) var(--ease-default), box-shadow var(--transition-fast) var(--ease-default), transform var(--transition-fast) var(--ease-default);
}

.product-card:hover,
.product-card:focus-within {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.product-card__image {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  color: var(--color-text-muted);
  background:
    linear-gradient(135deg, var(--color-surface-subtle), var(--color-background-muted));
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: 900;
}

.product-card__image span {
  padding: var(--space-8) var(--space-12);
  background: var(--overlay-surface-strong);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: var(--space-20);
}

.product-card__code {
  margin: var(--space-0) var(--space-0) var(--space-8);
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-card h3 {
  margin: var(--space-0);
  color: var(--color-text-primary);
  font-size: 20px;
  line-height: 1.25;
}

.product-card__price {
  margin: var(--space-16) var(--space-0) var(--space-0);
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 900;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin-top: auto;
  padding: var(--space-10) var(--space-16);
  color: var(--color-text-inverse);
  background: var(--color-primary);
  border-radius: var(--radius-8);
  font-size: 14px;
  font-weight: 900;
  transition: background var(--transition-fast) var(--ease-default), transform var(--transition-fast) var(--ease-default);
}

.product-card__cta:hover,
.product-card__cta:focus-visible {
  color: var(--color-text-inverse);
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.product-card__cta:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.category-template-page {
  background: var(--color-surface);
}

.category-template-hero,
.category-template-section,
.category-template-cta {
  padding: var(--space-64) clamp(var(--space-18), 6vw, var(--space-84));
}

.category-template-hero {
  background:
    linear-gradient(180deg, var(--color-surface), var(--color-background-muted));
}

.category-template-breadcrumb {
  display: flex;
  max-width: 1180px;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin: var(--space-0) auto var(--space-32);
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 800;
}

.category-template-breadcrumb a {
  color: var(--color-primary);
}

.category-template-breadcrumb a:hover,
.category-template-breadcrumb a:focus-visible {
  color: var(--color-primary-dark);
}

.category-template-hero__grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: var(--space-38);
  align-items: center;
  margin: var(--space-0) auto;
}

.category-template-hero__content h1 {
  margin: var(--space-8) var(--space-0) var(--space-0);
  color: var(--color-text-primary);
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
  letter-spacing: 0;
}

.category-template-hero__content p {
  max-width: 680px;
  margin: var(--space-20) var(--space-0) var(--space-0);
  color: var(--color-text-secondary);
  font-size: 18px;
}

.category-template-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-top: var(--space-28);
}

.category-template-stats span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-10) var(--space-14);
  color: var(--color-text-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 800;
}

.category-template-stats strong {
  color: var(--color-primary);
  font-size: 18px;
}

.category-template-hero__visual {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  color: var(--color-text-inverse);
  background:
    linear-gradient(135deg, var(--color-secondary), var(--color-primary-dark));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-24);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.category-template-hero__visual::before,
.category-template-hero__visual::after {
  position: absolute;
  content: "";
  border: 1px solid var(--overlay-border-inverse);
  border-radius: var(--radius-24);
}

.category-template-hero__visual::before {
  inset: var(--space-24);
}

.category-template-hero__visual::after {
  right: var(--space-32);
  bottom: var(--space-32);
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
}

.category-template-hero__visual > span {
  position: relative;
  z-index: 1;
}

.category-template-hero__icon {
  display: grid;
  width: var(--space-72);
  height: var(--space-72);
  margin-bottom: var(--space-16);
  place-items: center;
  color: var(--color-primary);
  background: var(--overlay-surface-strong);
  border-radius: var(--radius-16);
}

.category-template-hero__icon svg {
  width: var(--space-40);
  height: var(--space-40);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.category-template-chips {
  display: flex;
  max-width: 1180px;
  flex-wrap: wrap;
  gap: var(--space-10);
  margin: var(--space-32) auto var(--space-0);
}

.category-template-chips a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: var(--space-10) var(--space-16);
  color: var(--color-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 900;
  transition: color var(--transition-fast) var(--ease-default), background var(--transition-fast) var(--ease-default), border-color var(--transition-fast) var(--ease-default), transform var(--transition-fast) var(--ease-default);
}

.category-template-chips a:hover,
.category-template-chips a:focus-visible {
  color: var(--color-text-inverse);
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.category-template-subcategory-visual {
  margin-top: var(--space-32);
}

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

.category-template-subcategory-visual .category-subgroup-card {
  background: var(--overlay-surface-strong);
}

.category-template-subcategory-visual .category-subgroup-panel__head h2 {
  margin: var(--space-8) var(--space-0) var(--space-0);
  color: var(--color-text-primary);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0;
}

.category-template-section {
  background: var(--color-surface);
}

.category-template-section__head {
  max-width: 760px;
  margin: var(--space-0) auto var(--space-32);
  text-align: center;
}

.category-template-section__head h2 {
  margin: var(--space-8) var(--space-0) var(--space-0);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

.category-template-section__head p {
  color: var(--color-text-secondary);
  font-size: 17px;
}

.category-template-layout {
  display: grid;
  max-width: 1180px;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: var(--space-24);
  align-items: start;
  margin: var(--space-0) auto;
}

.category-template-filter {
  position: sticky;
  top: var(--space-24);
  display: grid;
  gap: var(--space-16);
  padding: var(--space-20);
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-16);
}

.category-template-filter h3 {
  margin: var(--space-0) var(--space-0) var(--space-10);
  color: var(--color-text-primary);
  font-size: 16px;
  line-height: 1.2;
}

.category-template-filter label {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-top: var(--space-8);
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 800;
}

.category-template-filter input {
  accent-color: var(--color-primary);
}

.category-template-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-18);
}

.category-template-product-card__image {
  aspect-ratio: 1 / 1;
  color: var(--color-primary);
  background:
    linear-gradient(135deg, var(--color-surface-subtle), var(--color-background-muted));
}

.category-template-product-card__meta {
  margin: var(--space-12) var(--space-0) var(--space-0);
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.category-template-empty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: var(--space-18);
  align-items: center;
  max-width: 1180px;
  margin: var(--space-24) auto var(--space-0);
  padding: var(--space-22);
  background:
    linear-gradient(135deg, var(--color-background-muted), var(--color-surface));
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-16);
}

.category-template-empty__icon {
  display: grid;
  width: var(--space-52);
  height: var(--space-52);
  place-items: center;
  color: var(--color-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-12);
}

.category-template-empty__icon svg {
  width: var(--space-30);
  height: var(--space-30);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.category-template-empty h3 {
  margin: var(--space-0);
  color: var(--color-text-primary);
  font-size: 19px;
  line-height: 1.25;
}

.category-template-empty p {
  margin: var(--space-8) var(--space-0) var(--space-0);
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.category-template-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-28);
  color: var(--color-text-inverse);
  background: var(--color-secondary);
}

.category-template-cta h2 {
  max-width: 760px;
  margin: var(--space-8) var(--space-0) var(--space-0);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

.category-template-cta p {
  max-width: 720px;
  color: var(--color-text-on-secondary);
}

.category-template-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  justify-content: flex-end;
}

.split-section {
  background: var(--color-background-muted);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-16);
}

.solution-grid article {
  min-height: 214px;
  padding: var(--space-24);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-10);
}

.solution-grid strong {
  display: block;
  margin-bottom: var(--space-10);
  font-size: 22px;
  line-height: 1.2;
}

.solution-grid p {
  color: var(--color-text-secondary);
}

.promise-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(var(--space-32), 5vw, var(--space-64));
  align-items: center;
  color: var(--color-text-primary);
  background:
    linear-gradient(135deg, var(--color-surface), var(--color-background-muted));
}

.promise-section .section-label {
  display: inline-block;
  padding: var(--space-8) var(--space-12);
  color: var(--color-accent);
  background: var(--color-surface-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
}

.portal-cta .section-label {
  color: var(--color-warning);
}

.promise-section h2 {
  max-width: 620px;
  color: var(--color-text-primary);
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-18);
}

.promise-list article {
  min-height: 188px;
  padding: var(--space-24);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-12);
  background: var(--overlay-surface-strong);
  box-shadow: var(--shadow-none);
  transition: border-color var(--transition-fast) var(--ease-default), box-shadow var(--transition-fast) var(--ease-default), transform var(--transition-fast) var(--ease-default);
}

.promise-list article:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.promise-list span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: var(--space-16);
  place-items: center;
  color: var(--color-primary);
  background: var(--color-surface-subtle);
  border-radius: var(--radius-full);
  font-weight: 900;
}

.promise-list p {
  margin-bottom: var(--space-0);
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.custom-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-38);
  align-items: center;
  background: var(--color-surface);
}

.custom-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-md);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-10);
  margin-top: var(--space-24);
}

.process-row span {
  padding: var(--space-14);
  color: var(--color-primary);
  background: var(--color-surface-subtle);
  border-radius: var(--radius-8);
  font-weight: 900;
  text-align: center;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-16);
}

.area-grid article {
  min-height: 138px;
  padding: var(--space-22);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-10);
}

.area-grid strong,
.area-grid span {
  display: block;
}

.area-grid strong {
  margin-bottom: var(--space-8);
  color: var(--color-primary);
  font-size: 20px;
}

.area-grid span {
  color: var(--color-text-secondary);
  font-size: 14px;
}

.portal-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-28);
  color: var(--color-text-inverse);
  background: var(--color-secondary);
}

.portal-cta p {
  max-width: 720px;
  color: var(--color-text-on-secondary);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: var(--space-38);
  align-items: start;
  background: var(--color-surface);
}

.contact-panel {
  padding: var(--space-24);
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-md);
}

.contact-panel a {
  display: block;
  padding: var(--space-16) var(--space-0);
  border-bottom: 1px solid var(--color-border);
}

.contact-panel a:last-child {
  border-bottom: 0;
}

.contact-panel span,
.contact-panel strong {
  display: block;
}

.contact-panel span {
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel strong {
  color: var(--color-primary);
  font-size: 24px;
}

.contact-panel [data-placeholder] strong {
  color: var(--color-zalo);
}

.category-experience__head {
  max-width: 860px;
}

.category-home-hero__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--space-10);
  justify-content: flex-end;
}

.category-home-hero__ghost {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: var(--space-10) var(--space-16);
  color: var(--color-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

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

.category-system-card {
  min-height: 100%;
}

.category-group-card__placeholder--tone-1 {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary-dark));
}

.category-group-card__placeholder--tone-2 {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-secondary));
}

.category-group-card__placeholder--tone-3 {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.category-group-card__placeholder--tone-4 {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.category-group-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-group-card__meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: var(--space-4) var(--space-8);
  background: var(--color-background-muted);
  border-radius: var(--radius-full);
}

.category-group-card__cta {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  margin-top: var(--space-18);
  padding: var(--space-8) var(--space-12);
  color: var(--color-primary);
  background: var(--color-surface-subtle);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 900;
}

.category-featured-subgroups {
  align-items: start;
}

.category-library-panel {
  max-width: 1180px;
  margin: var(--space-32) auto var(--space-0);
  padding: var(--space-24);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-none);
}

.category-library-panel__head {
  max-width: 760px;
  margin-bottom: var(--space-22);
}

.category-library-panel__head h3 {
  margin: var(--space-8) var(--space-0) var(--space-0);
  color: var(--color-text-primary);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
}

.category-library-panel__head p {
  margin: var(--space-12) var(--space-0) var(--space-0);
  color: var(--color-text-secondary);
  font-size: 16px;
}

.category-library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-14);
}

.category-library-details {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-12);
}

.category-library-summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-14) var(--space-16);
  color: var(--color-text-primary);
  cursor: pointer;
  list-style: none;
}

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

.category-library-summary::after {
  margin-left: auto;
  color: var(--color-primary);
  content: "+";
  font-size: 24px;
  font-weight: 900;
}

.category-library-details[open] .category-library-summary::after {
  content: "-";
}

.category-library-summary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.category-library-summary__icon {
  display: grid;
  flex: 0 0 var(--space-46);
  width: var(--space-46);
  height: var(--space-46);
  place-items: center;
  color: var(--color-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-12);
}

.category-library-summary svg,
.category-library-chip svg,
.product-card__image svg {
  width: var(--space-22);
  height: var(--space-22);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.category-library-summary strong,
.category-library-summary small {
  display: block;
}

.category-library-summary small {
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 800;
}

.category-library-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  padding: var(--space-0) var(--space-16) var(--space-16);
}

.category-library-chip {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-8) var(--space-10);
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 800;
}

.category-section-cta {
  display: flex;
  max-width: 1180px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-18);
  margin: var(--space-32) auto var(--space-0);
  padding: var(--space-24);
  color: var(--color-text-inverse);
  background: var(--color-secondary);
  border-radius: var(--radius-16);
}

.category-section-cta h3 {
  margin: var(--space-8) var(--space-0) var(--space-0);
  font-size: 24px;
  line-height: 1.2;
}

.category-template-products-toolbar {
  display: flex;
  justify-content: space-between;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
  padding: var(--space-12) var(--space-16);
  color: var(--color-text-secondary);
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-12);
  font-size: 13px;
  font-weight: 900;
}

.category-template-product-card .product-card__image span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
}

.category-template-related {
  background: linear-gradient(180deg, var(--color-background-muted), var(--color-surface));
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: clamp(var(--space-24), 4vw, var(--space-48));
  padding: var(--space-64) clamp(var(--space-18), 6vw, var(--space-84)) var(--space-28);
  color: var(--color-text-footer);
  background:
    linear-gradient(135deg, var(--color-surface-contrast), var(--color-primary-dark));
  border-top: 1px solid var(--overlay-border-footer);
}

.site-footer h2 {
  margin: var(--space-0) var(--space-0) var(--space-16);
  color: var(--color-text-inverse);
  font-size: 16px;
  line-height: 1.2;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: var(--space-0) var(--space-0) var(--space-10);
  color: var(--color-text-footer);
  line-height: 1.55;
}

.site-footer a {
  width: fit-content;
  transition: color var(--transition-fast) var(--ease-default), transform var(--transition-fast) var(--ease-default);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-text-inverse);
  transform: translateX(2px);
}

.site-footer a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.site-footer > div:first-child {
  max-width: 360px;
}

.site-footer > div:first-child p {
  margin-top: var(--space-18);
  color: var(--color-text-footer-muted);
}

.footer-brand .brand-mark {
  background: var(--color-accent);
}

.footer-brand strong {
  color: var(--color-text-inverse);
}

.footer-brand small {
  color: var(--color-text-footer-muted);
}

.copyright {
  grid-column: 1 / -1;
  margin-top: var(--space-18);
  padding-top: var(--space-24);
  border-top: 1px solid var(--overlay-border-footer);
  color: var(--color-text-footer-muted);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .site-header__container {
    display: flex;
  }

  .site-header__cta {
    display: none;
  }

  .site-header__toggle {
    display: block;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__nav.is-open {
    position: fixed;
    inset: 120px 18px auto 18px;
    z-index: 70;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-16);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-10);
    box-shadow: var(--shadow-md);
  }

  .category-grid,
  .category-group-grid,
  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .hero__container,
  .category-template-hero__grid,
  .category-template-layout,
  .promise-section,
  .custom-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    gap: var(--space-24);
  }

  .site-footer > div:first-child {
    max-width: none;
  }

  .hero {
    min-height: auto;
    padding-top: var(--space-52);
  }

  .hero-showcase {
    justify-self: stretch;
    max-width: none;
    min-height: auto;
    padding: var(--space-16);
  }

  .showcase-main {
    width: 100%;
    aspect-ratio: 16 / 11;
  }

  .showcase-card {
    position: static;
    width: 100%;
    margin-top: var(--space-12);
  }

  .trust-row,
  .promise-list,
  .process-row,
  .category-subgroup-panel {
    grid-template-columns: 1fr;
  }

  .category-visual-section .section-head {
    text-align: left;
  }

  .category-home-hero {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .category-home-hero__cta {
    grid-column: 2;
    width: fit-content;
  }

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

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

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

  .portal-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .brand small {
    display: none;
  }

  .footer-brand small {
    display: block;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-actions .btn,
  .portal-cta .btn,
  .category-template-cta .btn {
    width: 100%;
  }

  .category-grid,
  .product-listing-grid,
  .solution-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .category-visual-section {
    padding-top: var(--space-52);
    padding-bottom: var(--space-52);
  }

  .category-visual-section .section-head {
    margin-bottom: var(--space-24);
  }

  .category-home-hero {
    grid-template-columns: 1fr;
    gap: var(--space-16);
    padding: var(--space-18);
  }

  .category-home-hero__icon {
    width: var(--space-52);
    height: var(--space-52);
  }

  .category-home-hero__icon svg {
    width: var(--space-30);
    height: var(--space-30);
  }

  .category-home-hero__cta {
    grid-column: auto;
    width: 100%;
  }

  .category-template-hero,
  .category-template-section,
  .category-template-cta {
    padding: var(--space-52) clamp(var(--space-18), 6vw, var(--space-84));
  }

  .category-template-breadcrumb {
    margin-bottom: var(--space-24);
  }

  .category-template-hero__grid {
    gap: var(--space-24);
  }

  .category-template-hero__content h1 {
    font-size: 42px;
  }

  .category-template-hero__visual {
    min-height: 220px;
    border-radius: var(--radius-16);
  }

  .category-template-hero__visual::before {
    inset: var(--space-14);
  }

  .category-template-hero__icon {
    width: var(--space-52);
    height: var(--space-52);
  }

  .category-template-hero__icon svg {
    width: var(--space-30);
    height: var(--space-30);
  }

  .category-template-chips {
    gap: var(--space-8);
    margin-top: var(--space-24);
  }

  .category-template-chips a {
    min-height: 38px;
    padding: var(--space-8) var(--space-12);
    font-size: 13px;
  }

  .category-template-section__head {
    text-align: left;
  }

  .category-template-subcategory-visual .category-subgroup-panel__head h2 {
    font-size: 24px;
  }

  .category-template-filter {
    grid-template-columns: 1fr;
    padding: var(--space-18);
  }

  .category-template-products {
    grid-template-columns: 1fr;
  }

  .category-template-empty {
    grid-template-columns: 1fr;
    padding: var(--space-18);
  }

  .category-template-empty .product-card__cta {
    width: 100%;
  }

  .category-template-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-template-cta__actions {
    width: 100%;
  }

  .category-group-grid {
    grid-template-columns: 1fr;
    gap: var(--space-14);
  }

  .category-group-card__media,
  .category-group-card__media img {
    height: 154px;
  }

  .category-group-card__placeholder::before {
    inset: var(--space-12);
  }

  .category-group-card__placeholder::after {
    right: var(--space-16);
    bottom: var(--space-16);
    width: var(--space-64);
    height: var(--space-64);
  }

  .category-group-card__icon-badge {
    left: var(--space-12);
    bottom: var(--space-12);
    width: var(--space-40);
    height: var(--space-40);
  }

  .category-group-card__icon-badge svg {
    width: var(--space-22);
    height: var(--space-22);
  }

  .category-group-card__body {
    padding: var(--space-18);
  }

  .category-group-card__body h3 {
    font-size: 19px;
  }

  .category-group-card__body p {
    font-size: 14px;
    line-height: 1.5;
  }

  .category-subgroup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-8);
  }

  .category-subgroup-panel {
    gap: var(--space-18);
    margin-top: var(--space-22);
    padding: var(--space-18);
  }

  .category-subgroup-panel__head h3 {
    font-size: 24px;
  }

  .category-subgroup-panel__head p {
    font-size: 15px;
    line-height: 1.5;
  }

  .category-subgroup-card {
    min-height: 52px;
    gap: var(--space-8);
    padding: var(--space-8);
    font-size: 13px;
  }

  .category-subgroup-card__icon {
    flex-basis: var(--space-32);
    width: var(--space-32);
    height: var(--space-32);
    border-radius: var(--radius-8);
  }

  .category-subgroup-card__icon svg {
    width: var(--space-20);
    height: var(--space-20);
  }

  .category-card {
    min-height: 150px;
    padding: var(--space-18);
  }

  .promise-list article {
    min-height: auto;
    padding: var(--space-20);
  }

  .category-feature {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .contact-panel strong {
    font-size: 20px;
  }
}

/* BAFurniture V6 — Premium brand homepage */
.brand-home {
  --v6-ink: #171813;
  --v6-cream: #f2efe7;
  --v6-paper: #fbfaf6;
  --v6-moss: #34493c;
  --v6-brass: #b59662;
  --v6-line: rgba(23, 24, 19, 0.16);
  color: var(--v6-ink);
  background: var(--v6-paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
}

.brand-home h1,
.brand-home h2,
.brand-home h3,
.brand-home p,
.brand-home figure,
.brand-home dl,
.brand-home dd {
  margin: 0;
}

.brand-home h1,
.brand-home h2,
.brand-home h3 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  letter-spacing: normal;
}

.v6-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 92px;
  padding: 0 clamp(24px, 5vw, 84px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.v6-wordmark {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.v6-wordmark strong {
  margin-right: 3px;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -0.09em;
}

.v6-wordmark span {
  font-weight: 400;
}

.v6-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v6-nav a,
.v6-header-cta,
.v6-text-link,
.v6-footer a {
  transition: opacity 180ms ease;
}

.v6-nav a:hover,
.v6-header-cta:hover,
.v6-text-link:hover,
.v6-footer a:hover {
  opacity: 0.64;
}

.v6-header-cta {
  justify-self: end;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v6-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.v6-menu-button span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.v6-hero {
  position: relative;
  min-height: min(960px, 100svh);
  color: #fff;
  background: #22251f;
  overflow: hidden;
}

.v6-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.v6-hero-shade,
.v6-image-shade {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 7, 0.48);
}

.v6-hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, 82vw);
  padding: clamp(190px, 25vh, 280px) clamp(24px, 7vw, 116px) 180px;
}

.v6-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.v6-hero h1 {
  max-width: 980px;
  margin-top: 26px;
  font-size: clamp(54px, 7.2vw, 108px);
  line-height: 0.94;
}

.v6-hero-lead {
  max-width: 650px;
  margin-top: 34px !important;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
}

.v6-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 42px;
}

.v6-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.v6-button--light {
  color: var(--v6-ink);
  background: #fff;
}

.v6-button--light:hover {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

.v6-button--dark {
  color: #fff;
  background: var(--v6-ink);
}

.v6-button--dark:hover {
  color: var(--v6-ink);
  background: transparent;
  border-color: var(--v6-ink);
}

.v6-text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.v6-hero-meta {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 84px);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(760px, 62vw);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(10, 14, 11, 0.68);
}

.v6-hero-meta span {
  min-height: 116px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
}

.v6-hero-meta strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  font-size: 25px;
  font-weight: 400;
}

.v6-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 8vw;
  padding: clamp(96px, 13vw, 190px) clamp(24px, 7vw, 116px);
  background: var(--v6-cream);
}

.v6-intro h2 {
  max-width: 850px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.04;
}

.v6-intro div > p {
  max-width: 610px;
  margin-top: 35px !important;
  color: #5d5e56;
  font-size: 19px;
  line-height: 1.75;
}

.v6-section {
  padding: clamp(96px, 11vw, 168px) clamp(24px, 7vw, 116px);
}

.v6-section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 9vw;
  margin-bottom: clamp(56px, 7vw, 96px);
}

.v6-section-heading h2 {
  max-width: 780px;
  margin-top: 22px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.04;
}

.v6-section-heading > p {
  color: #696a62;
  font-size: 17px;
  line-height: 1.75;
}

.v6-spaces {
  padding-top: clamp(110px, 13vw, 200px);
  background: var(--v6-paper);
}

.v6-space-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
}

.v6-space-card {
  display: block;
}

.v6-space-card:nth-child(2) {
  padding-top: 72px;
}

.v6-space-card img {
  width: 100%;
  height: clamp(430px, 45vw, 680px);
  object-fit: cover;
  filter: saturate(0.56) contrast(1.04) sepia(0.06);
  transition: filter 500ms ease, transform 700ms ease;
}

.v6-space-card:nth-child(1) img {
  object-position: 54% center;
}

.v6-space-card:nth-child(2) img {
  object-position: center;
}

.v6-space-card:nth-child(3) img {
  object-position: 48% center;
}

.v6-space-card:hover img {
  filter: saturate(0.78) contrast(1.03) sepia(0.03);
  transform: translateY(-5px);
}

.v6-space-card span,
.v6-space-card strong {
  display: block;
}

.v6-space-card span {
  margin-top: 24px;
  color: #77786f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.v6-space-card strong {
  margin-top: 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.15;
}

.v6-solution-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
}

.v6-solution-card {
  position: relative;
  min-height: 410px;
  color: #fff;
  background: var(--v6-moss);
  overflow: hidden;
}

.v6-solution-card--large {
  grid-row: span 2;
  min-height: 842px;
}

.v6-solution-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.v6-solution-card:hover > img {
  transform: scale(1.025);
}

.v6-solution-card .v6-image-shade {
  background: rgba(8, 10, 8, 0.34);
}

.v6-card-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(26px, 4vw, 55px);
}

.v6-card-copy > p {
  margin-bottom: 12px !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.v6-card-copy h3 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
}

.v6-card-copy span {
  display: block;
  max-width: 500px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.v6-solution-card--text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 4vw, 58px);
  color: #fff;
  background: var(--v6-moss);
}

.v6-solution-card--text h3 {
  margin-top: 20px;
  font-size: clamp(37px, 4vw, 55px);
  line-height: 1.03;
}

.v6-solution-card--text > p:not(.v6-kicker) {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.v6-solution-card--text a {
  width: max-content;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-weight: 700;
}

.v6-projects {
  color: #fff;
  background: #171813;
}

.v6-section-heading--inverse > p,
.v6-section-heading--inverse .v6-kicker {
  color: rgba(255, 255, 255, 0.58);
}

.v6-project-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: 430px auto;
  gap: 22px;
}

.v6-project {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.v6-project--primary {
  grid-row: span 2;
  min-height: 880px;
}

.v6-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.v6-project:hover img {
  transform: scale(1.025);
}

.v6-project figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 72px 32px 30px;
  background: rgba(8, 9, 7, 0.68);
}

.v6-project figcaption span,
.v6-project figcaption strong {
  display: block;
}

.v6-project figcaption span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.v6-project figcaption strong {
  font-family: "Times New Roman", Times, serif;
  font-size: 28px;
  font-weight: 400;
}

.v6-project-note {
  padding: 42px;
  color: var(--v6-ink);
  background: var(--v6-cream);
}

.v6-project-note > p {
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
}

.v6-project-note ol {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.v6-project-note li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--v6-line);
  font-size: 14px;
}

.v6-project-note li span {
  color: #77786f;
  font-size: 11px;
}

.v6-capability {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 830px;
  background: var(--v6-cream);
}

.v6-capability-image {
  min-height: 680px;
}

.v6-capability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v6-capability-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px);
}

.v6-capability-copy h2 {
  margin-top: 24px;
  font-size: clamp(44px, 4.6vw, 70px);
  line-height: 1.03;
}

.v6-capability-copy > p:not(.v6-kicker) {
  margin-top: 30px;
  color: #62635b;
  font-size: 17px;
  line-height: 1.75;
}

.v6-capability-copy .v6-service-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--v6-line);
  color: #4e5049;
  font-size: 14px;
}

.v6-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 48px 0;
  border-top: 1px solid var(--v6-line);
  border-bottom: 1px solid var(--v6-line);
}

.v6-stats div {
  padding: 24px 18px 24px 0;
}

.v6-stats div + div {
  padding-left: 18px;
  border-left: 1px solid var(--v6-line);
}

.v6-stats dt {
  font-family: "Times New Roman", Times, serif;
  font-size: 35px;
}

.v6-stats dd {
  margin-top: 8px;
  color: #6d6e66;
  font-size: 12px;
  line-height: 1.5;
}

.v6-capability-copy .v6-button {
  align-self: flex-start;
}

.v6-manifesto {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 116px);
  color: #fff;
  background: var(--v6-moss);
}

.v6-manifesto p {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
}

.v6-contact {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 10vw;
  padding: clamp(96px, 12vw, 180px) clamp(24px, 7vw, 116px);
  background: var(--v6-paper);
}

.v6-contact h2 {
  max-width: 800px;
  margin-top: 25px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.02;
}

.v6-contact-actions {
  border-top: 1px solid var(--v6-line);
}

.v6-contact-actions a {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid var(--v6-line);
}

.v6-contact-actions span,
.v6-contact-actions strong {
  display: block;
}

.v6-contact-actions span {
  margin-bottom: 6px;
  color: #76776e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.v6-contact-actions strong {
  font-family: "Times New Roman", Times, serif;
  font-size: 26px;
  font-weight: 400;
}

.v6-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 70px clamp(24px, 7vw, 116px) 40px;
  color: rgba(255, 255, 255, 0.72);
  background: #11120f;
}

.v6-wordmark--footer {
  color: #fff;
}

.v6-footer > p:nth-of-type(1) {
  justify-self: end;
  max-width: 360px;
  text-align: right;
}

.v6-footer-links {
  display: flex;
  gap: 30px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.v6-copyright {
  justify-self: end;
  align-self: end;
  padding-top: 38px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

@media (max-width: 980px) {
  .v6-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .v6-menu-button {
    display: block;
    justify-self: end;
    color: #fff;
  }

  .v6-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    color: var(--v6-ink);
    background: var(--v6-paper);
  }

  .v6-nav.is-open {
    display: flex;
  }

  .v6-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--v6-line);
  }

  .v6-header-cta {
    display: none;
  }

  .v6-hero-content {
    width: min(900px, 94vw);
  }

  .v6-hero-meta {
    right: 0;
    width: 78vw;
  }

  .v6-section-heading,
  .v6-contact {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .v6-solution-grid,
  .v6-space-grid,
  .v6-project-grid,
  .v6-capability {
    grid-template-columns: 1fr;
  }

  .v6-solution-card--large,
  .v6-project--primary {
    grid-row: auto;
    min-height: 650px;
  }

  .v6-space-card:nth-child(2) {
    padding-top: 0;
  }

  .v6-space-card img {
    height: min(760px, 82vw);
  }

  .v6-project-grid {
    grid-template-rows: auto;
  }

  .v6-project {
    min-height: 520px;
  }

  .v6-capability-image {
    min-height: 70vw;
  }
}

@media (max-width: 680px) {
  .v6-header {
    padding: 0 20px;
  }

  .v6-wordmark {
    font-size: 17px;
  }

  .v6-wordmark strong {
    font-size: 25px;
  }

  .v6-hero {
    min-height: 860px;
  }

  .v6-hero > img {
    object-position: 58% center;
  }

  .v6-hero-content {
    width: 100%;
    padding: 150px 20px 270px;
  }

  .v6-hero h1 {
    margin-top: 20px;
    font-size: clamp(50px, 15vw, 68px);
  }

  .v6-hero-lead {
    margin-top: 25px !important;
    font-size: 16px;
    line-height: 1.55;
  }

  .v6-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
  }

  .v6-hero-meta {
    right: 20px;
    left: 20px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .v6-hero-meta span {
    min-height: 0;
    padding: 13px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 11px;
  }

  .v6-hero-meta strong {
    display: inline;
    margin-right: 7px;
    font-size: 20px;
  }

  .v6-intro {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .v6-intro h2,
  .v6-section-heading h2,
  .v6-capability-copy h2 {
    font-size: 43px;
  }

  .v6-intro div > p {
    margin-top: 25px !important;
    font-size: 16px;
  }

  .v6-section-heading {
    margin-bottom: 45px;
  }

  .v6-space-grid {
    gap: 46px;
  }

  .v6-space-card img {
    height: 118vw;
    max-height: 650px;
  }

  .v6-solution-card,
  .v6-solution-card--large {
    min-height: 510px;
  }

  .v6-solution-card--text {
    min-height: 400px;
  }

  .v6-project,
  .v6-project--primary {
    min-height: 530px;
  }

  .v6-project-note {
    padding: 30px 24px;
  }

  .v6-capability-image {
    min-height: 110vw;
  }

  .v6-capability-copy {
    padding: 80px 24px;
  }

  .v6-stats {
    grid-template-columns: 1fr;
  }

  .v6-stats div,
  .v6-stats div + div {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid var(--v6-line);
  }

  .v6-stats div:first-child {
    border-top: 0;
  }

  .v6-manifesto {
    flex-direction: column;
    gap: 28px;
  }

  .v6-manifesto p {
    font-size: 38px;
  }

  .v6-contact h2 {
    font-size: 50px;
  }

  .v6-footer {
    grid-template-columns: 1fr;
  }

  .v6-footer > p:nth-of-type(1),
  .v6-copyright {
    justify-self: start;
    text-align: left;
  }

  .v6-footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v6-solution-card > img,
  .v6-project img {
    transition: none;
  }
}

@media (max-width: 900px) {
  .category-library-grid {
    grid-template-columns: 1fr;
  }

  .category-home-hero__actions,
  .category-section-cta {
    justify-content: flex-start;
  }

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

@media (max-width: 640px) {
  .category-library-panel,
  .category-section-cta {
    padding: var(--space-18);
  }

  .category-library-summary {
    min-height: 64px;
    padding: var(--space-12);
  }

  .category-library-chips {
    padding: var(--space-0) var(--space-12) var(--space-12);
  }

  .category-library-chip {
    width: 100%;
  }

  .category-template-products-toolbar {
    flex-direction: column;
  }
}

/* BAFurniture V7 — Lead Conversion Engine */
.v7-contact-note {
  max-width: 720px;
  margin-top: 28px !important;
  color: #66675f;
  font-size: 17px;
  line-height: 1.7;
}

.v7-primary-action {
  width: 100%;
  min-height: 62px;
  padding: 0 24px;
  color: #fff;
  background: var(--v6-moss);
  border: 1px solid var(--v6-moss);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.v7-primary-action:hover,
.v7-primary-action:focus-visible {
  color: var(--v6-moss);
  background: transparent;
}

.v7-response-note {
  padding-top: 18px;
  color: #77786f;
  font-size: 12px;
  line-height: 1.6;
}

.v7-sticky-cta {
  position: fixed;
  z-index: 45;
  right: 28px;
  bottom: 24px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  align-items: center;
  gap: 0;
  min-width: min(720px, calc(100vw - 56px));
  color: #fff;
  background: rgba(18, 20, 16, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.v7-sticky-cta > div {
  padding: 14px 20px;
}

.v7-sticky-cta span,
.v7-sticky-cta strong {
  display: block;
}

.v7-sticky-cta span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v7-sticky-cta strong {
  margin-top: 2px;
  font-family: "Times New Roman", Times, serif;
  font-size: 19px;
  font-weight: 400;
}

.v7-sticky-cta button,
.v7-sticky-cta > a {
  min-height: 66px;
  padding: 0 22px;
  border: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

.v7-sticky-cta button {
  color: var(--v6-ink);
  background: var(--v6-cream);
}

.v7-sticky-cta > a {
  display: grid;
  place-items: center;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.v7-sticky-cta button:hover,
.v7-sticky-cta button:focus-visible {
  background: #fff;
}

.v7-sticky-cta > a:hover,
.v7-sticky-cta > a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.v7-wizard {
  width: min(860px, calc(100vw - 32px));
  max-width: none;
  max-height: min(880px, calc(100svh - 32px));
  margin: auto;
  padding: 0;
  color: var(--v6-ink);
  background: var(--v6-paper);
  border: 0;
  box-shadow: 0 24px 100px rgba(0, 0, 0, 0.34);
}

.v7-wizard::backdrop {
  background: rgba(10, 12, 9, 0.78);
}

.v7-wizard-shell {
  padding: clamp(26px, 5vw, 58px);
}

.v7-wizard-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.v7-wizard-header h2 {
  margin-top: 12px;
  font-size: clamp(35px, 4.8vw, 58px);
  line-height: 1;
}

.v7-wizard-close {
  padding: 8px 0;
  color: #5f6059;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.v7-wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 32px 0 38px;
  border-top: 1px solid var(--v6-line);
}

.v7-wizard-progress span {
  padding: 13px 8px 0 0;
  color: #9a9b94;
  border-top: 2px solid transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-1px);
}

.v7-wizard-progress span.is-active {
  color: var(--v6-ink);
  border-top-color: var(--v6-ink);
}

.v7-wizard-step h3,
.v7-wizard-success h3 {
  margin: 8px 0 28px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.08;
}

.v7-step-count {
  color: #85867f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v7-quick-lead {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(190px, 0.9fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding: 16px;
  color: #fff;
  background: var(--v6-moss);
}

.v7-quick-lead strong,
.v7-quick-lead > div span {
  display: block;
}

.v7-quick-lead strong {
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  font-weight: 400;
}

.v7-quick-lead > div span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.v7-quick-lead input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--v6-ink);
  background: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  outline: 0;
  font: inherit;
  font-size: 14px;
}

.v7-quick-lead input:focus {
  box-shadow: 0 0 0 2px var(--v6-brass);
}

.v7-quick-lead button {
  min-height: 48px;
  padding: 0 16px;
  color: var(--v6-ink);
  background: var(--v6-cream);
  border: 1px solid var(--v6-cream);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.v7-quick-lead button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.v7-quick-privacy {
  margin-bottom: 18px !important;
  color: #77786f;
  font-size: 11px;
  line-height: 1.5;
}

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

.v7-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.v7-choice {
  min-height: 128px;
  padding: 22px;
  text-align: left;
  color: var(--v6-ink);
  background: transparent;
  border: 1px solid var(--v6-line);
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.v7-choice strong,
.v7-choice span {
  display: block;
}

.v7-choice strong {
  font-family: "Times New Roman", Times, serif;
  font-size: 23px;
  font-weight: 400;
}

.v7-choice span {
  margin-top: 9px;
  color: #73746c;
  font-size: 13px;
  line-height: 1.5;
}

.v7-choice:hover,
.v7-choice.is-selected {
  color: #fff;
  background: var(--v6-moss);
  border-color: var(--v6-moss);
}

.v7-choice:hover span,
.v7-choice.is-selected span {
  color: rgba(255, 255, 255, 0.72);
}

.v7-choice:focus-visible {
  outline: 2px solid var(--v6-brass);
  outline-offset: 2px;
}

.v7-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.v7-field-grid label {
  display: block;
}

.v7-field-grid label > span {
  display: block;
  margin-bottom: 8px;
  color: #686961;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v7-field-grid input,
.v7-field-grid select,
.v7-field-grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--v6-ink);
  background: #fff;
  border: 1px solid var(--v6-line);
  border-radius: 0;
  outline: 0;
  font: inherit;
  font-size: 15px;
}

.v7-field-grid textarea {
  min-height: 92px;
  resize: vertical;
}

.v7-field-grid input:focus,
.v7-field-grid select:focus,
.v7-field-grid textarea:focus {
  border-color: var(--v6-moss);
  box-shadow: 0 0 0 1px var(--v6-moss);
}

.v7-field-wide {
  grid-column: 1 / -1;
}

.v7-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: #66675f;
  font-size: 13px;
  line-height: 1.5;
}

.v7-consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--v6-moss);
}

.v7-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.v7-field-error {
  min-height: 20px;
  margin-top: 12px !important;
  color: #9c3429;
  font-size: 13px;
}

.v7-wizard-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--v6-line);
}

.v7-wizard-nav button,
.v7-wizard-success button,
.v7-wizard-success a {
  min-height: 50px;
  padding: 0 24px;
  background: transparent;
  border: 1px solid var(--v6-ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.v7-wizard-nav .v7-next,
.v7-wizard-success button {
  color: #fff;
  background: var(--v6-ink);
}

.v7-wizard-nav button:disabled {
  opacity: 0.58;
  cursor: wait;
}

.v7-wizard-success {
  padding: 34px 0 10px;
}

.v7-wizard-success > p:not(.v6-kicker) {
  max-width: 560px;
  color: #66675f;
  line-height: 1.7;
}

.v7-wizard-success > div {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.v7-wizard-success a {
  display: grid;
  place-items: center;
}

@media (max-width: 820px) {
  .brand-home {
    padding-bottom: 74px;
  }

  .v7-sticky-cta {
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: 1fr 1fr;
    min-width: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .v7-sticky-cta > div {
    display: none;
  }

  .v7-sticky-cta button,
  .v7-sticky-cta > a {
    min-height: 70px;
    padding: 0 12px;
    font-size: 11px;
  }

  .v7-wizard {
    width: 100%;
    max-height: calc(100svh - 12px);
    margin: auto 0 0;
  }

  .v7-wizard-shell {
    padding: 26px 20px 32px;
  }

  .v7-quick-lead {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .v7-wizard-header h2 {
    font-size: 34px;
  }

  .v7-wizard-progress {
    margin: 24px 0 30px;
  }

  .v7-wizard-progress span {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .v7-choice-grid,
  .v7-field-grid {
    grid-template-columns: 1fr;
  }

  .v7-choice {
    min-height: 104px;
    padding: 18px;
  }

  .v7-field-wide {
    grid-column: auto;
  }

  .v7-wizard-nav,
  .v7-wizard-success > div {
    flex-direction: column-reverse;
  }

  .v7-wizard-nav button,
  .v7-wizard-success button,
  .v7-wizard-success a {
    width: 100%;
  }
}
