/* Buttons */
.btn {
  --btn-bg: transparent;
  --btn-border: var(--color-border);
  --btn-color: var(--color-text-primary);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  min-height: 2.75rem;
  padding: 0.625rem 1rem;
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-sm);
  background: var(--btn-bg);
  color: var(--btn-color);
  font-family: var(--font-ui);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  transition: var(--transition-base);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--primary {
  --btn-bg: linear-gradient(140deg, rgb(0 212 255 / 20%), rgb(0 212 255 / 8%));
  --btn-border: rgb(0 212 255 / 58%);
  --btn-color: var(--color-signal-white);
  box-shadow: var(--glow-cyan-soft);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: var(--glow-cyan-strong);
}

.btn--secondary {
  --btn-bg: linear-gradient(140deg, rgb(200 149 108 / 22%), rgb(200 149 108 / 8%));
  --btn-border: rgb(200 149 108 / 65%);
  box-shadow: var(--glow-copper-soft);
}

.btn--ghost {
  --btn-border: rgb(240 242 245 / 32%);
}

.btn__icon {
  inline-size: 1rem;
  block-size: 1rem;
}

/* Cards */
.card {
  position: relative;
  display: grid;
  gap: 0.5rem;
  padding: 0.82rem;
  border: 1px solid var(--color-border);
  border-radius: 0.2rem;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 1.5%), transparent 40%),
    var(--color-surface);
  box-shadow: none;
  transition: var(--transition-slow);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  pointer-events: none;
  transition: var(--transition-base);
}

.card:hover,
.card:focus-within {
  transform: translateY(-1px);
  background: var(--color-surface-elevated);
  box-shadow: 0 0 0 1px rgb(0 212 255 / 10%);
}

.card:hover::after,
.card:focus-within::after {
  border-color: rgb(0 212 255 / 36%);
  box-shadow: inset 0 0 24px rgb(0 212 255 / 14%);
}

.card--glass {
  background: rgb(18 24 34 / 62%);
  backdrop-filter: blur(16px);
}

.category-card__icon,
.product-card__icon {
  inline-size: 2.75rem;
  block-size: 2.75rem;
  color: var(--color-signal-cyan);
}

.product-card__meta {
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  color: var(--color-signal-white);
}

/* Form system */
.form {
  display: grid;
  gap: var(--space-md);
}

.form__row {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 48rem) {
  .form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form__group {
  display: grid;
  gap: var(--space-xs);
}

.form__label {
  font-family: var(--font-ui);
  font-size: var(--font-size-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-signal-white);
}

.form__input,
.form__textarea,
.form__select {
  min-height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.75rem;
  background: rgb(255 255 255 / 2%);
  color: var(--color-text-primary);
  transition: var(--transition-fast);
}

.form__textarea {
  min-height: 8rem;
}

.category-filter-select,
select.filter-select,
select.form__input,
.form__select {
  width: 100%;
  padding: 1rem 3rem 1rem 1.5rem;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: rgb(255 255 255 / 5%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2300D9FF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;

  border: 1px solid rgb(0 217 255 / 20%);
  border-radius: 12px;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-filter-select:hover,
select.filter-select:hover,
.form__select:hover {
  border-color: rgb(0 217 255 / 50%);
  background-color: rgb(255 255 255 / 8%);
}

.category-filter-select:focus,
select.filter-select:focus,
.form__select:focus {
  outline: none;
  border-color: #00d9ff;
  box-shadow: 0 0 0 3px rgb(0 217 255 / 10%);
}

select.form__input option,
.form__select option,
.category-filter-select option,
select.filter-select option {
  background: #ffffff;
  color: #1a1d29;
  padding: 0.75rem 1rem;
}

select.form__input option:checked,
select.form__input option:hover,
.form__select option:checked,
.form__select option:hover,
.category-filter-select option:checked,
.category-filter-select option:hover,
select.filter-select option:checked,
select.filter-select option:hover {
  background: #0066ff;
  color: #ffffff;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgb(138 143 152 / 82%);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: rgb(0 212 255 / 55%);
  box-shadow: 0 0 0 3px rgb(0 212 255 / 14%);
  outline: none;
}

.form__hint,
.form__error,
.form__success {
  font-size: var(--font-size-xs);
}

.form__error {
  color: var(--color-danger);
}

.form__success {
  color: var(--color-success);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  min-height: 1.75rem;
  padding: 0.125rem 0.625rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-round);
  font-family: var(--font-ui);
  font-size: var(--font-size-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.badge--stock {
  border-color: rgb(52 211 153 / 32%);
  color: #6ee7b7;
  background: rgb(52 211 153 / 12%);
}

.badge--rfq {
  border-color: rgb(0 212 255 / 34%);
  color: var(--color-signal-cyan);
  background: rgb(0 212 255 / 11%);
}

.badge--warning {
  border-color: rgb(245 158 11 / 35%);
  color: #fbbf24;
  background: rgb(245 158 11 / 12%);
}

/* Loader */
.loader {
  inline-size: 2rem;
  block-size: 2rem;
  border-radius: 50%;
  border: 2px solid rgb(0 212 255 / 20%);
  border-top-color: var(--color-signal-cyan);
  animation: spin 0.8s linear infinite;
}

.loader--line {
  inline-size: 100%;
  block-size: 2px;
  background: linear-gradient(90deg, transparent, var(--color-signal-cyan), transparent);
  animation: pulse-line 1.8s linear infinite;
}

/* Glass navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}

.navbar--glass {
  border-bottom: 1px solid rgb(240 242 245 / 12%);
  background: rgb(10 12 16 / 68%);
  backdrop-filter: blur(20px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.2rem;
  gap: var(--space-md);
}

.navbar__menu {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

.navbar__toggle {
  display: inline-flex;
  color: var(--color-signal-cyan);
}

@media (min-width: 64rem) {
  .navbar__menu {
    display: flex;
  }

  .navbar__toggle {
    display: none;
  }
}

/* Filter toolbar */
.filter-toolbar {
  display: grid;
  gap: var(--space-sm);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgb(20 24 32 / 80%);
}

@media (min-width: 48rem) {
  .filter-toolbar {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
}


/* Shared page architecture */
.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.brand-mark {
  font-family: var(--font-label);
  font-size: 0.86rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-signal-white);
}

.nav-links {
  display: flex;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--color-signal-white);
  font-family: var(--font-label);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.navbar__drawer {
  display: grid;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-top: 1px solid var(--color-border);
  background: rgb(10 12 16 / 92%);
}

@media (min-width: 64rem) {
  .navbar__drawer {
    display: none;
  }
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 0.2rem;
  background:
    linear-gradient(160deg, rgb(0 212 255 / 9%), transparent 42%),
    linear-gradient(130deg, rgb(200 149 108 / 8%), transparent 56%),
    var(--color-surface);
  padding: clamp(0.92rem, 2.1vw, 1.32rem);
}

.hero-stats {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

@media (min-width: 48rem) {
  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hero-stat {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgb(255 255 255 / 2%);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--color-signal-cyan);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  color: var(--color-steel);
  font-family: var(--font-ui);
  font-size: var(--font-size-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--color-signal-cyan);
}

.breadcrumb__sep {
  color: rgb(138 143 152 / 65%);
}

.page-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 64rem) {
  .page-grid {
    grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
  }
}

.filter-panel {
  border: 1px solid rgb(0 217 255 / 16%);
  border-radius: 16px;
  background: rgb(20 24 32 / 78%);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  display: grid;
  position: sticky;
  top: 6rem;
  align-self: start;
  z-index: 10;
}

@media (max-width: 860px) {
  .filter-panel {
    position: relative;
    top: auto;
    border: 2px solid rgb(0 217 255 / 28%);
    background: rgb(20 24 32 / 88%);
    box-shadow: 0 10px 26px rgb(0 0 0 / 34%);
  }
}

.filter-group {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-panel .form__label,
.filter-panel .text-ui {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 60%);
}

.filter-panel .form__input,
.filter-panel .form__select,
.filter-panel .category-filter-select,
.filter-panel select.filter-select {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: rgb(255 255 255 / 5%);
  border: 1px solid rgb(0 217 255 / 24%);
  border-radius: 12px;
}

.filter-panel select.form__input,
.filter-panel .form__select,
.filter-panel .category-filter-select,
.filter-panel select.filter-select {
  padding-right: 3rem;
  background-position: right 1rem center;
}

.filter-panel .form__input::placeholder {
  color: rgb(255 255 255 / 42%);
}

.filter-panel .form__input:focus,
.filter-panel .form__select:focus,
.filter-panel .category-filter-select:focus,
.filter-panel select.filter-select:focus {
  border-color: rgb(0 217 255 / 75%);
  background-color: rgb(255 255 255 / 8%);
  box-shadow: 0 0 0 3px rgb(0 217 255 / 12%);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

.filter-option input {
  inline-size: 18px;
  block-size: 18px;
  accent-color: var(--color-signal-cyan);
}

.filter-reset,
.reset-filters-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  margin-top: 1.5rem;
  background: transparent;
  border: 1px solid rgb(212 118 46 / 30%);
  border-radius: 12px;
  color: #d4762e;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-base);
}

.filter-reset:hover,
.reset-filters-btn:hover {
  background: rgb(212 118 46 / 10%);
  border-color: rgb(212 118 46 / 50%);
}

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

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

@media (min-width: 75rem) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 96rem) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  display: grid;
  gap: var(--space-sm);
}

.product-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.product-card__thumb {
  inline-size: 2.5rem;
  block-size: 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: rgb(255 255 255 / 2%);
}

.product-card__thumb img {
  inline-size: 1.5rem;
  block-size: 1.5rem;
}

.product-card__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-steel);
}

.product-card__brand img {
  inline-size: auto;
  block-size: 0.95rem;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.related-grid,
.coverage-grid,
.industry-grid,
.benefits-grid,
.service-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 48rem) {
  .related-grid,
  .coverage-grid,
  .industry-grid,
  .benefits-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 75rem) {
  .related-grid,
  .industry-grid,
  .benefits-grid,
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

.faq-list {
  display: grid;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  background: rgb(255 255 255 / 2%);
}

.cta-banner {
  border: 1px solid rgb(0 212 255 / 35%);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgb(0 212 255 / 14%), rgb(0 212 255 / 4%));
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-secondary);
  padding-block: var(--space-2xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 48rem) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.disclaimer-box {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border: 1px solid rgb(200 149 108 / 42%);
  border-radius: var(--radius-sm);
  background: rgb(200 149 108 / 8%);
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

.empty-state {
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  background: rgb(0 212 255 / 6%);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.spec-table td,
.spec-table th {
  border: 1px solid var(--color-border);
  padding: var(--space-sm);
  text-align: left;
}

.spec-table th {
  color: var(--color-signal-white);
  background: rgb(255 255 255 / 4%);
}

.tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.tab-chip {
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-round);
  border: 1px solid var(--color-border);
  font-size: var(--font-size-xs);
  font-family: var(--font-ui);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
}


/* Product page refinements */
.nav-links a[aria-current="page"] {
  color: var(--color-signal-cyan);
}

.tab-chip.is-active,
.tab-chip[aria-selected="true"] {
  border-color: rgb(0 212 255 / 70%);
  color: var(--color-signal-cyan);
  box-shadow: var(--glow-cyan-soft);
}

.product-carousel::-webkit-scrollbar {
  height: 0.45rem;
}

.product-carousel::-webkit-scrollbar-thumb {
  background: rgb(0 212 255 / 30%);
  border-radius: var(--radius-round);
}


/* ===== Precision Current premium refinement layer ===== */
.btn {
  min-height: 2.1rem;
  padding: 0.34rem 0.82rem;
  border-radius: 0.22rem;
  font-size: 0.64rem;
}

.btn::after {
  content: "";
}

.navbar.is-scrolled {
  background: rgb(8 11 15 / 84%);
  box-shadow: 0 12px 28px rgb(0 0 0 / 35%);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-signal-cyan), rgb(0 212 255 / 5%));
  transition: width var(--duration-base) var(--ease-standard);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--color-signal-cyan);
  text-shadow: 0 0 14px rgb(0 212 255 / 20%);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.hero-panel {
  border-color: rgb(0 212 255 / 19%);
  border-radius: 0.26rem;
  box-shadow: 0 0 0 1px rgb(0 212 255 / 8%), inset 0 1px 0 rgb(255 255 255 / 5%);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-panel::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgb(0 212 255 / 8%) 1px, transparent 1px),
    linear-gradient(0deg, rgb(0 212 255 / 8%) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.28;
}

.hero-panel::after {
  inset: 0;
  background: radial-gradient(650px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgb(0 212 255 / 14%), transparent 48%);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-standard);
}

