:root {
  --primary: #0f8b8d;
  --secondary: #1d3557;
  --accent: #f4a261;
  --text: #0b132b;
  --bg: #f7fafc;
  --card: #ffffff;
  --line: #d6deea;
  --radius: 14px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow-soft: 0 16px 38px rgba(17, 44, 72, 0.07);
  --shadow-strong: 0 22px 56px rgba(17, 44, 72, 0.10);
  --font-heading: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --font-body: 'Verdana', 'Tahoma', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, rgba(15, 139, 141, 0.08), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(29, 53, 87, 0.10), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(245,249,252,0.94)),
    var(--bg);
  font-family: var(--font-body);
}
a { color: var(--secondary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1160px, 92%); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  color: var(--secondary);
  border-bottom: 1px solid rgba(171, 188, 207, 0.45);
  box-shadow: 0 8px 24px rgba(12, 29, 51, 0.06);
}
.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.brand:hover { text-decoration: none; }
.brand img {
  width: auto;
  max-width: 156px;
  height: 44px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: block;
  filter: none;
}
.brand-title { font-family: var(--font-heading); margin: 0; font-size: 20px; letter-spacing: 0.2px; line-height: 1.1; color: var(--secondary); }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(171, 188, 207, 0.44);
  border-radius: 12px;
  background: #fff;
  color: var(--secondary);
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
.header-tools {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}
.header-search-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(171, 188, 207, 0.44);
  border-radius: 999px;
  background: #fff;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-search-toggle-icon {
  width: 15px;
  height: 15px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
  transform: translate(-1px, -1px);
  box-sizing: border-box;
}
.header-search-toggle-icon::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  right: -5px;
  bottom: -3px;
  transform: rotate(45deg);
  transform-origin: center;
}
.header-search-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(440px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(171, 188, 207, 0.4);
  border-radius: 18px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 20px 44px rgba(12, 29, 51, 0.12);
  z-index: 42;
}
.header-search-popover[hidden] {
  display: none !important;
}
.header-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
}
.header-search input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(171, 188, 207, 0.44);
  border-radius: 999px;
  background: rgba(248, 251, 255, 0.96);
  color: var(--secondary);
  font-size: 13px;
}
.header-search button {
  min-width: 84px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(171, 188, 207, 0.44);
  border-radius: 999px;
  background: #fff;
  color: var(--secondary);
  font-weight: 700;
  font-size: 12px;
}
.nav { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; flex: 1; min-width: 0; }
.nav-group { position: relative; display: inline-flex; align-items: center; }
.nav a {
  position: relative;
  color: var(--secondary);
  border: 0;
  border-radius: 0;
  padding: 10px 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: transparent;
  transition: color .18s ease, opacity .18s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.nav a:hover {
  text-decoration: none;
  color: var(--primary);
}
.nav a:hover::after,
.nav a.is-current::after {
  transform: scaleX(1);
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  padding: 10px;
  display: none;
  border-radius: 14px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(171, 188, 207, 0.4);
  box-shadow: 0 18px 40px rgba(17, 44, 72, 0.10);
  z-index: 30;
}
.nav-submenu a {
  display: block;
  margin-bottom: 8px;
  white-space: normal;
  color: var(--secondary);
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
}
.nav-submenu a::after {
  display: none;
}
.nav-group:hover .nav-submenu { display: block; }
.announce {
  background: linear-gradient(180deg, rgba(13, 62, 92, 0.08), rgba(13, 62, 92, 0.03));
  color: #38506f;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  border-bottom: 1px solid rgba(29, 53, 87, 0.12);
}
.hero {
  position: relative;
  padding: 0;
  background: linear-gradient(180deg, rgba(12, 29, 51, 0.02), rgba(255,255,255,0));
}
.hero-immersive {
  display: grid;
  gap: 0;
}
.hero-carousel-shell {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 74vh, 760px);
  background: #0f1d33;
}
.hero-carousel-track,
.hero-carousel-scrim,
.hero-carousel-controls {
  position: absolute;
  inset: 0;
}
.hero-carousel-track {
  overflow: hidden;
}
.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
}
.hero-carousel-slide.is-active {
  opacity: 1;
}
.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-carousel-scrim {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(12, 29, 51, 0.08));
}
.hero-carousel-controls {
  position: relative;
  z-index: 1;
  align-items: end;
  display: flex;
  justify-content: flex-end;
  min-height: 100%;
  padding: 0 0 26px;
}
.hero-copy-wrap {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}
.hero-copy-surface {
  width: min(100%, 1100px);
  max-width: 1100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: center;
  padding: 34px 38px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247, 251, 255, 0.98));
  border: 1px solid rgba(171, 188, 207, 0.36);
  box-shadow: 0 22px 54px rgba(17, 44, 72, 0.10);
}
.hero-copy-main {
  min-width: 0;
}
.hero-copy-side {
  display: grid;
  gap: 18px;
  align-content: center;
}
.hero-copy-surface .eyebrow { color: var(--primary); }
.hero-copy-surface .showcase-title { color: var(--secondary); }
.hero-copy-surface .showcase-text,
.hero-copy-surface .hero-muted,
.hero-copy-surface .small-note { color: #4d617d; opacity: 1; }
.hero-copy-surface .showcase-title {
  max-width: 18ch;
  font-size: clamp(30px, 3.1vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.028em;
}
.hero-copy-surface .showcase-text,
.hero-copy-surface .hero-muted,
.hero-copy-surface .small-note {
  max-width: 54ch;
}
.hero-copy-surface .showcase-text {
  font-size: 18px;
  line-height: 1.7;
}
.hero-copy-surface .hero-muted {
  font-size: 15px;
  line-height: 1.74;
}
.hero-support-card {
  margin: 0;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(241, 247, 252, 0.98), rgba(248, 251, 255, 0.98));
  border: 1px solid rgba(171, 188, 207, 0.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
  align-self: stretch;
}
.hero-actions-stack {
  display: grid;
  gap: 12px;
  margin: 0;
}
.hero-actions-stack .btn {
  width: 100%;
  min-width: 0;
  justify-content: center;
}
.hero-carousel-nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}
.hero-carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.32);
  padding: 0;
}
.hero-carousel-dot.is-active {
  width: 28px;
  background: #fff;
}
.showcase {
  padding: 42px 0 18px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: center;
}
.showcase-copy {
  position: relative;
  z-index: 1;
}
.showcase-title {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
}
.showcase-text {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.7;
  color: #4d617d;
  max-width: 640px;
}
.showcase-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.showcase-media {
  position: relative;
  display: grid;
  gap: 14px;
}
.showcase-frame {
  position: relative;
  border-radius: 30px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(238,248,252,0.9)),
    linear-gradient(120deg, rgba(15, 139, 141, 0.18), rgba(29, 53, 87, 0.22));
  border: 1px solid rgba(132, 155, 182, 0.24);
  box-shadow: 0 30px 80px rgba(17, 44, 72, 0.12);
}
.showcase-frame::before {
  content: '';
  position: absolute;
  inset: -18px auto auto -18px;
  width: 120px;
  height: 120px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.28), rgba(244, 162, 97, 0));
  z-index: 0;
}
.showcase-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 22px;
  background: linear-gradient(180deg, #edf6fb, #dcebf2);
  display: block;
  color: transparent;
  font-size: 0;
}
.showcase-frame.is-empty {
  min-height: 360px;
}
.showcase-frame.is-empty img {
  display: none;
}
.showcase-frame.is-empty::after {
  content: 'IMAGE';
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 500px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(237, 246, 251, 0.96), rgba(220, 235, 242, 0.96)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.26) 0, rgba(255,255,255,0.26) 18px, rgba(255,255,255,0.08) 18px, rgba(255,255,255,0.08) 36px);
  color: #7a8ea8;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 700;
}
.floating-note {
  position: static;
  display: grid;
  gap: 6px;
  max-width: none;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.94), rgba(241, 247, 252, 0.98));
  border: 1px solid rgba(192, 206, 223, 0.72);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(17, 44, 72, 0.06);
  color: #38506f;
  font-size: 13px;
  line-height: 1.58;
}
.floating-note strong {
  display: inline-block;
  margin-bottom: 0;
  font-size: 18px;
  color: var(--secondary);
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-weight: 700;
}
.hero-box {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(130deg, #fff, #f7fcff);
  padding: 28px;
}
.hero h2 { margin: 0 0 8px; font-size: clamp(26px, 4vw, 42px); font-family: var(--font-heading); line-height: 1.15; }
.hero p { margin: 0 0 10px; color: #344563; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-outline { border-color: var(--line); color: var(--secondary); background: #fff; }
.section { padding: 16px 0 28px; }
.section h3 { font-family: var(--font-heading); margin: 0 0 12px; font-size: 25px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.elevated-card {
  box-shadow: var(--shadow-soft);
}
.card img { width: 100%; height: 220px; object-fit: cover; background: #f2f5fb; display: block; }
.card .body { padding: 18px 16px 20px; min-height: 40%; display: flex; flex-direction: column; justify-content: space-between; gap: 8px; }
.card h4 { margin: 0 0 6px; font-family: var(--font-heading); font-size: 18px; }
.card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-link:hover,
.card-shell:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 53, 87, 0.22);
  box-shadow: var(--shadow-strong);
}
.card-shell {
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-main-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-decoration: none;
}
.card-shell .body,
.card-shell img {
  position: relative;
  z-index: 0;
}
.card-media-shell {
  position: relative;
  overflow: hidden;
}
.card-shell .tag-link,
.card-shell .price-chip,
.card-shell .price-chip.ghost,
.card-shell .card-cta {
  position: relative;
  z-index: 2;
}
.card-media-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.muted { color: #5f6e87; font-size: 14px; }
.row { display:flex; gap:8px; flex-wrap: wrap; align-items:center; }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  margin-bottom: 16px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-family: var(--font-heading);
  line-height: 1.06;
}
.section-heading h1 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 46px);
  font-family: var(--font-heading);
  line-height: 1.05;
}
.section-heading-stack {
  align-items: flex-start;
  margin-bottom: 10px;
}
.category-subtitle {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.75;
}
.category-feature {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
  margin: 12px 0 24px;
  align-items: stretch;
}
.category-feature-media,
.category-feature-copy,
.category-cta,
.highlight-card {
  border: 1px solid rgba(171, 188, 207, 0.38);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-soft);
}
.category-feature-media {
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.category-feature-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.category-feature-copy {
  border-radius: var(--radius-md);
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 16px;
}
.category-overview {
  margin: 6px 0 24px;
}
.section-heading.compact {
  margin-bottom: 12px;
}
.category-overview-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
}
.highlight-grid.compact {
  display: grid;
  gap: 14px;
}
.highlight-card {
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
}
.highlight-card h4 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
}
.highlight-card p,
.rich-copy p {
  margin: 0 0 12px;
  line-height: 1.7;
  color: #4d617d;
}
.category-cta {
  margin: 0 0 24px;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.category-cta h2 {
  margin: 0 0 8px;
}
.floating-contact-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 18px 40px rgba(17, 44, 72, 0.22);
  text-decoration: none;
}
.floating-contact-btn:hover {
  text-decoration: none;
  filter: brightness(1.03);
}
.floating-contact-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}
.floating-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.floating-contact-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
}
.story-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(248,251,255,0.98));
  box-shadow: var(--shadow-soft);
}
.story-side {
  display: grid;
  gap: 14px;
}
.article-layout .story-grid {
  grid-template-columns: minmax(0, 1.38fr) minmax(280px, .62fr);
  align-items: start;
}
.article-layout .story-side {
  position: sticky;
  top: 18px;
  align-self: start;
}
.mini-panel {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(171, 188, 207, 0.36);
  box-shadow: 0 14px 34px rgba(17, 44, 72, 0.05);
}
.article-meta-list {
  display: grid;
}
.article-tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.article-toc {
  display: grid;
  gap: 8px;
}
.toc-link {
  position: relative;
  display: block;
  color: #4f607b;
  font-size: 14px;
  line-height: 1.45;
  padding: 6px 0 6px 12px;
  border-left: 2px solid rgba(171, 188, 207, 0.36);
}
.toc-link.is-sub {
  padding-left: 26px;
  font-size: 13px;
}
.toc-link.active {
  color: var(--secondary);
  font-weight: 700;
  border-left-color: var(--primary);
}
.toc-link:hover {
  text-decoration: none;
  color: var(--secondary);
}
.fact-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(202, 216, 231, 0.72);
  color: #4d617d;
}
.fact-row:first-child {
  border-top: 0;
  padding-top: 0;
}
.fact-row strong {
  color: var(--secondary);
}
.highlight-item {
  padding: 12px 0;
  border-top: 1px solid rgba(202, 216, 231, 0.72);
}
.highlight-item:first-child {
  border-top: 0;
  padding-top: 0;
}
.highlight-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 18px;
}
.highlight-item p {
  margin: 0;
  color: #5f6e87;
  line-height: 1.6;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.stat-chip {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(171, 188, 207, 0.36);
  box-shadow: 0 10px 30px rgba(17, 44, 72, 0.05);
}
.stat-chip strong {
  display: block;
  font-size: 24px;
  color: var(--secondary);
}
.stat-chip span {
  font-size: 12px;
  color: #546a88;
}
.hero-muted {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.75;
}
.section-emphasis {
  background:
    linear-gradient(180deg, rgba(238, 247, 252, 0.86), rgba(249, 252, 255, 0.92));
  border-top: 1px solid rgba(192, 208, 224, 0.45);
  border-bottom: 1px solid rgba(192, 208, 224, 0.45);
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 139, 141, 0.10);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tag-link {
  text-decoration: none;
}
.tag-link:hover {
  text-decoration: none;
  background: rgba(15, 139, 141, 0.16);
}
.card-actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.card-topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}
.price-line {
  margin: 2px 0 2px;
}
.meta-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(171, 188, 207, 0.52);
  background: rgba(246, 249, 253, 0.98);
  color: #546a88;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--secondary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(29, 53, 87, 0.18);
}
.price-chip.ghost {
  background: rgba(29, 53, 87, 0.08);
  color: var(--secondary);
  box-shadow: none;
}
.card-cta {
  min-height: 34px;
}
.card-cta-floating {
  padding: 8px 12px;
  min-height: 34px;
  font-size: 12px;
  box-shadow: 0 10px 18px rgba(29, 53, 87, 0.16);
}
.product-card img,
.category-card img,
.article-card img {
  aspect-ratio: 16 / 11;
  height: auto;
}
.card-media-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 11;
  background:
    linear-gradient(180deg, rgba(237, 246, 251, 0.96), rgba(220, 235, 242, 0.96)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.24) 0, rgba(255,255,255,0.24) 18px, rgba(255,255,255,0.08) 18px, rgba(255,255,255,0.08) 36px);
  color: #7488a2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.product-card .body,
