/* Base */
:root {
  color-scheme: light;
  --ink: #102033;
  --muted: #5f7082;
  --line: #dce7ec;
  --surface: #ffffff;
  --cream: #f5f8f7;
  --cream-deep: #e8f0ed;
  --dark: #0f3145;
  --dark-soft: #163f55;
  --brand-blue: #14798c;
  --brand-green: #14786a;
  --aqua: #dff4ef;
  --gold: #f2b84b;
  --gold-deep: #d49320;
  --white-soft: rgba(255, 255, 255, 0.82);
  --radius: 8px;
  --shadow: 0 20px 46px rgba(16, 58, 82, 0.12);
  --site-header-height: 102px;
  --guide-anchor-height: 52px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-height) + 16px);
}

body {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  background: #f7faf9;
}

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

a {
  color: var(--brand-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 200;
  padding: 8px 12px;
  color: #ffffff;
  background: var(--brand-blue);
}

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

.site-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

footer {
  color: var(--ink);
  background: #ffffff;
}

footer a {
  color: var(--ink);
}

/* Header */
.site-header-shell {
  --header-height: 102px;
  --brand-width: 226px;
  --logo-width: 212px;
  --nav-font: 16px;
  --language-width: 122px;
  --language-height: 38px;
  --control-font: 14px;
  --search-size: 38px;
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 49, 69, 0.06);
  transition: box-shadow 0.22s ease;
}

.site-header-shell.is-scrolled {
  box-shadow: 0 12px 30px rgba(15, 49, 69, 0.12);
}

.site-header-shell a {
  color: var(--ink);
}

.header-main {
  background: #ffffff;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: var(--header-height);
  transition: min-height 0.12s linear;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
}

.brand {
  flex: 0 0 var(--brand-width);
  color: var(--ink);
  transition: flex-basis 0.12s linear;
}

.brand:hover,
.footer-brand:hover {
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: auto;
}

.brand-logo-lockup {
  width: var(--logo-width);
  transition: width 0.12s linear;
}

.brand-logo-mark {
  display: none;
  width: 54px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.brand-name {
  display: none;
}

.desktop-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: var(--nav-font);
  font-weight: 700;
  white-space: nowrap;
  transition: font-size 0.12s linear;
}

.desktop-nav .nav-item {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
}

.desktop-nav .nav-link {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  color: #26313d;
}

.desktop-nav .nav-item + .nav-item > .nav-link::before {
  position: absolute;
  left: 0;
  color: rgba(38, 49, 61, 0.32);
  content: "|";
}

.desktop-nav .nav-link[aria-current="page"],
.desktop-nav .nav-link:hover,
.desktop-nav .nav-item:focus-within > .nav-link,
.desktop-nav .nav-item:hover > .nav-link {
  color: var(--brand-blue);
  text-decoration: none;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 12;
  display: grid;
  min-width: 236px;
  gap: 2px;
  padding: 10px;
  border: 1px solid #dce8eb;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 49, 69, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  visibility: hidden;
}

.nav-item-dropdown:focus-within .nav-dropdown,
.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #33485a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.nav-dropdown a:hover,
.nav-dropdown a[aria-current="page"] {
  color: var(--brand-blue);
  background: #eef7f7;
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-menu {
  position: relative;
  z-index: 3;
}

.language-menu summary {
  display: flex;
  min-width: var(--language-width);
  min-height: var(--language-height);
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid #d7e0e4;
  border-radius: 999px;
  color: #26313d;
  cursor: pointer;
  font-size: var(--control-font);
  font-weight: 700;
  list-style: none;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 49, 69, 0.06);
  transition: min-height 0.22s ease, min-width 0.22s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary:hover,
.language-menu[open] summary {
  color: var(--brand-blue);
  border-color: rgba(23, 131, 152, 0.5);
  box-shadow: 0 10px 24px rgba(15, 49, 69, 0.12);
}

.language-icon {
  width: 17px;
  height: 17px;
  color: var(--brand-blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  flex: 0 0 auto;
}

.language-arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-panel {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(132px, 1fr));
  gap: 8px;
  width: min(310px, calc(100vw - 40px));
  padding: 10px;
  border: 1px solid #e1e8ec;
  border-radius: 8px;
  color: #262626;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 49, 69, 0.18);
}

.language-panel::before {
  position: absolute;
  top: -14px;
  right: 58px;
  width: 0;
  height: 0;
  border-right: 14px solid transparent;
  border-bottom: 14px solid #ffffff;
  border-left: 14px solid transparent;
  content: "";
}

.language-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 10px;
  border-radius: 6px;
  color: #2c2c2c;
  font-size: 14px;
  font-weight: 700;
}

.language-panel a:hover,
.language-panel a.is-active {
  color: var(--brand-blue);
  background: #f3f8f7;
  text-decoration: none;
}

.language-flag {
  display: inline-grid;
  width: 26px;
  height: 18px;
  place-items: center;
  font-size: 19px;
  line-height: 1;
  filter: saturate(0.95);
}

.language-flag-en::before {
  content: "🇬🇧";
}

.language-flag-zh-CN::before {
  content: "🇨🇳";
}

.search-menu {
  position: relative;
  z-index: 2;
}

.search-menu summary {
  list-style: none;
}

.search-menu summary::-webkit-details-marker {
  display: none;
}

.search-circle {
  position: relative;
  display: inline-grid;
  width: var(--search-size);
  height: var(--search-size);
  place-items: center;
  border-radius: 999px;
  background: var(--brand-blue);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(23, 131, 152, 0.2);
  transition: width 0.22s ease, height 0.22s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.search-circle:hover {
  background: #1a92aa;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(23, 131, 152, 0.3);
  transform: translateY(-1px);
}

.search-circle::before {
  width: 11px;
  height: 11px;
  border: 2.25px solid #ffffff;
  border-radius: 999px;
  content: "";
}

.search-circle::after {
  position: absolute;
  width: 9px;
  height: 2.25px;
  border-radius: 999px;
  background: #ffffff;
  content: "";
  transform: translate(8px, 8px) rotate(45deg);
}

.header-search {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 132px minmax(220px, 1fr) 52px;
  width: min(486px, calc(100vw - 40px));
  height: 50px;
  overflow: hidden;
  border: 1px solid #e1e8ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(15, 49, 69, 0.2);
}

.header-search::before {
  position: absolute;
  top: -9px;
  right: 18px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-top: 1px solid #e1e8ec;
  border-left: 1px solid #e1e8ec;
  content: "";
  transform: rotate(45deg);
}

.search-menu:not([open]) .header-search {
  display: none;
}

.header-search label {
  display: grid;
}

.header-search select,
.header-search input,
.header-search button {
  width: 100%;
  height: 100%;
  border: 0;
  font: inherit;
}

.header-search select {
  padding: 0 14px;
  border-right: 1px solid #e2e2e2;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 700;
  background: #ffffff;
}

.header-search input {
  padding: 0 18px;
  color: #333333;
  font-size: 20px;
  outline: none;
}

.header-search input::placeholder {
  color: #8b8b8b;
}

.header-search button {
  position: relative;
  cursor: pointer;
  background: #ffffff;
}

.header-search button::before {
  position: absolute;
  top: 16px;
  left: 17px;
  width: 13px;
  height: 13px;
  border: 2.4px solid var(--brand-blue);
  border-radius: 999px;
  content: "";
}

.header-search button::after {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 10px;
  height: 2.4px;
  border-radius: 999px;
  background: var(--brand-blue);
  content: "";
  transform: rotate(45deg);
}

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

/* Components */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  color: #ffffff;
  background: var(--brand-blue);
}

.button:hover {
  text-decoration: none;
}

.button-primary:hover {
  filter: brightness(1.04);
}

.button-secondary {
  color: var(--brand-blue);
  border-color: var(--line);
  background: #ffffff;
}

.cta-band .button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-header-actions {
  display: none;
}