.hero-panel[data-cursor-glow]:hover::after {
  opacity: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.18rem 0.44rem;
  margin-bottom: var(--space-sm);
  border: 1px solid rgb(0 212 255 / 38%);
  border-radius: 0.22rem;
  font-family: var(--font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.56rem;
  color: var(--color-signal-cyan);
  background: rgb(0 212 255 / 8%);
}

.hero-kicker::before {
  content: "";
  width: 0.26rem;
  height: 0.26rem;
  border-radius: 50%;
  background: var(--color-signal-cyan);
  box-shadow: 0 0 12px rgb(0 212 255 / 75%);
  animation: glow-pulse 2.2s ease-in-out infinite;
}

.hero-grid,
.split-panel {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 64rem) {
  .hero-grid,
  .split-panel {
    grid-template-columns: 1.3fr 0.9fr;
    align-items: stretch;
  }
}

.hero-side-panel {
  padding: 0.82rem;
  border: 1px solid var(--color-border);
  border-radius: 0.2rem;
  background: linear-gradient(155deg, rgb(8 14 22 / 94%), rgb(13 18 26 / 94%));
}

.hero-stats {
  gap: 0.75rem;
}

.hero-stat {
  border-color: rgb(0 212 255 / 22%);
  border-radius: 0.2rem;
  background: linear-gradient(145deg, rgb(0 212 255 / 7%), rgb(255 255 255 / 1%));
}

.hero-stat strong {
  font-size: 0.98rem;
}

.hero-stat span {
  font-size: 0.72rem;
}

.section-divider {
  height: 1px;
  margin: var(--space-xl) 0;
  background: linear-gradient(90deg, transparent, rgb(0 212 255 / 68%), transparent);
  opacity: 0.52;
}

.signal-line {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  color: rgb(138 143 152 / 88%);
}

.signal-line::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: var(--color-signal-cyan);
  box-shadow: 0 0 10px rgb(0 212 255 / 40%);
}

.metric-grid,
.trust-grid,
.logo-wall,
.resource-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 48rem) {
  .metric-grid,
  .trust-grid,
  .logo-wall,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 75rem) {
  .trust-grid,
  .logo-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

.metric-card,
.trust-item-card,
.resource-card {
  border: 1px solid var(--color-border);
  border-radius: 0.2rem;
  padding: 0.62rem;
  background: rgb(17 23 32 / 72%);
}

.metric-card {
  min-width: 0;
}

.metric-card strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.96rem;
  color: var(--color-signal-cyan);
  margin-bottom: 0.2rem;
}

.metric-card p {
  font-size: 0.74rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.brand-ticker {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-round);
  background: rgb(20 24 32 / 78%);
}

.brand-ticker__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.35rem;
  min-width: max-content;
  padding: 0.55rem 0.85rem;
  animation: ticker-move 30s linear infinite;
}

.brand-ticker__track img {
  height: 0.92rem;
  width: auto;
  max-width: none;
  opacity: 0.9;
  filter: grayscale(0.08);
}

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

.industry-card {
  min-height: 100%;
}

.industry-card h3 {
  font-size: var(--font-size-xl);
}

.industry-card p {
  margin-bottom: var(--space-sm);
}

.card__icon-wrap {
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgb(0 212 255 / 34%);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: rgb(0 212 255 / 8%);
}

.card__icon-wrap img,
.card__icon-wrap svg {
  width: 1.35rem;
  height: 1.35rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer h3 {
  font-family: var(--font-ui);
  font-size: var(--font-size-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--color-signal-cyan);
}

.form-panel {
  border: 1px solid rgb(0 212 255 / 20%);
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgb(14 20 29 / 88%), rgb(14 18 25 / 88%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 6%);
  padding: clamp(1.1rem, 2vw, 1.5rem);
}

.form__input,
.form__textarea,
.form__select {
  min-height: 3rem;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  box-shadow: 0 0 0 3px rgb(0 212 255 / 18%), 0 0 18px rgb(0 212 255 / 16%);
}

.category-hero-note {
  margin-top: var(--space-sm);
  font-size: var(--font-size-sm);
  color: rgb(138 143 152 / 95%);
}

.circuit-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(0 212 255 / 45%), transparent);
}

.circuit-divider::before,
.circuit-divider::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(0 212 255 / 90%);
  box-shadow: 0 0 12px rgb(0 212 255 / 40%);
}

.circuit-divider::before { left: 24%; }
.circuit-divider::after { right: 24%; }



/* ===== Iteration: comprehensive concept alignment ===== */
.brand-mark {
  display: inline-flex;
  align-items: center;
  max-width: min(21rem, 58vw);
}

.brand-mark img {
  display: block;
  width: 100%;
  max-width: 18rem;
  height: auto;
}

.navbar__inner {
  min-height: 4.2rem;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.92;
}

.card,
.metric-card,
.trust-item-card,
.resource-card,
.form-panel,
.disclaimer-box {
  border-radius: 0.32rem;
}

.metric-card,
.trust-item-card,
.resource-card {
  padding: 1rem;
}

.metric-card p,
.trust-item-card p,
.resource-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
}

.trust-item-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.card__icon-wrap {
  color: var(--color-signal-cyan);
}

.card__icon-wrap img,
.product-card__thumb img,
.trust-item img,
.coverage-grid img,
.doc-list img,
.industry-card img,
.category-card img,
img[src*="/assets/images/icons/"] {
  filter: brightness(1.65) saturate(1.1);
  opacity: 0.95;
}

.service-card__header,
.industry-card__header,
.who-serve-card__header,
.coverage-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.7rem;
}

.service-card__header .card__icon-wrap,
.industry-card__header .card__icon-wrap,
.who-serve-card__header .card__icon-wrap {
  width: 2.45rem;
  height: 2.45rem;
}

.service-card__header h3,
.industry-card__header h3,
.who-serve-card__header h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.24;
}

.footer {
  border-top: 1px solid rgb(0 212 255 / 20%);
  background: linear-gradient(180deg, rgb(10 14 21 / 98%), rgb(8 10 16 / 98%));
  padding-block: 2.2rem 1.2rem;
}

.footer-grid {
  gap: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(148 163 184 / 14%);
}

.footer h3 {
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.footer ul {
  gap: 0.35rem;
}

.footer li,
.footer p,
.footer a {
  font-size: 0.76rem;
  line-height: 1.55;
  color: rgb(216 223 232 / 88%);
}

.disclaimer-box {
  margin-top: 1rem;
  font-size: 0.74rem;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-bottom small,
.footer-bottom a {
  font-size: 0.7rem;
  color: rgb(166 179 193 / 90%);
}

.hero-panel {
  min-height: clamp(18rem, 56vw, 28rem);
  display: grid;
  align-content: center;
}

.hero-kicker {
  margin-bottom: 0.75rem;
}

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

@media (min-width: 64rem) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
  }
}

.hero-side-panel {
  border-color: rgb(0 212 255 / 26%);
  background: linear-gradient(150deg, rgb(5 18 29 / 92%), rgb(8 16 26 / 92%));
}

.product-card {
  position: relative;
  overflow: hidden;
  gap: 0.7rem;
  border-color: rgb(0 212 255 / 18%);
  background: linear-gradient(150deg, rgb(12 18 28 / 90%), rgb(9 13 20 / 95%));
  padding: 1rem;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle, rgb(0 212 255 / 16%), transparent 70%);
  pointer-events: none;
}

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

.product-card__thumb {
  inline-size: 2.8rem;
  block-size: 2.8rem;
  border-color: rgb(0 212 255 / 30%);
  background: rgb(0 212 255 / 8%);
}

.product-card .part-number {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.3;
  color: var(--color-signal-white);
}

.product-card p {
  margin: 0;
  line-height: 1.45;
}

