@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --bg: #fff8f8;
  --bg-dark: #1a1010;
  --ink: #1f1414;
  --ink-soft: #6d5454;
  --line: #efd4d4;
  --white: #ffffff;
  --primary: #d01810;
  --primary-deep: #a80f0f;
  --teal: #e2452f;
  --purple: #7a1111;
  --orange: #f2a47a;
  --radius-sm: 12px;
  --radius: 20px;
  --shadow: 0 18px 42px rgba(122, 17, 17, 0.13);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  background:
    radial-gradient(900px 480px at -12% -10%, rgba(208, 24, 16, 0.12), transparent 70%),
    radial-gradient(950px 520px at 112% 6%, rgba(226, 69, 47, 0.16), transparent 72%),
    radial-gradient(820px 400px at 45% 118%, rgba(122, 17, 17, 0.12), transparent 72%),
    var(--bg);
}

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

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

.container {
  width: min(1280px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.section {
  padding: 4.2rem 0;
}

.compact-top {
  padding-top: 2.6rem;
}

.section-soft {
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 235, 235, 0.55));
  z-index: -1;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.58rem;
  line-height: 1.16;
  font-family: Manrope, "Plus Jakarta Sans", sans-serif;
}

p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.eyebrow {
  margin: 0 0 0.95rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(180, 113, 113, 0.28);
  background: rgba(255, 248, 248, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  padding: 0.42rem 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
}

.header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  width: min(310px, 100%);
}

.brand-logo {
  width: clamp(165px, 18vw, 235px);
  height: auto;
  object-fit: contain;
}

.brand-tag {
  font-size: clamp(0.72rem, 0.92vw, 0.88rem);
  color: #6a4f4f;
}

.nav-line {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.1rem 0;
}

.header-auth-zone {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.48rem;
  margin-top: 0.88rem;
  flex-shrink: 0;
  position: relative;
}

.user-email-mini {
  font-size: 0.78rem;
  font-weight: 700;
  color: #6b5151;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-menu-wrap {
  position: relative;
}

.user-avatar-btn {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.user-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--primary) 55%, var(--purple));
  box-shadow: 0 10px 22px rgba(168, 15, 15, 0.3);
  overflow: hidden;
}

.user-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.user-menu {
  position: absolute;
  top: calc(100% + 0.52rem);
  right: 0;
  min-width: 172px;
  background: #fff;
  border: 1px solid rgba(176, 118, 118, 0.42);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(122, 17, 17, 0.15);
  padding: 0.4rem;
  z-index: 80;
  display: none;
  gap: 0.18rem;
}

.user-menu.is-open {
  display: grid;
}

.user-menu a,
.user-menu button {
  width: 100%;
  border: 0;
  background: transparent;
  color: #4f2b2b;
  font-size: 0.83rem;
  font-weight: 700;
  text-align: left;
  padding: 0.48rem 0.56rem;
  border-radius: 8px;
  cursor: pointer;
}

.user-menu a:hover,
.user-menu button:hover {
  background: #fdeeee;
}

.lang-menu-wrap {
  position: relative;
  flex-shrink: 0;
}

.lang-menu-trigger {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(180, 116, 116, 0.65);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #fff1f1);
  color: #725454;
  box-shadow: 0 10px 24px rgba(168, 15, 15, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.lang-menu-trigger:hover,
.lang-menu-trigger[aria-expanded="true"] {
  transform: translateY(-1px);
  border-color: rgba(208, 24, 16, 0.42);
  box-shadow: 0 14px 28px rgba(168, 15, 15, 0.14);
}

.lang-menu-globe {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.lang-menu-globe svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.top-nav {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-right-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.46rem;
  margin-left: auto;
  flex-wrap: wrap;
}

.top-nav a {
  font-size: 1rem;
  font-weight: 700;
  color: #5c3a3a;
  padding: 0.56rem 1rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.top-nav a:hover,
.top-nav a.active {
  color: var(--ink);
  background: linear-gradient(180deg, #fdecec, #fae0e0);
}

.btn-compact {
  padding: 0.46rem 0.78rem;
  font-size: 0.8rem;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.62rem);
  right: 0;
  min-width: 220px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 243, 243, 0.96));
  border: 1px solid rgba(176, 118, 118, 0.36);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(122, 17, 17, 0.16);
  padding: 0.68rem;
  z-index: 90;
  display: none;
  gap: 0.32rem;
}

.lang-menu.is-open {
  display: grid;
}

.lang-menu-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ab4f4f;
  padding: 0.12rem 0.3rem 0.28rem;
}

.lang-menu-option {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 0.7rem 0.78rem;
  background: transparent;
  color: #4f2b2b;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s ease, transform 0.18s ease;
}

.lang-menu-option:hover {
  background: rgba(208, 24, 16, 0.08);
}

.lang-menu-option.is-active {
  background: linear-gradient(96deg, rgba(226, 69, 47, 0.12), rgba(208, 24, 16, 0.16));
}

.lang-menu-code {
  min-width: 42px;
  border-radius: 999px;
  padding: 0.28rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  color: #7b3131;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(176, 118, 118, 0.26);
}

.lang-menu-option.is-active .lang-menu-code {
  color: #fff;
  background: linear-gradient(96deg, var(--teal), var(--primary) 52%, var(--purple));
  border-color: transparent;
}

.lang-menu-label {
  font-size: 0.94rem;
  font-weight: 800;
  color: #4a3030;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  white-space: nowrap;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(96deg, var(--teal), var(--primary) 52%, var(--purple));
  box-shadow: 0 10px 26px rgba(168, 15, 15, 0.28);
}

.btn-ghost {
  color: #6a2323;
  background: #fde8e7;
}

.btn-outline {
  color: #5a2b2b;
  background: #fff;
  border: 1px solid rgba(176, 118, 118, 0.62);
}

.btn-outline.is-selected {
  color: var(--primary-deep);
  border-color: rgba(208, 24, 16, 0.6);
  background: rgba(208, 24, 16, 0.1);
}

.btn-link {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #b11919;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -25% -25% 28% -25%;
  background:
    linear-gradient(140deg, rgba(208, 24, 16, 0.13), rgba(226, 69, 47, 0.13) 44%, rgba(122, 17, 17, 0.11));
  transform: skewY(-6deg);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 1.2rem;
  align-items: stretch;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  max-width: 15ch;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  margin: 1.06rem 0 1.45rem;
  font-size: 1.04rem;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 0.64rem;
  flex-wrap: wrap;
}

.hero-panel {
  position: relative;
  background: linear-gradient(150deg, var(--primary-deep) 0%, var(--primary) 48%, var(--purple) 100%);
  border-radius: 24px;
  padding: 1.4rem;
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  right: -88px;
  top: -94px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.33), transparent 64%);
}

.hero-panel p,
.hero-panel li {
  color: #ffe7e7;
}

.hero-panel p {
  font-weight: 800;
}

.hero-panel ul {
  margin: 0.96rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.66rem;
}

