:root {
  --ink: #172026;
  --muted: #64707a;
  --line: #dce4e8;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --deep: #12333b;
  --teal: #087b83;
  --teal-dark: #065f66;
  --coral: #cf6946;
  --amber: #d6a347;
  --shadow: 0 18px 48px rgba(19, 44, 54, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  transition: top 0.2s ease;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 232, 0.85);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 74px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--deep);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  min-width: 0;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px;
  border-radius: 6px;
}

.nav-dropdown-menu a:hover {
  background: var(--soft);
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.language-toggle,
.icon-link {
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--deep);
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.language-toggle {
  padding: 0 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}

.button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.96);
  color: var(--deep);
}

.button-secondary:hover {
  color: #fff;
}

.button-small {
  min-height: 42px;
  padding: 0 14px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--deep);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 30, 35, 0.88) 0%, rgba(12, 30, 35, 0.66) 38%, rgba(12, 30, 35, 0.22) 70%),
    linear-gradient(0deg, rgba(12, 30, 35, 0.58) 0%, rgba(12, 30, 35, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 58px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc189;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
  word-break: normal;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.dynamic-word {
  display: inline-block;
  max-width: 100%;
  color: #ffd29e;
  overflow-wrap: anywhere;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.dynamic-word.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.buyer-ticker {
  width: min(680px, 100%);
  min-height: 48px;
  margin-top: 20px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.buyer-ticker span {
  flex: 0 0 auto;
  color: #ffd29e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.buyer-ticker strong {
  display: block;
  font-weight: 800;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.buyer-ticker strong.is-changing {
  opacity: 0;
  transform: translateX(10px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(720px, 100%);
  margin: 56px 0 0;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-metrics dt {
  font-size: 28px;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.quick-rfq {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.quick-rfq-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.quick-rfq span {
  font-weight: 900;
}

.quick-rfq a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.category-entry {
  padding: 34px 0;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.category-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.category-entry-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 52, 58, 0.08);
  overflow: hidden;
}

.category-entry-card h2 {
  margin-top: 8px;
  font-size: clamp(26px, 3vw, 38px);
  max-width: 100%;
}

.category-entry-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 800;
}

.category-entry-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--teal);
}

.procurement-facts {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: #f9fbfb;
}

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

.facts-grid div {
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.facts-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.facts-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--deep);
  font-size: 17px;
  line-height: 1.25;
}

.section {
  padding: 92px 0;
  scroll-margin-top: 92px;
}

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

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

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

.section-heading p:not(.eyebrow),
.factory-layout > div > p,
.rfq-intro > p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 24px;
}

.product-filters button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--deep);
  font-weight: 900;
  cursor: pointer;
}

.product-filters button:hover,
.product-filters button.is-active {
  border-color: var(--teal);
  background: rgba(8, 123, 131, 0.1);
  color: var(--teal-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

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

.product-card {
  min-height: 338px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(20, 52, 58, 0.05);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card-primary {
  grid-column: span 3;
}

.product-card-secondary {
  grid-column: span 2;
}

.product-card:hover {
  border-color: rgba(8, 123, 131, 0.35);
  box-shadow: 0 18px 42px rgba(20, 52, 58, 0.12);
  transform: translateY(-4px);
}

.product-badge {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(8, 123, 131, 0.12);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-badge-muted {
  background: rgba(100, 112, 122, 0.12);
  color: var(--muted);
}

.product-specs {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
}

.product-specs li + li {
  margin-top: 6px;
}

.product-card.is-filtered {
  display: none;
}

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

.product-card a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.product-visual {
  height: 122px;
  border-radius: 8px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at 32% 42%, rgba(255, 255, 255, 0.96) 0 15%, transparent 16%),
    radial-gradient(circle at 68% 58%, rgba(255, 255, 255, 0.84) 0 14%, transparent 15%),
    linear-gradient(135deg, var(--teal), #97c6c1);
  position: relative;
  overflow: hidden;
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 118px;
  border-radius: 50% 50% 42% 42%;
  background: rgba(255, 255, 255, 0.88);
  transform: rotate(16deg);
  left: 35px;
  top: 16px;
  box-shadow: inset 0 -14px 0 rgba(7, 123, 131, 0.18);
}

.product-visual::after {
  left: 86px;
  top: 7px;
  transform: rotate(16deg);
  opacity: 0.76;
}

.visual-home {
  background: linear-gradient(135deg, #cf6946, #e9b87d);
}

.visual-eva {
  background: linear-gradient(135deg, #087b83, #8cc7b3);
}

.visual-clog {
  background: linear-gradient(135deg, #12333b, #7fa0a3);
}

.visual-pvc {
  background: linear-gradient(135deg, #2f8f8d, #c4e6dd);
}

.visual-hotel {
  background: linear-gradient(135deg, #d6a347, #f0d99e);
}

.visual-kids {
  background: linear-gradient(135deg, #497bc4, #eaa0a0);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-list article,
.proof-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(8, 123, 131, 0.12);
  color: var(--teal);
  font-weight: 900;
}

.process-list p,
.proof-grid p {
  color: var(--muted);
}

.factory-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: start;
}

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

.rfq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-strip a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--deep);
  font-weight: 800;
  text-decoration: none;
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.rfq-form label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-weight: 800;
}

.rfq-form label:has(textarea),
.rfq-form .button,
.form-note,
.form-result {
  grid-column: 1 / -1;
}

.spam-check {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd7dc;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(8, 123, 131, 0.28);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-result {
  min-height: 0;
  border-radius: 8px;
  color: var(--deep);
  font-weight: 800;
}

.form-result:not(:empty) {
  padding: 12px;
  background: #e9f6f3;
}

.form-result.form-success:not(:empty) {
  background: #e9f6f3;
  color: #075c42;
}

.form-result.form-error:not(:empty) {
  background: #fff0ec;
  color: #9d321f;
}

.final-cta {
  max-width: 820px;
  text-align: center;
}

.site-footer {
  padding: 34px 0 90px;
  background: var(--deep);
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.support-widget {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 9;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.support-panel {
  width: min(330px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  transform-origin: bottom right;
  animation: support-in 0.2s ease both;
}

.support-panel-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.support-panel-head p,
.support-panel > p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.support-status {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: #29b36a;
  box-shadow: 0 0 0 5px rgba(41, 179, 106, 0.16);
}

.support-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.support-actions .button {
  width: 100%;
}

.support-rfq-link {
  border-color: var(--line);
  background: #fff;
}

.support-toggle {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(330px, calc(100vw - 36px));
  padding: 8px 16px 8px 10px;
  border: 0;
  border-radius: 8px;
  background: #25d366;
  color: #063b20;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
  cursor: pointer;
  white-space: normal;
  text-align: left;
  line-height: 1.18;
}

.support-toggle-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.support-toggle span:not(.support-toggle-icon) {
  min-width: 0;
  overflow-wrap: anywhere;
}

.floating-rfq {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 8;
  min-width: 74px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(42, 31, 26, 0.24);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #063b20;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float-home {
  right: 108px;
}

@keyframes support-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    gap: 12px;
  }

  .site-nav {
    gap: 14px;
  }

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

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

  .product-card-primary,
  .product-card-secondary {
    grid-column: span 1;
  }

  .split,
  .factory-layout,
  .rfq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    flex-wrap: wrap;
    min-height: 66px;
    padding: 10px 0;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    order: 5;
    width: 100%;
    margin-left: 0;
    padding: 10px 0 4px;
    border-top: 1px solid var(--line);
    gap: 6px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(8, 123, 131, 0.06);
  }

  .nav-dropdown-menu {
    position: static;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .header-actions {
    width: 100%;
    justify-content: stretch;
    display: grid;
    grid-template-columns: auto auto 1fr 1fr;
    gap: 8px;
  }

  .header-actions .language-toggle,
  .header-actions .icon-link {
    width: 44px;
    min-width: 44px;
  }

  .header-actions .button-small {
    min-width: 0;
    padding: 0 10px;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    flex-wrap: wrap;
    min-height: 66px;
    padding: 10px 0;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    order: 5;
    width: 100%;
    padding: 10px 0 4px;
    border-top: 1px solid var(--line);
    gap: 6px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(8, 123, 131, 0.06);
  }

  .nav-dropdown-menu {
    position: static;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .header-actions {
    width: 100%;
    justify-content: stretch;
    display: grid;
    grid-template-columns: auto auto 1fr 1fr;
    gap: 8px;
  }

  .header-actions .language-toggle,
  .header-actions .icon-link {
    width: 44px;
    min-width: 44px;
  }

  .header-actions .button-small {
    min-width: 0;
    padding: 0 10px;
    white-space: normal;
    text-align: center;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding: 76px 0 34px;
  }

  .hero-metrics,
  .product-grid,
  .product-grid-focused,
  .process-list,
  .proof-grid,
  .rfq-form {
    grid-template-columns: 1fr;
  }

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

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

  .buyer-ticker {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-rfq-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 66px 0;
  }

  .rfq-form label:has(textarea),
  .rfq-form .button,
  .form-note,
  .form-result {
    grid-column: auto;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 38px;
  }

  .header-actions .button-small {
    flex: 1;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .product-card {
    min-height: 0;
  }

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

  .support-widget {
    right: 14px;
    bottom: 82px;
  }

  .support-toggle {
    padding-right: 12px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    width: min(100% - 24px, 1240px);
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .header-actions {
    grid-template-columns: auto auto 1fr;
  }

  .header-actions .header-sample {
    grid-column: 1 / -1;
    order: 3;
  }

  .hero-copy,
  .page-hero p {
    font-size: 16px;
  }

  .buyer-ticker strong {
    line-height: 1.35;
  }

  .product-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .product-filters button {
    flex: 0 0 auto;
  }

  .spec-table {
    display: block;
    min-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .support-panel {
    width: calc(100vw - 28px);
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float-home {
    right: 90px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .floating-rfq {
    min-width: 62px;
    height: 46px;
    font-size: 13px;
  }

  .support-toggle {
    min-height: 46px;
    font-size: 13px;
  }

  .support-toggle-icon {
    width: 30px;
    height: 30px;
  }
}

.page-hero {
  padding: 110px 0 58px;
  background: var(--deep);
  color: #fff;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.page-kpis,
.feature-grid,
.timeline-grid,
.mini-product-grid,
.blog-plan-grid {
  display: grid;
  gap: 16px;
}

.page-kpis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

.page-kpis div,
.feature-card,
.timeline-card,
.mini-product-card,
.sample-policy-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.page-kpis div {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.page-kpis span,
.feature-card span,
.timeline-card span {
  display: block;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-kpis strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  line-height: 1.25;
}

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

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

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

.mini-product-card p,
.feature-card p,
.timeline-card p,
.sample-policy-card p {
  color: var(--muted);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.spec-table th {
  width: 34%;
  background: var(--soft);
}

.page-cta {
  padding: 38px;
  border-radius: 8px;
  background: var(--deep);
  color: #fff;
  text-align: center;
}

.page-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.sample-page-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.sample-page-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.sample-page-form label:has(textarea),
.sample-page-form .button {
  grid-column: 1 / -1;
}

@media (max-width: 1040px) {
  .page-kpis,
  .feature-grid,
  .timeline-grid,
  .mini-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-hero {
    padding: 82px 0 42px;
  }

  .page-kpis,
  .feature-grid,
  .timeline-grid,
  .mini-product-grid,
  .sample-page-form {
    grid-template-columns: 1fr;
  }

  .sample-page-form label:has(textarea),
  .sample-page-form .button {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .page-hero p,
  .hero-copy {
    font-size: 16px;
  }

  .spec-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .spec-table th,
  .spec-table td {
    min-width: 180px;
  }

  .page-cta {
    padding: 24px;
  }
}