.product-card__meta {
  color: rgb(187 201 216 / 88%);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-card__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.product-card__actions .btn {
  flex: 1;
}

.product-card__actions .btn--secondary,
.product-card__actions .btn--ghost {
  --btn-bg: transparent;
  --btn-border: rgb(0 212 255 / 30%);
  --btn-color: rgb(222 232 245 / 96%);
  box-shadow: none;
}

.product-card .part-link {
  color: inherit;
}

.contact-layout {
  display: grid;
  gap: 1rem;
}

@media (min-width: 64rem) {
  .contact-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.contact-info-grid {
  display: grid;
  gap: 0.8rem;
}

.contact-map {
  min-height: 11rem;
  border: 1px solid rgb(0 212 255 / 22%);
  border-radius: 0.32rem;
  background: linear-gradient(145deg, rgb(0 212 255 / 7%), rgb(200 149 108 / 8%));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.resources-grid {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 64rem) {
  .resources-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.l-section h2 + .product-grid,
.l-section .section-title-row + .product-grid,
.l-section .signal-line + .product-grid {
  margin-top: 1.35rem;
}


.coverage-grid > .card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.coverage-grid > .card h3,
.coverage-grid > .card p {
  margin: 0;
}


/* ===== Visual audit fixes: concept match ===== */
.hero-panel {
  min-height: clamp(20rem, 54vw, 34rem);
  display: grid;
  align-content: center;
  gap: var(--space-md);
}

.hero-panel > .u-flex {
  margin-top: var(--space-sm);
}

.hero-grid,
.hero-side-panel,
.hero-stats,
.hero-stat {
  display: none;
}

.dual-grid {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  align-items: start;
}

.dual-grid--60-40 {
  grid-template-columns: 1fr;
}

.dual-grid--50-50 {
  grid-template-columns: 1fr;
}

@media (min-width: 64rem) {
  .dual-grid--60-40 {
    grid-template-columns: 60% 40%;
  }

  .dual-grid--50-50 {
    grid-template-columns: 1fr 1fr;
  }
}

.section__subtitle {
  color: var(--color-copper);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  --btn-border: rgb(200 149 108 / 85%);
  --btn-color: var(--color-copper);
}

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

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

@media (min-width: 75rem) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: 1.5rem;
  border: 1px solid rgb(0 212 255 / 24%);
  border-radius: 0.3rem;
  background: linear-gradient(150deg, rgb(11 17 28 / 92%), rgb(8 12 19 / 94%));
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-signal-cyan);
  box-shadow: 0 0 16px rgb(0 212 255 / 45%);
}

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

.product-card__thumb {
  inline-size: 3rem;
  block-size: 3rem;
  border: 1px solid rgb(0 212 255 / 34%);
  border-radius: 0.6rem;
  display: grid;
  place-items: center;
  background: rgb(0 212 255 / 8%);
  opacity: 0.55;
}

.product-card__thumb img {
  inline-size: 1.4rem;
  block-size: 1.4rem;
}

.badge--stock,
.badge--rfq {
  min-height: 2rem;
  padding: 0.2rem 0.85rem;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.badge--stock {
  border-color: rgb(84 255 188 / 35%);
  color: #6ff3c0;
  background: rgb(52 211 153 / 12%);
}

.badge--rfq {
  border-color: rgb(0 212 255 / 38%);
  color: var(--color-signal-cyan);
  background: rgb(0 212 255 / 10%);
}

.product-card .part-number,
.product-card__part {
  margin: 0;
  font-size: clamp(1.2rem, 1.9vw, 2rem);
  line-height: 1.15;
  color: var(--color-signal-white);
  font-family: var(--font-mono);
  font-weight: 700;
}

.product-card > p:not(.product-card__meta) {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.45;
}

.product-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__brand {
  color: var(--color-copper);
  font-weight: 600;
}

.product-card__category {
  color: var(--color-signal-cyan);
  border: 1px solid rgb(0 212 255 / 24%);
  background: rgb(0 212 255 / 8%);
  border-radius: 0.2rem;
  padding: 0.2rem 0.48rem;
}

.product-card__divider {
  color: rgb(138 143 152 / 80%);
}

.product-card__actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.product-card__actions .btn {
  min-height: 2.35rem;
}

.product-card__actions .btn[href*="/contact"],
.product-card__actions .btn[href*="?part="] {
  order: 1;
}

.product-card__actions .btn[href*="/products/"] {
  order: 2;
}

.card__icon-wrap img,
.card__icon-wrap svg,
.product-card__thumb img,
.trust-item img,
.coverage-grid img,
.doc-list img,
.industry-card img,
.category-card img,
img[src*="/assets/images/icons/"] {
  filter: none;
  opacity: 1;
}



/* ===== Fixes: concept alignment for logo, ticker, and footer ===== */
.brand-mark {
  max-width: min(17.5rem, 52vw);
}

.brand-mark img {
  max-width: 15.5rem;
  opacity: 0.96;
}

.brand-ticker__label {
  margin-bottom: 0.55rem;
  color: rgb(166 179 193 / 88%);
}

.brand-ticker {
  border-color: rgb(148 163 184 / 22%);
  background: linear-gradient(145deg, rgb(17 22 32 / 88%), rgb(12 16 24 / 92%));
}

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

.brand-ticker__track img {
  max-width: 140px;
  height: 50px;
  object-fit: contain;
}

.footer-entity-strip {
  margin-top: 0.95rem;
  padding: 0.95rem 1rem;
  border-top: 1px solid rgb(0 212 255 / 18%);
  border-bottom: 1px solid rgb(0 212 255 / 14%);
  background: linear-gradient(90deg, rgb(0 212 255 / 8%), rgb(255 255 255 / 0%));
}

.footer-entity-strip__line1,
.footer-entity-strip__line2,
.footer-entity-strip__link {
  margin: 0;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.footer-entity-strip__line1 {
  font-size: 0.86rem;
  color: rgb(207 217 230 / 90%);
}

.footer-entity-strip__line2 {
  margin-top: 0.3rem;
  font-size: 0.74rem;
  color: rgb(138 151 168 / 88%);
}

.footer-entity-strip__link {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--color-signal-cyan);
}

.footer-bottom {
  margin-top: 0.9rem;
  padding-top: 0.3rem;
}

.footer-bottom small,
.footer-bottom a {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}



/* ===== Refactor: layout changes per user specification ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  padding: 1.5rem 0;
}

.site-shell main {
  padding-top: 1rem;
}

.navbar__inner,
.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__menu {
  display: none;
  gap: 2rem;
}

.navbar__menu a,
.navbar__link {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.navbar__menu a:hover,
.navbar__menu a:focus-visible,
.navbar__menu a[aria-current="page"],
.navbar__link:hover {
  color: var(--color-signal-cyan);
}

@media (min-width: 64rem) {
  .navbar__menu {
    display: flex;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 217, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(90deg, rgba(0, 217, 255, 0.2) 0%, rgba(0, 217, 255, 0.05) 100%);
  border-left: 2px solid var(--color-signal-cyan);
}

.hero__badge span {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--color-signal-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--color-signal-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.circuit-animation {
  width: 100%;
  height: auto;
  max-width: 400px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.section-header--with-action {
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-copper);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  text-decoration: none;
}

.category-card span {
  color: var(--color-text-primary);
  font-weight: 600;
}

.brand-ticker__track {
  gap: 0;
  padding: 0;
}

.brand-ticker__item {
  flex-shrink: 0;
  width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.brand-ticker__item img {
  max-width: 140px;
  height: 50px;
  object-fit: contain;
}

.products-grid--3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.wholesale-rfq-section .dual-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.wholesale-block,
.rfq-block {
  display: flex;
  flex-direction: column;
  padding: 3rem;
  min-height: 600px;
}

.block-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-copper);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.wholesale-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  flex-grow: 1;
}

.wholesale-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.wholesale-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--color-signal-cyan);
  border-radius: 50%;
}

.rfq-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rfq-form__title {
  margin-bottom: 0.5rem;
}

.rfq-form__subtitle {
  margin-bottom: 1.5rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group .form__error {
  margin-top: 0.35rem;
}

.form-input {
  width: 100%;
  min-height: 4rem;
  padding: 1.25rem 1rem 0.75rem;
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 4px;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-signal-cyan);
  background: rgba(0, 217, 255, 0.08);
}

.form-label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
  transition: all 0.3s;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label,
.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label {
  top: 0.45rem;
  font-size: 0.7rem;
  color: var(--color-signal-cyan);
}

.btn--block {
  width: 100%;
  margin-top: 1rem;
}

.footer {
  border-top: 1px solid rgb(0 212 255 / 20%);
  background: linear-gradient(180deg, rgb(10 14 21 / 98%), rgb(8 10 16 / 98%));
}

.footer__main {
  padding: 2.2rem 0 1.2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer__column--sourcing {
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 8px;
  padding: 2rem;
}

.footer__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-signal-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__column--sourcing h3 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.3;
}

.footer__column--sourcing p {
  margin-bottom: 1.5rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.footer__cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom {
  margin-top: 0;
  padding-top: 1rem;
  padding-bottom: 1.2rem;
  border-top: none;
}

.footer-bottom__entity {
  max-width: 42rem;
}

.floating-sales-support {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 2rem;
  background: var(--color-signal-cyan);
  color: var(--color-void-black);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.floating-sales-support:hover {
  background: white;
  color: var(--color-void-black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5);
}

@media (max-width: 1024px) {
  .hero__layout,
  .wholesale-rfq-section .dual-blocks,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    display: none;
  }

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

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

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wholesale-block,
  .rfq-block {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .floating-sales-support {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 640px) {
  .categories-grid,
  .products-grid--3x2 {
    grid-template-columns: 1fr;
  }
}


.btn--sm {
  min-height: 2.3rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.7rem;
}

.btn--large {
  min-height: 3rem;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  min-width: 240px;
}



/* ===== Final audit fixes: 13-point redesign completion ===== */
body {
  padding-top: 65px;
}

.l-section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header + .categories-grid,
.section-header + .products-grid--3x2,
.section-header + .dual-blocks,
.section-header + .product-grid {
  margin-top: 3rem;
}

.featured-products .section-header {
  margin-bottom: 3.5rem;
}

.categories-section .section-header {
  margin-bottom: 3rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-label {
  margin-bottom: 0.75rem;
  display: block;
}

.navbar {
  padding: 0.85rem 0;
}

.navbar__inner {
  min-height: 3.4rem;
}

.navbar__menu {
  gap: 1.5rem;
}

.navbar__menu a,
.navbar__link {
  font-size: 0.8125rem;
  padding: 0.5rem 0;
}

.navbar__logo img,
.brand-mark img,
.navbar__brand img,
.navbar__brand svg {
  max-height: 28px;
  height: 28px;
  width: auto;
}

.hero {
  padding: 6rem 0 4rem;
  min-height: auto;
}

.hero__layout {
  padding-top: 1rem;
}

.hero__badge {
  margin-bottom: 1.5rem;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0, 217, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(0, 217, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px, 60px 60px, 60px 60px;
  background-position: 0 0, 0 0, 0 0;
}

.hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(0, 217, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Circuit-line CSS animation removed in favor of SVG SMIL */
.hero__circuit-lines {
  display: none;
}

.category-card {
  transition: all 0.3s;
}

.category-card span,
.category-card__link,
.category-card__action {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.category-card:hover span,
.category-card:hover .category-card__link,
.category-card:hover .category-card__action {
  color: var(--color-signal-cyan);
}

.brand-ticker__item {
  flex-shrink: 0;
  width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.brand-ticker__item img,
.brand-ticker__item svg {
  max-width: 140px;
  height: 50px;
  object-fit: contain;
}

.product-card {
  position: relative;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 6px;
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s;
}

.product-card:hover {
  border-color: rgba(0, 217, 255, 0.4);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  width: 100%;
  background: var(--color-signal-cyan);
  box-shadow: none;
}

.product-card__head {
  display: block;
  min-height: 3rem;
}

.product-card__thumb {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 48px;
  height: 48px;
  opacity: 0.35;
  border-color: rgba(0, 217, 255, 0.45);
  background: rgba(0, 217, 255, 0.05);
  pointer-events: none;
}

.product-card__thumb img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
}

.badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.375rem 0.875rem;
  min-height: auto;
  border-radius: 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: transparent;
}

.badge--stock,
.badge--rfq {
  border: 1px solid var(--color-signal-cyan);
  color: var(--color-signal-cyan);
  background: transparent;
}

.product-card .part-number,
.product-card__part {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.product-card__brand {
  display: block;
  margin-top: 0.25rem;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: #d4762e;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.2;
}

.product-card > p:not(.product-card__meta) {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

.product-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0;
  font-size: 0.75rem;
}

.product-card__divider {
  display: none;
}

.product-card__category {
  align-self: flex-start;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-signal-cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.product-card__actions .btn {
  min-height: auto;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-family: var(--font-mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.product-card__actions .btn--primary {
  background: var(--color-signal-cyan);
  color: var(--color-void-black);
  border: none;
  box-shadow: none;
}

.product-card__actions .btn--primary:hover {
  background: white;
  color: var(--color-void-black);
}

.product-card__actions .btn--secondary {
  background: transparent;
  color: var(--color-copper);
  border: 1.5px solid var(--color-copper);
  box-shadow: none;
}

.product-card__actions .btn--secondary:hover {
  background: var(--color-copper);
  color: var(--color-void-black);
}

.dual-blocks,
.wholesale-rfq-section .dual-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.wholesale-block,
.rfq-block {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  min-height: auto;
  gap: 1.5rem;
}

.wholesale-block {
  background: rgba(0, 217, 255, 0.03);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 8px;
}

.rfq-block {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 8px;
}

.wholesale-block h2,
.rfq-form__title {
  margin-bottom: 1rem;
}

.wholesale-features {
  margin: 1.5rem 0;
  gap: 0.75rem;
}

.rfq-form .form-group {
  margin-bottom: 1.25rem;
}

.footer__column--sourcing {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.footer__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-signal-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.footer__heading,
.footer__column--sourcing h4,
.footer__column--sourcing h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
  line-height: 1.4;
  margin-top: 0;
  text-transform: none;
}

.footer__text,
.footer__column--sourcing p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer__cta-buttons {
  display: none !important;
}

.footer-bottom,
.footer__bottom {
  position: relative;
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  padding: 1.5rem 0;
  backdrop-filter: blur(8px);
}

.footer-bottom::before,
.footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-signal-cyan), transparent);
  opacity: 0.3;
}

.footer-bottom__entity,
.footer__bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.375rem;
}

.footer-entity-strip__line1,
.footer__entity-name {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
}

.footer-entity-strip__line2,
.footer__entity-details {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
}

.footer-entity-strip__link,
.footer__entity-url {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-signal-cyan);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-entity-strip__link:hover,
.footer__entity-url:hover {
  color: white;
}


.form-textarea {
  width: 100%;
  padding: 1.25rem 1rem 0.75rem;
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 4px;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  resize: vertical;
  transition: all 0.3s;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--color-signal-cyan);
  background: rgba(0, 217, 255, 0.08);
}

body {
  overflow-x: clip;
}

.container {
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__visual {
    order: -1;
    max-height: 300px;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .categories-grid,
  .products-grid--3x2,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-card .part-number,
  .product-card__part {
    font-size: 1.25rem;
    word-break: break-all;
  }

  .dual-blocks,
  .wholesale-rfq-section .dual-blocks {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wholesale-block,
  .rfq-block {
    padding: 2rem 1.5rem;
  }

  .btn {
    min-height: 48px;
  }

  .product-card__actions {
    grid-template-columns: 1fr;
  }

  .navbar {
    padding: 0.75rem 0;
  }

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

  .footer-bottom__entity,
  .footer__bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

}


/* ===== Subtask updates: CSS refinements + features ===== */

/* Brand Ticker Updates */
.brand-ticker {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 1.5em;
  background: rgb(20 24 32 / 78%);
}

.brand-ticker__item {
  flex-shrink: 0;
  width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.brand-ticker__track img {
  max-width: 140px;
  height: 50px;
  object-fit: contain;
}

/* Wholesale & RFQ Blocks */
.wholesale-block,
.rfq-block {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  min-height: auto;
  gap: 0rem;
}

.wholesale-features {
  margin: 1.2rem 0;
  gap: 0.75rem;
}

.wholesale-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.wholesale-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--color-signal-cyan);
  border-radius: 50%;
}

.block-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-copper);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

/* Footer */
p.footer-entity-strip__line1 {
  color: var(--color-signal-cyan);
}

.footer__heading,
.footer__column--sourcing h4,
.footer__column--sourcing h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #fff;
  line-height: 1.4;
  margin-top: 0;
  text-transform: none;
}

/* Featured products 2x4 */
.products-grid--2x4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .products-grid--2x4 {
    grid-template-columns: 1fr;
  }
}

.section-cta {
  margin-top: 3rem;
  text-align: center;
}

/* Hero badge with pulse indicator */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    90deg,
    rgba(0, 217, 255, 0.2) 0%,
    rgba(0, 217, 255, 0.05) 100%
  );
  border-left: 2px solid var(--color-signal-cyan);
}

.status-indicator {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.status-indicator svg,
svg.status-indicator {
  animation: pulse 2s ease-in-out infinite;
}

/* Product Card Hover - White Top Stripe */
.product-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-signal-cyan);
  transition: background 0.3s ease;
}

.product-card:hover .product-card__accent {
  background: white;
}

/* Critical performance optimization overrides */
.navbar {
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: none;
  will-change: backdrop-filter, background;
}

@media (min-width: 1024px) {
  .navbar {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    padding: 0.85rem 0;
  }
}


.product-card {
  box-shadow: none;
  border: 1px solid rgba(0, 217, 255, 0.15);
  will-change: border-color;
}

.product-card:hover {
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.1);
}

.category-card {
  box-shadow: none;
  border: 1px solid rgba(0, 217, 255, 0.1);
  will-change: border-color;
}

.category-card:hover {
  border-color: rgba(0, 217, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.08);
}

.btn {
  box-shadow: none;
  will-change: background, color, transform;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 2px 8px rgba(0, 217, 255, 0.2);
}

.brand-ticker__track {
  display: flex;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}

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

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0, 217, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(0, 217, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px);
  background-size:
    20px 20px,
    60px 60px,
    60px 60px;
}

@media (max-width: 1024px) {
  .hero__grid-pattern {
    display: none;
  }

  .hero__background::after {
    background: radial-gradient(
      ellipse at top left,
      rgba(0, 217, 255, 0.05) 0%,
      transparent 50%
    );
  }
}

@media (max-width: 768px) {
  .hero__visual,
  .circuit-animation {
    display: none;
  }
}

.brand-ticker__track,
.circuit-animation,
.status-indicator {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.product-card,
.category-card {
  contain: layout style paint;
}

.product-card__accent,
.hero__badge,
.floating-sales-support {
  transform: translateZ(0);
}


/* ===== Contact page redesign ===== */
.hero--contact {
  min-height: auto;
  padding: 7rem 0 4rem;
}

.hero--contact .hero__content {
  max-width: 52rem;
}

.hero--contact .hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero__description--contact {
  font-size: 1.125rem;
  max-width: 48rem;
}

.rfq-process .section-header,
.rfq-form-section .section-header,
.contact-info .section-header,
.trust-section .section-header {
  margin-bottom: 3rem;
}

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

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.process-step__number {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-signal-cyan), rgba(0, 217, 255, 0.5));
  color: var(--color-void-black);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.rfq-form--contact {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.78);
  display: grid;
  gap: 1.25rem;
}