.section-head {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.products-grid,
.steps-grid,
.faq-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.category-story-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(136, 165, 196, 0.42);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.category-story-card:hover {
  transform: translateY(-4px);
}

.category-story-media {
  aspect-ratio: 16/12;
  position: relative;
  overflow: hidden;
}

.category-story-media::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -72px;
  top: -86px;
  background: rgba(255, 255, 255, 0.26);
}

.category-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.05), rgba(6, 18, 52, 0.35));
}

.category-story-pill {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  z-index: 2;
  font-size: 0.76rem;
  font-weight: 800;
  color: #fff;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: rgba(9, 22, 61, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.category-story-body {
  padding: 1rem;
}

.category-story-body h3 {
  font-size: 1.2rem;
}

.category-story-body p {
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
}

.category-story-link {
  font-size: 0.87rem;
  font-weight: 800;
  color: #9f1b1b;
}

.category-media-ultrasound {
  background: linear-gradient(140deg, #e34833, #cf2d22 55%, #9f1818);
}

.category-media-patient-monitor {
  background: linear-gradient(140deg, #ea5c3f, #d53b2a 50%, #9a1717);
}

.category-media-endoscopy {
  background: linear-gradient(140deg, #e6543b, #cb301f 45%, #8f1515);
}

.category-media-imaging {
  background: linear-gradient(140deg, #da3f2b, #ba231b 45%, #821212);
}

.category-media-lab {
  background: linear-gradient(140deg, #e05a42, #c73627 50%, #951616);
}

.category-media-critical-care {
  background: linear-gradient(140deg, #e86b4f, #ce3e2c 52%, #8d1414);
}

.why-mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
}

.why-panel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(176, 118, 118, 0.4);
  background: linear-gradient(165deg, #ffffff, #fff4f4 84%);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.why-panel-main {
  grid-column: span 2;
  min-height: 430px;
  background:
    radial-gradient(540px 300px at 80% 14%, rgba(242, 164, 122, 0.38), transparent 62%),
    radial-gradient(470px 260px at 14% 98%, rgba(122, 17, 17, 0.2), transparent 58%),
    linear-gradient(160deg, #ffffff, #fff3f3 82%);
}

.why-panel-side {
  min-height: 430px;
  background:
    radial-gradient(420px 220px at 30% 80%, rgba(242, 164, 122, 0.2), transparent 65%),
    linear-gradient(160deg, #ffffff, #fff3f3 82%);
}

.why-panel-small {
  min-height: 250px;
}

.why-panel h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.25;
  max-width: 22ch;
}

.why-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.7rem;
}

.why-expand-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  flex-shrink: 0;
  cursor: pointer;
}

.why-main-visual {
  margin-top: 1rem;
  min-height: 300px;
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 0.8rem;
  align-items: end;
}

.why-device-card {
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(176, 118, 118, 0.4);
  background:
    radial-gradient(120px 180px at 50% 85%, rgba(122, 17, 17, 0.18), transparent 72%),
    linear-gradient(155deg, #ffffff, #fff2f2 82%);
  position: relative;
}

.why-device-card::before {
  content: "";
  position: absolute;
  width: 58%;
  height: 78%;
  left: 21%;
  top: 11%;
  border-radius: 18px;
  background: #ffffff;
  border: 8px solid #05152e;
}

.why-checkout-card {
  height: 90%;
  border-radius: 16px;
  border: 1px solid rgba(176, 118, 118, 0.4);
  background: linear-gradient(155deg, #ffffff, #fff2f2 84%);
  position: relative;
}

.why-checkout-card::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 1.2rem;
  height: 14px;
  border-radius: 999px;
  background: rgba(208, 24, 16, 0.22);
}

.why-checkout-card::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1.2rem;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(95deg, var(--primary), var(--purple));
}

.why-side-widget {
  margin-top: 1rem;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.7rem;
  min-height: 300px;
}

.why-widget-box {
  border-radius: 14px;
  border: 1px solid rgba(176, 118, 118, 0.4);
  background: #fff;
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.why-widget-box strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
}

.why-widget-box span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--primary), var(--purple));
}

.why-widget-chart {
  border-radius: 14px;
  border: 1px solid rgba(176, 118, 118, 0.4);
  background: #fff;
  padding: 1rem;
  display: flex;
  align-items: end;
  gap: 0.32rem;
}

.why-widget-chart span {
  flex: 1;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, var(--teal), var(--purple));
}

.why-widget-chart span:nth-child(1) {
  height: 32px;
}

.why-widget-chart span:nth-child(2) {
  height: 48px;
}

.why-widget-chart span:nth-child(3) {
  height: 64px;
}

.why-widget-chart span:nth-child(4) {
  height: 39px;
}

.why-widget-chart span:nth-child(5) {
  height: 52px;
}

.why-small-visual {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  height: 90px;
  border-radius: 14px;
  background:
    radial-gradient(120px 120px at 80% 95%, rgba(122, 17, 17, 0.2), transparent 65%),
    linear-gradient(145deg, #ffffff, #fff2f2 88%);
  border: 1px solid rgba(176, 118, 118, 0.4);
}

.why-small-visual::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  top: 50%;
  height: 8px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(226, 69, 47, 0.3), rgba(122, 17, 17, 0.34));
}

.why-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.why-modal[hidden] {
  display: none;
}

.why-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 44, 0.48);
  backdrop-filter: blur(2px);
}