.article-card .body {
  min-height: 40%;
}
.category-card .body {
  min-height: 38%;
}
.product-card {
  border-color: rgba(29, 53, 87, 0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,255,0.98));
}
.product-card h4 {
  font-size: 20px;
  line-height: 1.25;
  min-height: 52px;
}
.article-card {
  border-color: rgba(29, 53, 87, 0.14);
  background: #fff;
}
.article-card.blog-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,252,255,0.98));
}
.article-card.case-card {
  background: linear-gradient(180deg, rgba(242,247,251,0.96), rgba(255,255,255,0.98));
  border-color: rgba(29, 53, 87, 0.18);
}
.article-card.case-card .tag {
  background: rgba(29, 53, 87, 0.08);
  color: var(--secondary);
}
.article-card.blog-card .meta-chip {
  background: rgba(15, 139, 141, 0.08);
  color: var(--primary);
}
.article-card h4 {
  font-size: 19px;
  line-height: 1.28;
  min-height: 52px;
}
.category-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,247,252,0.98));
}
.category-card img {
  aspect-ratio: 4 / 3;
}
.category-card h4 {
  font-size: 19px;
}
.about-band {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(140deg, rgba(255,255,255,0.96), rgba(239, 247, 252, 0.92));
  border: 1px solid rgba(171, 188, 207, 0.34);
  box-shadow: 0 26px 65px rgba(17, 44, 72, 0.09);
}
.inquiry-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: start;
}
.inquiry-copy {
  padding: 6px 0;
}
.small-note {
  color: #617791;
  font-size: 13px;
  line-height: 1.7;
}
.inquiry-form {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(171, 188, 207, 0.4);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-soft);
}
.form-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}
.form-compact .wide {
  grid-column: 1 / -1;
}
.form-compact label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #38506f;
}
.form-compact input,
.form-compact textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(171, 188, 207, 0.56);
  background: #fff;
  color: var(--text);
  font: inherit;
}
.about-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  font-family: var(--font-heading);
}
.about-copy .muted {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.8;
}
.about-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  background: linear-gradient(180deg, #edf6fb, #dcebf2);
}
.rail-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rail-controls-top {
  justify-content: flex-end;
  margin-bottom: 14px;
}
.rail-btn {
  min-width: 88px;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(171, 188, 207, 0.52);
  background: rgba(255,255,255,0.84);
  color: var(--secondary);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.media-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32%);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}