.rfq-form--contact .form-row-2 {
  gap: 1.25rem;
  column-gap: 1.5rem;
}

.rfq-form--contact .form-group {
  margin-bottom: 1.25rem;
}

.rfq-form--contact .form-input,
.rfq-form--contact .form-textarea,
.rfq-form--contact input[type="text"],
.rfq-form--contact input[type="email"],
.rfq-form--contact input[type="tel"],
.rfq-form--contact input[type="date"] {
  width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 0.75rem 1rem;
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(0, 217, 255, 0.22);
  border-radius: 6px;
  color: #fff;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.rfq-form--contact .form-textarea {
  height: auto;
  min-height: 100px;
  resize: vertical;
}

.rfq-form--contact .form-input:focus + .form-label,
.rfq-form--contact .form-input:not(:placeholder-shown) + .form-label,
.rfq-form--contact .form-textarea:focus + .form-label,
.rfq-form--contact .form-textarea:not(:placeholder-shown) + .form-label,
.rfq-form--contact .form-input[type="date"] + .form-label {
  top: 0.45rem;
  font-size: 0.7rem;
  color: var(--color-signal-cyan);
}

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

.info-card {
  min-height: 12rem;
  justify-content: center;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
}

.info-card p,
.info-card a {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
}

.trust-features {
  max-width: 52rem;
  margin: 0;
}

.cta-card {
  text-align: center;
  padding: 4rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.cta-card h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-card p {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero--contact {
    padding-top: 5rem;
  }

  .rfq-form--contact {
    padding: 1.5rem;
  }

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



/* ===== About page redesign ===== */
.about-page .hero--about {
  min-height: auto;
  padding: 7rem 0 4rem;
}

.about-page .hero--about .hero__content {
  max-width: 62rem;
}

.about-page .hero--about .hero__subtitle {
  max-width: 56rem;
  font-size: 1.2rem;
}

.about-page .overview-content {
  max-width: 900px;
  margin: 3rem auto 0;
  text-align: center;
}

.about-page .overview-content > p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
}

.about-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-page .stat-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.about-page .stat-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-signal-cyan);
  margin-bottom: 0.5rem;
}

.about-page .stat-card__label {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin: 0;
}

.about-page .principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-page .principle-card {
  background: rgba(26, 26, 26, 0.8);
  border-left: 3px solid var(--color-signal-cyan);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  transition: border-color var(--duration-base) var(--ease-standard);
}

.about-page .principle-card h3 {
  font-size: 1.25rem;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  transition: color var(--duration-base) var(--ease-standard);
}

.about-page .principle-card:hover,
.about-page .principle-card:focus-within {
  border-left-color: var(--color-text-primary);
}

.about-page .principle-card:hover h3,
.about-page .principle-card:focus-within h3 {
  color: var(--color-signal-cyan);
}

.about-page .principle-card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.about-page .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-page .why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-page .why-visual {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.about-page .about-circuit-graphic {
  width: 100%;
  height: auto;
}

.about-page .why-text h3 {
  font-size: 1.5rem;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
}

.about-page .why-text .wholesale-features {
  margin: 0;
}

.about-page .info-cards {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.about-page .business-info-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 6px;
  padding: 2rem 1.5rem;
}

.about-page .business-info-card h3 {
  font-size: 0.875rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-copper);
  margin-bottom: 1rem;
}

.about-page .business-info-card--main {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-page .company-name-en {
  font-size: 1.75rem;
  font-family: var(--font-display);
  color: var(--color-signal-cyan);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-page .company-name-zh {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.about-page .company-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-copper);
  font-family: var(--font-mono);
  margin: 0;
}

.about-page .location-icon {
  flex-shrink: 0;
}

.about-page .hksic-codes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-page .hksic-codes li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.about-page .hksic-codes .code {
  font-family: var(--font-mono);
  color: var(--color-copper);
  font-weight: 700;
  font-size: 1rem;
  background: rgba(212, 118, 46, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
}

.about-page .hksic-codes .description {
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .about-page .why-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-page .why-visual {
    min-height: 300px;
  }

  .about-page .info-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-page .stats-grid,
  .about-page .principles-grid,
  .about-page .categories-grid,
  .about-page .info-cards {
    grid-template-columns: 1fr;
  }

  .about-page .cta-buttons {
    flex-direction: column;
  }

  .about-page .btn--large {
    width: 100%;
  }
}



/* ===== Products page redesign ===== */
.products-page .hero--products {
  min-height: auto;
  padding: 7rem 0 4rem;
}

.products-page .hero--products .hero__content {
  max-width: 64rem;
}

.products-page .hero--products .hero__subtitle {
  max-width: 52rem;
  margin-bottom: 1.75rem;
}

.products-page .products-search {
  max-width: 42rem;
}

.products-page .products-search .form-input[disabled] {
  opacity: 0.78;
  cursor: not-allowed;
}

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

.products-page .category-card__brands {
  font-size: 0.875rem;
  color: var(--color-copper);
  font-family: var(--font-mono);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.products-page .brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: center;
}

.products-page .brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(0, 217, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s;
  min-height: 100px;
}

.products-page .brand-logo:hover,
.products-page .brand-logo:focus-visible {
  border-color: rgba(0, 217, 255, 0.4);
  background: rgba(26, 26, 26, 0.8);
  transform: translateY(-2px);
}

.products-page .brand-logo img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.products-page .brand-logo:hover img,
.products-page .brand-logo:focus-visible img {
  opacity: 1;
}

.products-page .request-process .process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.products-page .request-process .process-step {
  text-align: left;
}

@media (max-width: 1024px) {
  .products-page .products-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .products-page .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .products-page .brand-logo {
    padding: 1rem;
    min-height: 80px;
  }

  .products-page .brand-logo img {
    max-width: 100px;
    max-height: 50px;
  }
}

@media (max-width: 640px) {
  .products-page .products-categories-grid {
    grid-template-columns: 1fr;
  }
}



/* ===== Brands page redesign ===== */
.brands-page .hero--brands {
  min-height: auto;
  padding: 6rem 0 3.5rem;
}

.brands-page .hero--brands .hero__content {
  max-width: 64rem;
}

.brands-page .hero--brands .hero__subtitle {
  max-width: 54rem;
}

.brands-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}

.brand-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  padding: 1.6rem 1.25rem;
  border: 1px solid rgb(0 212 255 / 20%);
}

.brand-profile-card:hover {
  border-color: rgb(0 212 255 / 42%);
  transform: translateY(-2px);
}

.brand-profile__logo {
  width: 100%;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 1px solid rgb(0 212 255 / 20%);
  border-radius: 0.35rem;
  background: rgb(0 212 255 / 5%);
}

.brand-profile__logo img {
  max-width: 10.5rem;
  max-height: 2.7rem;
  width: auto;
  height: auto;
}

.brand-profile__name {
  margin: 0;
  font-size: 1.25rem;
}

.brand-profile__description {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

.brand-profile__categories {
  margin: 0;
  padding-left: 1.1rem;
  text-align: left;
  width: 100%;
  color: var(--color-signal-cyan);
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: grid;
  gap: 0.35rem;
}

.brand-profile__examples {
  display: grid;
  gap: 0.45rem;
  width: 100%;
}

.part-example {
  padding: 0.42rem 0.55rem;
  border: 1px solid rgb(200 149 108 / 28%);
  border-radius: 0.25rem;
  background: rgb(0 0 0 / 24%);
  color: var(--color-copper);
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  letter-spacing: 0.03em;
}

.brand-profile-card .btn {
  margin-top: auto;
  width: 100%;
}

.transparency-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.transparency-text p {
  margin-bottom: 1.2rem;
}

.transparency-visual {
  display: grid;
  align-items: center;
  border: 1px solid rgb(0 212 255 / 20%);
}

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

.transparency-metrics div {
  border: 1px solid rgb(0 212 255 / 24%);
  border-radius: 0.25rem;
  padding: 0.9rem;
  background: rgb(0 212 255 / 6%);
}

.transparency-metrics strong {
  display: block;
  font-family: var(--font-mono);
  color: var(--color-signal-cyan);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.transparency-metrics span {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.comparison-table-wrapper {
  margin-top: 3rem;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgb(14 19 28 / 80%);
  border: 1px solid rgb(0 212 255 / 20%);
}

.comparison-table th,
.comparison-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgb(0 212 255 / 14%);
}

.comparison-table th {
  font-family: var(--font-mono);
  color: var(--color-signal-cyan);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgb(0 212 255 / 10%);
}

.comparison-table td {
  color: var(--color-text-secondary);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.matrix-item {
  border: 1px solid rgb(0 212 255 / 20%);
  border-radius: 0.35rem;
  background: rgb(13 19 27 / 72%);
  padding: 1.2rem;
}

.matrix-item h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgb(200 149 108 / 40%);
  color: var(--color-copper);
  font-size: var(--font-size-sm);
}

@media (max-width: 1024px) {
  .brands-showcase,
  .matrix-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transparency-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .brands-showcase,
  .matrix-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table thead {
    display: none;
  }

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

  .comparison-table tr {
    border-bottom: 1px solid rgb(0 212 255 / 22%);
    padding: 0.55rem 0;
  }

  .comparison-table td {
    border: none;
    padding: 0.35rem 0.75rem;
  }

  .comparison-table td::before {
    content: attr(data-label) ": ";
    font-family: var(--font-mono);
    font-size: var(--font-size-xs);
    color: var(--color-signal-cyan);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
}



/* ===== Resources page redesign ===== */
.resources-page .hero--resources {
  min-height: auto;
  padding: 6.25rem 0 3.5rem;
  position: relative;
}

.resources-page .hero--resources::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgb(0 212 255 / 9%) 1px, transparent 1px),
    linear-gradient(rgb(0 212 255 / 6%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(0 212 255 / 6%) 1px, transparent 1px);
  background-size: 22px 22px, 70px 70px, 70px 70px;
  opacity: 0.35;
  pointer-events: none;
}

.resources-page .hero--resources .hero__content {
  position: relative;
  z-index: 1;
  max-width: 64rem;
}

.resources-page .hero--resources .hero__subtitle {
  max-width: 54rem;
  font-size: 1.1rem;
}

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

.resources-page .resource-category-card {
  text-align: left;
  padding: 1.5rem;
  border: 1px solid rgb(0 212 255 / 16%);
  transition: all 0.3s ease;
}

.resources-page .resource-category-card:hover {
  border-color: rgb(0 212 255 / 40%);
  transform: translateY(-3px);
}

.resources-page .resource-category-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-signal-white);
}

.resources-page .resource-category-card p {
  margin-bottom: 1rem;
}

.resources-page .resource-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-copper);
  background: rgb(200 149 108 / 10%);
  border: 1px solid rgb(200 149 108 / 26%);
  border-radius: 0.3rem;
  padding: 0.42rem 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resources-page .resource-count:hover,
.resources-page .resource-count:focus-visible {
  color: var(--color-signal-white);
  border-color: rgb(200 149 108 / 62%);
  box-shadow: 0 0 0 1px rgb(200 149 108 / 32%);
}

.resources-page .resources-grid--featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.resources-page .resource-article-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgb(0 212 255 / 16%);
  padding: 1.5rem;
}

.resources-page .resource-article-card:hover {
  border-color: rgb(0 212 255 / 34%);
}

.resources-page .resource-card__category {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-copper);
  background: rgb(200 149 108 / 10%);
  border: 1px solid rgb(200 149 108 / 30%);
  padding: 0.35rem 0.7rem;
  border-radius: 0.25rem;
}

.resources-page .resource-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--color-signal-white);
  text-transform: uppercase;
}

.resources-page .resource-card__summary {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.resources-page .topics-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.resources-page .topic-chip {
  background: rgba(26, 26, 26, 0.9);
  border: 1.5px solid rgba(0, 217, 255, 0.25);
  color: var(--color-signal-cyan);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.resources-page .topic-chip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.2), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  border-radius: 50%;
}

.resources-page .topic-chip:hover,
.resources-page .topic-chip:focus-visible,
.resources-page .topic-chip.is-active {
  border-color: var(--color-signal-cyan);
  background: rgba(0, 217, 255, 0.08);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.15);
  color: var(--color-signal-white);
}

.resources-page .topic-chip:hover::before,
.resources-page .topic-chip:focus-visible::before,
.resources-page .topic-chip.is-active::before {
  width: 200px;
  height: 200px;
}