.why-modal-card {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: 22px;
  border: 1px solid rgba(136, 165, 196, 0.45);
  background: linear-gradient(180deg, #ffffff, #f5f9ff 84%);
  padding: 1.2rem;
  box-shadow: 0 30px 70px rgba(10, 21, 59, 0.35);
}

.why-modal-close {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 10px;
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  cursor: pointer;
}

.why-modal-top {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 1.1rem;
  padding-right: 4rem;
}

.why-modal-top h3 {
  font-size: clamp(1.7rem, 3.1vw, 3.25rem);
  margin-bottom: 0.7rem;
  max-width: 16ch;
}

.why-modal-top p {
  font-size: 1rem;
  max-width: 58ch;
}

.why-modal-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.why-modal-list p {
  margin: 0 0 0.7rem;
  font-size: 1.08rem;
  line-height: 1.45;
}

.why-modal-bottom {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.why-modal-surface {
  min-height: 290px;
  border-radius: 16px;
  border: 1px solid rgba(176, 118, 118, 0.4);
}

.why-modal-surface-a {
  background:
    radial-gradient(260px 180px at 20% 88%, rgba(122, 17, 17, 0.18), transparent 70%),
    linear-gradient(155deg, #ffffff, #fff2f2 82%);
}

.why-modal-surface-b {
  background:
    radial-gradient(260px 180px at 80% 88%, rgba(242, 164, 122, 0.3), transparent 70%),
    linear-gradient(155deg, #ffffff, #fff2f2 82%);
}

.why-modal-card.why-theme-main .why-modal-surface-a {
  background:
    radial-gradient(300px 180px at 24% 88%, rgba(122, 17, 17, 0.22), transparent 72%),
    linear-gradient(155deg, #ffffff, #fff2f2 82%);
}

.why-modal-card.why-theme-main .why-modal-surface-b {
  background:
    radial-gradient(300px 200px at 84% 88%, rgba(242, 164, 122, 0.32), transparent 70%),
    linear-gradient(155deg, #ffffff, #fff2f2 82%);
}

.why-modal-card.why-theme-side .why-modal-surface-a {
  background:
    radial-gradient(280px 160px at 20% 88%, rgba(226, 69, 47, 0.24), transparent 72%),
    linear-gradient(155deg, #ffffff, #fff2f2 82%);
}

.why-modal-card.why-theme-side .why-modal-surface-b {
  background:
    radial-gradient(260px 160px at 80% 88%, rgba(122, 17, 17, 0.22), transparent 72%),
    linear-gradient(155deg, #ffffff, #fff2f2 82%);
}

.why-modal-card.why-theme-small-a .why-modal-surface-a {
  background:
    radial-gradient(260px 170px at 26% 90%, rgba(242, 164, 122, 0.3), transparent 72%),
    linear-gradient(155deg, #ffffff, #fff2f2 82%);
}

.why-modal-card.why-theme-small-b .why-modal-surface-a {
  background:
    radial-gradient(260px 170px at 24% 90%, rgba(226, 69, 47, 0.26), transparent 72%),
    linear-gradient(155deg, #ffffff, #fff2f2 82%);
}

.why-modal-card.why-theme-small-c .why-modal-surface-a {
  background:
    radial-gradient(260px 170px at 24% 90%, rgba(122, 17, 17, 0.24), transparent 72%),
    linear-gradient(155deg, #ffffff, #fff2f2 82%);
}

body.why-modal-open {
  overflow: hidden;
}

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

.product-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(136, 165, 196, 0.42);
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.product-image-link {
  aspect-ratio: 16/10;
  background: linear-gradient(125deg, #fdeeee, #fff4f2);
}

.product-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 1rem;
  display: grid;
  gap: 0.52rem;
}

.product-topline {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.badge,
.category-tag {
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
}

.badge {
  color: #8d1717;
  background: rgba(208, 24, 16, 0.14);
}

.category-tag {
  color: #8d5400;
  background: rgba(255, 159, 67, 0.2);
}

.product-meta,
.product-description {
  font-size: 0.9rem;
}

.product-actions {
  margin-top: 0.38rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

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

.step-card {
  background: #fff;
  border: 1px solid rgba(136, 165, 196, 0.4);
  border-radius: 16px;
  padding: 0.98rem;
}

.step-card span {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(130deg, var(--teal), var(--purple));
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.52rem;
}

.process-resource-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.process-resource-card {
  border-radius: 14px;
  border: 1px solid rgba(136, 165, 196, 0.42);
  background: linear-gradient(165deg, #ffffff, #fff3f3 88%);
  padding: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.process-resource-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.process-resource-card p {
  font-size: 0.9rem;
}

.process-resource-focus {
  border-color: rgba(208, 24, 16, 0.7);
  box-shadow: 0 16px 34px rgba(208, 24, 16, 0.2);
  transform: translateY(-2px);
}

.process-hero-subtitle {
  max-width: 72ch;
}

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

.process-detail-card {
  border-radius: 16px;
  border: 1px solid rgba(136, 165, 196, 0.42);
  background: linear-gradient(160deg, #ffffff, #fff3f3 88%);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.process-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.7rem;
}

.process-detail-head h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.process-chip {
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.24rem 0.52rem;
  color: #8f1616;
  background: rgba(208, 24, 16, 0.1);
  border: 1px solid rgba(208, 24, 16, 0.26);
}

.process-bullet-list {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.45rem;
}

.process-bullet-list p {
  font-size: 0.93rem;
}

.process-detail-actions {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.process-detail-focus {
  border-color: rgba(208, 24, 16, 0.72);
  box-shadow: 0 18px 36px rgba(208, 24, 16, 0.2);
  transform: translateY(-2px);
}

.process-action-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.process-action-modal[hidden] {
  display: none;
}

.process-action-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 21, 49, 0.5);
  backdrop-filter: blur(2px);
}

.process-action-card {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 2rem));
  border-radius: 18px;
  border: 1px solid rgba(136, 165, 196, 0.45);
  background: linear-gradient(165deg, #ffffff, #fff3f3 88%);
  box-shadow: 0 28px 60px rgba(10, 21, 59, 0.35);
  padding: 1.1rem;
}

.process-action-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
}

.process-action-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  cursor: pointer;
}

.process-action-points {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.45rem;
}

.process-action-points p {
  font-size: 0.95rem;
}

.process-action-foot {
  margin-top: 0.9rem;
  border-top: 1px solid rgba(176, 118, 118, 0.36);
  padding-top: 0.65rem;
}

.process-action-foot span {
  font-size: 0.82rem;
  color: #5f6f86;
}

body.process-modal-open {
  overflow: hidden;
}

.contact-strip-inner {
  background: linear-gradient(140deg, var(--primary-deep) 0%, var(--primary) 55%, var(--teal) 100%);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.contact-strip-inner h2,
.contact-strip-inner p {
  color: #fff;
}

.site-footer {
  margin-top: 3rem;
  background:
    radial-gradient(700px 320px at 95% -10%, rgba(226, 69, 47, 0.22), transparent 65%),
    radial-gradient(600px 280px at 0% 0%, rgba(122, 17, 17, 0.26), transparent 62%),
    var(--bg-dark);
  color: #dfeaf7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1.2rem;
  padding: 2.2rem 0;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: #c4d7ef;
}

.social-list {
  display: grid;
  gap: 0.56rem;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-list span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.footer-bottom {
  padding: 0.95rem 0;
  border-top: 1px solid rgba(190, 212, 237, 0.22);
  font-size: 0.89rem;
}

.page-summary {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.summary-meta {
  text-align: right;
}

.filters-grid {
  margin-bottom: 1rem;
  padding: 0.94rem;
  border-radius: 18px;
  border: 1px solid rgba(136, 165, 196, 0.4);
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.filters-grid label {
  display: grid;
  gap: 0.38rem;
  font-size: 0.82rem;
  color: #5a708a;
}

.filters-grid input,
.filters-grid select,
.compare-add-bar input,
.compare-add-bar select,
.replace-row select {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(136, 165, 196, 0.55);
  background: #fff;
  color: #11345f;
  padding: 0.54rem 0.6rem;
  font: inherit;
}

.empty-state,
.empty-state-block {
  margin-top: 0.8rem;
  border: 1px dashed rgba(136, 165, 196, 0.75);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  padding: 1.25rem;
  text-align: center;
}

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

.inquiry-action-card,
.inquiry-form-card {
  border: 1px solid rgba(136, 165, 196, 0.5);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(244, 249, 255, 0.92));
  box-shadow: var(--shadow);
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.inquiry-action-card h3,
.inquiry-form-card h2 {
  margin: 0;
}

.inquiry-action-card.is-active {
  border-color: rgba(71, 115, 214, 0.72);
  box-shadow: 0 14px 30px rgba(33, 88, 198, 0.18);
}

.inquiry-card-tag {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3567c4;
  font-weight: 800;
}

.inquiry-action-card p {
  min-height: 2.9rem;
  margin: 0;
}

.inquiry-action-btn {
  width: 100%;
  justify-content: center;
}

.inquiry-notice {
  margin-top: 0.9rem;
  border: 1px solid rgba(104, 138, 193, 0.45);
  border-radius: 14px;
  background: #eef4ff;
  color: #1a3f74;
  padding: 0.62rem 0.72rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.inquiry-notice.is-error {
  border-color: rgba(201, 84, 106, 0.35);
  background: #fff0f4;
  color: #7e2a3a;
}

.inquiry-form-card {
  margin-top: 1rem;
}

.inquiry-form-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.inquiry-form-grid label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #557093;
  font-weight: 700;
}

.inquiry-form-grid .full {
  grid-column: 1 / -1;
}

.inquiry-form-grid select,
.inquiry-form-grid textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(136, 165, 196, 0.55);
  background: #fff;
  color: #11345f;
  padding: 0.72rem 0.75rem;
  font: inherit;
}

.inquiry-form-grid textarea {
  min-height: 170px;
  resize: vertical;
}

.inquiry-form-grid button[type="submit"] {
  grid-column: 1 / -1;
  justify-self: start;
  min-width: 220px;
}

.inquiry-textarea-xl {
  min-height: 280px !important;
}

.compare-tray {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
}

.compare-tray-inner {
  border-radius: 14px;
  border: 1px solid rgba(136, 165, 196, 0.5);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.84rem;
}

.compare-tray-inner span {
  display: block;
  font-size: 0.83rem;
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.compare-page {
  padding-top: 3.6rem;
}

.compare-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
  display: grid;
  gap: 0.7rem;
}

.compare-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  letter-spacing: -0.025em;
  margin-bottom: 0;
}

.compare-hero p {
  color: #5b6b82;
}

.compare-toolbar {
  width: min(980px, 100%);
  margin: 0 auto 1.2rem;
  display: grid;
  gap: 0.66rem;
}

.compare-clear-btn {
  justify-self: end;
}

.compare-add-bar {
  display: grid;
  gap: 0.62rem;
  grid-template-columns: 1.1fr 1fr auto;
}

.compare-add-bar input,
.compare-add-bar select {
  border: 1px solid #d4dced;
  border-radius: 10px;
  background: #fff;
  padding: 0.6rem 0.66rem;
}

.compare-add-bar .btn {
  min-width: 132px;
}

.table-wrap {
  background: #fff;
  overflow-x: auto;
  border-top: 1px solid #d2d2d7;
  border-bottom: 1px solid #d2d2d7;
}

.compare-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid #e5e5ea;
  padding: 1.1rem 0.72rem;
  text-align: left;
  vertical-align: top;
  word-break: keep-all;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  width: 180px;
  min-width: 180px;
  padding-right: 1rem;
}

.compare-table thead th {
  background: transparent;
  border-bottom: 1px solid #d2d2d7;
  padding-top: 0.85rem;
  padding-bottom: 1.05rem;
}

.compare-spec-head {
  color: #6e6e73;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-head-cell {
  display: grid;
  justify-items: start;
  gap: 0.28rem;
}

.compare-head-visual {
  width: 132px;
  height: 148px;
  display: grid;
  place-items: start;
}

.compare-head-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.compare-head-cell h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
  color: #1d1d1f;
}

.compare-head-cell p {
  font-size: 0.84rem;
  color: #6e6e73;
}

.compare-head-actions {
  margin-top: 0.45rem;
  display: grid;
  justify-items: start;
  gap: 0.44rem;
  width: 100%;
}

.replace-row {
  display: grid;
  gap: 0.35rem;
  width: 100%;
  grid-template-columns: 1fr auto;
}

.replace-row select {
  width: 100%;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  padding: 0.44rem 0.56rem;
  color: #1d1d1f;
  background: #fff;
}

.compare-row-label {
  color: #1d1d1f;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  word-break: keep-all;
}

.compare-value {
  color: #1d1d1f;
  font-size: 1rem;
  line-height: 1.5;
}

.compare-value .btn-link {
  font-size: 0.94rem;
  font-weight: 700;
  color: #b11919;
}

.compare-table .btn {
  transform: none;
  box-shadow: none;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.45rem 0.94rem;
}

.compare-table .btn-primary,
.compare-table .btn-outline {
  background: #fff;
  color: #1d1d1f;
  border: 1px solid #d2d2d7;
}

.compare-table .btn-ghost {
  background: #f5f5f7;
  color: #1d1d1f;
  border: 1px solid transparent;
}

.compare-empty {
  max-width: 620px;
  margin-inline: auto;
}

.two-col {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.16fr 0.84fr;
}

.about-card {
  border-radius: 20px;
  padding: 1.2rem;
  background: linear-gradient(140deg, #4a1212, #7a1111 55%, #b4201f);
  box-shadow: var(--shadow);
}

.about-card h3 {
  color: #fff;
}

.about-card p {
  color: #ffe3e3;
  margin-bottom: 0.45rem;
}

.about-lead {
  max-width: 72ch;
}

.ceo-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.ceo-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ceo-copy {
  border-radius: 20px;
  border: 1px solid rgba(176, 118, 118, 0.4);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.ceo-message::after {
  content: "";
  display: block;
  clear: both;
}

.ceo-photo-float {
  float: left;
  width: clamp(180px, 24vw, 320px);
  margin: 0.2rem 1rem 0.75rem 0;
}

.ceo-company {
  margin-top: -0.2rem;
  margin-bottom: 0.75rem;
  color: #8a2b2b;
  font-weight: 700;
}

.ceo-body {
  display: grid;
  gap: 0.58rem;
}

.ceo-body p {
  margin: 0;
}

.ceo-signoff {
  margin-top: 0.9rem;
  color: #233f67;
  font-weight: 700;
}

.ceo-signoff span {
  display: block;
}

.ceo-signoff-ko {
  margin-left: calc(clamp(180px, 24vw, 320px) + 1rem);
}

.bulleted-list {
  margin: 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.5rem;
}

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

.faq-item,
.contact-tile {
  border-radius: 16px;
  border: 1px solid rgba(136, 165, 196, 0.4);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1rem;
}

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

.detail-head p {
  max-width: 76ch;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  align-items: start;
}

.detail-gallery-main {
  border-radius: 18px;
  border: 1px solid rgba(136, 165, 196, 0.4);
  background: #fff;
  overflow: hidden;
}

.detail-gallery-thumbs {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.48rem;
}

.thumb {
  border: 1px solid rgba(136, 165, 196, 0.45);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}

.thumb.active {
  border-color: rgba(26, 92, 255, 0.85);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.spec-table th,
.spec-table td {
  border-bottom: 1px solid rgba(136, 165, 196, 0.4);
  padding: 0.52rem;
  text-align: left;
}

body.auth-modal-open {
  overflow: hidden;
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 61, 0.42);
}

.auth-modal-card {
  position: relative;
  width: min(420px, calc(100% - 1.4rem));
  margin: 12vh auto 0;
  border: 1px solid #ccdaf0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(9, 44, 108, 0.24);
  padding: 0.92rem;
  display: grid;
  gap: 0.72rem;
}

.auth-modal-close {
  position: absolute;
  right: 0.66rem;
  top: 0.52rem;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 10px;
  background: #fdeeee;
  color: #872121;
  font-size: 0.96rem;
  cursor: pointer;
}

.auth-form {
  display: grid;
  gap: 0.62rem;
}

.auth-form label {
  display: grid;
  gap: 0.28rem;
  font-size: 0.84rem;
  color: #6c5454;
  font-weight: 600;
}

.auth-form input {
  border: 1px solid #dcb8b8;
  border-radius: 10px;
  padding: 0.52rem 0.58rem;
  font-size: 0.92rem;
  color: var(--ink);
  width: 100%;
  box-sizing: border-box;
  display: block;
}

.auth-form select {
  border: 1px solid #dcb8b8;
  border-radius: 10px;
  padding: 0.52rem 0.58rem;
  font-size: 0.92rem;
  color: var(--ink);
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  display: block;
}

.auth-modal-note {
  font-size: 0.84rem;
  color: #824444;
  min-height: 1.1rem;
}

.auth-modal-note.is-error {
  color: #b3273e;
}

.auth-form-meta {
  margin: 0.12rem 0 0;
  font-size: 0.8rem;
  color: #785d5d;
}

.auth-switch-link {
  border: 0;
  background: transparent;
  color: #b11919;
  font-weight: 700;
  padding: 0;
  margin-left: 0.24rem;
  cursor: pointer;
  text-decoration: none;
}

.signup-shell {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.signup-meta {
  margin-top: 0.3rem;
}

.signup-categories {
  margin: 0;
  padding: 0.2rem 0 0.3rem;
  border: 0;
  border-radius: 0;
}

.signup-categories legend {
  padding: 0;
  color: #4a6589;
  font-size: 0.84rem;
  font-weight: 700;
}

.signup-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.6rem;
}

.signup-check {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  color: #3f5b81;
  font-size: 0.86rem;
  font-weight: 600;
}

.signup-check input {
  margin: 0;
}

.signup-newsletter {
  margin-top: 0.12rem;
}

.signup-other-field.is-hidden {
  display: none;
}

.account-shell {
  display: grid;
  gap: 0.9rem;
}

.account-card {
  border-radius: 18px;
  border: 1px solid rgba(176, 118, 118, 0.42);
  background: linear-gradient(168deg, #fff, #fff3f3 84%);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.account-card h2 {
  margin-bottom: 0.7rem;
}

.account-note {
  font-size: 0.86rem;
  margin-bottom: 0.82rem;
}

.account-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.account-grid-two .full {
  grid-column: 1 / -1;
}

.account-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #6b5252;
}

.account-form input,
.account-form select,
.account-form textarea {
  border-radius: 12px;
  border: 1px solid #d9b4b4;
  background: #fff;
  color: #1f1414;
  font-size: 0.92rem;
  padding: 0.6rem 0.7rem;
}

.account-form textarea {
  min-height: 120px;
  resize: vertical;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.account-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

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

.orders-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.orders-table th,
.orders-table td {
  border-bottom: 1px solid #d7e4fb;
  padding: 0.7rem 0.56rem;
  text-align: left;
  font-size: 0.84rem;
  vertical-align: top;
}

.orders-table th {
  font-weight: 800;
  color: #284d7e;
}

.orders-empty {
  border: 1px dashed #bdd0ef;
  border-radius: 12px;
  padding: 0.88rem;
  color: #527098;
}

@media (max-width: 1060px) {
  .hero-grid,
  .two-col,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: auto;
  }

  .header-top {
    align-items: flex-start;
  }

  .header-auth-zone {
    margin-top: 0.45rem;
  }

  .nav-line {
    flex-wrap: wrap;
  }

  .top-nav {
    flex: 1;
    flex-wrap: wrap;
  }

  .nav-right-controls {
    width: auto;
    justify-content: flex-end;
  }

  .products-grid,
  .faq-grid,
  .contact-grid,
  .steps-grid,
  .process-resource-grid,
  .process-detail-grid,
  .filters-grid,
  .inquiry-actions-grid,
  .account-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inquiry-form-grid {
    grid-template-columns: 1fr;
  }

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

  .why-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(190px, auto);
  }

  .why-panel-main {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .why-panel-side {
    grid-column: 1 / -1;
    min-height: 290px;
  }

  .why-panel-small {
    min-height: 220px;
  }

  .why-main-visual {
    min-height: 220px;
  }

  .why-modal-top {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .why-modal-bottom {
    grid-template-columns: 1fr;
  }

  .page-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .summary-meta {
    text-align: left;
  }

  .compare-toolbar {
    margin-bottom: 0.9rem;
  }

  .compare-add-bar {
    grid-template-columns: 1fr 1fr;
  }

  .compare-add-bar .btn {
    grid-column: 1 / -1;
  }

  .compare-clear-btn {
    justify-self: start;
  }

  .compare-head-actions .btn {
    min-width: 118px;
  }

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

@media (max-width: 720px) {
  .ceo-photo-float {
    float: none;
    width: 100%;
    max-width: 360px;
    margin: 0.25rem 0 0.8rem;
  }

  .ceo-signoff-ko {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1180px, calc(100% - 1.1rem));
  }

  .section {
    padding: 3.15rem 0;
  }

  .header-top {
    flex-direction: column;
    gap: 0.3rem;
  }

  .nav-line {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .top-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .top-nav a {
    text-align: center;
  }

  .lang-menu-wrap {
    align-self: flex-end;
  }

  .nav-right-controls {
    width: 100%;
    justify-content: flex-end;
  }

  .header-auth-zone {
    width: auto;
    justify-content: flex-end;
    margin-top: 0.2rem;
    align-self: flex-end;
  }

  .user-email-mini {
    max-width: 110px;
  }

  .products-grid,
  .faq-grid,
  .contact-grid,
  .steps-grid,
  .process-resource-grid,
  .process-detail-grid,
  .filters-grid,
  .inquiry-actions-grid,
  .inquiry-form-grid,
  .account-grid-two,
  .detail-gallery-thumbs,
  .compare-add-bar {
    grid-template-columns: 1fr;
  }

  .category-showcase-grid,
  .why-mosaic {
    grid-template-columns: 1fr;
  }

  .why-mosaic {
    grid-auto-rows: auto;
  }

  .why-panel,
  .why-panel-main,
  .why-panel-side,
  .why-panel-small {
    min-height: 180px;
    grid-column: auto;
    grid-row: auto;
  }

  .why-main-visual {
    grid-template-columns: 1fr;
    min-height: 180px;
  }

  .why-panel-side {
    min-height: 250px;
  }

  .why-modal-card {
    width: calc(100vw - 1rem);
    max-height: calc(100vh - 1rem);
    padding: 0.9rem;
  }

  .why-modal-close {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .why-modal-top h3 {
    font-size: 1.5rem;
  }

  .contact-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .compare-tray {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
  }

  .compare-tray-inner {
    justify-content: space-between;
  }

  .compare-page {
    padding-top: 2.5rem;
  }

  .compare-hero {
    margin-bottom: 1.2rem;
    gap: 0.55rem;
  }

  .compare-hero h1 {
    font-size: clamp(1.6rem, 7.2vw, 2.15rem);
  }

  .compare-add-bar {
    grid-template-columns: 1fr;
  }

  .compare-clear-btn {
    width: 100%;
    justify-self: stretch;
  }

  .compare-table {
    min-width: 760px;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.78rem 0.45rem;
  }

  .compare-table th:first-child,
  .compare-table td:first-child {
    width: 176px;
    padding-right: 0.6rem;
  }

  .compare-head-visual {
    width: 92px;
    height: 106px;
  }

  .compare-head-actions .btn {
    min-width: 96px;
    font-size: 0.72rem;
  }

  .compare-row-label {
    white-space: normal;
  }

.signup-categories-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/* Design Ex theme bridge (design ex -> current static frontend)              */
/* -------------------------------------------------------------------------- */

:root {
  --bg: #f8fafc;
  --bg-dark: #111827;
  --ink: #0f172a;
  --ink-soft: #475569;
  --line: #e2e8f0;
  --primary: #dc2626;
  --primary-deep: #b91c1c;
  --teal: #ef4444;
  --purple: #7f1d1d;
  --orange: #fb923c;
  --radius-sm: 10px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

html,
body {
  color: var(--ink);
  background: var(--bg);
}

body {
  background-image: none;
}

p {
  color: var(--ink-soft);
}

.site-header {
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 78px;
  padding: 0.45rem 0;
}

.header-main-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
}

.brand {
  width: auto;
  max-width: 420px;
  gap: 0.16rem;
}

.brand-logo {
  width: clamp(210px, 20vw, 300px);
  max-height: 88px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-tag {
  color: #64748b;
}

.header-right-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.header-auth-zone {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-nav a {
  color: #334155;
  border-radius: 10px;
  padding: 0.5rem 0.9rem;
}

.top-nav a:hover,
.top-nav a.active {
  color: #dc2626;
  background: #fee2e2;
}

.lang-menu-trigger {
  border-color: #d1d5db;
  background: #fff;
  color: #475569;
}

.lang-menu {
  border-color: #dbe1ea;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.lang-menu-title {
  color: #94a3b8;
}

.lang-menu-option:hover {
  background: #fff1f2;
}

.lang-menu-option.is-active {
  background: #fee2e2;
}

.lang-menu-code {
  color: #475569;
  border-color: #d1d5db;
}

.lang-menu-label {
  color: #334155;
}

.btn {
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.btn-primary {
  background: #dc2626;
  color: #fff;
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.24);
}

.btn-primary:hover {
  background: #b91c1c;
}

.btn-ghost {
  color: #111827;
  background: #f1f5f9;
}

.btn-outline {
  color: #111827;
  background: #fff;
  border: 1px solid #cbd5e1;
}

.btn-link {
  color: #2563eb;
}

.hero {
  background: linear-gradient(135deg, #111827 0%, #1f2937 62%, #7f1d1d 100%);
  border-bottom: 1px solid #1f2937;
}

.hero::before {
  inset: 0;
  transform: none;
  background:
    radial-gradient(700px 340px at 5% -5%, rgba(239, 68, 68, 0.18), transparent 72%),
    radial-gradient(700px 360px at 100% 10%, rgba(248, 113, 113, 0.2), transparent 72%);
}

.hero h1,
.hero .eyebrow {
  color: #fff;
}

.hero-subtitle {
  color: #dbeafe;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.hero-panel p {
  color: #fff;
}

.hero-panel li {
  color: #f1f5f9;
}

.section-soft::before {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(241, 245, 249, 0.85));
}

.category-story-card,
.product-card,
.step-card,
.process-resource-card,
.process-detail-card,
.faq-item,
.contact-tile,
.ceo-copy,
.account-card,
.inquiry-action-card,
.inquiry-form-card,
.filters-grid,
.why-panel,
.why-modal-card,
.process-action-card {
  border-color: #e2e8f0;
  box-shadow: var(--shadow);
}

.category-story-card,
.product-card,
.step-card,
.process-resource-card,
.process-detail-card,
.faq-item,
.contact-tile,
.ceo-copy,
.account-card,
.inquiry-action-card,
.inquiry-form-card,
.filters-grid {
  background: #fff;
}

.category-story-media {
  background-size: cover;
  background-position: center;
}

.category-media-ultrasound {
  background-image:
    linear-gradient(140deg, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.35)),
    url("https://images.unsplash.com/photo-1516549655169-df83a0774514?w=1200&auto=format&fit=crop&q=80");
}

.category-media-patient-monitor {
  background-image:
    linear-gradient(140deg, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.35)),
    url("https://images.unsplash.com/photo-1504813184591-01572f98c85f?w=1200&auto=format&fit=crop&q=80");
}

.category-media-endoscopy {
  background-image:
    linear-gradient(140deg, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.35)),
    url("https://images.unsplash.com/photo-1551190822-a9333d879b1f?w=1200&auto=format&fit=crop&q=80");
}

.category-media-imaging {
  background-image:
    linear-gradient(140deg, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.35)),
    url("https://images.unsplash.com/photo-1582719471384-894fbb16e074?w=1200&auto=format&fit=crop&q=80");
}

.category-media-lab {
  background-image:
    linear-gradient(140deg, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.35)),
    url("https://images.unsplash.com/photo-1579154341098-e4e158cc7f55?w=1200&auto=format&fit=crop&q=80");
}

.category-media-critical-care {
  background-image:
    linear-gradient(140deg, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.35)),
    url("https://images.unsplash.com/photo-1538108149393-fbbd81895907?w=1200&auto=format&fit=crop&q=80");
}

.why-panel {
  background: #fff;
}

.why-expand-btn {
  border-radius: 8px;
  background: #dc2626;
}

.why-modal {
  z-index: 240;
}

.why-modal-backdrop {
  background: rgba(15, 23, 42, 0.58);
}

.why-modal-card {
  background: #fff;
  border-color: #dbe4f1;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
}

.contact-strip-inner {
  background: linear-gradient(90deg, #b91c1c 0%, #dc2626 52%, #ef4444 100%);
}

.site-footer {
  background: #111827;
  color: #cbd5e1;
}

.site-footer h3,
.site-footer h4 {
  color: #f8fafc;
}

.site-footer p,
.site-footer a {
  color: #cbd5e1;
}

.social-list span {
  background: rgba(248, 250, 252, 0.18);
  color: #f8fafc;
}

.social-list a:hover {
  color: #f87171;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.34);
}

input,
select,
textarea,
.filters-grid input,
.filters-grid select,
.compare-add-bar input,
.compare-add-bar select,
.replace-row select,
.auth-form input,
.auth-form select,
.inquiry-form-grid select,
.inquiry-form-grid textarea,
.account-form input,
.account-form select,
.account-form textarea {
  border-color: #cbd5e1;
  color: #0f172a;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.auth-modal-backdrop {
  background: rgba(15, 23, 42, 0.48);
}

.auth-modal-card {
  border-color: #e2e8f0;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.22);
}

.auth-modal-close {
  background: #f1f5f9;
  color: #334155;
}

.compare-tray-inner {
  border-color: #dbe4f1;
  background: rgba(255, 255, 255, 0.98);
}

.compare-table thead th,
.compare-table th,
.compare-table td,
.spec-table th,
.spec-table td,
.orders-table th,
.orders-table td {
  border-bottom-color: #e5e7eb;
}

@media (max-width: 1060px) {
  .header-main-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .header-right-controls {
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
  }

  .top-nav {
    order: 3;
  }

  .brand-logo {
    width: clamp(175px, 42vw, 250px);
    max-height: 72px;
  }
}

@media (max-width: 760px) {
  .top-nav a {
    padding: 0.45rem 0.72rem;
    font-size: 0.93rem;
  }

  .brand-logo {
    width: 182px;
  }
}

/* Design ex layout blocks */
.page-dark-hero {
  padding: 2.8rem 0;
  background: #111827;
  color: #fff;
}

.page-dark-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
}

.page-dark-hero p {
  margin: 0;
  color: #cbd5e1;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.inquiry-shell-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: grid;
  gap: 0.8rem;
  max-width: 960px;
  margin: 0 auto;
}

.inquiry-shell-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
}

.inquiry-type-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 12px;
  padding: 0.3rem;
  width: fit-content;
}

.inquiry-type-toggle button {
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

.inquiry-type-toggle button.is-active {
  background: #dc2626;
  color: #fff;
}

.inquiry-mode-head {
  display: grid;
  gap: 0.3rem;
}

.inquiry-mode-head h3 {
  margin: 0;
  font-size: 1.45rem;
}

.inquiry-form-designex {
  margin-top: 0.2rem;
}

.inquiry-form-designex button[type="submit"] {
  justify-self: stretch;
}

.compare-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.compare-slot-card {
  position: relative;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.compare-slot-image {
  aspect-ratio: 1 / 1;
  background: #f8fafc;
}

.compare-slot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-slot-body {
  padding: 0.8rem;
  display: grid;
  gap: 0.4rem;
}

.compare-slot-body h3 {
  margin: 0;
  font-size: 1rem;
}

.compare-slot-body p {
  margin: 0;
  font-size: 0.84rem;
  color: #64748b;
}

.compare-slot-empty {
  background: #f8fafc;
  border-style: dashed;
}

.compare-slot-empty-body {
  height: 100%;
  min-height: 280px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.55rem;
  padding: 0.9rem;
  text-align: center;
}

.compare-slot-empty-body h3 {
  margin: 0;
}

.compare-slot-add {
  width: 100%;
  max-width: 200px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  padding: 0.48rem 0.6rem;
}

.compare-remove-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #dc2626;
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.14);
}

.compare-spec-headline {
  margin: 0.4rem 0 0.6rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
}

.process-timeline-section {
  padding-top: 2rem;
}

.process-timeline {
  display: grid;
  gap: 0.8rem;
  max-width: 920px;
  margin: 0 auto;
}

.process-timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.process-timeline-badge {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: #dc2626;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
}

.process-timeline-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.9rem 1rem;
}

.process-timeline-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
}

.process-timeline-card p {
  margin: 0;
}

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

@media (max-width: 760px) {
  .compare-slots-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-shell-card {
    padding: 0.9rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Design Ex full transplant: footer + account pages                          */
/* -------------------------------------------------------------------------- */

.footer-grid {
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.footer-col h4 {
  margin: 0 0 0.28rem;
}

.footer-col a {
  text-decoration: none;
}

.footer-social-list {
  margin-top: 0.6rem;
  gap: 0.5rem;
}

.account-page-wrap {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

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

.account-main-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.15rem;
}

.account-main-card h2 {
  margin: 0;
  font-size: 1.35rem;
}

.account-main-card .account-note {
  margin: 0;
}

.account-main-card .account-form {
  margin-top: 0.4rem;
}

.account-main-card .account-form label {
  color: #334155;
  font-size: 0.86rem;
}

.account-main-card .account-form input,
.account-main-card .account-form select,
.account-main-card .account-form textarea {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  padding: 0.58rem 0.68rem;
}

.account-list {
  display: grid;
  gap: 0.72rem;
}

.account-list-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  padding: 0.9rem;
  display: grid;
  gap: 0.62rem;
}

.account-list-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.account-list-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.account-list-badges {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  flex-wrap: wrap;
}

.account-status-chip {
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.26rem 0.5rem;
  white-space: nowrap;
}

.account-status-chip.is-primary {
  background: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}

.account-list-meta {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem 0.9rem;
}

.account-list-meta .full {
  grid-column: 1 / -1;
}

.account-list-meta dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
}

.account-list-meta dd {
  margin: 0.15rem 0 0;
  color: #0f172a;
  line-height: 1.45;
  white-space: pre-wrap;
}

.orders-empty {
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 0.88rem;
  background: #fff;
}

.detail-hero .btn-outline {
  background: rgba(255, 255, 255, 0.95);
  color: #111827;
}

.detail-hero .eyebrow {
  color: #fecaca;
}

.detail-hero p {
  max-width: 920px;
}

@media (max-width: 1060px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-two-col {
    grid-template-columns: 1fr;
  }
}

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

  .account-list-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-list-meta {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/* Design ex transplant (non-workflow pages)                                   */
/* -------------------------------------------------------------------------- */

.dx-header .header-inner {
  padding: 0.8rem 0 0.65rem;
  gap: 0.65rem;
}

.dx-header-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.9rem;
}

.dx-header-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.dx-header .top-nav {
  justify-content: center;
}

.user-menu[hidden] {
  display: none !important;
}

.user-menu.is-open {
  display: grid !important;
}

@media (max-width: 1240px) {
  .dx-header-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.7rem;
  }

  .dx-header .brand {
    order: 1;
  }

  .dx-header-tools {
    order: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .dx-header .top-nav {
    order: 3;
    justify-content: flex-start;
  }
}

.dx-home-hero {
  position: relative;
  padding: 5.3rem 0 5.8rem;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(15, 23, 42, 0.94), rgba(31, 41, 55, 0.9) 52%, rgba(127, 29, 29, 0.88)),
    url("https://images.unsplash.com/photo-1538108149393-fbbd81895907?w=1920&auto=format&fit=crop&q=80") center / cover;
}

.dx-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 380px at 8% 6%, rgba(220, 38, 38, 0.25), transparent 72%),
    radial-gradient(680px 360px at 96% 10%, rgba(248, 113, 113, 0.2), transparent 72%);
  pointer-events: none;
}

.dx-home-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.dx-home-hero h1 {
  font-size: clamp(2.3rem, 6vw, 4.25rem);
  color: #fff;
  line-height: 1.06;
  margin-bottom: 1rem;
}

.dx-home-subtitle {
  color: #dbeafe;
  font-size: clamp(1.05rem, 2vw, 1.36rem);
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.dx-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.dx-section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  margin: 0;
}

.dx-home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.dx-home-category-card {
  position: relative;
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow);
  display: grid;
  align-items: end;
}

.dx-home-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.76));
}

.dx-home-category-body {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 1rem;
}

.dx-home-category-body h3 {
  margin: 0 0 0.32rem;
  font-size: 1.23rem;
}

.dx-home-category-body p {
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.9rem;
}

.dx-cat-ultrasound {
  background: url("https://images.unsplash.com/photo-1516549655169-df83a0774514?w=900&auto=format&fit=crop&q=80")
    center / cover;
}

.dx-cat-patient-monitor {
  background: url("https://images.unsplash.com/photo-1504813184591-01572f98c85f?w=900&auto=format&fit=crop&q=80")
    center / cover;
}

.dx-cat-endoscopy {
  background: url("https://images.unsplash.com/photo-1551190822-a9333d879b1f?w=900&auto=format&fit=crop&q=80")
    center / cover;
}

.dx-cat-imaging {
  background: url("https://images.unsplash.com/photo-1582719471384-894fbb16e074?w=900&auto=format&fit=crop&q=80")
    center / cover;
}

.dx-cat-lab {
  background: url("https://images.unsplash.com/photo-1579154341098-e4e158cc7f55?w=900&auto=format&fit=crop&q=80")
    center / cover;
}

.dx-cat-critical-care {
  background: url("https://images.unsplash.com/photo-1538108149393-fbbd81895907?w=900&auto=format&fit=crop&q=80")
    center / cover;
}

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

.dx-why-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  gap: 0.62rem;
}

.dx-why-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #fee2e2;
  color: #b91c1c;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dx-why-card h3 {
  margin: 0;
  font-size: 1.13rem;
}

.dx-why-card p {
  margin: 0;
  min-height: 62px;
}

.dx-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
}

.dx-modal[hidden] {
  display: none;
}

.dx-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.58);
}