html.mobile-nav-open {
  overflow: hidden;
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu > summary {
  cursor: pointer;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  list-style: none;
}

.mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  right: 20px;
  left: 20px;
  z-index: 10;
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.mobile-subnav {
  display: grid;
  gap: 6px;
  padding: 0 0 6px 14px;
  border-left: 2px solid #dce8eb;
}

.mobile-subnav a {
  font-size: 14px;
  font-weight: 700;
}

main {
  min-height: 60vh;
}

/* Home hero */
.hero {
  position: relative;
  display: grid;
  height: clamp(700px, 60vw, 820px);
  min-height: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(135deg, #6a5d54 0%, #6d675d 48%, #75685e 100%);
  overflow: hidden;
  place-items: center;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
}

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

.hero-slides picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-bg-image {
  z-index: 0;
  width: 100%;
  height: 100%;
  filter: saturate(1.04) contrast(1.04);
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;
  transform: none;
  transition: opacity 0.7s ease;
}

.hero-bg-image.is-active {
  opacity: 1;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 56px;
  height: 44px;
  align-items: center;
  border: 1px solid rgba(23, 131, 152, 0.42);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(15, 49, 69, 0.14);
  transform: translateY(-50%);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.hero-arrow:hover {
  border-color: rgba(23, 131, 152, 0.8);
  background: #ffffff;
}

.hero-arrow::before {
  width: 13px;
  height: 13px;
  border-top: 2px solid var(--brand-blue);
  border-left: 2px solid var(--brand-blue);
  content: "";
  place-self: center;
}

.hero-arrow-prev {
  left: 32px;
}

.hero-arrow-prev::before {
  transform: rotate(-45deg);
}

.hero-arrow-next {
  right: 32px;
}

.hero-arrow-next::before {
  transform: rotate(135deg);
}

.hero-dots {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.hero-dot {
  width: 15px;
  height: 15px;
  padding: 0;
  border: 2px solid rgba(23, 131, 152, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 18px rgba(15, 49, 69, 0.2);
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.hero-dot.is-active {
  background: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(23, 131, 152, 0.18), 0 8px 20px rgba(15, 49, 69, 0.22);
  transform: scale(1.12);
}

.hero h1,
.page-hero h1 {
  max-width: 880px;
  margin: 0 0 18px;
  font-size: 54px;
  line-height: 1.06;
}

.hero h1 {
  max-width: 1040px;
  margin: 0 auto 22px;
  color: #ffffff;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.hero p,
.page-hero p {
  max-width: 790px;
  margin: 0;
  font-size: 18px;
}

.hero p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  font-weight: 700;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.eyebrow,
.meta {
  margin: 0 0 10px;
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-dark .eyebrow {
  color: var(--brand-green);
}

.section-dark .eyebrow {
  color: #67d7c5;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.14em;
}

.hero-actions,
.section-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions {
  justify-content: center;
  margin-top: 42px;
}

.hero .button {
  min-width: 170px;
  min-height: 58px;
  border-radius: 6px;
  font-size: 16px;
}

.hero .button-primary {
  background: var(--brand-blue);
}

.hero .button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.floating-contact {
  position: fixed;
  right: 14px;
  top: 36%;
  z-index: 25;
  display: grid;
  width: 68px;
  overflow: visible;
  border: 1px solid #d8dde1;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(17, 34, 48, 0.18);
  transform: translateY(-50%);
}

.floating-contact-item {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 56px;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 6px 4px 5px;
  border: 0;
  border-bottom: 1px solid #e6e6e6;
  color: #4f5458;
  appearance: none;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.floating-contact-item:first-child {
  border-radius: 7px 7px 0 0;
}

.floating-contact-item:last-child {
  border-bottom: 0;
  border-radius: 0 0 7px 7px;
}

.floating-contact-item:hover,
.floating-contact-item:focus-visible,
.floating-contact-item.is-open {
  color: #ffffff;
  text-decoration: none;
  background: var(--contact-hover, #2bd765);
}

.floating-contact-icon {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  transition: transform 0.18s ease;
}

.floating-contact-icon img {
  display: block;
  width: 22px;
  height: 22px;
  margin: 2px auto;
  object-fit: contain;
  transition: filter 0.18s ease;
}

.floating-contact-item:hover .floating-contact-icon,
.floating-contact-item:focus-visible .floating-contact-icon,
.floating-contact-item.is-open .floating-contact-icon {
  transform: translateY(-1px);
}

.floating-contact-item:hover .floating-contact-icon img,
.floating-contact-item:focus-visible .floating-contact-icon img,
.floating-contact-item.is-open .floating-contact-icon img {
  filter: brightness(0) invert(1);
}

.floating-contact-popover {
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  display: none;
  width: 166px;
  padding: 12px 12px 11px;
  border: 1px solid #e0e4e7;
  border-radius: 7px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(17, 34, 48, 0.22);
  transform: translateY(-50%);
}

.floating-contact-popover::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 14px;
  height: 14px;
  border-top: 1px solid #dce7ec;
  border-right: 1px solid #dce7ec;
  background: #ffffff;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.floating-contact-item:hover .floating-contact-popover,
.floating-contact-item:focus-visible .floating-contact-popover,
.floating-contact-item.is-open .floating-contact-popover {
  display: grid;
  gap: 8px;
}

.floating-contact-popover--compact {
  width: max-content;
  min-width: 142px;
  padding: 10px 12px;
}

.floating-contact-popover-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #4f5458;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.floating-contact-popover-label img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.floating-contact-popover-label strong {
  font-weight: 500;
}

.floating-contact-popover small {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.floating-contact-qr {
  display: block;
  width: 124px;
  height: 124px;
  margin: 0 auto;
  border: 0;
  border-radius: 4px;
  object-fit: cover;
  background: #ffffff;
}

/* Sections */
.section,
.content {
  padding: 78px 0;
  background: #ffffff;
}

.section-cream {
  background: #f4f8f7;
}

.section-cta {
  padding: 30px 0 34px;
  background:
    linear-gradient(180deg, #f6fbfa 0%, #eef7f5 100%);
}

.section-dark {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(40, 160, 116, 0.1), transparent 42%),
    #eef7f4;
}

.editorial-section {
  background: #fbfdfc;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-header h2,
.content h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.16;
}

.section-dark .section-header h2,
.section-dark .section-header p {
  color: var(--ink);
}

.section-header p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
}

.home-company-section {
  background:
    radial-gradient(circle at 40% 0%, rgba(23, 131, 152, 0.06), transparent 32%),
    #ffffff;
}

.home-company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 54px;
  align-items: center;
}

.home-company-title {
  max-width: 560px;
  margin: 0 0 22px;
  color: #05080a;
  font-size: 48px;
  line-height: 1.1;
}

.home-company-eyebrow {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.home-company-lead {
  max-width: 620px;
  margin: 0 0 18px;
  color: #384755;
  font-size: 18px;
  line-height: 1.9;
}

.home-company-facts {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
}

.home-company-fact {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(23, 131, 152, 0.18);
  border-left: 4px solid var(--brand-green);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(40, 160, 116, 0.08), rgba(255, 255, 255, 0)),
    #ffffff;
  box-shadow: 0 14px 30px rgba(19, 95, 134, 0.07);
}

.home-company-fact strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
}

.home-company-fact span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.home-company-copy p:not(.eyebrow):not(.home-company-lead) {
  max-width: 620px;
  margin: 0 0 16px;
  color: #5f6f7d;
  font-size: 16px;
  line-height: 1.9;
}

.home-company-actions {
  margin-top: 24px;
}

.home-company-media {
  position: relative;
  margin: 0;
}

.home-company-media::before {
  position: absolute;
  top: -18px;
  right: -18px;
  bottom: 18px;
  left: 18px;
  z-index: 0;
  border: 1px solid rgba(23, 131, 152, 0.22);
  content: "";
}

.home-company-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  box-shadow: 0 22px 46px rgba(15, 49, 69, 0.12);
}

.intro-grid,
.detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
}

.contact-channel-section {
  background: #ffffff;
}

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

.contact-channel-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 264px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 49, 69, 0.07);
}

.contact-channel-card.is-priority {
  border-color: rgba(23, 131, 152, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #f1fbf8 100%);
}

.contact-channel-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: #edf7f5;
}

.contact-channel-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.contact-channel-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.contact-channel-title-short,
.contact-channel-email-short,
.contact-channel-mobile-value {
  display: none;
}

.contact-channel-card p {
  flex: 1;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

.contact-channel-card .button {
  margin-top: auto;
}

.contact-channel-note {
  display: inline-flex;
  margin-top: auto;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-channel-note:hover {
  color: var(--brand-blue);
}

.contact-inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: stretch;
}

.contact-form-panel,
.contact-response-panel,
.contact-delivery-panel,
.contact-company-card,
.contact-faq-card {
  border: 1px solid rgba(23, 131, 152, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(15, 49, 69, 0.08);
}

.contact-form-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.8vw, 30px);
}

.contact-inquiry-anchor {
  position: absolute;
  top: 44px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.contact-form-panel h2,
.contact-response-panel h2,
.contact-company-card h2,
.contact-faq-card h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(26px, 2.45vw, 34px);
  line-height: 1.15;
}

.contact-form-panel > p:not(.eyebrow) {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.contact-inquiry-form {
  display: grid;
  flex: 1;
  gap: 16px;
}

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

.contact-inquiry-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #40566b;
  font-size: 14px;
  font-weight: 700;
}

.contact-inquiry-form input,
.contact-inquiry-form select,
.contact-inquiry-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cfdee5;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  background: #ffffff;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.contact-inquiry-form input,
.contact-inquiry-form select {
  min-height: 46px;
  padding: 10px 12px;
}

.contact-inquiry-form textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.contact-inquiry-form input:focus,
.contact-inquiry-form select:focus,
.contact-inquiry-form textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(23, 131, 152, 0.14);
}

.contact-message-field {
  display: grid;
}

.contact-method-field {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(23, 131, 152, 0.18);
  border-radius: 8px;
  background: #f7fcfb;
}

.contact-method-field legend {
  padding: 0 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-method-field > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-method-field.has-error {
  border-color: rgba(180, 59, 49, 0.55);
  box-shadow: 0 0 0 3px rgba(180, 59, 49, 0.08);
}

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

.contact-method-option {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  border: 1px solid #d7e6ec;
  border-radius: 6px;
  background: #ffffff;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.contact-method-option:focus-within,
.contact-method-option.has-value {
  border-color: rgba(23, 131, 152, 0.38);
  background: #f8fdfc;
}

.contact-method-option.has-error {
  border-color: rgba(180, 59, 49, 0.62);
  box-shadow: 0 0 0 3px rgba(180, 59, 49, 0.08);
}

.contact-method-head {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-method-error {
  min-height: 18px;
  color: #b43b31 !important;
  font-size: 13px !important;
}

@media (max-width: 559px) {
  .contact-method-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form-actions,
.contact-side-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-form-actions .button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.contact-form-status {
  min-height: 26px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-form-status.is-loading {
  color: var(--brand-blue);
}

.contact-form-status.is-success {
  color: #138661;
}

.contact-form-status.is-error {
  color: #b43b31;
}

.contact-response-panel {
  position: sticky;
  top: calc(var(--site-header-height) + 22px);
  align-self: stretch;
  display: grid;
  gap: 15px;
  align-content: start;
  padding: clamp(22px, 2.8vw, 30px);
}

.contact-response-panel h2 {
  max-width: 13em;
  margin-bottom: 0;
  font-size: clamp(24px, 2.1vw, 30px);
}

.contact-response-panel > p:not(.eyebrow) {
  margin: 0;
  color: #5b7084;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.contact-response-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-response-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid #d9e8ed;
  border-radius: 8px;
  color: #284155;
  background: #f7fbfa;
}

.contact-response-steps li span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  background: var(--brand-blue);
}

.contact-response-steps li strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.contact-response-steps li p {
  grid-column: 2;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.contact-alt-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(31, 178, 150, 0.18);
  border-left: 4px solid var(--brand-green);
  border-radius: 8px;
  color: #2e4b61;
  line-height: 1.65;
  background: #ecf8f5;
}

.contact-alt-card strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.contact-alt-card p {
  margin: 0;
  color: #2e4b61;
  font-weight: 700;
  line-height: 1.65;
}

.contact-response-panel .contact-side-actions {
  margin-top: 2px;
}

.contact-delivery-section {
  background: #ffffff;
}

.contact-delivery-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  padding: clamp(24px, 4vw, 40px);
}

.contact-delivery-copy h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.14;
}

.contact-delivery-copy p {
  margin: 0 0 22px;
  color: #50657a;
  font-size: 17px;
}

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

.contact-delivery-grid article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid #d9e7ec;
  border-radius: var(--radius);
  background: #f7fbfa;
}

.contact-delivery-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 20px;
}

.contact-delivery-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-company-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.contact-company-card,
.contact-faq-card {
  padding: clamp(24px, 3vw, 34px);
}

.contact-company-card {
  position: relative;
}

.contact-details-anchor {
  position: absolute;
  top: 44px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.contact-company-list {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
}

.contact-company-list div {
  display: grid;
  grid-template-columns: minmax(132px, 0.34fr) minmax(0, 0.66fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid #dce8ed;
}

.contact-company-list dt {
  color: #65788b;
  font-weight: 800;
}

.contact-company-list dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-inline-address {
  margin: 0;
  font-style: normal;
}

.contact-map-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 850;
}

.contact-qr-hover {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--brand-blue);
  cursor: default;
}

.contact-qr-hover::after {
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.contact-qr-hover-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 8;
  display: none;
  width: 156px;
  padding: 10px;
  border: 1px solid #dce8ed;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(17, 34, 48, 0.18);
}

.contact-qr-hover-panel::after {
  position: absolute;
  right: 18px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  border-right: 1px solid #dce8ed;
  border-bottom: 1px solid #dce8ed;
  background: #ffffff;
  content: "";
  transform: rotate(45deg);
}

.contact-qr-hover:hover .contact-qr-hover-panel,
.contact-qr-hover:focus .contact-qr-hover-panel,
.contact-qr-hover:focus-within .contact-qr-hover-panel,
.contact-qr-hover:focus-visible .contact-qr-hover-panel {
  display: block;
}

.contact-qr-hover-panel img {
  display: block;
  width: 136px;
  height: 136px;
  object-fit: cover;
}

.contact-qr-dialog {
  position: fixed;
  inset: 0;
  width: min(360px, calc(100% - 32px));
  max-width: none;
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 16px;
  color: var(--ink);
  background: transparent;
  box-shadow: 0 24px 64px rgba(15, 49, 69, 0.28);
}

.contact-qr-dialog::backdrop {
  background: rgba(8, 25, 37, 0.68);
  backdrop-filter: blur(3px);
}

.contact-qr-dialog-panel {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 28px 24px 26px;
  border: 1px solid rgba(23, 131, 152, 0.2);
  border-radius: inherit;
  text-align: center;
  background: #ffffff;
}

.contact-qr-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  appearance: none;
  background: #eff7f5;
  cursor: pointer;
}

.contact-qr-dialog-close::before,
.contact-qr-dialog-close::after {
  position: absolute;
  top: 19px;
  left: 11px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.contact-qr-dialog-close::before {
  transform: rotate(45deg);
}

.contact-qr-dialog-close::after {
  transform: rotate(-45deg);
}

.contact-qr-dialog-close:focus-visible {
  outline: 3px solid rgba(23, 131, 152, 0.24);
  outline-offset: 2px;
}

.contact-qr-dialog-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 50%;
  background: #edf7f5;
}

.contact-qr-dialog-icon img {
  width: 30px;
  height: 30px;
}

.contact-qr-dialog h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.25;
}

.contact-qr-dialog p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-qr-dialog-image {
  display: block;
  width: min(236px, 100%);
  height: auto;
  aspect-ratio: 1;
  border: 1px solid #e0ebee;
  border-radius: 10px;
  object-fit: cover;
  background: #ffffff;
}

html.contact-qr-dialog-open {
  overflow: hidden;
}

.contact-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-faq-list details {
  padding: 16px 18px;
  border: 1px solid #d8e7ec;
  border-radius: var(--radius);
  background: #fbfdfd;
}

.contact-faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.contact-faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.about-overview-section {
  background: #ffffff;
}

.about-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.about-narrative h2,
.about-fact-panel h2 {
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
}

.about-body {
  max-width: 820px;
}

.about-body p {
  color: #2c4057;
  font-size: 17px;
  line-height: 1.86;
}