.resources-page .newsletter-section {
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

.resources-page .newsletter-card {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2.2rem;
  text-align: center;
}

.resources-page .newsletter-card p {
  margin: 0.9rem auto 1.5rem;
  max-width: 36rem;
}

.resources-page .newsletter-form {
  display: flex;
  gap: 0.8rem;
  max-width: 34rem;
  margin: 0 auto;
}

.resources-page .newsletter-input {
  flex: 1;
  min-height: 2.75rem;
  border: 1px solid rgb(0 212 255 / 28%);
  border-radius: 0.35rem;
  background: rgb(6 10 16 / 88%);
  color: var(--color-signal-white);
  padding: 0.8rem 1rem;
}

.resources-page .newsletter-input::placeholder {
  color: rgb(166 179 193 / 80%);
}

.resources-page .newsletter-input:focus {
  outline: none;
  border-color: var(--color-signal-cyan);
  box-shadow: 0 0 0 3px rgb(0 212 255 / 16%);
}

.resources-page .success-message {
  width: 100%;
  margin: 0;
  padding: 0.8rem 1rem;
  border: 1px solid rgb(52 211 153 / 45%);
  border-radius: 0.35rem;
  background: rgb(52 211 153 / 12%);
  color: #6ee7b7;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.resources-page .resource-filter-empty {
  margin-top: 1rem;
  font-family: var(--font-body);
  color: var(--color-steel);
}

@media (max-width: 1100px) {
  .resources-page .resources-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .resources-page .resources-categories-grid,
  .resources-page .resources-grid--featured {
    grid-template-columns: 1fr;
  }

  .resources-page .newsletter-form {
    flex-direction: column;
  }

  .resources-page .newsletter-form .btn {
    width: 100%;
  }
}



/* ===== Resource guide pages ===== */
.resource-guide-page .guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.5rem;
  align-items: start;
}

.resource-guide-page .guide-article {
  padding: 1.5rem;
  gap: 1.2rem;
}

.resource-guide-page .guide-intro p {
  margin: 0;
  line-height: 1.7;
}

.resource-guide-page .guide-toc {
  padding: 1rem;
  border: 1px solid rgb(0 212 255 / 20%);
}

.resource-guide-page .guide-toc h2 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.resource-guide-page .guide-toc ol {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
}

.resource-guide-page .guide-toc a {
  color: var(--color-signal-cyan);
  text-decoration: none;
}

.resource-guide-page .guide-section {
  display: grid;
  gap: 0.8rem;
}

.resource-guide-page .guide-section h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.resource-guide-page .guide-section h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-copper);
}

.resource-guide-page .guide-section p,
.resource-guide-page .guide-section li {
  line-height: 1.7;
}

.resource-guide-page .guide-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 6.5rem;
}

.resource-guide-page .sidebar-box {
  padding: 1rem;
}

.resource-guide-page .sidebar-box h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.resource-guide-page .sidebar-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.resource-guide-page .sidebar-box a {
  color: var(--color-signal-cyan);
}

@media (max-width: 1024px) {
  .resource-guide-page .guide-layout {
    grid-template-columns: 1fr;
  }

  .resource-guide-page .guide-sidebar {
    position: static;
  }
}


/* ===== Task 5-12 completion overrides ===== */
.brands-page .brand-profile__logo img,
.brands-page .brand-logo img,
.products-page .brand-logo img,
.products-page .brands-grid img,
.product-card__brand img {
  filter: brightness(0) invert(1);
}

.brands-page .comparison-table tbody tr:hover {
  background: rgba(0, 217, 255, 0.05);
}

.brands-page .comparison-table th:first-child,
.brands-page .comparison-table td:first-child {
  padding-left: 1.5rem;
}

.brands-page .matrix-item h3 a,
.brands-page .brand-chip {
  text-decoration: none;
}

.brands-page .brand-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(200, 149, 108, 0.6);
  color: var(--color-copper);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.brands-page .supply-chain-map {
  display: grid;
  gap: 0.8rem;
}

.brands-page .supply-node {
  border: 1px solid rgba(0, 217, 255, 0.28);
  border-radius: 0.4rem;
  padding: 0.8rem;
  background: rgba(0, 217, 255, 0.05);
}

.brands-page .supply-node strong {
  display: block;
  color: var(--color-signal-cyan);
  margin-bottom: 0.2rem;
}

.brands-page .supply-arrow {
  text-align: center;
  color: var(--color-copper);
  font-family: var(--font-display);
}

.contact-page .process-timeline,
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto;
  padding-left: 4rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-signal-cyan), rgba(0, 217, 255, 0.2));
}

.timeline-step {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 3rem;
  height: 3rem;
  background: var(--color-signal-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-void-black);
  z-index: 1;
}

.timeline-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.timeline-step p {
  color: var(--color-text-secondary);
}

#rfq-form .form-input,
#rfq-form .form-textarea,
#rfq-form input[type="text"],
#rfq-form input[type="email"],
#rfq-form input[type="tel"],
#rfq-form input[type="date"] {
  min-height: 48px;
  height: 48px;
  padding: 1.25rem 1rem 0.6rem;
}

#rfq-form .form-textarea {
  height: auto;
  min-height: 100px;
  padding-top: 1.4rem;
}

#rfq-form input::placeholder,
#rfq-form textarea::placeholder {
  color: rgba(217, 226, 238, 0.8);
}

#rfq-form .form-group {
  margin-bottom: 1.25rem;
}

#rfq-form .form-group .form-label {
  top: -0.3rem;
  margin-bottom: 0.75rem;
  font-size: .875rem;
  color: var(--color-signal-cyan);
  display: block;
  transform: translateY(-4px);
}



/* ===== Contact page premium redesign overrides (2026-04-29) ===== */
.workflow-timeline {
  position: relative;
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem 0;
}

.workflow-timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-signal-cyan) 10%,
    var(--color-signal-cyan) 90%,
    transparent
  );
}

.workflow-step {
  position: relative;
  padding-left: 6rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.workflow-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--color-signal-cyan), rgba(0, 217, 255, 0.6));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-void-black);
  box-shadow: 0 4px 24px rgba(0, 217, 255, 0.3);
  z-index: 2;
}

.step-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(26, 26, 26, 0.8);
  border: 1.5px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-signal-cyan);
  transition: all 0.3s ease;
}

.workflow-step:hover .step-icon {
  background: rgba(0, 217, 255, 0.1);
  border-color: var(--color-signal-cyan);
  transform: scale(1.05);
}

.step-content h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.step-content p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.step-time {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-copper);
  background: rgba(212, 118, 46, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-top: 0.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-method-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1.5px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method-card:hover {
  border-color: var(--color-signal-cyan);
  background: rgba(0, 217, 255, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 217, 255, 0.15);
}

.method-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-signal-cyan);
}

.contact-method-card h3 {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.method-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--color-signal-cyan);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.method-value:hover {
  color: white;
}

.method-note {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1.5px solid rgba(0, 217, 255, 0.15);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
  border-color: var(--color-signal-cyan);
  background: rgba(0, 217, 255, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.2);
}

.why-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(0, 217, 255, 0.05));
  border: 1.5px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-signal-cyan);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--color-signal-cyan), rgba(0, 217, 255, 0.7));
  color: var(--color-void-black);
  transform: scale(1.05);
}

.why-card h3 {
  font-size: 1.35rem;
  color: white;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.why-card p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.section-subtitle {
  margin: 0;
}

.learn-more-link {
  color: var(--color-signal-cyan);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: color 0.2s;
}

.learn-more-link:hover {
  color: white;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .workflow-step {
    padding-left: 5rem;
    grid-template-columns: 1fr;
  }

  .step-icon {
    margin-bottom: 1rem;
  }

  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}



/* ===== 10-point comprehensive redesign (2026-04-30) ===== */
:root {
  --pc-void: #0A0A0A;
  --pc-graphite: #1A1A1A;
  --pc-cyan: #00D9FF;
  --pc-copper: #D4762E;
}

.hero-panel--standard {
  border: 1px solid rgb(0 217 255 / 24%);
  background: linear-gradient(145deg, rgb(0 217 255 / 10%), rgb(10 10 10 / 92%));
  min-height: auto;
}

.hero-panel--standard .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* Timeline reusable component */
.timeline-vertical {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding-left: 3rem;
}
.timeline-vertical::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 2px;
  background: linear-gradient(var(--pc-cyan), rgb(0 217 255 / 15%));
}
.timeline-vertical__item {
  position: relative;
  border: 1px solid rgb(0 217 255 / 20%);
  border-radius: 8px;
  padding: 1rem 1rem 0.9rem;
  background: rgb(16 22 32 / 72%);
}
.timeline-vertical__item::before {
  content: attr(data-step);
  position: absolute;
  left: -2.55rem;
  top: 0.8rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--pc-cyan);
  color: #00131a;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.timeline-vertical__meta {
  color: var(--pc-copper);
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

/* SVG/logo visibility */
.brand-logo img,
.brand-profile__logo img,
.brand-card__logo img,
.brand-option img,
.product-card__brand img,
.brands-grid img {
  opacity: 1 !important;
  filter: brightness(1.35) contrast(1.15) !important;
}

/* Premium cards for category and brand pages */
.category-page .product-grid,
.brand-detail-page .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.25rem;
}

.brand-detail-page .product-card,
.category-page .product-card {
  min-height: 100%;
}

/* FAQ accordion */
.faq-accordion .faq-item {
  padding: 0;
  overflow: hidden;
}
.faq-accordion .faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--color-signal-white);
  text-align: left;
  padding: 1rem;
  font-family: var(--font-ui);
  letter-spacing: 0.02em;
  cursor: pointer;
}
.faq-accordion .faq-a {
  padding: 0 1rem 1rem;
  color: var(--color-text-secondary);
}

.related-categories-premium {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.related-categories-premium .card {
  border-color: rgb(0 217 255 / 24%);
}

/* Brand comparison hover requirement */
.brands-page .comparison-table tbody tr:hover td { color: #fff; }
.brands-page .comparison-table tbody tr:hover td:first-child,
.brands-page .comparison-table tbody tr:hover td:first-child strong { color: var(--pc-cyan); }

/* Performance: disable heavy hover effects on large blocks */
.resource-guide-page .guide-section:hover,
.resource-guide-page .guide-article:hover,
.resources-page .newsletter-card:hover,
.about-page .why-visual:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Guide TOC sticky refinement */
.resource-guide-page .guide-toc {
  position: sticky;
  top: 6.5rem;
  z-index: 3;
}

/* Global search helper in category pages */
.global-search-suggest {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--color-text-secondary);
}
.global-search-suggest a {
  color: var(--pc-cyan);
  font-family: var(--font-mono);
}

@media (max-width: 900px) {
  .category-page .product-grid,
  .brand-detail-page .product-grid,
  .related-categories-premium {
    grid-template-columns: 1fr !important;
  }
}


/* ===== Premium Product Detail: ULTRA-PREMIUM+++ ===== */
.product-detail-page .hero-panel.product-hero {
  padding: clamp(1.2rem, 2vw, 1.8rem);
}

.product-detail-page .product-hero .hero-content {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 64rem) {
  .product-detail-page .product-hero .hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.product-detail-page .product-visual {
  position: relative;
  border: 1px solid rgb(0 212 255 / 24%);
  border-radius: 0.32rem;
  background: linear-gradient(155deg, rgb(8 14 22 / 94%), rgb(13 18 26 / 94%));
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.product-detail-page .product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  justify-self: start;
  border: 1px solid rgb(0 212 255 / 38%);
  background: rgb(0 212 255 / 10%);
  color: var(--color-signal-cyan);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font: 500 0.62rem/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-page .pulse-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--color-signal-cyan);
  box-shadow: 0 0 0 rgb(0 212 255 / 65%);
  animation: glow-pulse 2s ease-in-out infinite;
}

.product-detail-page .product-image-large {
  min-height: clamp(240px, 28vw, 340px);
  border: 1px solid rgb(0 212 255 / 26%);
  border-radius: 0.4rem;
  background: radial-gradient(600px circle at 50% 45%, rgb(0 212 255 / 12%), transparent 62%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.product-detail-page .product-image-large img {
  width: min(82%, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgb(0 212 255 / 20%));
}

.product-detail-page .product-watermark {
  position: absolute;
  bottom: 0.7rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgb(0 212 255 / 46%);
}

.product-detail-page .thumb-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.product-detail-page .thumb-item {
  border: 1px solid var(--color-border);
  border-radius: 0.24rem;
  min-height: 2.4rem;
  background: rgb(255 255 255 / 2%);
  color: var(--color-steel);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-detail-page .thumb-item.is-active {
  color: var(--color-signal-cyan);
  border-color: rgb(0 212 255 / 70%);
  box-shadow: var(--glow-cyan-soft);
}

.product-detail-page .product-quick-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-detail-page .quick-chip {
  border: 1px solid rgb(0 212 255 / 22%);
  background: rgb(0 212 255 / 8%);
  color: var(--color-signal-cyan);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font: 500 0.62rem/1 var(--font-ui);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-page .text-gradient--signal {
  background: linear-gradient(125deg, #fff 10%, var(--color-signal-cyan) 60%, var(--color-copper) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-detail-page .product-info {
  display: grid;
  gap: 0.78rem;
}

.product-detail-page .brand-tag {
  color: var(--color-copper);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.product-detail-page .product-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.product-detail-page .product-sku {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.1;
}

.product-detail-page .product-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgb(0 212 255 / 36%);
  background: rgb(0 212 255 / 8%);
  color: var(--color-signal-cyan);
  font-family: var(--font-ui);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-page .status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-signal-cyan);
  animation: glow-pulse 2s ease infinite;
}

.product-detail-page .product-description {
  color: var(--color-text-secondary);
  font-size: 0.93rem;
  line-height: 1.62;
}

.product-detail-page .product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.product-detail-page .glass-card {
  border: 1px solid rgb(0 212 255 / 22%);
  border-radius: 0.32rem;
  background: rgb(18 24 34 / 64%);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 4%);
  padding: clamp(1rem, 2vw, 1.45rem);
  position: relative;
  overflow: hidden;
}

.product-detail-page .glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-signal-cyan), rgb(0 212 255 / 12%), var(--color-copper));
  opacity: 0.95;
}

.product-detail-page .features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-detail-page .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  border: 1px solid var(--color-border);
  border-radius: 0.26rem;
  padding: 0.7rem;
}