.dx-modal-card {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 2rem));
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.35);
  padding: 1.1rem;
}

.dx-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #334155;
  cursor: pointer;
}

.dx-modal-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.38rem;
}

.dx-modal-card > p {
  margin-bottom: 0.55rem;
}

.dx-modal-list {
  display: grid;
  gap: 0.36rem;
}

.dx-modal-list p {
  margin: 0;
  color: #334155;
}

.dx-modal-actions {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

body.dx-modal-open {
  overflow: hidden;
}

.dx-home-cta {
  padding: 3rem 0;
  background: linear-gradient(92deg, #b91c1c, #dc2626 55%, #ef4444);
  color: #fff;
}

.dx-home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dx-home-cta h2,
.dx-home-cta p {
  color: #fff;
}

.dx-home-cta p {
  opacity: 0.9;
}

.dx-home-cta .btn-outline {
  background: #fff;
}

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

.dx-product-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
}

.dx-product-image-link {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f8fafc;
}

.dx-product-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.dx-product-card:hover .dx-product-image-link img {
  transform: scale(1.05);
}

.dx-product-body {
  padding: 0.88rem;
  display: grid;
  gap: 0.42rem;
}

.dx-product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.dx-product-chip {
  font-size: 0.72rem;
  font-weight: 700;
  color: #334155;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 0.24rem 0.48rem;
}

.dx-product-body h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.25;
}