.about-body p + p {
  margin-top: 18px;
}

.about-profile-card {
  align-self: stretch;
  padding: 28px;
  border: 1px solid rgba(18, 127, 145, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 251, 0.98)),
    #ffffff;
  box-shadow: 0 22px 48px rgba(15, 49, 69, 0.1);
}

.about-profile-logo {
  display: block;
  width: min(220px, 58%);
  margin: 0 auto 24px;
}

.about-profile-list {
  display: grid;
  gap: 12px;
}

.about-profile-item {
  display: grid;
  gap: 6px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
}

.about-profile-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-profile-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.about-profile-item strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  word-break: keep-all;
}

.about-profile-item:nth-child(2) strong {
  white-space: nowrap;
  font-size: 15px;
}

.company-location-section {
  background: #ffffff;
}

.company-location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(18, 127, 145, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f6fcfb 0%, #ffffff 62%);
  box-shadow: 0 18px 48px rgba(15, 49, 69, 0.08);
}

.company-location-copy h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.company-location-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.75;
}

.company-location-copy address {
  margin-top: 18px;
  color: var(--ink);
  font-style: normal;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.5;
}

.company-map-card {
  display: grid;
  align-content: end;
  min-height: 220px;
  padding: 26px;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(12, 92, 108, 0.9), rgba(28, 155, 132, 0.84)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 18px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.company-map-card span,
.company-map-card small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.company-map-card strong {
  margin: 8px 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.12;
}

.company-map-embed-shell {
  display: none;
}

.about-proof-section {
  background: linear-gradient(180deg, #f7fbfa 0%, #ffffff 100%);
}

.about-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.about-media {
  position: relative;
  margin: 0;
}

.about-media::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: 0;
  border: 1px solid rgba(23, 131, 152, 0.22);
  content: "";
}

.about-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
  box-shadow: 0 22px 46px rgba(15, 49, 69, 0.12);
}

.about-fact-panel {
  min-width: 0;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.about-stat {
  min-height: 116px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(19, 95, 134, 0.08);
}

.about-stat strong {
  display: block;
  color: var(--brand-blue);
  font-size: 26px;
  line-height: 1.15;
}

.about-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.about-lines-section {
  background: #ffffff;
}

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

.about-line-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 116px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  background: #ffffff;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.about-line-item:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 127, 145, 0.34);
  box-shadow: 0 16px 32px rgba(15, 49, 69, 0.1);
}

.about-line-item strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.about-line-item small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.about-capability-section {
  background: linear-gradient(180deg, #eef8f6 0%, #f8fbfa 100%);
}

.about-support-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

.about-support-intro {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, #0f6e82 0%, #17836d 100%);
  box-shadow: 0 24px 54px rgba(15, 49, 69, 0.16);
}

.about-support-intro .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.about-support-intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.16;
}

.about-support-intro p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.78;
}

.about-support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: auto 0 0;
  padding: 28px 0 0;
  list-style: none;
}

.about-support-list li {
  position: relative;
  padding-left: 18px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.about-support-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f4d25c;
  content: "";
}

.about-support-items {
  display: grid;
  gap: 12px;
}

.about-support-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid rgba(18, 127, 145, 0.55);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 49, 69, 0.07);
}

.about-support-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 7px 10px;
  border: 1px solid rgba(18, 127, 145, 0.18);
  border-radius: 999px;
  color: var(--brand-blue);
  background: #eef8f6;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.about-support-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.28;
}

.about-support-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.product-detail-section {
  padding: 42px 0 28px;
  background: #f7faf9;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(380px, 560px) minmax(0, 1fr);
  grid-template-areas:
    "media copy"
    "secondary secondary"
    "data data";
  gap: 34px;
  align-items: start;
}

.product-detail-media {
  grid-area: media;
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid #dce8eb;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 49, 69, 0.07);
  cursor: zoom-in;
  --zoom-x: 50%;
  --zoom-y: 50%;
  --zoom-scale: 1.85;
}

.product-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: center;
  transform-origin: var(--zoom-x) var(--zoom-y);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-detail-media:hover img,
.product-detail-media.is-zooming img {
  transform: scale(var(--zoom-scale));
  transition-duration: 0.18s;
}

.product-data-card {
  grid-area: data;
  min-width: 0;
  padding: 30px;
  border: 1px solid #dce8eb;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 49, 69, 0.07);
}

.product-data-card h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.16;
}

.product-spec-table-wrap {
  overflow-x: auto;
  border-top: 1px solid #dce8eb;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.product-spec-table th,
.product-spec-table td {
  padding: 14px 0;
  border-bottom: 1px solid #dce8eb;
  vertical-align: top;
}

.product-spec-table th {
  width: 24%;
  padding-right: 18px;
  color: #657686;
  font-weight: 900;
  text-align: left;
}

.product-spec-table td {
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.product-data-card .cta-actions {
  margin-top: 24px;
}

.product-detail-copy {
  grid-area: copy;
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 22px;
  align-self: stretch;
  padding: 26px;
  border: 1px solid #dce8eb;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 49, 69, 0.07);
}

.product-detail-copy-block {
  padding-top: 24px;
  border-top: 1px solid #dce8eb;
}

.product-detail-copy-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.product-detail-copy-block h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.18;
}

.product-detail-copy-block p {
  margin: 0;
  color: #24384c;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.product-detail-copy .cta-actions {
  margin-top: 4px;
}

.product-detail-copy-actions {
  justify-content: flex-end;
  align-self: end;
}

.product-detail-secondary {
  grid-area: secondary;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-detail-secondary .product-detail-copy-block {
  padding: 24px;
  border: 1px solid #dce8eb;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 49, 69, 0.07);
}

.product-detail-secondary .product-detail-copy-block:first-child {
  padding-top: 24px;
  border-top: 1px solid #dce8eb;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-home .card-grid:not(.two) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.product-category-section {
  background: #ffffff;
}

.product-category-header {
  display: block;
  margin-bottom: 44px;
}

.product-category-header h2 {
  color: #05080a;
  font-size: 58px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.home-product-shell {
  display: grid;
  gap: 28px;
}

.home-product-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 42px;
  align-items: center;
  padding: 38px;
  border: 1px solid #dce8eb;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(223, 244, 239, 0.66), rgba(255, 255, 255, 0.92)),
    #ffffff;
  box-shadow: 0 18px 42px rgba(15, 49, 69, 0.08);
}

.home-product-copy {
  max-width: 560px;
}

.home-product-copy h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.12;
}

.home-product-copy p:not(.eyebrow) {
  margin: 0 0 24px;
  color: #526576;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.8;
}

.home-product-visual {
  position: relative;
  min-height: 310px;
}

.home-product-visual-stack {
  position: absolute;
  inset: 0;
}

.home-product-visual-stack img {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 10px solid #ffffff;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(15, 49, 69, 0.16);
}

.home-product-visual-stack img:nth-child(1) {
  top: 0;
  right: 12%;
  z-index: 3;
  width: 56%;
  height: 72%;
}

.home-product-visual-stack img:nth-child(2) {
  bottom: 0;
  left: 4%;
  z-index: 2;
  width: 48%;
  height: 58%;
}

.home-product-visual-stack img:nth-child(3) {
  right: 0;
  bottom: 18px;
  z-index: 1;
  width: 36%;
  height: 46%;
}

.home-product-visual-stack img:nth-child(n+4) {
  display: none;
}

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

.home-product-tile {
  position: relative;
  min-height: 178px;
  padding: 22px 48px 22px 22px;
  border: 1px solid #dce8eb;
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(19, 95, 134, 0.05);
}

.home-product-tile::after {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: var(--brand-blue);
  font-size: 22px;
  line-height: 1;
  content: "→";
  transition: transform 0.18s ease;
}

.home-product-tile:hover {
  border-color: rgba(40, 160, 116, 0.46);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.home-product-tile:hover::after {
  transform: translateX(4px);
}

.home-product-tile-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-product-tile-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.home-product-icon {
  display: inline-flex;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 179, 159, 0.36);
  border-radius: var(--radius);
  background: #effaf7;
}

.home-product-icon img {
  display: block;
  width: 28px;
  height: 28px;
}

.home-product-tile h3 {
  flex: 1;
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.home-product-tile p {
  margin: 0;
  color: #667789;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.guide-anchor-nav {
  position: sticky;
  top: var(--site-header-height);
  z-index: 24;
  border-top: 1px solid rgba(220, 231, 236, 0.78);
  border-bottom: 1px solid rgba(220, 231, 236, 0.9);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 49, 69, 0.08);
}

.guide-anchor-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 9px 0;
  scrollbar-width: none;
}

.guide-anchor-scroll::-webkit-scrollbar {
  display: none;
}

.guide-anchor-scroll a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 13px;
  border: 1px solid rgba(23, 131, 152, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.guide-anchor-scroll a:hover {
  color: #ffffff;
  text-decoration: none;
  border-color: var(--brand-blue);
  background: var(--brand-blue);
}

.guide-anchor-target,
.faq-anchor-target,
.insight-anchor-target {
  scroll-margin-top: calc(var(--site-header-height) + var(--guide-anchor-height) + 16px);
}

.buying-overview-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
}

.buying-step-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.buying-step-card {
  position: relative;
  min-height: 238px;
  padding: 20px 16px 22px;
  border: 1px solid rgba(220, 231, 236, 0.96);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 49, 69, 0.06);
}

.buying-step-card::after {
  position: absolute;
  top: 36px;
  right: -13px;
  z-index: 2;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(23, 131, 152, 0.28);
  border-radius: 50%;
  color: var(--brand-blue);
  background: #ffffff;
  content: ">";
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.buying-step-card:last-child::after {
  display: none;
}

.buying-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #123046;
  background: #f4d25c;
  font-size: 14px;
  font-weight: 900;
}

.buying-step-card h3,
.guide-process-node h3,
.guide-inquiry-item h3,
.guide-delivery-card h3,
.guide-shipping-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.28;
}

.buying-step-card strong,
.guide-process-node strong,
.guide-inquiry-item strong,
.guide-delivery-card strong,
.guide-shipping-card strong {
  display: block;
  margin-top: 6px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.buying-step-card p,
.guide-process-node p,
.guide-inquiry-item p,
.guide-delivery-card p,
.guide-shipping-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.buying-production-section {
  overflow: hidden;
}

.guide-production-canvas {
  position: relative;
  padding: 34px 28px 32px;
  overflow: hidden;
  border: 1px solid rgba(205, 224, 228, 0.95);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 250, 0.96)),
    linear-gradient(90deg, rgba(23, 131, 152, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 131, 152, 0.05) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  box-shadow: 0 18px 42px rgba(15, 49, 69, 0.08);
}

.guide-flow-lines {
  position: absolute;
  inset: 30px 18px;
  width: calc(100% - 36px);
  height: calc(100% - 60px);
  pointer-events: none;
}

.guide-flow-lines marker path {
  fill: var(--brand-blue);
}

.guide-flow-line {
  fill: none;
  stroke: rgba(23, 131, 152, 0.72);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-icon-set-tabler .guide-flow-line {
  marker-end: url("#guide-flow-arrow-tabler");
}

.guide-production-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 54px 18px;
  align-items: center;
}

.guide-process-node {
  position: relative;
  display: grid;
  min-height: 142px;
  padding: 13px 12px 12px;
  place-items: center;
  border: 1px solid rgba(18, 127, 145, 0.24);
  border-radius: var(--radius);
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(15, 49, 69, 0.07);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.guide-process-node:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 127, 145, 0.42);
  box-shadow: 0 16px 30px rgba(15, 49, 69, 0.11);
}

.guide-process-node:nth-child(1),
.guide-process-node:nth-child(2),
.guide-process-node:nth-child(3),
.guide-process-node:nth-child(4),
.guide-process-node:nth-child(5) {
  grid-row: 1;
}