.product-detail-page .feature-icon {
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid rgb(0 212 255 / 32%);
  border-radius: 0.2rem;
  color: var(--color-signal-cyan);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.product-detail-page .product-spec-layout {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 64rem) {
  .product-detail-page .product-spec-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.product-detail-page .spec-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0;
}

.product-detail-page .spec-tabs .tab {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: transparent;
  color: var(--color-steel);
  font-family: var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.66rem;
  padding: 0.35rem 0.8rem;
}

.product-detail-page .spec-tabs .tab.active {
  color: var(--color-signal-cyan);
  border-color: rgb(0 212 255 / 70%);
  box-shadow: var(--glow-cyan-soft);
}

.product-detail-page .spec-panel {
  display: grid;
  gap: 0.52rem;
}

.product-detail-page .spec-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgb(166 190 220 / 12%);
  padding-bottom: 0.52rem;
}

.product-detail-page .spec-item span {
  font-family: var(--font-mono);
  color: var(--color-steel);
  letter-spacing: 0.05em;
  font-size: 0.64rem;
  text-transform: uppercase;
}

.product-detail-page .spec-item strong {
  font-family: var(--font-body);
  color: var(--color-signal-white);
  font-size: 0.86rem;
}

.product-detail-page .spec-panel a {
  color: var(--color-signal-cyan);
}

.product-detail-page .trust-signals .trust-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-detail-page .trust-card {
  border: 1px solid var(--color-border);
  border-radius: 0.3rem;
  background: linear-gradient(140deg, rgb(0 212 255 / 5%), rgb(255 255 255 / 2%));
  padding: 1rem;
}

.product-detail-page .trust-card svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: var(--color-signal-cyan);
  fill: none;
  stroke-width: 1.6;
  margin-bottom: 0.45rem;
}

.product-detail-page .trust-card h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.product-detail-page .trust-card p {
  margin: 0;
  color: var(--color-text-secondary);
}

.product-detail-page .related-products .product-grid--related {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-detail-page .product-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-signal-cyan);
  box-shadow: 0 0 16px rgb(0 212 255 / 45%);
}

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

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

.product-detail-page .premium-form .form-field {
  position: relative;
}

.product-detail-page .premium-form .form-input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgb(0 212 255 / 24%);
  border-radius: 0.26rem;
  background: rgb(255 255 255 / 2%);
  color: var(--color-signal-white);
  padding: 1rem 0.8rem 0.55rem;
}

.product-detail-page .premium-form .form-input[readonly] {
  color: var(--color-signal-cyan);
  background: rgb(0 212 255 / 9%);
  font-family: var(--font-mono);
}

.product-detail-page .premium-form .form-label {
  position: absolute;
  left: 0.75rem;
  top: 0.34rem;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.58rem;
  color: rgb(138 143 152 / 90%);
}

.product-detail-page .premium-form .form-textarea {
  min-height: 7rem;
  resize: vertical;
}

.product-detail-page .premium-form .form-response-time {
  margin: 0;
  text-align: center;
  font-size: 0.68rem;
  color: var(--color-steel);
  letter-spacing: 0.05em;
}

@media (max-width: 63.98rem) {
  .product-detail-page .features-grid,
  .product-detail-page .trust-signals .trust-grid,
  .product-detail-page .related-products .product-grid--related,
  .product-detail-page .premium-form .form-row-2 {
    grid-template-columns: 1fr;
  }
}



/* ===== Premium redesign system (April 2026) ===== */
.hero-section-standard {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgb(0 217 255 / 24%);
  border-radius: 0;
  padding: clamp(2.2rem, 4.5vw, 4.4rem) clamp(1rem, 3.2vw, 2.8rem);
  background:
    radial-gradient(circle at 20% 10%, rgb(0 217 255 / 12%), transparent 45%),
    radial-gradient(circle at 80% 100%, rgb(200 149 108 / 12%), transparent 42%),
    linear-gradient(180deg, rgb(8 14 22 / 94%), rgb(6 10 18 / 96%));
}

.hero-section-standard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(0 217 255 / 9%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(0 217 255 / 9%) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.36;
}

.hero-section-standard > * {
  position: relative;
  z-index: 1;
}

.hero-section-standard .hero-kicker,
.hero-section-standard .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgb(200 149 108 / 45%);
  background: linear-gradient(90deg, rgb(200 149 108 / 24%), rgb(200 149 108 / 8%));
  color: var(--color-copper);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-section-standard .hero-kicker::before,
.hero-section-standard .section-kicker::before {
  content: "";
  inline-size: 0.42rem;
  block-size: 0.42rem;
  border-radius: 50%;
  background: var(--color-signal-cyan);
  box-shadow: 0 0 14px rgb(0 217 255 / 82%);
}

.hero-section-standard h1,
.hero-section-standard .hero-title {
  margin-top: clamp(0.6rem, 2vw, 1.1rem);
  font-family: "Tektur", var(--font-display), sans-serif;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.timeline-vertical-premium {
  display: grid;
  gap: 1rem;
  position: relative;
  padding-left: 2.2rem;
}

.timeline-vertical-premium::before {
  content: "";
  position: absolute;
  left: 0.72rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgb(0 217 255 / 70%), rgb(0 217 255 / 10%));
}

.timeline-vertical-premium .timeline-vertical__item {
  position: relative;
  padding: 1rem 1.1rem;
  border: 1px solid rgb(0 217 255 / 22%);
  background: linear-gradient(150deg, rgb(15 23 34 / 88%), rgb(8 12 20 / 92%));
  border-radius: 8px;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.timeline-vertical-premium .timeline-vertical__item::before {
  content: attr(data-step);
  position: absolute;
  left: -2.25rem;
  top: 1rem;
  inline-size: 1.05rem;
  block-size: 1.05rem;
  border-radius: 999px;
  background: rgb(0 217 255 / 92%);
  box-shadow: 0 0 12px rgb(0 217 255 / 55%);
  color: rgb(2 8 14 / 95%);
  font: 600 0.55rem/1.05rem var(--font-mono);
  text-align: center;
}

.timeline-vertical-premium .timeline-vertical__icon {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgb(0 217 255 / 35%);
  border-radius: 7px;
  background: rgb(0 217 255 / 8%);
  display: grid;
  place-items: center;
  color: var(--color-signal-cyan);
  margin-bottom: .55rem;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.timeline-vertical-premium .timeline-vertical__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.timeline-vertical-premium .timeline-vertical__item:hover,
.timeline-vertical-premium .timeline-vertical__item.is-active {
  transform: translateY(-4px);
  border-color: rgb(0 217 255 / 45%);
  box-shadow: 0 14px 24px rgb(0 0 0 / 28%), 0 0 0 1px rgb(0 217 255 / 16%);
}

.timeline-vertical-premium .timeline-vertical__item:hover .timeline-vertical__icon,
.timeline-vertical-premium .timeline-vertical__item.is-active .timeline-vertical__icon {
  border-color: rgb(0 217 255 / 90%);
  box-shadow: 0 0 22px rgb(0 217 255 / 42%);
  background: rgb(0 217 255 / 16%);
}

.product-card-accent {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(0 217 255 / 22%);
  border-radius: 8px;
  background: linear-gradient(145deg, rgb(17 24 36 / 92%), rgb(9 13 20 / 95%));
  backdrop-filter: blur(8px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card-accent::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--color-signal-cyan);
  box-shadow: 0 0 16px rgb(0 217 255 / 45%);
}

.product-card-accent:hover {
  transform: translateY(-4px);
  border-color: rgb(0 217 255 / 48%);
  box-shadow: 0 18px 30px rgb(0 0 0 / 35%);
}

.product-card-premium {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.4rem;
  border: 1px solid rgb(0 217 255 / 22%);
  background: linear-gradient(145deg, rgb(17 24 36 / 92%), rgb(9 13 20 / 95%));
  backdrop-filter: blur(8px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card-premium::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--color-signal-cyan);
  box-shadow: 0 0 16px rgb(0 217 255 / 45%);
}

.product-card-premium:hover,
.product-card-premium:focus-within {
  transform: translateY(-6px);
  border-color: rgb(0 217 255 / 48%);
  box-shadow: 0 18px 30px rgb(0 0 0 / 35%);
}

.product-card-premium__actions {
  margin-top: auto;
  display: grid;
  gap: 0.72rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 63.98rem) {
  .product-card-premium__actions {
    grid-template-columns: 1fr;
  }
}

.product-card-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  min-height: 100%;
  padding: 1.4rem;
  border: 1px solid rgb(212 118 46 / 36%);
  border-radius: 8px;
  background: linear-gradient(145deg, rgb(30 20 14 / 94%), rgb(12 18 28 / 96%));
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 4%), 0 12px 24px rgb(0 0 0 / 28%);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.product-card-cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(212 118 46 / 96%), rgb(250 206 140 / 95%));
  box-shadow: 0 0 18px rgb(212 118 46 / 55%);
}

.product-card-cta::after {
  content: "";
  position: absolute;
  inset: auto -18% -45% auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(212 118 46 / 22%) 0%, rgb(212 118 46 / 0%) 70%);
  pointer-events: none;
}

.product-card-cta:hover,
.product-card-cta:focus-within {
  transform: translateY(-6px);
  border-color: rgb(212 118 46 / 58%);
  box-shadow: 0 18px 30px rgb(0 0 0 / 35%), 0 0 24px rgb(212 118 46 / 22%);
}

.product-card-cta__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(212 118 46 / 52%);
  background: linear-gradient(145deg, rgb(212 118 46 / 20%), rgb(0 217 255 / 10%));
  box-shadow: 0 0 18px rgb(212 118 46 / 24%);
}

.product-card-cta__icon img {
  width: 1.85rem;
  height: 1.85rem;
}

.product-card-cta__content {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.product-card-cta__kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(250 206 140 / 90%);
}

.product-card-cta__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.08;
  color: var(--color-signal-white);
  letter-spacing: 0.01em;
}

.product-card-cta__description {
  margin: 0;
  color: rgb(205 213 224 / 88%);
  line-height: 1.45;
}

.product-card-cta__button {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.8rem 1.05rem;
  border-radius: 6px;
  border: 1px solid rgb(212 118 46 / 78%);
  background: linear-gradient(90deg, rgb(212 118 46 / 26%), rgb(24 27 36 / 86%));
  color: rgb(250 227 202 / 96%);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;
}

.product-card-cta__button:hover,
.product-card-cta__button:focus-visible {
  border-color: rgb(250 206 140 / 95%);
  color: var(--color-signal-white);
  box-shadow: 0 0 20px rgb(212 118 46 / 32%);
  transform: translateY(-1px);
}

.empty-state[data-filter-empty] {
  display: grid;
  gap: 1rem;
}

.search-no-results {
  width: 100%;
  margin-bottom: 0;
  padding: 1.2rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgb(212 118 46 / 38%);
  background: linear-gradient(135deg, rgb(20 16 12 / 86%), rgb(9 17 30 / 90%));
}

.search-no-results h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-family: var(--font-display);
  color: var(--color-signal-white);
}

.search-no-results p {
  margin: 0.55rem 0 0;
  color: rgb(196 205 217 / 86%);
}

@media (max-width: 63.98rem) {
  .product-card-cta {
    padding: 1.15rem;
  }

  .product-card-cta__button {
    width: 100%;
  }
}

.premium-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}

.premium-list li {
  position: relative;
  padding-left: 1.25rem;
}

.premium-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .56rem;
  width: .42rem;
  height: .42rem;
  border-radius: 999px;
  background: var(--color-signal-cyan);
  box-shadow: 0 0 10px rgb(0 217 255 / 55%);
}

.resources-page .topic-chip {
  border-radius: 5px !important;
}

.resources-page .topic-chip.show-all-chip {
  border-color: rgb(200 149 108 / 48%);
  color: var(--color-copper);
}

.resources-page .topic-chip.show-all-chip:hover,
.resources-page .topic-chip.show-all-chip.is-active {
  border-color: rgb(200 149 108 / 80%);
  background: rgb(200 149 108 / 12%);
  color: var(--color-signal-white);
}

.resource-guide-page .guide-article.card--glass,
.resource-guide-page .guide-article.card--glass:hover {
  transform: none !important;
  box-shadow: none !important;
  transition: none !important;
}

.related-categories-premium .card {
  min-height: 8.6rem;
  display: grid;
  align-content: center;
  gap: .5rem;
  border: 1px solid rgb(0 217 255 / 25%);
  border-radius: 8px;
  background: linear-gradient(150deg, rgb(16 22 33 / 90%), rgb(10 13 20 / 95%));
  transition: transform .24s ease, border-color .24s ease;
}

.related-categories-premium .card:hover {
  transform: translateY(-4px);
  border-color: rgb(0 217 255 / 48%);
}

.faq-accordion-premium .faq-item {
  border: 1px solid rgb(0 217 255 / 20%);
  border-radius: 8px;
  background: rgb(12 17 26 / 92%);
}

.faq-accordion-premium .faq-q {
  width: 100%;
  text-align: left;
  padding: 1rem 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-signal-white);
}

.faq-accordion-premium .faq-a {
  padding: 0 1.15rem 1rem;
}