.media-rail::-webkit-scrollbar {
  height: 8px;
}
.media-rail::-webkit-scrollbar-thumb {
  background: rgba(122, 144, 170, 0.45);
  border-radius: 999px;
}
.rail-card {
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(171, 188, 207, 0.34);
  box-shadow: var(--shadow-soft);
}
.rail-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
}
.rail-card .body {
  padding: 16px;
}
.rail-card h4 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 20px;
}
.rail-card p {
  margin: 0;
  color: #5f6e87;
  line-height: 1.7;
  font-size: 14px;
}
.factory-experience {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: stretch;
}
.factory-stage-card {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(171, 188, 207, 0.35);
  background: #0f1722;
  box-shadow: var(--shadow-soft);
}
.factory-stage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.factory-stage-copy {
  display: grid;
}
.factory-copy-shell {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(171, 188, 207, 0.35);
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  box-shadow: var(--shadow-soft);
}
.factory-copy-shell h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}
.factory-copy-shell p {
  margin: 0;
  color: #586d88;
  line-height: 1.8;
}
.factory-thumb-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.factory-thumb {
  overflow: hidden;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(171, 188, 207, 0.34);
  background: #fff;
  min-height: 108px;
}
.factory-thumb.is-current {
  border-color: rgba(15, 139, 141, 0.52);
  box-shadow: inset 0 0 0 1px rgba(15, 139, 141, 0.16);
}
.factory-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.certificate-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.certificate-tile {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(171, 188, 207, 0.35);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.certificate-tile-media {
  padding: 12px;
  background: linear-gradient(180deg, #f5f8fc, #edf3f9);
}
.certificate-tile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 10px;
}
.certificate-tile-copy {
  padding: 14px 16px 16px;
}
.certificate-tile-copy strong {
  display: block;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.4;
}
.certificate-tile-copy p {
  margin: 8px 0 0;
  color: #60748d;
  font-size: 13px;
  line-height: 1.65;
}
.zoomable-card img,
.zoomable-card {
  cursor: zoom-in;
}
.zoomable-card {
  position: relative;
}
.lightbox-mask {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(7, 19, 33, 0.82);
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: auto;
}
#lightboxImage {
  touch-action: none;
  transform-origin: center center;
  will-change: transform;
}
.lightbox-tools {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 81;
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lightbox-tool,
.lightbox-close {
  position: fixed;
  top: 18px;
  z-index: 81;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(11, 19, 43, 0.58);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.lightbox-close {
  right: 18px;
}
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 81;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(11, 19, 43, 0.58);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: background .18s ease, border-color .18s ease;
}
.lightbox-nav:hover {
  background: rgba(11, 19, 43, 0.84);
  border-color: rgba(255,255,255,0.36);
}
.lightbox-nav:disabled {
  opacity: .28;
  cursor: default;
}
.lightbox-nav.prev {
  left: 18px;
}
.lightbox-nav.next {
  right: 18px;
}
.lightbox-counter {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 81;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(11, 19, 43, 0.58);
  color: #fff;
  font-size: 12px;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
}
.lightbox-mask img {
  width: auto;
  max-width: min(92vw, 1500px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  transform-origin: center center;
  transition: transform .18s ease;
  will-change: transform;
  cursor: zoom-in;
}
.hidden {
  display: none !important;
}
.meta-line {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-link {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 53, 87, 0.28);
}
.section-link:hover {
  text-decoration: none;
  color: var(--primary);
  border-color: rgba(15, 139, 141, 0.46);
}

@media (max-width: 960px) {
  .showcase-grid,
  .about-band,
  .inquiry-shell {
    grid-template-columns: 1fr;
  }
  .factory-experience,
  .certificate-wall {
    grid-template-columns: 1fr;
  }
  .showcase-frame img {
    height: 380px;
  }
  .media-rail {
    grid-auto-columns: minmax(280px, 78%);
  }
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .topbar .inner,
  .section-heading,
  .card-actions {
    align-items: flex-start;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .about-band {
    padding: 22px;
  }
  .about-media img,
  .product-card img,
  .category-card img,
  .article-card img,
  .rail-card img {
    height: auto;
  }
  .factory-stage-card {
    min-height: 320px;
  }
  .factory-thumb-row,
  .certificate-wall {
    grid-template-columns: 1fr;
  }
  .floating-note {
    position: static;
    margin-top: 12px;
    max-width: none;
  }
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.feature-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(171, 188, 207, 0.4);
  box-shadow: var(--shadow-soft);
}
.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  background: linear-gradient(180deg, #edf6fb, #dcebf2);
}
.feature-card .body {
  padding: 16px;
}
.feature-card h4 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 21px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.team-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(171, 188, 207, 0.4);
  box-shadow: var(--shadow-soft);
}
.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}
.team-card .body {
  padding: 16px;
}
.team-card h4 {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: 21px;
}
.team-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.btn-wa {
  border-color: #25d366;
  color: #0d5c31;
}
.contact-mini {
  font-size: 13px;
  color: #33527a;
  text-decoration: none;
}
.role {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}
.contact-panel,
.contact-card {
  border: 1px solid rgba(171, 188, 207, 0.4);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.contact-panel {
  padding: 24px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-card {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
}
.contact-card span {
  color: #566980;
  line-height: 1.7;
}
.map-frame {
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(171, 188, 207, 0.4);
  box-shadow: var(--shadow-soft);
}
.map-frame iframe {
  width: 100%;
  min-height: 380px;
  height: 100%;
  border: 0;
}
.download-list {
  display: grid;
  gap: 12px;
}
.reusable-module-stack {
  display: grid;
  gap: 18px;
}
.reusable-module-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(171, 188, 207, 0.4);
  background: linear-gradient(180deg, rgba(249,252,255,0.98), rgba(255,255,255,0.98));
  box-shadow: 0 12px 30px rgba(17, 44, 72, 0.05);
}
.reusable-module-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 30px);
}
.reusable-module-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}
.reusable-module-copy {
  display: grid;
  gap: 10px;
}
.download-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(171, 188, 207, 0.4);
  box-shadow: 0 12px 30px rgba(17, 44, 72, 0.05);
}
.faq-stack {
  display: grid;
  gap: 10px;
}
.faq-card {
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(171, 188, 207, 0.4);
  box-shadow: 0 14px 34px rgba(17, 44, 72, 0.05);
  padding: 14px 18px;
}
.faq-card summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--secondary);
}
.faq-card p {
  margin: 10px 0 0;
  color: #5f6e87;
  line-height: 1.7;
}
.collection-hero .showcase-frame img {
  aspect-ratio: 16 / 10;
  height: auto;
}
.library-hero,
.search-hero {
  padding: 30px 0 18px;
}
.library-intro,
.search-intro {
  max-width: 760px;
}
.search-form-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 18px;
}
.search-form-hero input {
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  font-size: 15px;
}
.search-form-hero button {
  min-width: 120px;
}
.library-grid,
.search-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.resource-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(171, 188, 207, 0.42);
  background: linear-gradient(180deg, rgba(250,252,255,0.98), rgba(255,255,255,0.98));
  box-shadow: 0 14px 32px rgba(17, 44, 72, 0.06);
}
.resource-card h4 {
  margin: 0;
  font-size: 22px;
  font-family: var(--font-heading);
}
.resource-card p {
  margin: 0;
}
.resource-card-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: #5f728b;
  font-size: 14px;
}
.resource-card-meta a {
  color: var(--secondary);
  font-weight: 700;
}
.resource-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.search-section {
  margin-top: 22px;
}
.search-section:first-of-type {
  margin-top: 0;
}
.search-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.search-count {
  color: #5d718f;
  font-size: 13px;
  font-weight: 700;
}
.search-empty {
  padding: 22px 0 8px;
  color: #5f728b;
}
.search-summary-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.search-summary-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(171, 188, 207, 0.42);
  background: #fff;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
}
.search-page-card {
  display: block;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(171, 188, 207, 0.42);
  background: linear-gradient(180deg, rgba(249,252,255,0.98), rgba(255,255,255,0.98));
  text-decoration: none;
  color: inherit;
}
.search-page-card h4 {
  margin: 8px 0 10px;
  font-size: 20px;
  font-family: var(--font-heading);
}
.search-page-card p {
  margin: 0;
  color: #5f728b;
  line-height: 1.7;
}
.search-page-card .card-topline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: start;
  gap: 22px;
  padding: 22px 0;
}
.product-gallery-column {
  display: grid;
  align-content: start;
  gap: 8px;
}
.product-anchor-nav {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding: 14px 16px;
}
.product-anchor-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(171, 188, 207, 0.52);
  background: rgba(247, 250, 254, 0.98);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
}
.product-anchor-nav a:hover {
  text-decoration: none;
  border-color: rgba(29, 53, 87, 0.24);
  background: #fff;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  padding-bottom: 26px;
}
.detail-column {
  display: grid;
  gap: 18px;
  align-content: start;
}
.gallery-main {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #f3f7fb, #eaf1f7);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; background: transparent; cursor: zoom-in; }
.thumbs { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 8px; margin-top: 0; }
.thumbs img { width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: cover; border: 1px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; background: #fff; }
.price { font-size: 26px; color: var(--secondary); font-weight: 800; margin: 8px 0; }
.panel { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; box-shadow: 0 10px 28px rgba(17, 44, 72, 0.04); }
.product-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}
.product-summary-top {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product-tag-list {
  justify-content: flex-end;
}
.product-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.05;
}
.product-subtitle {
  font-size: 16px;
}
.product-price {
  margin: 2px 0 0;
  font-size: clamp(28px, 3vw, 38px);
}
.product-intro {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}
.component-hero-card {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(171, 188, 207, 0.46);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(15, 139, 141, 0.06), rgba(29, 53, 87, 0.04)),
    linear-gradient(180deg, rgba(249, 252, 255, 0.98), rgba(255, 255, 255, 0.98));
}
.component-hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.component-hero-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f6b88;
}
.component-hero-link {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
}
.component-hero-lead {
  margin: 0;
  color: #304863;
  line-height: 1.75;
}
.component-hero-meta,
.component-hero-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.component-mini-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(171, 188, 207, 0.42);
  background: #fff;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.component-mini-chip:hover {
  text-decoration: none;
  border-color: rgba(29, 53, 87, 0.26);
}
.product-fact-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2px;
}
.product-fact-card {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(171, 188, 207, 0.4);
  background: linear-gradient(180deg, rgba(247,250,254,0.98), rgba(255,255,255,0.98));
}
.product-fact-card span {
  display: block;
  color: #5c7190;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.product-fact-card strong {
  color: var(--secondary);
  font-size: 16px;
}
.product-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}
#overviewSection,
#specSection,
#componentSection,
#downloadSection,
#faqSection,
#policyModuleSection {
  scroll-margin-top: 88px;
}
.component-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.component-section-intro {
  max-width: 760px;
  margin: 8px 0 0;
  line-height: 1.7;
}
.component-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.component-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(171, 188, 207, 0.4);
  background: linear-gradient(180deg, rgba(249,252,255,0.98), rgba(255,255,255,0.98));
  color: inherit;
  text-decoration: none;
}
.component-card-media {
  overflow: hidden;
  border-radius: 12px;
}
.component-card-media img,
.component-card-media .card-media-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
}
.component-card-copy h4 {
  margin: 6px 0 6px;
  font-family: var(--font-heading);
  font-size: 18px;
}
.component-card-copy p {
  margin: 0;
}
.spec-group { margin-bottom: 12px; }
.spec-group h5 { margin: 0 0 8px; font-size: 16px; font-family: var(--font-heading); }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td { border-top: 1px solid #e4ebf5; padding: 8px 0; font-size: 14px; }
.spec-table td:first-child { color: #4f607b; width: 42%; }
.rich-content img {
  max-width: 100%;
  border-radius: var(--radius-md);
  display: block;
  margin: 20px auto;
  box-shadow: 0 18px 44px rgba(17, 44, 72, 0.10);
  cursor: zoom-in;
}
.rich-content figure {
  margin: 24px 0;
}
.rich-content figcaption {
  margin-top: 10px;
  color: #6b7f98;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}
.rich-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 12px;
}
.rich-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.08;
  margin: 38px 0 14px;
  color: var(--secondary);
}
.rich-content h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin: 26px 0 12px;
  color: var(--secondary);
}
.rich-content p,
.rich-content li {
  color: #50647f;
  line-height: 1.82;
  font-size: 16px;
}
.rich-content ul {
  padding-left: 20px;
}
.rich-content blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: linear-gradient(180deg, rgba(238,247,252,0.92), rgba(249,252,255,0.96));
  color: #3e5774;
  font-size: 17px;
  line-height: 1.78;
}
.rich-content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  border: 1px solid rgba(171, 188, 207, 0.4);
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 44, 72, 0.05);
}
.rich-content th,
.rich-content td {
  padding: 12px 14px;
  border-top: 1px solid rgba(224, 233, 242, 0.9);
  border-left: 1px solid rgba(224, 233, 242, 0.9);
  text-align: left;
  font-size: 14px;
}
.rich-content th {
  border-top: 0;
  background: #f4f8fd;
  color: var(--secondary);
  font-weight: 700;
}
.rich-content tr > *:first-child {
  border-left: 0;
}
.rich-content table tr:first-child th:first-child {
  border-top-left-radius: 16px;
}
.rich-content table tr:first-child th:last-child {
  border-top-right-radius: 16px;
}
.rich-content table tr:last-child td:first-child {
  border-bottom-left-radius: 16px;
}
.rich-content table tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}
.rich-content hr {
  border: 0;
  border-top: 1px solid rgba(202, 216, 231, 0.8);
  margin: 30px 0;
}
.footer { padding: 26px 0 40px; color: #5f6e87; font-size: 14px; }
.footer-shell {
  border-top: 1px solid rgba(29, 53, 87, 0.08);
  background:
    radial-gradient(circle at 15% 0%, rgba(15, 139, 141, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(244, 248, 252, 0.96), rgba(255,255,255,0.98));
  margin-top: 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr .85fr;
  gap: 24px;
  padding: 38px 0 18px;
}
.footer-grid h4 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 24px;
}
.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-kicker {
  margin: 0;
  color: #4d617d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 10px;
  justify-items: start;
}
.footer-links a {
  color: #4d617d;
  font-weight: 700;
}
.footer-links a:hover {
  text-decoration: none;
  color: var(--secondary);
}
.footer-contact {
  display: grid;
  gap: 10px;
}
.footer-contact-item {
  display: grid;
  gap: 3px;
  color: #526985;
  font-size: 14px;
}
.footer-contact-item strong {
  color: var(--secondary);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-socials {
  display: flex;
  gap: 12px;
  padding: 4px 0 0;
  flex-wrap: wrap;
}
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(29, 53, 87, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--secondary);
  background: rgba(255,255,255,0.96);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(17, 44, 72, 0.05);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.social-link:hover {
  text-decoration: none;
  transform: translateY(-1px);
  border-color: rgba(29, 53, 87, 0.18);
  box-shadow: 0 14px 30px rgba(17, 44, 72, 0.08);
}
.footer-copy {
  padding: 20px 0 34px;
  color: #5f6e87;
  font-size: 13px;
  border-top: 1px solid rgba(203, 216, 229, 0.68);
  margin-top: 20px;
}
.filter-row { display:flex; gap:8px; flex-wrap: wrap; margin: 12px 0 16px; }
.filter-btn {
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 12px;
  background:#fff;
  color:var(--secondary);
  cursor:pointer;
}
.filter-btn.active { background: var(--secondary); color: #fff; border-color: var(--secondary); }
@media (max-width: 1024px) {
  .hero-carousel-shell {
    min-height: min(72svh, 680px);
  }
  .hero-copy-wrap { margin-top: 16px; }
  .hero-copy-surface {
    width: min(100%, 920px);
    max-width: 920px;
    grid-template-columns: minmax(0, 1fr) 290px;
    padding: 28px 28px;
  }
  .hero-copy-surface .showcase-title {
    max-width: 16ch;
    font-size: clamp(28px, 4vw, 48px);
  }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-layout,
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-anchor-nav { top: 10px; }
  .component-grid { grid-template-columns: 1fr; }
  .showcase-grid,
  .story-grid,
  .feature-grid,
  .team-grid,
  .category-feature,
  .category-overview-grid { grid-template-columns: 1fr; }
  .article-layout .story-side { position: static; }
  .contact-layout,
  .contact-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-frame img { height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .hero-carousel-shell {
    min-height: min(74svh, 640px);
  }
  .hero-copy-wrap { margin-top: 14px; }
  .hero-copy-surface {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 22px 18px;
    border-radius: 22px;
  }
  .hero-copy-side {
    gap: 14px;
  }
  .hero-copy-surface .showcase-title {
    max-width: none;
    line-height: 1.02;
  }
  .hero-copy-surface .showcase-text,
  .hero-copy-surface .hero-muted,
  .hero-copy-surface .small-note {
    max-width: none;
  }
  .hero-carousel-nav {
    margin-top: auto;
    width: 100%;
    justify-content: center;
  }
  .hero-carousel-arrow {
    display: none;
  }
  .hero-carousel-dots {
    justify-content: center;
    width: 100%;
  }
  .topbar .inner { padding: 8px 0; }
  .topbar .inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }
  .topbar .inner > * {
    min-width: 0;
  }
  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }
  .brand img {
    max-width: 132px;
    height: 38px;
  }
  .brand-title {
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header-tools {
    order: 1;
    margin-left: auto;
    flex: 0 0 auto;
  }
  .nav-toggle {
    display: inline-flex;
    order: 2;
    margin-left: 0;
    flex: 0 0 auto;
  }
  .header-search-popover {
    position: fixed;
    top: 84px;
    right: 16px;
    left: 16px;
    width: auto;
  }
  .category-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .floating-contact-btn {
    right: 14px;
    bottom: 14px;
    padding: 11px 12px;
  }
  .floating-contact-label {
    display: none;
  }
  .nav {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 0 2px;
    order: 3;
    border-top: 1px solid rgba(171, 188, 207, 0.26);
  }
  .nav.open {
    display: flex;
  }
  .nav-group {
    display: grid;
    width: 100%;
    gap: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(171, 188, 207, 0.16);
  }
  .nav-group > a {
    display: block;
    width: 100%;
  }
  .nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .nav a::after {
    display: none;
  }
  .nav-submenu {
    position: static;
    display: grid;
    gap: 8px;
    min-width: 0;
    margin-top: 6px;
    padding: 0 0 0 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .nav-submenu a {
    padding: 8px 0 8px 12px;
    color: var(--secondary);
    border-left: 2px solid rgba(171, 188, 207, 0.28);
  }
  .gallery-main img { height: 100%; }
  .product-fact-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-socials { padding: 10px 0 0; }
  .showcase-title { font-size: 38px; }
  .showcase-text { font-size: 15px; }
  .showcase-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .showcase-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .search-form-hero {
    grid-template-columns: 1fr;
  }
  .library-grid,
  .search-grid {
    grid-template-columns: 1fr;
  }
  .showcase-frame img,
  .collection-hero .showcase-frame img { height: auto; }
  .download-card { flex-direction: column; align-items: flex-start; }
  .stat-strip { grid-template-columns: 1fr; }
  .section-heading {
    align-items: flex-start;
  }
  .component-hero-head {
    align-items: flex-start;
  }
  .product-anchor-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .product-anchor-nav a {
    white-space: nowrap;
  }
  .article-layout .story-grid,
  .story-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .article-layout .story-side,
  .story-side,
  .story-card,
  .mini-panel {
    min-width: 0;
  }
  .product-summary {
    padding: 20px;
  }
  .product-summary-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-tag-list {
    width: 100%;
    justify-content: flex-start;
  }
  .tag,
  .chip,
  .product-tag-list .tag {
    max-width: 100%;
    white-space: normal;
  }
  .product-title {
    font-size: clamp(34px, 10vw, 42px);
  }
  .thumbs {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .thumbs img {
    width: 84px;
    min-width: 84px;
    max-width: 84px;
    aspect-ratio: 1 / 1;
    scroll-snap-align: start;
  }
  .product-cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .product-cta-row .btn {
    width: 100%;
    justify-content: center;
  }
  .product-gallery-column {
    gap: 10px;
  }
  .lightbox-mask {
    padding: 12px;
  }
  .lightbox-nav {
    display: none;
  }
  .lightbox-counter {
    bottom: 12px;
  }
  .component-card {
    grid-template-columns: 1fr;
  }
}