.guide-process-node:nth-child(1) { grid-column: 1; }
.guide-process-node:nth-child(2) { grid-column: 2; }
.guide-process-node:nth-child(3) { grid-column: 3; }
.guide-process-node:nth-child(4) { grid-column: 4; }
.guide-process-node:nth-child(5) { grid-column: 5; }
.guide-process-node:nth-child(6) { grid-column: 6; grid-row: 2; }
.guide-process-node:nth-child(7) { grid-column: 5; grid-row: 2; }
.guide-process-node:nth-child(8) { grid-column: 4; grid-row: 2; }
.guide-process-node:nth-child(9) { grid-column: 3; grid-row: 2; }
.guide-process-node:nth-child(10) { grid-column: 2; grid-row: 2; }
.guide-process-node:nth-child(11) { grid-column: 1; grid-row: 2; }

.guide-process-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 42px;
  margin-bottom: 9px;
  border: 2px solid rgba(23, 131, 152, 0.28);
  border-radius: 12px;
  color: var(--brand-blue);
  background: #effbf8;
}

.guide-process-icon::before {
  position: absolute;
  content: "";
  opacity: 0.55;
}

.guide-process-node h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.22;
}

.guide-process-node strong {
  display: block;
  margin-top: 3px;
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.22;
}

.guide-process-node p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.process-icon-set-tabler .guide-process-icon {
  overflow: hidden;
  border-color: rgba(18, 127, 145, 0.3);
  background:
    radial-gradient(circle at 80% 18%, rgba(14, 139, 158, 0.12) 0 4px, transparent 5px),
    #f1fbf8;
}

.process-icon-set-tabler .guide-process-icon::before,
.process-icon-set-tabler .guide-process-icon::after {
  display: none;
}

.process-icon-set-tabler .guide-process-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.guide-tail-hole-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
}

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

.tail-guide-block {
  overflow: hidden;
  border: 1px solid rgba(7, 98, 54, 0.24);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 49, 69, 0.06);
}

.tail-guide-block-wide {
  grid-column: 1 / -1;
}

.tail-guide-block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(205, 224, 228, 0.76);
}

.tail-guide-block-head span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, #075c35, #0f8b64);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.tail-guide-block-head h3 {
  margin: 0;
  color: #075c35;
  font-size: 20px;
  line-height: 1.18;
}

.tail-guide-block-head p {
  margin: 0 0 0 auto;
  color: #32485a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.tail-guide-card-grid,
.tail-hole-grid,
.tail-example-grid,
.tail-application-grid {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.tail-guide-card-grid-six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.tail-hole-grid,
.tail-example-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.tail-guide-card,
.tail-hole-card,
.tail-example-grid article,
.tail-application-grid article {
  display: grid;
  align-content: start;
  justify-items: center;
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid rgba(205, 224, 228, 0.9);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
  text-align: center;
}

.tail-guide-card h4,
.tail-hole-card h4,
.tail-application-grid h4 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.28;
}

.tail-guide-card p,
.tail-hole-card p,
.tail-application-grid p {
  margin: 8px 0 0;
  color: #66798b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.tail-example-grid article {
  gap: 8px;
}

.tail-example-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

.tail-guide-image,
.tail-hole-image,
.tail-example-image {
  display: block;
  width: 100%;
  border: 1px solid rgba(205, 224, 228, 0.76);
  border-radius: 10px;
  background: #f8fbfa;
  object-fit: contain;
}

.tail-guide-image {
  max-width: 170px;
  aspect-ratio: 17 / 11;
}

.tail-hole-image {
  max-width: 142px;
  aspect-ratio: 17 / 11;
}

.tail-example-image {
  max-width: 154px;
  aspect-ratio: 17 / 11;
}

.tail-app-image {
  display: block;
  width: 92px;
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.tail-notes-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 14px;
}

.tail-notes-layout ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tail-notes-layout li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.58;
}

.tail-notes-layout li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  color: #0f8b64;
  content: "✓";
}

.tail-notes-layout aside {
  padding: 16px;
  border-left: 4px solid #26b99a;
  border-radius: 10px;
  background: #eefaf6;
}

.tail-notes-layout aside strong {
  display: block;
  color: #075c35;
  font-size: 17px;
  line-height: 1.3;
}

.tail-notes-layout aside p {
  margin: 8px 0 0;
  color: #33485a;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.62;
}

.guide-size-section {
  background: #f7fbfa;
}

.tube-size-reference-card {
  padding: 22px;
  border: 1px solid rgba(205, 224, 228, 0.95);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 49, 69, 0.06);
}

.tube-size-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.tube-size-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(23, 131, 152, 0.2);
  border-radius: 999px;
  color: var(--brand-blue);
  background: #effbf8;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.tube-size-tool {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 18px;
  align-items: start;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(23, 131, 152, 0.18);
  border-radius: 10px;
  background: #fbfdfc;
}

.tube-size-tool-copy h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.24;
}

.tube-size-tool-copy p {
  margin: 0;
  color: #40566a;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.65;
}

.tube-size-tool-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tube-size-tool-controls label {
  display: grid;
  gap: 7px;
  color: #33485a;
  font-size: 13px;
  font-weight: 900;
}

.tube-size-tool-controls input,
.tube-size-tool-controls select {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(205, 224, 228, 0.95);
  border-radius: 10px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-weight: 850;
}

.tube-size-tool-result {
  grid-column: 1 / -1;
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 131, 152, 0.14);
  border-radius: 10px;
  background: #eefaf6;
}

.tube-size-tool-result p {
  margin: 0;
  color: #33485a;
  font-size: 14px;
  font-weight: 820;
  line-height: 1.55;
}

.tube-size-tool-result ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.tube-size-tool-result li {
  padding: 8px 10px;
  border: 1px solid rgba(23, 131, 152, 0.15);
  border-radius: 999px;
  color: var(--ink);
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.tube-size-tool-result .tube-size-tool-group + .tube-size-tool-group {
  margin-top: 12px;
}

.tube-size-disclaimer {
  margin: 0 0 16px;
  padding: 16px 18px;
  border-left: 4px solid #26b99a;
  border-radius: 10px;
  color: #2c4057;
  background: #eefaf6;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.62;
}

.tube-size-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  -webkit-overflow-scrolling: touch;
}

.tube-size-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  text-align: right;
}

.tube-size-table caption {
  padding: 12px 16px;
  color: var(--muted);
  background: #fbfdfc;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
}

.tube-size-table th,
.tube-size-table td {
  min-width: 78px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  white-space: nowrap;
}

.tube-size-table th:last-child,
.tube-size-table td:last-child {
  border-right: 0;
}

.tube-size-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #ffffff;
  background: #0d3f4f;
  font-weight: 900;
}

.tube-size-table thead th:first-child {
  left: 0;
  z-index: 4;
  text-align: left;
}

.tube-size-table thead th.tube-size-axis {
  width: 104px;
  min-width: 104px;
  height: 58px;
  padding: 0;
  overflow: hidden;
}

.tube-size-axis::after {
  position: absolute;
  inset: 8px 10px;
  background: linear-gradient(to top right, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.62) 50%, transparent calc(50% + 0.5px));
  content: "";
  pointer-events: none;
}

.tube-size-axis-x,
.tube-size-axis-y {
  position: absolute;
  z-index: 1;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.tube-size-axis-x {
  top: 10px;
  right: 12px;
}

.tube-size-axis-y {
  bottom: 10px;
  left: 12px;
}

.tube-size-axis-mobile {
  display: none;
}

.tube-size-table tbody th {
  position: sticky;
  left: 0;
  z-index: 3;
  color: var(--brand-blue);
  background: #f6fbfa;
  font-weight: 900;
  text-align: left;
}

.tube-size-table tbody tr:nth-child(even) td {
  background: #fbfdfc;
}

.tube-size-table tbody td {
  font-weight: 800;
}

.tube-size-table .tube-size-unavailable {
  color: #8aa0ad;
  background: #f2f6f7;
  font-weight: 900;
  text-align: center;
}

.tube-size-table tbody tr:nth-child(even) .tube-size-unavailable {
  background: #edf4f5;
}

/* Packaging guide */
.guide-inquiry-section {
  background: #ffffff;
}

.guide-inquiry-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.guide-inquiry-copy {
  position: sticky;
  top: calc(var(--site-header-height) + var(--guide-anchor-height) + 24px);
}

.guide-inquiry-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
}

.guide-inquiry-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #2c4057;
  font-size: 17px;
  line-height: 1.78;
}

.guide-tip-box {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px dashed rgba(23, 131, 152, 0.36);
  border-radius: var(--radius);
  color: #2c4057;
  background: #f3fbf8;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.62;
}

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

.guide-inquiry-item {
  min-height: 178px;
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 4px solid rgba(23, 131, 152, 0.62);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 49, 69, 0.05);
}

.guide-domestic-section {
  background: #f7fbfa;
}

.guide-domestic-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.guide-domestic-step {
  position: relative;
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(23, 131, 152, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 49, 69, 0.06);
}

.guide-domestic-step:not(:last-child)::after {
  position: absolute;
  top: 42px;
  right: -13px;
  z-index: 2;
  color: var(--brand-blue);
  content: ">";
  font-size: 22px;
  font-weight: 900;
}

.guide-domestic-step span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
}

.guide-domestic-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

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

.guide-delivery-card,
.guide-shipping-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 49, 69, 0.06);
}

.guide-shipping-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 34px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
}

.guide-requirements-panel {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(23, 131, 152, 0.22);
  border-radius: var(--radius);
  background: #ffffff;
}

.guide-requirements-panel h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.guide-requirements-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.guide-shipping-table-section {
  background: #ffffff;
}

.guide-shipping-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 49, 69, 0.06);
}

.guide-shipping-table-head,
.guide-shipping-row {
  display: grid;
  grid-template-columns: 0.7fr 1.15fr 1.15fr 1fr;
}

.guide-shipping-table-head {
  color: #ffffff;
  background: var(--dark);
  font-weight: 900;
}

.guide-shipping-table-head span,
.guide-shipping-row strong,
.guide-shipping-row p {
  margin: 0;
  padding: 16px;
  border-right: 1px solid rgba(220, 231, 236, 0.86);
}

.guide-shipping-table-head span:last-child,
.guide-shipping-row p:last-child {
  border-right: 0;
}

.guide-shipping-row {
  border-top: 1px solid var(--line);
}

.guide-shipping-row strong {
  color: var(--brand-blue);
  font-size: 16px;
  line-height: 1.45;
}

.guide-shipping-row p {
  color: #2c4057;
  font-size: 15px;
  line-height: 1.58;
}

.guide-table-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.62;
}

.knowledge-faq-group {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(15, 49, 69, 0.05);
}

.knowledge-faq-group-head {
  margin: 0 0 14px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
}

.knowledge-faq-group-head h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.knowledge-faq-group-head p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* FAQ and content lists */
.knowledge-articles-section {
  background: #ffffff;
}

.faq-page-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.faq-page-sidebar {
  position: sticky;
  top: calc(var(--site-header-height) + 28px);
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(15, 49, 69, 0.06);
}

.faq-page-sidebar h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.faq-page-sidebar > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-page-jump-list {
  display: grid;
  gap: 2px;
  padding: 6px 0 6px 14px;
  border-left: 2px solid rgba(23, 131, 152, 0.18);
}

.faq-page-jump-list a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.faq-page-jump-list a::before {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 8px;
  height: 8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: rgba(23, 131, 152, 0.5);
  box-shadow: 0 0 0 1px rgba(23, 131, 152, 0.18);
  content: "";
  transform: translateY(-50%);
}

.faq-page-jump-list a:hover {
  color: var(--brand-blue);
  background: rgba(35, 188, 168, 0.08);
}

.faq-page-jump-list a:hover::before {
  background: var(--brand-blue);
}

.faq-page-groups {
  display: grid;
  gap: 22px;
  max-width: 1120px;
}

.faq-page-group {
  position: relative;
}

.faq-page-group .knowledge-faq-group-head h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.2;
}

.faq-answer-list {
  display: grid;
  gap: 0;
}

.faq-answer-card {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.faq-answer-card:first-child {
  border-top: 0;
  padding-top: 4px;
}

.faq-answer-mark {
  grid-row: 1 / span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand-blue);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.faq-answer-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.38;
}

.faq-answer-card p {
  margin: 0;
  color: #51677c;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.78;
}

.card,
.article-card,
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(19, 95, 134, 0.05);
}

.article-card {
  overflow: hidden;
  padding: 0;
}

.dark-card {
  color: var(--ink);
  border-color: #d9e9e7;
  background: #ffffff;
}