.products-page [data-load-more] {
  margin-top: 1rem;
}

.products-page .global-search-suggest a {
  color: var(--color-signal-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}


.product-categories-matrix-premium .matrix-item {
  border: 1px solid rgb(0 217 255 / 22%);
  border-radius: 8px;
  background: linear-gradient(145deg, rgb(12 18 28 / 90%), rgb(8 12 20 / 96%));
  transition: transform .24s ease, border-color .24s ease;
}

.product-categories-matrix-premium .matrix-item:hover {
  transform: translateY(-4px);
  border-color: rgb(0 217 255 / 48%);
}

.brand-profile-card.product-card-accent {
  overflow: hidden;
}

.brand-profile-card.product-card-accent::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--color-signal-cyan);
}




/* ===== Phase 2: premium service/resource/about refinements ===== */
.hero-section-standard.hero--contact {
  min-height: clamp(32rem, 70vh, 44rem);
}

.hero-section-standard .hero__content .hero-stats {
  margin-top: 1.25rem;
}

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

.wholesale-premium-grid,
.sourcing-insight-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.75rem);
}

@media (min-width: 64rem) {
  .wholesale-premium-grid,
  .sourcing-insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.region-stats-grid,
.trust-pillars-grid,
.stack-pillars {
  display: grid;
  gap: 0.85rem;
}

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

@media (max-width: 48rem) {
  .region-stats-grid {
    grid-template-columns: 1fr;
  }
}

.region-stat-card,
.trust-pillars-grid article,
.stack-pillars article {
  padding: 0.85rem;
  border: 1px solid rgb(0 217 255 / 20%);
  border-radius: 10px;
  background: linear-gradient(150deg, rgb(14 20 31 / 88%), rgb(9 13 21 / 94%));
}

.region-stat-card h3,
.trust-pillars-grid h3,
.stack-pillars h3 {
  font-size: 1.03rem;
  margin-bottom: 0.2rem;
}

.region-stat-bar {
  height: 0.34rem;
  margin: 0.55rem 0 0.4rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 8%);
  overflow: hidden;
}

.region-stat-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgb(0 217 255 / 96%), rgb(200 149 108 / 65%));
  box-shadow: 0 0 10px rgb(0 217 255 / 38%);
}