.dx-product-actions {
  margin-top: 0.28rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.dx-products-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.dx-products-filter {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.dx-field {
  display: grid;
  gap: 0.25rem;
}

.dx-field span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
}

.dx-field.full {
  grid-column: 1 / -1;
}

.dx-field input,
.dx-field select {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  padding: 0.58rem 0.66rem;
}

.dx-products-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.dx-products-meta p {
  margin: 0;
}

.dx-compare-slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.dx-compare-slot {
  position: relative;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.dx-compare-image {
  aspect-ratio: 1 / 1;
  background: #f8fafc;
}

.dx-compare-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dx-compare-remove {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 0;
  color: #dc2626;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
}

.dx-compare-slot-body {
  padding: 0.75rem;
  display: grid;
  gap: 0.42rem;
}

.dx-compare-slot-body h3 {
  margin: 0;
  font-size: 1rem;
}

.dx-compare-slot-body p {
  margin: 0;
  font-size: 0.83rem;
}

.dx-compare-slot-actions,
.dx-compare-replace {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dx-compare-replace select {
  flex: 1;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.48rem 0.58rem;
  background: #fff;
}

.dx-compare-slot-empty {
  border-style: dashed;
  background: #f8fafc;
}

.dx-compare-empty-inner {
  min-height: 305px;
  padding: 0.88rem;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.45rem;
}

.dx-compare-empty-inner h3 {
  margin: 0;
}

.dx-compare-empty-inner select {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  padding: 0.5rem 0.6rem;
  width: min(180px, 100%);
}

.dx-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1rem;
}

.dx-detail-main-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.dx-detail-thumbs {
  margin-top: 0.65rem;
}

.dx-detail-side {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.dx-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.dx-detail-feature-list {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0.82rem;
}

.dx-detail-feature-list h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.dx-detail-tabs {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.84rem;
}

.dx-detail-tab-buttons {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 0.68rem;
}

.dx-detail-tab-btn {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.44rem 0.65rem;
  cursor: pointer;
}

.dx-detail-tab-btn.is-active {
  border-color: #dc2626;
  color: #dc2626;
  background: #fee2e2;
}

.dx-detail-tab-panel {
  display: none;
}

.dx-detail-tab-panel.is-active {
  display: block;
}

.dx-about-ceo {
  padding: 1.2rem;
}

.dx-about-ceo-photo {
  border: 0;
}

.dx-about-stats {
  padding: 2.2rem 0;
  color: #fff;
  background: linear-gradient(92deg, #b91c1c, #dc2626 55%, #ef4444);
}

.dx-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.dx-about-stat-item {
  text-align: center;
}

.dx-about-stat-item strong {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.45rem);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.dx-about-stat-item span {
  font-size: 0.92rem;
  opacity: 0.94;
}

.dx-about-faq-item h3 {
  margin: 0 0 0.42rem;
}

.dx-signup-shell {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
}

.dx-signup-head {
  display: grid;
  gap: 0.32rem;
}

.dx-signup-group-title {
  margin: 0.5rem 0 0.15rem;
  font-size: 1rem;
  color: #0f172a;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.dx-signup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.dx-signup-form .full {
  grid-column: 1 / -1;
}

.dx-process-timeline {
  max-width: 940px;
  margin: 0 auto;
}

.dx-process-step-card {
  background: #fff;
}

.dx-process-summary {
  margin: 1.1rem auto 0;
  max-width: 940px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
}

.dx-process-summary h2 {
  margin: 0;
  font-size: 1.3rem;
}

.dx-process-summary p {
  margin: 0;
}

.dx-process-summary ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.36rem;
}

.dx-process-summary li {
  color: #334155;
  font-size: 0.9rem;
}

@media (max-width: 1200px) {
  .dx-home-category-grid,
  .dx-compare-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 960px) {
  .dx-header-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .dx-header .top-nav {
    justify-content: flex-start;
  }

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

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

@media (max-width: 640px) {
  .dx-home-hero {
    padding: 3.5rem 0;
  }

  .dx-home-category-grid,
  .dx-product-grid,
  .dx-compare-slots,
  .dx-about-stats-grid {
    grid-template-columns: 1fr;
  }

  .dx-home-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .dx-products-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .dx-signup-form {
    grid-template-columns: 1fr;
  }
}