.card:hover,
.article-card:hover,
.product-card:hover {
  border-color: rgba(40, 160, 116, 0.46);
  text-decoration: none;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-color: #e5ecef;
}

.product-card h3,
.product-card p,
.product-card .meta,
.product-card .card-link {
  margin-right: 22px;
  margin-left: 22px;
}

.product-card h3 {
  margin-top: 20px;
  display: -webkit-box;
  min-height: 52px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card p {
  display: -webkit-box;
  min-height: 78px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card .meta {
  margin-bottom: 0;
}

.product-card .card-link {
  margin-bottom: 22px;
}

.product-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, rgba(23, 131, 152, 0.98), rgba(23, 131, 152, 0));
  content: "";
  opacity: 0;
  transition: opacity 0.2s ease;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card:hover .product-thumb img {
  transform: scale(1.045);
}

.card h3,
.article-card h3,
.product-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.dark-card h3,
.dark-card p {
  color: var(--ink);
}

.card p,
.article-card p,
.product-card p {
  margin: 0;
  color: var(--muted);
}

.card .meta,
.article-card .meta,
.product-card .meta {
  margin-top: auto;
  padding-top: 18px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  min-height: 36px;
  margin-top: 14px;
  padding: 7px 12px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--brand-blue);
  font-size: 13px;
  font-weight: 700;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.category-tabs a {
  padding: 8px 12px;
  border: 1px solid #d9e9e7;
  border-radius: var(--radius);
  color: var(--brand-blue);
  background: #ffffff;
  font-weight: 700;
}

.category-tabs a:hover {
  color: #ffffff;
  background: var(--brand-blue);
  text-decoration: none;
}

.product-thumb {
  display: grid;
  height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 36%, #ffffff 0%, #ffffff 23%, transparent 24%),
    linear-gradient(145deg, #eef4f3, #f9fbfa);
  place-items: center;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  padding: 0;
  transition: transform 0.22s ease;
}

.product-thumb-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  color: var(--brand-blue);
  font-weight: 700;
  background:
    linear-gradient(90deg, transparent 46%, rgba(214, 168, 79, 0.28) 46%, rgba(214, 168, 79, 0.28) 54%, transparent 54%),
    var(--cream-deep);
  place-items: center;
}

.product-category-nav {
  border-bottom: 1px solid #dce8eb;
  background: #ffffff;
  box-shadow: 0 9px 26px rgba(15, 49, 69, 0.035);
}

.product-category-nav-scroll {
  display: flex;
  gap: 10px;
  padding: 14px 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.product-category-nav-scroll::-webkit-scrollbar {
  display: none;
}

.product-category-nav a {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid #d7e5e8;
  border-radius: 999px;
  color: #33485a;
  background: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.product-category-nav a:hover,
.product-category-nav a[aria-current="page"] {
  color: var(--brand-blue);
  border-color: rgba(23, 131, 152, 0.42);
  background: #eef7f7;
  text-decoration: none;
}

.product-category-nav a[aria-current="page"] {
  box-shadow: inset 0 0 0 1px rgba(23, 131, 152, 0.14);
}

.product-catalog-section {
  padding: 36px 0 74px;
  background: #f7faf9;
}

.product-catalog-toolbar {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dce8eb;
}

.product-catalog-toolbar > div {
  min-width: 0;
}

.product-catalog-toolbar h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.15;
}

.product-catalog-toolbar p:not(.eyebrow) {
  max-width: 760px;
  margin: 8px 0 0;
  color: #657686;
  font-size: 15px;
  line-height: 1.7;
}

.product-catalog-count {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(214, 168, 79, 0.52);
  border-radius: 999px;
  color: #7a6126;
  background: #fffaf0;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.product-browser {
  display: grid;
  gap: 18px;
}

.product-refine {
  display: grid;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid #dce8eb;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 49, 69, 0.05);
}

.product-refine-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-refine-title {
  margin: 0;
  color: #18b59f;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.product-refine-summary-count {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid #d7e5e8;
  border-radius: 999px;
  color: #52677a;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.product-refine-panel {
  display: grid;
  gap: 10px;
}

.product-refine-section {
  display: grid;
  gap: 10px;
}

.product-refine-section-title {
  margin: 0;
  color: #33485a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.product-refine-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.product-refine-group {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  padding: 0;
  border: 0;
  margin: 0;
}

.product-refine-group:first-child {
  padding-top: 0;
  border-top: 0;
}

.product-refine-group legend {
  min-width: 0;
  margin-right: 1px;
  color: #33485a;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.product-refine-group button,
.product-refine-reset {
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid #d7e5e8;
  border-radius: 999px;
  color: #42576a;
  background: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.product-refine-group button:hover,
.product-refine-group button.is-active,
.product-refine-reset:hover {
  color: var(--brand-blue);
  border-color: rgba(23, 131, 152, 0.42);
  background: #eef7f7;
}

.product-refine-group button.is-active {
  box-shadow: inset 0 0 0 1px rgba(23, 131, 152, 0.18);
}

.product-refine-advanced {
  border-top: 1px solid #e8f0f1;
  padding-top: 10px;
}

.product-refine-advanced summary {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border: 1px solid #d7e5e8;
  border-radius: 999px;
  color: var(--brand-blue);
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.product-refine-advanced summary::-webkit-details-marker {
  display: none;
}

.product-refine-advanced summary::after {
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--brand-blue);
  border-bottom: 2px solid var(--brand-blue);
  content: "";
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.product-refine-advanced[open] summary::after {
  transform: rotate(-135deg);
}

.product-refine-advanced .product-refine-groups {
  margin-top: 10px;
}

.product-refine-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #e8f0f1;
}

.product-sort {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #33485a;
  font-size: 13px;
  font-weight: 900;
}

.product-sort select {
  min-height: 30px;
  padding: 5px 32px 5px 10px;
  border: 1px solid #d7e5e8;
  border-radius: 999px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.product-refine-status {
  margin-left: auto;
  color: #657686;
  font-size: 12px;
  font-weight: 800;
}

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

.product-catalog-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dfe8ec;
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 49, 69, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.product-catalog-card[hidden],
.product-catalog-card.is-hidden {
  display: none !important;
}

.product-catalog-card:hover {
  border-color: rgba(23, 131, 152, 0.42);
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(15, 49, 69, 0.1);
  transform: translateY(-2px);
}

.product-catalog-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1000 / 650;
  background: #edf4f3;
}

.product-catalog-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.24s ease;
}

.product-catalog-card:hover .product-catalog-image img {
  transform: scale(1.035);
}

.product-catalog-body {
  display: grid;
  gap: 9px;
  padding: 14px 15px 16px;
}

.product-catalog-meta {
  min-width: 0;
  overflow: hidden;
  color: #168575;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-catalog-card strong {
  display: -webkit-box;
  min-height: 44px;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-catalog-desc {
  display: -webkit-box;
  min-height: 40px;
  overflow: hidden;
  color: #657686;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-catalog-link {
  margin-top: 2px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
}

.product-category-seo {
  padding: 72px 0;
  background: #ffffff;
}

.product-category-seo-inner,
.product-category-guide {
  display: grid;
  gap: 28px;
}

.product-category-guide + .product-category-guide,
.product-category-faq {
  padding-top: 34px;
  border-top: 1px solid #dce8eb;
}

.product-category-guide-head {
  max-width: 880px;
}

.product-category-guide-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.2;
}

.product-category-guide-head p {
  margin: 12px 0 0;
  color: #5f7282;
  font-size: 16px;
  line-height: 1.8;
}

.product-category-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-category-guide-card {
  padding: 22px;
  border: 1px solid #dce8eb;
  border-radius: var(--radius);
  background: #f8fbfa;
}

.product-category-guide-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.4;
}

.product-category-guide-card h3 a {
  color: inherit;
}

.product-category-guide-card p {
  margin: 10px 0 0;
  color: #5f7282;
  font-size: 14px;
  line-height: 1.75;
}

.product-category-guide-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
}

.product-category-faq {
  display: grid;
  gap: 24px;
}

.product-category-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-category-faq-list details {
  align-self: start;
  padding: 18px 20px;
  border: 1px solid #dce8eb;
  border-radius: var(--radius);
  background: #ffffff;
}

.product-category-faq-list summary {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  cursor: pointer;
}

.product-category-faq-list p {
  margin: 12px 0 0;
  color: #5f7282;
  font-size: 14px;
  line-height: 1.75;
}

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

.workflow-step {
  padding: 20px;
  border: 1px solid #d9e9e7;
  border-radius: var(--radius);
  background: #ffffff;
}

.workflow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 42px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 2px solid rgba(23, 131, 152, 0.3);
  border-radius: 12px;
  background:
    radial-gradient(circle at 80% 18%, rgba(14, 139, 158, 0.12) 0 4px, transparent 5px),
    #f1fbf8;
}

.workflow-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.workflow-step h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  padding: 38px 0 30px;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 30%, rgba(40, 160, 116, 0.16), transparent 28%),
    linear-gradient(135deg, #eef8f6, #ffffff 52%, #edf5fb);
  border-bottom: 1px solid rgba(19, 95, 134, 0.1);
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.page-hero p {
  max-width: 760px;
  color: #536575;
  font-size: 16px;
  line-height: 1.65;
}

.page-hero .eyebrow {
  margin-bottom: 7px;
  font-size: 12px;
}

.page-hero .breadcrumb {
  margin-bottom: 12px;
  font-size: 13px;
}

.page-hero .hero-actions {
  margin-top: 20px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #6a7c8c;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--brand-blue);
}

.detail-media {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(19, 95, 134, 0.06), rgba(40, 160, 116, 0.08)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(19, 95, 134, 0.12);
}

.detail-media img {
  width: 100%;
  max-height: 520px;
  border-radius: var(--radius);
  object-fit: contain;
}

.content-image-block {
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid rgba(205, 224, 228, 0.96);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 49, 69, 0.08);
}

.content-image-block img {
  display: block;
  width: 100%;
  height: auto;
  background: #f8fbfa;
}

.content-image-block figcaption {
  padding: 12px 16px 14px;
  border-top: 1px solid rgba(220, 231, 236, 0.9);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.detail-placeholder {
  display: grid;
  min-height: 320px;
  border-radius: var(--radius);
  color: var(--brand-blue);
  font-weight: 700;
  background:
    linear-gradient(90deg, transparent 46%, rgba(214, 168, 79, 0.26) 46%, rgba(214, 168, 79, 0.26) 54%, transparent 54%),
    var(--cream-deep);
  place-items: center;
}

.article-body,
.detail-body {
  min-width: 0;
  max-width: 780px;
  overflow-wrap: anywhere;
}

.article-body iframe,
.article-body video {
  max-width: 100%;
}

.article-body p,
.detail-body p {
  margin: 0 0 18px;
}

.editorial-article {
  color: #263b4c;
  font-size: 17px;
  line-height: 1.82;
}

.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 18px;
  color: #607385;
  font-size: 13px;
  font-weight: 750;
}

.article-hero-meta > * {
  display: inline-flex;
  align-items: center;
}

.article-hero-meta > * + *::before {
  width: 3px;
  height: 3px;
  margin: 0 10px;
  border-radius: 50%;
  background: #9aabb8;
  content: "";
}

.article-content {
  padding: 58px 0 72px;
  background: #fbfdfc;
}

.article-layout {
  width: min(100% - 40px, 880px);
}

.article-layout .article-body {
  max-width: none;
}

.editorial-article > h2 {
  margin: 46px 0 16px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.24;
}

.editorial-article > h3 {
  margin: 30px 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.34;
}

.editorial-article > ul,
.editorial-article > ol {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 24px;
}

.editorial-article > blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--brand-green);
  color: #3e5263;
  background: #eef8f5;
}

.editorial-article a {
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(23, 131, 152, 0.35);
  text-underline-offset: 3px;
}

.source-citation a {
  margin-left: 3px;
  font-size: 11px;
  text-decoration: none;
}

.article-sources {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid #dce8eb;
}

.article-sources h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

.article-sources ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding-left: 24px;
  color: #617485;
  font-size: 14px;
  line-height: 1.6;
}