.premium-heading {
  letter-spacing: 0.01em;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.about-advantages-intro {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.advantages-premium-list {
  display: grid;
  gap: 0.68rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantages-premium-list li {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  gap: 0.6rem;
  align-items: start;
  padding: 0.58rem 0.62rem;
  border-radius: 8px;
  border: 1px solid rgb(0 217 255 / 14%);
  background: rgb(8 17 28 / 48%);
}

.adv-icon {
  width: 1.45rem;
  height: 1.45rem;
  color: var(--color-signal-cyan);
  display: inline-flex;
}

.about-circuit-graphic text {
  dominant-baseline: middle;
}

.about-circuit-graphic .label-hk,
.about-circuit-graphic .label-rfq,
.about-circuit-graphic .label-apac,
.about-circuit-graphic .label-global {
  font-size: 13px;
  letter-spacing: 1.6px;
}

.resources-page .topic-chip {
  border-radius: 5px !important;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.resources-page .topic-chip:hover,
.resources-page .topic-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgb(0 217 255 / 65%);
  box-shadow: 0 0 0 1px rgb(0 217 255 / 20%), 0 0 20px rgb(0 217 255 / 16%);
  color: var(--color-signal-white);
}

.resources-page .topic-chip.topic-chip--reset {
  border-color: rgb(200 149 108 / 54%);
  color: var(--color-copper);
}

.resources-page .topic-chip.topic-chip--reset:hover,
.resources-page .topic-chip.topic-chip--reset.is-active {
  border-color: rgb(200 149 108 / 88%);
  box-shadow: 0 0 0 1px rgb(200 149 108 / 20%), 0 0 20px rgb(200 149 108 / 18%);
}

.guide-article.card--glass {
  transition: none !important;
}


/* ===== Professional brand pages redesign (May 2026) ===== */
.brands-page .brands-hero,
.brand-detail-page .brand-detail-hero {
  min-height: clamp(32rem, 76vh, 48rem);
}

.brands-page .hero__content,
.brand-detail-page .hero__content {
  position: relative;
  z-index: 1;
}

.brands-hero__stats {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brands-hero-stat {
  border: 1px solid rgb(0 217 255 / 25%);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  background: linear-gradient(155deg, rgb(8 17 28 / 88%), rgb(8 14 23 / 94%));
}

.brands-hero-stat strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--color-signal-cyan);
  letter-spacing: 0.08em;
}

.brands-hero-stat span {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

.premium-brand-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-directory-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 100%;
  border: 1px solid rgb(0 217 255 / 25%);
  border-radius: 12px;
  padding: 1.1rem;
  background: linear-gradient(145deg, rgb(12 18 29 / 88%), rgb(8 12 20 / 95%));
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 2%);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.brand-directory-card:hover,
.brand-directory-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgb(0 217 255 / 52%);
  box-shadow: 0 12px 26px rgb(2 10 20 / 42%), inset 0 0 0 1px rgb(0 217 255 / 16%);
}

.brand-directory-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.brand-directory-card__top img {
  max-width: 10.8rem;
  height: auto;
}

.brand-directory-card h3 {
  margin: 0;
  color: var(--color-signal-white);
  font-size: clamp(1.28rem, 2.2vw, 1.55rem);
}

.brand-directory-card p { margin: 0; }

.brand-directory-card__meta {
  color: var(--color-copper);
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-directory-card__cta {
  margin-top: auto;
  color: var(--color-signal-cyan);
  font-family: var(--font-mono);
  letter-spacing: .08em;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
}

.brand-flow-grid {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-flow-stage {
  border: 1px solid rgb(0 217 255 / 22%);
  border-radius: 12px;
  background: linear-gradient(148deg, rgb(10 16 25 / 92%), rgb(8 12 19 / 96%));
}

.brand-flow-stage__label {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  color: var(--color-copper);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.brand-flow-stage h3 { margin-top: .4rem; margin-bottom: .45rem; }

.category-brand-matrix {
  margin-top: 2rem;
  display: grid;
  gap: 0.8rem;
  border: 1px solid rgb(0 217 255 / 22%);
  border-radius: 12px;
  background: linear-gradient(145deg, rgb(11 16 25 / 90%), rgb(7 11 18 / 96%));
}

.matrix-row {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border-bottom: 1px solid rgb(0 217 255 / 15%);
}

.matrix-row:last-child { border-bottom: none; }
.matrix-row h3 { margin: 0; }

.brand-chip:hover,
.brand-chip:focus-visible {
  border-color: rgb(0 217 255 / 55%);
  color: var(--color-signal-cyan);
}

.brand-detail-hero__header {
  display: grid;
  gap: 0.85rem;
  align-items: center;
}

.brand-detail-hero__logo {
  max-width: clamp(12rem, 20vw, 16rem);
  height: auto;
}

.brand-story-card p { color: var(--color-text-secondary); }

.brand-app-grid {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-app-card {
  border: 1px solid rgb(0 217 255 / 20%);
  border-radius: 10px;
  min-height: 100%;
}

.brand-app-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.trust-signals-grid {
  margin-top: 1.8rem;
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-signal-card {
  border: 1px solid rgb(0 217 255 / 22%);
  border-left-width: 4px;
  border-radius: 10px;
  background: linear-gradient(150deg, rgb(14 20 30 / 88%), rgb(9 13 20 / 95%));
}

.trust-signal-card p { margin: 0; }

.tech-advantages-grid {
  margin-top: 1.8rem;
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tech-advantage-card {
  border: 1px solid rgb(0 217 255 / 20%);
  border-radius: 10px;
  min-height: 100%;
}

.tech-advantage-card h3 {
  margin: 0 0 .45rem;
  color: var(--color-copper);
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: .06em;
}

.tech-advantage-card p { margin: 0; }

@media (max-width: 1140px) {
  .brand-flow-grid,
  .brand-app-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

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

@media (max-width: 860px) {
  .premium-brand-grid,
  .brands-hero__stats,
  .trust-signals-grid,
  .brand-flow-grid,
  .brand-app-grid,
  .tech-advantages-grid { grid-template-columns: 1fr; }
}



/* ===== Products pages professional redesign (May 2026) ===== */
.products-hero.hero--contact {
  min-height: clamp(30rem, 68vh, 42rem);
  padding: clamp(5.4rem, 8vw, 7rem) 0 clamp(2.8rem, 4.2vw, 3.8rem);
}

.products-hero .hero__content {
  max-width: min(72rem, 100%);
}

.products-hero .hero__title-main {
  display: block;
}

.products-hero__stats {
  margin-top: 1.15rem;
}

.category-breadcrumb-wrap {
  padding-top: 1.35rem;
  padding-bottom: 0.6rem;
}

.category-hero-premium.hero--contact {
  min-height: auto;
  padding: clamp(2.2rem, 4.5vw, 3.2rem) 0 clamp(2.2rem, 4.6vw, 3.4rem);
}

.category-hero-premium .hero__description {
  max-width: 72ch;
}

.category-hero-applications {
  margin: 0.2rem 0 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-copper);
}

.products-page .products-categories-grid {
  gap: 1.18rem;
}

.category-card-premium {
  min-height: 14.8rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(0 217 255 / 22%);
  background:
    linear-gradient(146deg, rgb(9 19 31 / 88%), rgb(7 12 22 / 92%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 5%), 0 12px 34px rgb(0 0 0 / 30%);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.category-card-premium__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.category-card-premium__icon {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.8rem;
  border: 1px solid rgb(0 217 255 / 42%);
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg, rgb(0 217 255 / 16%), rgb(0 217 255 / 6%));
  box-shadow: 0 0 18px rgb(0 217 255 / 18%);
}

.category-card-premium p {
  color: rgb(205 214 225 / 84%);
}

.category-card-premium:hover,
.category-card-premium:focus-visible {
  transform: translateY(-6px);
  border-color: rgb(0 217 255 / 50%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%), 0 18px 34px rgb(0 0 0 / 38%), 0 0 22px rgb(0 217 255 / 18%);
}

.category-card-premium .category-card__link {
  margin-top: auto;
}

.products-grid--catalog-premium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card-premium {
  min-height: 100%;
}

.product-card-premium .product-card__meta {
  margin-top: 0.12rem;
  color: rgb(191 204 220 / 86%);
}

.related-categories-premium {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.related-category-card {
  min-height: 11.2rem;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.05rem 1.05rem 1.15rem;
  border: 1px solid rgb(0 217 255 / 24%);
  background: linear-gradient(140deg, rgb(9 16 27 / 94%), rgb(8 12 20 / 95%));
}

.related-category-card__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.related-category-card__head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.related-category-card p {
  margin: 0;
  color: rgb(197 208 220 / 78%);
  font-size: 0.95rem;
}

.related-category-card__cta {
  margin-top: auto;
  font-family: var(--font-mono);
  color: var(--color-copper);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.related-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgb(0 0 0 / 30%), 0 0 16px rgb(0 217 255 / 14%);
}

.faq-accordion-premium .faq-q {
  transition: color .24s ease, background-color .24s ease;
}

.faq-accordion-premium .faq-q[aria-expanded="true"] {
  color: var(--color-signal-cyan);
}

.faq-accordion-premium .faq-a {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease, opacity .24s ease;
}

.faq-accordion-premium .faq-q[aria-expanded="true"] + .faq-a {
  opacity: 1;
}

.cta-banner--premium {
  border-color: rgb(0 217 255 / 34%);
  background:
    linear-gradient(132deg, rgb(11 25 38 / 96%), rgb(10 15 26 / 95%)),
    radial-gradient(circle at 16% 18%, rgb(0 217 255 / 18%), transparent 65%),
    radial-gradient(circle at 80% 80%, rgb(200 149 108 / 12%), transparent 68%);
  box-shadow: 0 16px 36px rgb(0 0 0 / 30%);
}

.filter-empty-note {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: rgb(186 197 210 / 80%);
}

.search-no-results__hint {
  margin-top: 0.35rem;
  color: var(--color-copper);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

@media (max-width: 1024px) {
  .products-grid--catalog-premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .products-hero.hero--contact {
    padding-bottom: 2.5rem;
  }

  .category-hero-premium .hero__description {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .products-grid--catalog-premium,
  .related-categories-premium {
    grid-template-columns: 1fr;
  }

  .category-card-premium {
    min-height: auto;
  }

  .category-hero-applications {
    font-size: 0.75rem;
  }
}


/* Products catalog 2-column modifier */
.product-grid--2col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 860px) {
  .product-grid--2col {
    grid-template-columns: 1fr;
  }
}


/* ===== HG-KN13BJ Product Page Redesign (2026-05-02) ===== */
.product-hg-kn13bj-page {
  --product-glass-bg: rgba(26, 29, 41, 0.6);
  --product-glass-border: rgba(0, 217, 255, 0.14);
  --product-text: rgba(255, 255, 255, 0.9);
  --product-muted: rgba(255, 255, 255, 0.64);
}

.product-hg-kn13bj-page .breadcrumb {
  margin-bottom: 1.15rem;
}

.product-hg-kn13bj-page .product-hero .hero__content {
  max-width: 72rem;
}

.product-hg-kn13bj-page .glass-card {
  background: var(--product-glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--product-glass-border);
  border-radius: 1rem;
}

.btn--copper {
  --btn-bg: linear-gradient(90deg, rgba(212, 118, 46, 0.92), rgba(212, 118, 46, 0.74));
  --btn-color: #10131c;
  --btn-border: rgba(212, 118, 46, 0.8);
}

.product-overview-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 64rem) {
  .product-overview-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
}

.product-gallery {
  padding: 1.35rem;
}

.product-image-container {
  border: 1px solid rgba(0, 217, 255, 0.25);
  border-radius: 0.9rem;
  background: linear-gradient(160deg, rgba(0, 217, 255, 0.08), rgba(26, 29, 41, 0.35));
  overflow: hidden;
}

.product-image-container img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.quick-specs {
  padding: 1.35rem;
  display: grid;
  gap: 0.8rem;
}

.quick-specs__title {
  margin: 0;
  font-size: 1.12rem;
}

.sku-copy {
  justify-self: start;
  border: 1px dashed rgba(0, 217, 255, 0.5);
  border-radius: 0.6rem;
  background: rgba(0, 217, 255, 0.09);
  color: var(--product-text);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.65rem;
}

.sku-copy span {
  margin-left: 0.5rem;
  color: #00d9ff;
}

.quick-specs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(0, 217, 255, 0.18);
  border-radius: 0.8rem;
}

.quick-specs__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid rgba(0, 217, 255, 0.13);
}

.quick-specs__list li:last-child { border-bottom: 0; }
.quick-specs__list span { color: var(--product-muted); font-family: var(--font-mono); font-size: 0.76rem; }

.availability-badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: #0a1822;
  font-weight: 700;
  background: linear-gradient(90deg, #00d9ff, #6ee9ff);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.pricing-line {
  margin: 0;
  color: var(--color-copper);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

.quick-specs__actions {
  display: grid;
  gap: 0.6rem;
}

.quick-specs__actions .btn img,
.spec-request-cta .btn img,
.doc-name img {
  width: 1rem;
  height: 1rem;
}

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

.trust-chip-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(0, 217, 255, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-size: 0.72rem;
  color: var(--product-muted);
}

.trust-chip-list img,
.feature-card img,
.app-card img,
.trust-badge img {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.brand-badge-card {
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 0.8rem;
  padding: 0.8rem 0.95rem;
  background: rgba(0, 217, 255, 0.05);
}

.brand-name {
  font-family: 'JetBrains Mono', monospace;
  color: #d4762e;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.product-description { padding: 1.6rem; }
.product-description .section-title,
.section__title--description {
  color: rgba(255, 255, 255, 0.95);
}
.product-description p { color: var(--product-muted); }
.text-cyan { color: #00d9ff; font-weight: 600; }

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

.feature-card,
.app-card,
.trust-badge {
  padding: 1.2rem;
  transition: all 0.3s ease;
}

.feature-card h3,
.app-card h3,
.trust-badge h3 {
  margin: 0.6rem 0 0.4rem;
}

.feature-card p,
.app-card p,
.trust-badge p {
  margin: 0;
  color: var(--product-muted);
}

.feature-card:hover,
.app-card:hover,
.trust-badge:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.28);
}

.tech-specs-timeline {
  position: relative;
  padding: 1.2rem 1.2rem 1.2rem 2.3rem;
}

.tech-specs-timeline::before {
  content: '';
  position: absolute;
  left: 1.2rem;
  top: 1.3rem;
  bottom: 1.3rem;
  width: 2px;
  background: linear-gradient(to bottom, rgba(0, 217, 255, 0.5), rgba(0, 217, 255, 0.1));
}

.spec-category {
  position: relative;
  margin-bottom: 1.6rem;
}

.spec-category:last-of-type {
  margin-bottom: 0.8rem;
}

.spec-timeline-marker {
  position: absolute;
  left: -1.45rem;
  top: 0.45rem;
  width: 12px;
  height: 12px;
  background: #00d9ff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.2);
}

.spec-category-title {
  margin: 0 0 0.8rem;
  color: #00d9ff;
  font-size: 1.05rem;
  font-weight: 600;
}

.spec-items {
  display: grid;
  gap: 0.4rem;
}

.spec-item {
  display: grid;
  grid-template-columns: minmax(170px, 220px) 1fr;
  gap: 0.8rem;
  padding: 0.42rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.spec-value {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.spec-request-cta {
  margin-top: 0.6rem;
  display: flex;
  justify-content: flex-end;
}

.documentation-list {
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
}

.doc-item {
  border: 1px solid rgba(0, 217, 255, 0.17);
  border-radius: 0.75rem;
  padding: 0.75rem 0.85rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  align-items: center;
}

.doc-item:hover {
  border-color: rgba(0, 217, 255, 0.5);
  background: rgba(0, 217, 255, 0.07);
}

.doc-name {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.doc-meta {
  color: var(--product-muted);
  font-size: 0.88rem;
}

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

.trust-badge strong {
  margin-top: 0.5rem;
  display: block;
  color: #00d9ff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
}

.product-hg-kn13bj-page .related-products .product-grid--related,
.related-products-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.related-products-grid .product-card {
  padding: 0.3rem;
}

.final-cta {
  text-align: center;
  padding: 2.2rem 1.2rem;
  background: radial-gradient(circle at 20% 0%, rgba(0, 217, 255, 0.15), rgba(26, 29, 41, 0.7)), rgba(26, 29, 41, 0.64);
}

.final-cta h2 { margin-top: 0; }
.final-cta p { color: var(--product-muted); max-width: 46rem; margin: 0.5rem auto 0; }
.final-cta__actions {
  margin-top: 1.1rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

@media (max-width: 63.98rem) {
  .feature-grid,
  .application-grid,
  .trust-badges {
    grid-template-columns: 1fr 1fr;
  }

  .spec-item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .doc-item {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 47.98rem) {
  .feature-grid,
  .application-grid,
  .trust-badges,
  .product-hg-kn13bj-page .related-products .product-grid--related,
  .related-products-grid {
    grid-template-columns: 1fr;
  }
}



/* hg-kn13bj-v3-visual-bug-fixes */
.product-hg-kn13bj-page .tech-specs-timeline {
  padding: 1.2rem 1.2rem 1.2rem 3rem;
  margin-left: 1rem;
}

.product-hg-kn13bj-page .tech-specs-timeline::before {
  left: 1rem;
}

.product-hg-kn13bj-page .spec-content {
  padding-left: 1.5rem;
}

.product-hg-kn13bj-page .spec-item {
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 2rem;
  padding: 0.75rem 0;
}

.product-hg-kn13bj-page .spec-label {
  padding-right: 1rem;
}

.product-hg-kn13bj-page .doc-info {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.product-hg-kn13bj-page .doc-name {
  display: flex;
  margin: 0;
}

.product-hg-kn13bj-page .doc-meta {
  display: block;
  margin-top: 0.2rem;
}

.product-hg-kn13bj-page .related-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-hg-kn13bj-page .related-products-grid .product-card {
  padding: 2rem;
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 0.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.product-hg-kn13bj-page .related-products-grid .product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 217, 255, 0.45);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.14);
}

.product-hg-kn13bj-page .related-products-grid .product-card .part-number {
  margin: 0;
  font-size: 2.05rem;
}

.product-hg-kn13bj-page .related-products-grid .product-card > p:not(.product-card__brand) {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.45;
}

.product-hg-kn13bj-page .product-card__brand--premium {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d4762e;
}

.product-hg-kn13bj-page .product-specs-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 217, 255, 0.35);
  background: rgba(0, 217, 255, 0.08);
  color: #00d9ff;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-hg-kn13bj-page .product-card-actions {
  display: flex;
  width: 100%;
  gap: 1rem;
  margin-top: 0.5rem;
}

.product-hg-kn13bj-page .product-card-actions .btn {
  flex: 1;
  min-height: 2.9rem;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.product-hg-kn13bj-page .btn--request-quote {
  background: #00d9ff;
  color: #0a0e27;
  border: 1px solid #00d9ff;
}

.product-hg-kn13bj-page .btn--request-quote:hover {
  background: #00f0ff;
  border-color: #00f0ff;
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.32);
}

.product-hg-kn13bj-page .btn--view-details {
  background: transparent;
  color: #d4762e;
  border: 1px solid rgba(212, 118, 46, 0.82);
}

.product-hg-kn13bj-page .btn--view-details:hover {
  color: #f2a865;
  border-color: #f2a865;
  background: rgba(212, 118, 46, 0.1);
}

@media (max-width: 63.98rem) {
  .product-hg-kn13bj-page .spec-item {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .product-hg-kn13bj-page .tech-specs-timeline {
    margin-left: 0;
    padding-left: 2.35rem;
  }

  .product-hg-kn13bj-page .spec-content {
    padding-left: 1.1rem;
  }
}

@media (max-width: 47.98rem) {
  .product-hg-kn13bj-page .related-products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .product-hg-kn13bj-page .related-products-grid .product-card {
    padding: 1.2rem;
  }

  .product-hg-kn13bj-page .product-card-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
}

#rfq-form .btn--block {
  margin-top: 1.5rem;
}



/* ===== Contact RFQ: autofill + Turnstile stability fixes (2026-05-04) ===== */
#rfq-form .form-input,
#rfq-form .form-textarea,
#rfq-form input[type="text"],
#rfq-form input[type="email"],
#rfq-form input[type="tel"],
#rfq-form input[type="date"] {
  width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 1.25rem 1rem 0.6rem;
  background: rgba(10, 14, 39, 0.95) !important;
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 6px;
  color: #fff !important;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;

  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(10, 14, 39, 0.95) inset !important;
  box-shadow: 0 0 0 1000px rgba(10, 14, 39, 0.95) inset !important;
}

#rfq-form .form-textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
  padding-top: 1.4rem;
}

#rfq-form textarea.form-input,
#rfq-form textarea.form__input,
#rfq-form #contact-part-numbers {
  height: auto !important;
  min-height: 180px !important;
  resize: vertical;
  padding-top: 1.4rem;
}

#rfq-form input:-webkit-autofill,
#rfq-form input:-webkit-autofill:hover,
#rfq-form input:-webkit-autofill:focus,
#rfq-form input:-webkit-autofill:active,
#rfq-form textarea:-webkit-autofill,
#rfq-form textarea:-webkit-autofill:hover,
#rfq-form textarea:-webkit-autofill:focus,
#rfq-form textarea:-webkit-autofill:active {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(10, 14, 39, 0.95) inset !important;
  box-shadow: 0 0 0 1000px rgba(10, 14, 39, 0.95) inset !important;
  background-color: transparent !important;
  transition: background-color 5000s ease-in-out 0s;
}

#rfq-form .form-input:focus,
#rfq-form .form-textarea:focus {
  outline: none;
  border-color: rgba(0, 217, 255, 0.5);
  background: rgba(18, 25, 56, 0.98) !important;
}

#rfq-form .form-input::placeholder,
#rfq-form .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

#rfq-form .form-group--turnstile {
  margin-bottom: 1.5rem;
}

#rfq-form .cf-turnstile {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

#turnstile-error {
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  text-align: center;
}

#rfq-form .btn--primary:disabled,
#rfq-form .btn--primary[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  background: rgba(0, 217, 255, 0.2);
  border-color: rgba(0, 217, 255, 0.2);
}

/* SEO content layers and mobile CTA hardening */
.product-intelligence-section .section-header p,
.brand-procurement-intelligence .section-header p,
.guide-decision-summary > p {
  max-width: 76ch;
}

.product-intelligence-grid,
.guide-summary-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.product-intelligence-card {
  padding: 1.2rem;
}

.product-intelligence-card--wide {
  grid-column: 1 / -1;
}

.product-intelligence-card h3,
.brand-flow-card h3 {
  margin-top: 0;
}

.product-intelligence-card ul,
.brand-flow-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.product-intel-links {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-intel-link {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem;
  border: 1px solid rgba(0, 217, 255, 0.22);
  border-radius: 0.5rem;
  background: rgba(0, 217, 255, 0.05);
}

.product-intel-link span {
  color: var(--color-signal-cyan);
  font-family: var(--font-mono);
  overflow-wrap: anywhere;
}

.product-intel-link small {
  color: var(--color-text-secondary);
}

.brand-flow-card {
  padding: 1rem;
}

.guide-decision-summary {
  border-top: 1px solid rgba(0, 217, 255, 0.18);
  border-bottom: 1px solid rgba(0, 217, 255, 0.18);
  padding-block: 1.4rem;
}

@media (max-width: 63.98rem) {
  .product-intelligence-grid,
  .guide-summary-grid,
  .product-intel-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 47.98rem) {
  .final-cta,
  section.final-cta,
  .final-cta .l-container,
  section.final-cta .l-container {
    overflow: visible;
  }

  .final-cta .cta-card,
  section.final-cta .cta-card {
    width: 100%;
    max-width: 100%;
    padding: 1.35rem 1rem;
    overflow: visible;
  }

  .final-cta h2,
  section.final-cta h2 {
    font-size: clamp(1.35rem, 8vw, 1.9rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .final-cta p,
  section.final-cta p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .final-cta .cta-buttons,
  .final-cta__actions,
  section.final-cta .cta-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .final-cta .btn,
  section.final-cta .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}