.article-sources ol.is-single {
  padding-left: 0;
  list-style: none;
}

.article-sources li {
  padding-left: 3px;
}

.article-source-title {
  display: inline;
  color: var(--brand-blue);
  font-size: 16px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.article-source-title span {
  display: inline-block;
  margin-left: 4px;
  font-size: 13px;
  text-decoration: none;
}

.article-source-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  margin-top: 5px;
  color: #748594;
  font-size: 13px;
  font-weight: 650;
}

.article-source-meta > * + *::before {
  margin: 0 8px;
  color: #a9b6bf;
  content: "·";
}

.summary {
  margin: 0 0 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--brand-green);
  color: #344054;
  background: var(--cream);
}

.spec-list,
.side-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.side-list {
  padding-left: 18px;
}

.spec-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.spec-row dt {
  color: var(--muted);
  font-weight: 700;
}

.spec-row dd {
  margin: 0;
}

.side-panel {
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(19, 95, 134, 0.08);
}

.side-panel h2,
.side-panel h3 {
  margin-top: 0;
  color: var(--ink);
}

.insight-index-section {
  padding: 62px 0 74px;
  background: #f7faf9;
}

.insight-knowledge-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(40, 160, 116, 0.1), transparent 28%),
    #ffffff;
}

.insight-news-section {
  border-top: 1px solid #e0eaec;
}

.insight-editorial-section {
  padding-top: 48px;
  border-top: 1px solid #e0eaec;
  background: #ffffff;
}

.insight-section-header {
  max-width: 790px;
  margin-bottom: 30px;
}

.insight-section-header .eyebrow {
  margin-bottom: 8px;
}

.insight-section-header h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
}

.insight-section-header > p:last-child {
  margin: 0;
  color: #607385;
  font-size: 17px;
  line-height: 1.72;
}

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

.insight-knowledge-section .insight-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-card-grid .article-card {
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  border-color: #dce8eb;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 49, 69, 0.07);
}

.insight-card-grid .article-card.is-featured {
  display: grid;
  min-height: 390px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
}

.article-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e8f2f1;
}

.article-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.article-card:hover .article-card-media img {
  transform: scale(1.035);
}

.article-card-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(40, 160, 116, 0.24), transparent 25%),
    linear-gradient(135deg, #dfeeed 0%, #f4f8f6 48%, #dbeaf0 100%);
  place-items: center;
}

.article-card-placeholder::before,
.article-card-placeholder::after,
.article-card-placeholder > span {
  position: absolute;
  border: 2px solid rgba(23, 131, 152, 0.28);
  content: "";
}

.article-card-placeholder::before {
  width: 25%;
  height: 62%;
  border-radius: 13px 13px 7px 7px;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(-9deg);
}

.article-card-placeholder::after {
  bottom: 14%;
  width: 36%;
  height: 13%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
}

.article-card-placeholder > span {
  top: -18%;
  right: -7%;
  width: 48%;
  height: 70%;
  border-color: rgba(40, 160, 116, 0.16);
  border-radius: 50%;
}

.article-card-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 28px 28px;
}

.article-card.is-featured .article-card-copy {
  justify-content: center;
  padding: 42px clamp(34px, 4vw, 54px);
}

.article-card.is-featured .article-card-media {
  height: 100%;
  aspect-ratio: auto;
}

.article-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-bottom: 14px;
  color: #6b7d8b;
  font-size: 12px;
  font-weight: 800;
}

.article-card-meta > * + *::before {
  margin: 0 8px;
  color: #a9b6bf;
  content: "·";
}

.article-card-featured {
  color: var(--brand-green);
  text-transform: uppercase;
}

.insight-card-grid .article-card h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.3;
}

.insight-card-grid .article-card.is-featured h3 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.18;
}

.article-card-description {
  display: -webkit-box;
  overflow: hidden;
  color: #5a6d7d;
  font-size: 15px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 850;
}

.article-card-link span {
  transition: transform 0.2s ease;
}

.article-card:hover .article-card-link span {
  transform: translateX(4px);
}

.article-card.track-ai_marketing {
  border-color: rgba(40, 160, 116, 0.22);
}

.article-card.track-ai_marketing .article-card-meta,
.article-card.track-ai_marketing .article-card-link {
  color: #19856f;
}

.article-card.track-ai_marketing .article-card-placeholder {
  background:
    radial-gradient(circle at 76% 20%, rgba(35, 188, 168, 0.3), transparent 26%),
    linear-gradient(145deg, #deeee9 0%, #f7faf4 52%, #e2edf2 100%);
}

.editorial-article.track-ai_marketing > p:first-child {
  margin-bottom: 34px;
  padding: 22px 24px;
  border-left: 4px solid var(--brand-green);
  border-radius: 0 12px 12px 0;
  color: #334d5e;
  background: #eef8f5;
  font-size: 18px;
  line-height: 1.8;
}

.editorial-article.track-ai_marketing > h2 {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid #dce9e6;
}

.editorial-article.track-ai_marketing > h2::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-blue));
  content: "";
}

.editorial-article.track-ai_marketing > h3 {
  margin-top: 22px;
  padding: 16px 18px 0;
  border: 1px solid #dce9e6;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: #fbfdfc;
}

.editorial-article.track-ai_marketing > h3 + p {
  margin-top: -12px;
  padding: 0 18px 18px;
  border: 1px solid #dce9e6;
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: #fbfdfc;
}

@media (max-width: 980px) {
  .insight-knowledge-section .insight-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 8px 32px;
  align-items: center;
  padding: 24px clamp(22px, 3.4vw, 38px);
  border: 1px solid rgba(19, 95, 134, 0.12);
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, #127f91 0%, #16836d 100%);
  box-shadow: 0 18px 42px rgba(19, 95, 134, 0.18);
}

.cta-band-copy {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.cta-band-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.24;
}

.cta-band-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--white-soft);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 0;
}

.cta-band-actions .button {
  min-width: 136px;
}

.cta-band .button-primary {
  color: var(--brand-blue);
  background: #ffffff;
}

.cta-band .button-primary:hover {
  filter: none;
  background: #eefaf7;
}

.empty-state {
  padding: 30px;
  border: 1px dashed #b6d5d1;
  border-radius: var(--radius);
  color: var(--muted);
  background: #ffffff;
}

/* Footer */
.site-footer {
  margin-top: 0;
  color: #ffffff;
  background:
    linear-gradient(180deg, #123f51 0%, #0a2c3d 100%),
    #0a2c3d;
}

.footer {
  padding: 28px 0 18px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.48fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.footer-brand-panel {
  display: grid;
  align-content: start;
  max-width: 620px;
}

.footer .footer-brand {
  display: inline-block;
  margin: 0 0 9px;
  color: #ffffff;
  font-size: clamp(21px, 2vw, 25px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.footer-intro {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.62;
}

.footer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  max-width: 650px;
  margin-top: 12px;
}

.footer-details span,
.footer-details a {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.35;
}

.footer-details a:hover {
  color: #ffffff;
}

.footer-social {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.footer-social-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social-link {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  place-items: center;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  border-color: #ffffff;
  color: #123f51;
  background: #ffffff;
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-nav {
  display: grid;
  grid-template-columns: minmax(260px, 1.38fr) minmax(160px, 0.82fr) minmax(120px, 0.58fr);
  gap: clamp(20px, 3.2vw, 38px);
  margin-top: 0;
  padding-top: 0;
}

.footer-link-group {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-link-group h2 {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.25;
}

.footer-link-list {
  display: grid;
  gap: 5px 14px;
}

.footer-link-group-products .footer-link-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-link-list a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.38;
}

.footer-link-list a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

/* Responsive */
@media (min-width: 1121px) and (max-width: 1200px) {
  .hero {
    height: clamp(600px, calc(150vw - 1080px), 720px);
  }
}

@media (max-width: 1120px) {
  :root {
    --site-header-height: 72px;
    --guide-anchor-height: 62px;
  }

  .site-header-shell {
    --header-height: 72px;
  }

  .site-header {
    min-height: 72px;
  }

  .brand-logo-lockup {
    display: block;
    width: clamp(118px, 34vw, 156px);
  }

  .brand-logo-mark {
    display: none;
  }

  .desktop-nav,
  .header-actions,
  .header-search {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-left: 0;
  }

  .mobile-header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
  }

  .mobile-language-menu {
    position: relative;
    z-index: 12;
  }

  .mobile-header-actions .mobile-language-menu > summary {
    display: inline-flex;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0;
    color: var(--brand-blue);
    background: #ffffff;
    box-shadow: none;
    touch-action: manipulation;
  }

  .mobile-header-actions .mobile-language-menu .language-icon {
    width: 24px;
    height: 24px;
    stroke-width: 1.8;
  }

  .mobile-language-panel {
    position: fixed;
    top: calc(var(--site-header-height) + 8px);
    right: 10px;
    left: auto;
    z-index: 110;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(310px, calc(100vw - 36px));
    padding: 10px;
  }

  .mobile-language-panel::before {
    right: 58px;
  }

  .mobile-language-panel a {
    min-height: 50px;
    font-size: 15px;
  }

  .mobile-header-actions .mobile-language-menu > summary:focus-visible,
  .mobile-menu > summary:focus-visible,
  .mobile-nav-parent:focus-visible,
  .mobile-nav-toggle:focus-visible {
    outline: 3px solid rgba(23, 131, 152, 0.34);
    outline-offset: 2px;
  }

  .mobile-menu > summary {
    display: inline-flex;
    width: 44px;
    height: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--brand-blue);
    border-color: var(--line);
    background: #ffffff;
    touch-action: manipulation;
  }

  .mobile-menu-icon,
  .mobile-menu-icon::before,
  .mobile-menu-icon::after,
  .mobile-menu-icon > span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: opacity 0.18s ease, transform 0.18s ease, top 0.18s ease, bottom 0.18s ease;
  }

  .mobile-menu-icon {
    position: relative;
    background: transparent;
  }

  .mobile-menu-icon::before,
  .mobile-menu-icon::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .mobile-menu-icon::before {
    top: -6px;
  }

  .mobile-menu-icon::after {
    bottom: -6px;
  }

  .mobile-menu[open] .mobile-menu-icon > span {
    opacity: 0;
  }

  .mobile-menu[open] .mobile-menu-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .mobile-menu[open] .mobile-menu-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
  }

  .mobile-menu nav {
    position: fixed;
    top: var(--site-header-height);
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 10;
    width: min(440px, 100%);
    max-height: calc(100vh - var(--site-header-height));
    max-height: calc(100dvh - var(--site-header-height));
    align-content: start;
    gap: 0;
    margin: 0;
    padding: 16px 24px 30px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: #ffffff;
    box-shadow: -18px 24px 46px rgba(15, 49, 69, 0.16);
    scrollbar-width: thin;
  }

  .mobile-menu nav > a,
  .mobile-nav-parent {
    display: flex;
    min-height: 56px;
    align-items: center;
    padding: 12px 4px;
    color: var(--ink);
    border-bottom: 1px solid rgba(220, 232, 235, 0.92);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    touch-action: manipulation;
  }

  .mobile-menu nav > a {
    text-decoration: none;
  }

  .mobile-nav-group {
    border: 0;
  }

  .mobile-nav-group-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    border-bottom: 1px solid rgba(220, 232, 235, 0.92);
  }

  .mobile-nav-parent {
    border-bottom: 0;
    text-decoration: none;
  }

  .mobile-nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    color: var(--brand-blue);
    background: transparent;
    cursor: pointer;
    place-items: center;
    touch-action: manipulation;
  }

  .mobile-nav-toggle span {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--brand-blue);
    border-bottom: 2px solid var(--brand-blue);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.18s ease;
  }

  .mobile-nav-group.is-open .mobile-nav-toggle span {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .mobile-subnav[hidden] {
    display: none;
  }

  .mobile-menu nav a:hover,
  .mobile-menu nav a[aria-current] {
    color: var(--brand-blue);
    text-decoration: none;
  }

  .mobile-subnav {
    display: grid;
    gap: 2px;
    padding: 4px 0 12px 16px;
    border-left: 2px solid #dce8eb;
  }

  .mobile-subnav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 9px 10px;
    border-radius: 7px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.35;
  }

  .product-detail-media {
    width: 100%;
    aspect-ratio: 1000 / 650;
  }

  .hero {
    width: 100%;
    height: auto;
    max-height: 600px;
    min-height: 0;
    aspect-ratio: 16 / 9;
    background: #f0eeea;
    overscroll-behavior-x: contain;
    touch-action: pan-y;
  }

  .hero-bg-image {
    object-fit: contain;
    object-position: center center;
    user-select: none;
    -webkit-user-drag: none;
  }

  .hero-bg-image:nth-child(4) {
    object-position: center 48%;
  }

  .guide-anchor-scroll a,
  .category-tabs a,
  .faq-page-jump-list a,
  .product-category-nav a,
  .product-refine-group button,
  .product-refine-reset,
  .product-refine-advanced summary,
  .product-sort select {
    min-height: 44px;
  }

  .button,
  .contact-qr-hover,
  .contact-faq-list summary {
    min-height: 44px;
  }

  .contact-inquiry-form input,
  .contact-inquiry-form select,
  .contact-inquiry-form textarea,
  .tube-size-tool-controls input,
  .tube-size-tool-controls select,
  .product-sort select {
    font-size: 16px;
  }

  .footer-details a,
  .footer-link-list a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 6px 0;
  }

  .footer-social-link {
    width: 44px;
    height: 44px;
  }

  .hero-dots {
    bottom: 16px;
    gap: 2px;
  }

  .hero-dot,
  .hero-dot.is-active {
    position: relative;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .hero-dot::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    border: 2px solid rgba(23, 131, 152, 0.78);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    content: "";
    transform: translate(-50%, -50%);
  }

  .hero-dot.is-active::before {
    background: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(23, 131, 152, 0.18);
  }

  .site-header {
    gap: 8px;
  }

  .brand-name {
    display: none;
  }

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

  .desktop-nav {
    font-size: 17px;
  }

  .desktop-nav .nav-link {
    padding: 0 12px;
  }

  .language-menu summary {
    min-width: 116px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .search-circle {
    width: 36px;
    height: 36px;
  }

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

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

  .product-category-header h2 {
    font-size: 50px;
  }

  .home-product-copy h2 {
    font-size: 38px;
  }

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

  .company-location-card {
    grid-template-columns: 1fr;
  }

  .company-map-card {
    display: none;
  }

  .company-map-embed-shell {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(18, 127, 145, 0.2);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 49, 69, 0.1);
  }

  .company-map-embed {
    display: block;
    width: 100%;
    min-height: 220px;
    aspect-ratio: 16 / 10;
    border: 0;
    pointer-events: none;
  }

  .company-map-open {
    display: grid;
    min-height: 58px;
    align-content: center;
    gap: 3px;
    padding: 10px 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #0f6e82, #17836d);
    text-decoration: none;
  }

  .company-map-open span {
    font-size: 14px;
    font-weight: 900;
  }

  .company-map-open small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;
  }

  .home-product-visual {
    min-height: 280px;
  }

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

  .page-home .card-grid:not(.two) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .tail-guide-card-grid-six,
  .tail-application-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .guide-anchor-nav {
    position: static;
    top: auto;
  }

  .home-company-grid,
  .about-overview,
  .about-proof-grid,
  .faq-page-layout,
  .intro-grid,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy"
      "secondary"
      "data";
  }

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

  .buying-step-card:nth-child(3)::after {
    display: none;
  }

  .guide-production-flow {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding-left: 0;
  }

  .guide-flow-lines {
    display: none;
  }

  .guide-production-flow::before {
    display: none;
  }

  .guide-process-node,
  .guide-process-node:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "title";
    min-width: 0;
    min-height: 112px;
    gap: 8px;
    justify-items: center;
    padding: 12px 8px;
    text-align: center;
  }

  .guide-process-node::before {
    display: none;
  }

  .guide-process-icon {
    grid-area: icon;
    margin: 0;
  }

  .guide-process-node h3 {
    grid-area: title;
    font-size: 14px;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .guide-process-node strong,
  .guide-process-node p {
    display: none;
  }

  .guide-inquiry-layout,
  .contact-inquiry-layout,
  .contact-delivery-panel,
  .contact-company-layout {
    grid-template-columns: 1fr;
  }

  .guide-inquiry-copy {
    position: static;
  }

  .faq-page-sidebar {
    position: static;
  }

  .contact-response-panel {
    position: static;
    min-height: 0;
  }

  .guide-domestic-flow,
  .guide-delivery-grid,
  .guide-shipping-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tail-guide-board {
    grid-template-columns: 1fr;
  }

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

  .tail-notes-layout {
    grid-template-columns: 1fr;
  }

  .guide-domestic-step:nth-child(2)::after {
    display: none;
  }

  .guide-shipping-table-head {
    display: none;
  }

  .guide-shipping-row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .guide-shipping-row strong,
  .guide-shipping-row p {
    padding: 0;
    border-right: 0;
  }

  .guide-shipping-row p {
    margin-top: 12px;
  }

  .guide-shipping-row p::before {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    content: attr(data-label);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .home-company-media::before {
    display: none;
  }

  .about-media::before {
    display: none;
  }

  .about-support-layout {
    grid-template-columns: 1fr;
  }

  .footer-brand-panel {
    max-width: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .card-grid,
  .card-grid.two {
    grid-template-columns: 1fr 1fr;
  }

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

  .page-home .card-grid:not(.two) {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero {
    min-height: 0;
  }

  .floating-contact {
    display: none;
  }

  .tube-size-tool-result ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .cta-band {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .cta-band-actions {
    justify-content: flex-start;
    margin-top: 8px;
  }

  .cta-band-actions .button {
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .section-cta {
    padding: 26px 0 30px;
  }

  .cta-band {
    padding: 22px 18px;
  }

  .cta-band-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
    align-items: stretch;
  }

  .cta-band-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding-right: 8px;
    padding-left: 8px;
    text-align: center;
  }

  .cta-band-actions .button-primary {
    grid-column: 2;
    grid-row: 1;
  }

  .cta-band-actions .button-secondary {
    grid-column: 1;
    grid-row: 1;
  }

  .cta-band-actions .button span {
    display: none;
  }

  .cta-band-actions .button::before {
    content: attr(data-mobile-label);
  }

  .cta-band-actions .button:only-child {
    grid-column: 1 / -1;
  }

  .home-company-actions .button,
  .home-product-copy > .button {
    width: 100%;
  }

  .home-company-actions .button-primary {
    color: var(--brand-blue);
    border-color: var(--line);
    background: #ffffff;
    box-shadow: none;
  }

  .cta-band-copy h2 {
    font-size: 23px;
  }

  .contact-channel-grid,
  .contact-form-grid,
  .contact-delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-channel-card {
    min-height: 0;
  }

  .contact-company-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .about-line-list {
    grid-template-columns: 1fr;
  }

  .tube-size-tool-result ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-qr-hover-panel {
    right: auto;
    left: 0;
  }

  .contact-qr-hover-panel::after {
    right: auto;
    left: 18px;
  }
}

@media (hover: none) {
  .product-detail-media {
    cursor: default;
  }

  .product-detail-media:hover img,
  .product-detail-media.is-zooming img {
    transform: none;
  }
}

@media (max-width: 640px) {
  :root {
    --site-header-height: 68px;
    --guide-anchor-height: 60px;
  }

  .site-header-shell {
    --header-height: 68px;
  }

  html {
    scroll-padding-top: calc(var(--site-header-height) + 12px);
  }

  .site-inner {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 68px;
    gap: 6px;
  }

  .site-header.site-inner {
    width: calc(100% - 20px);
  }

  .mobile-menu nav {
    right: 0;
    left: 0;
    width: 100%;
    padding: 12px 20px 28px;
    border-left: 0;
    box-shadow: 0 18px 36px rgba(15, 49, 69, 0.12);
  }

  .hero {
    height: auto;
    min-height: 0;
  }

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

  .page-hero {
    padding: 26px 0 22px;
  }

  .page-hero h1 {
    margin-bottom: 10px;
    font-size: clamp(28px, 8vw, 32px);
    line-height: 1.12;
  }

  .page-hero .eyebrow {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .page-hero .breadcrumb {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-arrow-prev {
    left: 8px;
  }

  .hero-arrow-next {
    right: 8px;
  }

  .hero-dots {
    bottom: 2px;
    gap: 0;
  }

  .hero-dot,
  .hero-dot.is-active {
    position: relative;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .hero-dot::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border: 2px solid rgba(23, 131, 152, 0.78);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    content: "";
    transform: translate(-50%, -50%);
  }

  .hero-dot.is-active::before {
    background: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(23, 131, 152, 0.18);
  }

  .guide-anchor-nav {
    top: auto;
  }

  .guide-anchor-target,
  .faq-anchor-target,
  .insight-anchor-target {
    scroll-margin-top: calc(var(--site-header-height) + 12px);
  }

  .guide-anchor-scroll {
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-left: -14px;
    padding: 8px 14px;
  }

  .about-overview {
    gap: 28px;
  }

  .contact-channel-section {
    padding: 30px 0 34px;
  }

  .contact-channel-section .section-header {
    margin-bottom: 18px;
  }

  .contact-channel-section .section-header h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .contact-channel-section .section-header p:not(.eyebrow) {
    display: none;
  }

  .contact-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-channel-card,
  .contact-channel-card.is-priority {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 156px;
    align-content: center;
    justify-items: center;
    padding: 16px 9px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
  }

  .contact-channel-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 10px;
  }

  .contact-channel-icon img {
    width: 31px;
    height: 31px;
  }

  .contact-channel-card h3 {
    min-width: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .contact-channel-title-full,
  .contact-channel-email-full,
  .contact-channel-card > p {
    display: none;
  }

  .contact-channel-title-short,
  .contact-channel-email-short {
    display: inline;
  }

  .contact-channel-mobile-value {
    display: inline-flex;
    min-width: 0;
    min-height: 30px;
    max-width: 100%;
    margin-top: 8px;
    padding: 5px 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(23, 131, 152, 0.2);
    border-radius: 999px;
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.3;
    overflow-wrap: anywhere;
    background: rgba(23, 131, 152, 0.055);
  }

  .contact-channel-card[data-contact-channel="email"] .contact-channel-mobile-value {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 10px;
    letter-spacing: -0.02em;
  }

  .contact-channel-card .button,
  .contact-channel-card .contact-channel-note {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: auto;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: inherit;
    color: transparent;
    font-size: 0;
    background: transparent;
    box-shadow: none;
  }

  .contact-channel-card:focus-within {
    border-color: rgba(23, 131, 152, 0.58);
    box-shadow: 0 0 0 3px rgba(23, 131, 152, 0.12);
  }

  .contact-channel-card:active {
    transform: scale(0.985);
  }

  .contact-form-panel,
  .contact-response-panel,
  .contact-company-card,
  .contact-faq-card {
    padding: 22px 18px;
  }

  .button {
    min-height: 48px;
  }

  .contact-inquiry-form input,
  .contact-inquiry-form select {
    min-height: 48px;
  }

  .contact-channel-note,
  .contact-qr-hover,
  .contact-faq-list summary {
    min-height: 44px;
    align-items: center;
  }

  .contact-faq-list summary {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    list-style: none;
  }

  .contact-faq-list summary::-webkit-details-marker {
    display: none;
  }

  .contact-faq-list summary::after {
    width: 8px;
    height: 8px;
    margin: 4px 3px 0 0;
    border-right: 2px solid var(--brand-blue);
    border-bottom: 2px solid var(--brand-blue);
    content: "";
    flex: 0 0 auto;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
  }

  .contact-faq-list details[open] summary::after {
    margin-top: 8px;
    transform: rotate(225deg);
  }

  .contact-response-panel h2 {
    font-size: 28px;
  }

  .contact-form-actions,
  .contact-side-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-actions .button,
  .contact-side-actions .button {
    width: 100%;
  }

  .about-narrative h2,
  .about-fact-panel h2 {
    font-size: 30px;
  }

  .about-profile-card {
    padding: 22px;
  }

  .about-profile-logo {
    width: 180px;
  }

  .about-profile-item:nth-child(2) strong {
    white-space: normal;
  }

  .about-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .about-stat {
    min-width: 0;
    min-height: 96px;
    padding: 16px 14px;
  }

  .about-stat strong {
    font-size: clamp(20px, 6vw, 24px);
    white-space: nowrap;
  }

  .about-stat span {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.35;
  }

  .about-line-item {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
  }

  .about-support-intro {
    padding: 24px 20px;
  }

  .about-support-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0;
    padding-top: 22px;
  }

  .about-support-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .about-support-item span {
    justify-content: flex-start;
    width: max-content;
  }

  .tail-guide-board,
  .tail-notes-layout,
  .guide-shipping-option-grid,
  .guide-requirements-panel ul {
    grid-template-columns: 1fr;
  }

  .buying-step-flow,
  .guide-production-flow,
  .tail-guide-card-grid-six,
  .tail-hole-grid,
  .tail-example-grid,
  .tail-application-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .guide-inquiry-grid,
  .guide-domestic-flow,
  .guide-delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .buying-step-card {
    min-width: 0;
    min-height: 104px;
    align-content: start;
    justify-items: center;
    padding: 11px 6px;
    text-align: center;
  }

  .buying-step-card::after,
  .buying-step-card:nth-child(3)::after,
  .buying-step-card:last-child::after {
    display: none;
  }

  .buying-step-card strong,
  .buying-step-card p,
  .guide-process-node strong,
  .guide-process-node p,
  .guide-inquiry-item strong,
  .guide-inquiry-item p,
  .guide-delivery-card strong,
  .guide-delivery-card p,
  .page-content-list .guide-anchor-target .section-header p:not(.eyebrow),
  .tube-size-tool-copy p {
    display: none;
  }

  .buying-step-index {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
    font-size: 13px;
  }

  .buying-step-card h3 {
    font-size: clamp(12px, 3.5vw, 15px);
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .guide-production-canvas {
    padding: 10px;
  }

  .guide-production-flow {
    position: static;
    padding: 0;
  }

  .guide-production-flow::before {
    display: none;
  }

  .guide-process-node,
  .guide-process-node:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "title";
    min-width: 0;
    min-height: 96px;
    gap: 7px;
    justify-items: center;
    padding: 10px 4px;
    text-align: center;
  }

  .guide-process-node::before {
    display: none;
  }

  .guide-process-icon {
    width: 34px;
    height: 34px;
    margin: 0;
  }

  .guide-process-node h3 {
    font-size: clamp(11px, 3.2vw, 14px);
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .guide-inquiry-item,
  .guide-delivery-card,
  .guide-shipping-card {
    min-height: 0;
    padding: 14px;
  }

  .guide-inquiry-item h3,
  .guide-delivery-card h3 {
    font-size: 15px;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .tail-guide-block-head {
    align-items: center;
    flex-wrap: nowrap;
    padding: 10px 11px;
  }

  .tail-guide-block-head p {
    display: none;
  }

  .tail-guide-block-head span {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .tail-guide-block-head h3 {
    min-width: 0;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .tail-guide-card-grid,
  .tail-hole-grid,
  .tail-example-grid,
  .tail-application-grid,
  .tail-notes-layout {
    padding: 8px;
  }

  .tail-guide-card,
  .tail-hole-card,
  .tail-example-grid article,
  .tail-application-grid article {
    min-width: 0;
    padding: 6px 4px;
  }

  .tail-guide-card > p,
  .tail-hole-card > p {
    display: none;
  }

  .tail-guide-card h4,
  .tail-hole-card h4,
  .tail-application-grid h4,
  .tail-example-grid p {
    margin-top: 7px;
    font-size: clamp(10px, 3vw, 12px);
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .tube-size-reference-card {
    padding: 16px;
  }

  .tube-size-tool,
  .tube-size-tool-controls {
    grid-template-columns: 1fr;
  }

  .tube-size-tool-result ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .tube-size-tool-result li {
    padding: 8px 6px;
    font-size: 12px;
    text-align: center;
  }

  .tube-size-tool {
    padding: 14px;
  }

  .tube-size-table {
    min-width: 920px;
  }

  .tube-size-table th,
  .tube-size-table td {
    min-width: 72px;
    padding: 10px 12px;
  }

  .tube-size-table thead th.tube-size-axis {
    width: 96px;
    min-width: 96px;
    height: auto;
    padding: 10px 12px;
  }

  .tube-size-axis::after,
  .tube-size-axis-x,
  .tube-size-axis-y {
    display: none;
  }

  .tube-size-axis-mobile {
    display: inline;
  }

  .guide-domestic-step {
    min-width: 0;
    min-height: 104px;
    padding: 14px 9px;
    text-align: center;
  }

  .guide-domestic-step:not(:last-child)::after,
  .guide-domestic-step:nth-child(2)::after,
  .guide-domestic-step:last-child::after {
    display: none;
  }

  .guide-domestic-step h3 {
    font-size: 14px;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .guide-inquiry-copy h2 {
    font-size: 30px;
  }

  .product-detail-section {
    padding: 30px 0 22px;
  }

  .product-detail-layout {
    gap: 18px;
  }

  .product-detail-secondary {
    gap: 16px;
  }

  .product-detail-copy-actions {
    justify-content: flex-start;
  }

  .product-detail-copy-actions .button {
    width: 100%;
  }

  .product-detail-media,
  .product-detail-copy,
  .product-data-card {
    padding: 14px;
  }

  .product-detail-media {
    padding: 8px;
  }

  .product-detail-secondary .product-detail-copy-block {
    padding: 18px;
  }

  .footer {
    padding: 24px 0 18px;
  }

  .footer-top {
    gap: 22px;
  }

  .footer-nav {
    gap: 18px;
  }

  .footer-details {
    display: grid;
    gap: 2px;
  }

  .footer-details span,
  .footer-details a {
    max-width: 100%;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .footer-details a,
  .footer-link-list a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 6px 0;
  }

  .footer-link-group h2 {
    font-size: 15px;
  }

  .footer-link-list {
    gap: 0 14px;
  }

  .footer-link-list a {
    font-size: 14px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
    justify-content: start;
  }

  .product-data-card h2 {
    font-size: 28px;
  }

  .product-spec-table th,
  .product-spec-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .product-spec-table th {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .product-detail-copy-block h2 {
    font-size: 28px;
  }

  .product-detail-copy-block p {
    font-size: 15px;
  }

  .product-catalog-section {
    padding: 30px 0 54px;
  }

  .product-catalog-toolbar {
    display: block;
  }

  .product-catalog-toolbar h2 {
    font-size: 24px;
  }

  .product-catalog-count {
    margin-top: 14px;
  }

  .product-refine {
    border-radius: var(--radius);
    padding: 11px;
  }

  .product-refine-head {
    align-items: center;
  }

  .product-refine-summary-count {
    justify-self: start;
    white-space: nowrap;
  }

  .product-refine-group {
    align-items: flex-start;
  }

  .product-refine-group legend {
    width: 100%;
  }

  .product-refine-actions {
    display: grid;
    justify-content: stretch;
  }

  .product-sort,
  .product-sort select,
  .product-refine-reset,
  .product-refine-status {
    width: 100%;
  }

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

  .product-sort select {
    min-width: 0;
  }

  .product-refine-status {
    margin-left: 0;
  }

  .product-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-catalog-body {
    gap: 6px;
    padding: 11px 10px 13px;
  }

  .product-catalog-meta {
    font-size: 10px;
  }

  .product-catalog-card strong {
    min-height: 38px;
    font-size: 14px;
  }

  .product-catalog-desc {
    min-height: 35px;
    font-size: 12px;
    line-height: 1.45;
  }

  .product-catalog-link {
    font-size: 12px;
  }

  .product-category-seo {
    padding: 50px 0;
  }

  .product-category-guide-head h2 {
    font-size: 25px;
  }

  .product-category-guide-grid,
  .product-category-faq-list {
    grid-template-columns: 1fr;
  }

  .hero p {
    font-size: 15px;
  }

  .page-hero p {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero .button {
    width: 100%;
    min-height: 50px;
  }

  .home-company-title,
  .product-category-header h2 {
    font-size: 38px;
  }

  .home-company-lead {
    font-size: 16px;
  }

  .home-company-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(6px, 2vw, 10px);
  }

  .home-company-fact {
    min-width: 0;
    min-height: 92px;
    padding: clamp(9px, 2.6vw, 14px) clamp(7px, 2.2vw, 12px);
    border-left-width: 3px;
  }

  .home-company-fact strong {
    font-size: clamp(16px, 5vw, 22px);
    line-height: 1.1;
    white-space: nowrap;
  }

  .home-company-fact span {
    margin-top: 6px;
    font-size: clamp(11px, 3vw, 13px);
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .home-product-overview {
    padding: 24px;
  }

  .home-product-copy h2 {
    font-size: 32px;
  }

  .home-product-visual {
    min-height: 230px;
  }

  .home-product-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-product-tile {
    min-height: 160px;
    padding: 18px 40px 18px 18px;
  }

  .home-product-tile::after {
    right: 16px;
    bottom: 16px;
  }

  .home-product-tile h3 {
    font-size: 18px;
  }

  .home-product-tile p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .home-workflow-section .section-header p:not(.eyebrow),
  .home-workflow-section .workflow-step p {
    display: none;
  }

  .home-workflow-section .workflow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .home-workflow-section .workflow-step {
    display: grid;
    min-width: 0;
    min-height: 96px;
    align-content: start;
    justify-items: center;
    padding: 10px 4px;
    text-align: center;
  }

  .home-workflow-section .workflow-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 9px;
    border-radius: 9px;
  }

  .home-workflow-section .workflow-icon img {
    width: 27px;
    height: 27px;
  }

  .home-workflow-section .workflow-step h3 {
    margin: 0;
    font-size: clamp(11px, 3.2vw, 13px);
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .section,
  .content {
    padding: 46px 0;
  }

  .product-category-nav .site-inner {
    width: 100%;
  }

  .product-category-nav-scroll {
    padding: 12px 14px;
    scroll-padding-inline: 14px;
  }

  .product-category-nav a {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .section-header {
    display: block;
  }

  .detail-media {
    margin: 0 0 24px;
    padding: 0;
  }

  .article-layout {
    width: min(100% - 28px, 880px);
  }

  .article-sources {
    margin-top: 48px;
    padding-top: 24px;
  }

  .insight-card-grid {
    grid-template-columns: 1fr;
  }

  .insight-knowledge-section .insight-card-grid {
    grid-template-columns: 1fr;
  }

  .insight-card-grid .article-card.is-featured {
    display: flex;
    min-height: 0;
    grid-column: auto;
    flex-direction: column;
  }

  .article-card.is-featured .article-card-media {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .article-card.is-featured .article-card-copy {
    padding: 28px;
  }

  .insight-card-grid .article-card.is-featured h3 {
    font-size: 28px;
  }

  .article-body table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .side-panel .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .side-panel .cta-actions .button {
    width: 100%;
  }

  .contact-company-list dd > a,
  .contact-map-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

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

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .footer-link-group-products {
    grid-column: 1 / -1;
  }

  .product-thumb {
    height: 210px;
  }

  .spec-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 559px) {
  .contact-form-grid,
  .contact-delivery-grid,
  .card-grid,
  .card-grid.two,
  .page-home .card-grid:not(.two) {
    grid-template-columns: 1fr;
  }
}

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

  .home-product-tile {
    min-height: 138px;
    padding: 14px 30px 14px 12px;
  }

  .home-product-tile::after {
    right: 11px;
    bottom: 11px;
    font-size: 19px;
  }

  .home-product-tile-kicker {
    margin-bottom: 7px;
    font-size: 10px;
  }

  .home-product-tile-head {
    display: grid;
    gap: 8px;
    align-items: start;
    margin-bottom: 0;
  }

  .home-product-icon {
    width: 32px;
    height: 32px;
  }

  .home-product-icon img {
    width: 23px;
    height: 23px;
  }

  .home-product-tile h3 {
    font-size: 15px;
    line-height: 1.25;
  }

  .home-product-tile p {
    display: none;
  }

  .page-hero .hero-actions .button {
    flex: 1 1 140px;
  }
}

@media (max-width: 360px) {
  .brand-logo-lockup {
    width: 118px;
  }
}
