@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600;8..60,700&display=swap');

:root {
  --ink: #17131c;
  --soft-ink: #4d4657;
  --muted: #7c7485;
  --paper: #f7f6f8;
  --panel: #ffffff;
  --line: rgba(32, 26, 40, 0.13);
  --purple: #3b214f;
  --purple-2: #6a3f7d;
  --purple-soft: #f0e8f4;
  --charcoal: #251832;
  --brand-primary: var(--purple);
  --brand-action: var(--purple-2);
  --brand-soft: var(--purple-soft);
  --blue: var(--brand-action);
  --blue-dark: var(--brand-primary);
  --blue-soft: var(--brand-soft);
  --ice: #f2f0f4;
  --teal: #83d8c6;
  --brand-accent: var(--teal);
  --shadow: 0 22px 60px rgba(35, 24, 48, 0.12);
  --shadow-soft: 0 12px 34px rgba(35, 24, 48, 0.07);
  --shadow-hover: 0 22px 54px rgba(35, 24, 48, 0.13);
  --radius: 10px;
  --radius-sm: 8px;
  --ease: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
a, button, .category-card, .trust-card, .faq-card, .brand-card, .blog-card, .clinical-card, .detail-card, .panel, .image-panel, .product-hero-media, .product-detail-image-wrapper, .shipping-step, .hero-trust-item, .section-badge {
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background-color var(--ease), color var(--ease), opacity var(--ease);
}

.site { min-height: 100vh; background: linear-gradient(180deg, #fff 0%, var(--paper) 100%); }
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(32, 26, 40, 0.1);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 26px rgba(35, 24, 48, 0.04);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 64px);
}
.brand { display: inline-flex; align-items: center; width: min(190px, 42vw); }
.brand-logo { width: 100%; height: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: clamp(10px, 1.5vw, 22px); color: var(--ink); font-size: 13px; font-weight: 800; }
.nav-links a { position: relative; padding: 28px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 20px; height: 2px; border-radius: 999px; background: var(--teal); opacity: 0; transform: scaleX(0.4); transition: transform var(--ease), opacity var(--ease); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brand-action); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 6px; }
.nav-caret { display: inline-block; width: 6px; height: 6px; margin-top: -2px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform var(--ease); }
.nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret { transform: rotate(225deg); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: -2px;
  transform: translateX(-50%) translateY(6px);
  min-width: 190px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  z-index: 60;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-links .nav-dropdown a { padding: 10px 12px; border-radius: 6px; font-size: 13px; font-weight: 700; color: var(--soft-ink); }
.nav-links .nav-dropdown a::after { display: none; }
.nav-links .nav-dropdown a:hover { background: var(--blue-soft); color: var(--brand-action); }
.nav-actions { display: inline-flex; align-items: center; gap: 10px; }
.lang-switch { display: inline-flex; align-items: center; min-height: 38px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--soft-ink); font-size: 12px; font-weight: 900; }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(106, 63, 125, 0.18);
}
.button.secondary { background: #fff; color: var(--blue); }
.nav-cta { border-color: var(--brand-action); background: var(--brand-action); color: #fff; }
.button:hover, .nav-cta:hover, .contact-form button:hover { transform: translateY(-1px); box-shadow: 0 16px 30px rgba(106, 63, 125, 0.22); }
.button.secondary:hover, .lang-switch:hover { border-color: rgba(106,63,125,0.32); background: #fbfafd; }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--brand-primary); font-size: 22px; }

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  background: #fff;
  border-bottom: 0;
  overflow: visible;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 -150px;
  width: 100%;
  background-image: url("hero-partner-background.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(249,247,253,0.96) 30%, rgba(249,247,253,0.42) 43%, rgba(255,255,255,0) 58%),
    radial-gradient(circle at 17% 26%, rgba(106,63,125,0.14), transparent 26%);
  z-index: -1;
  pointer-events: none;
}
.hero-inner, .section-inner { width: min(1200px, 100%); margin: 0 auto; padding-left: clamp(18px, 4vw, 34px); padding-right: clamp(18px, 4vw, 34px); }
.hero .hero-inner { width: min(1640px, 100%); padding-left: clamp(20px, 4vw, 56px); }
.hero .button { text-transform: none; letter-spacing: 0.01em; font-size: 14px; padding: 0 22px; min-height: 48px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr); gap: clamp(24px, 4vw, 52px); align-items: center; }
.eyebrow, .kicker { margin: 0 0 14px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.kicker { font-size: 14px; }
h1, h2 { margin: 0; color: var(--blue-dark); letter-spacing: 0; font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif; font-weight: 500; }
h1 { max-width: 720px; font-size: clamp(44px, 5.1vw, 70px); line-height: 1.03; }
.hero h1 { max-width: 780px; font-size: clamp(38px, 4.4vw, 58px); line-height: 1.1; }
.hero h1::after { content: ""; display: block; width: 88px; height: 3px; margin-top: 24px; border-radius: 999px; background: var(--blue); opacity: 0.5; }
h2 { font-size: clamp(32px, 3.8vw, 52px); line-height: 1.06; }
h3 { letter-spacing: 0; }
.hero-copy { max-width: 700px; margin: 22px 0 24px; color: var(--soft-ink); font-size: 18px; line-height: 1.7; }
.hero-trust { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 10px; max-width: 430px; margin: 0 0 24px; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; min-height: 48px; border: 1px solid rgba(32,26,40,0.1); border-radius: 999px; background: rgba(255,255,255,0.88); padding: 8px 14px; color: var(--blue-dark); font-size: 13px; font-weight: 900; box-shadow: 0 10px 26px rgba(35, 24, 48, 0.055); }
.hero-trust-item:hover { transform: translateY(-1px); border-color: rgba(131,216,198,0.45); box-shadow: 0 16px 34px rgba(35, 24, 48, 0.08); }
.hero-trust-item::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(131,216,198,0.2); flex: 0 0 auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions button { cursor: pointer; font-family: inherit; }
.hero-panel { border: 1px solid var(--line); background: rgba(255,255,255,0.88); box-shadow: var(--shadow); border-radius: 8px; padding: 28px; }
.hero-panel h3 { margin: 0 0 16px; color: var(--blue-dark); font-size: 20px; }
.hero-points { display: grid; gap: 12px; }
.hero-point { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; color: var(--soft-ink); line-height: 1.55; }
.hero-point b { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); font-size: 12px; }
.hero-artwork-wrap {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}
.hero-artwork {
  width: min(100%, 720px);
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 26px 72px rgba(35, 24, 48, 0.12);
}
.hero-visual-space { min-height: 520px; }

section { padding: clamp(64px, 9vw, 110px) 0; }
.section--tight { padding: clamp(36px, 5vw, 56px) 0; }
.section--tight-b { padding-bottom: 16px; }
.page-hero { padding: 74px 0; background: linear-gradient(120deg, #fff, #f4f1f6); border-bottom: 1px solid rgba(32,26,40,0.1); }
.page-hero p { max-width: 760px; margin: 20px 0 0; color: var(--soft-ink); font-size: 17px; line-height: 1.75; }
.page-hero p.page-hero-lead--narrow { max-width: 560px; }
.page-hero-image {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 56px 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  isolation: isolate;
  overflow: hidden;
}
.page-hero-image--bottom { background-position: center bottom; }
.page-hero-image { border-bottom: 0; }
.page-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(249,247,253,0.94) 28%, rgba(249,247,253,0.5) 46%, rgba(255,255,255,0.08) 64%, rgba(255,255,255,0) 78%);
  z-index: -1;
}
.page-hero-image .section-inner { position: relative; z-index: 1; }
@media (max-width: 760px) {
  .page-hero-image { min-height: 360px; padding: 40px 0; }
  .page-hero-image::before { background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(249,247,253,0.94) 44%, rgba(249,247,253,0.6) 62%, rgba(255,255,255,0.15) 100%); }
}
.section-head { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.66fr); gap: clamp(24px, 5vw, 72px); align-items: end; margin-bottom: 36px; }
.section-head--single { grid-template-columns: 1fr; }
.section-head--single .section-copy { margin-top: 22px; }
@media (min-width: 761px) {
  .section-head--single h2 { white-space: nowrap; }
}
.section-copy { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.section-copy--lg { font-size: 19px; line-height: 1.8; text-align: justify; }
.light-band { background: #fff; }
.blue-band { background: var(--brand-primary); color: #fff; }
.blue-band h2 { color: #fff; }
.blue-band .section-copy { color: rgba(255,255,255,0.75); }

.intro-grid, .detail-grid, .contact-grid, .shipping-grid { display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr); gap: 24px; align-items: stretch; }
.panel { border: 1px solid rgba(32,26,40,0.1); background: var(--panel); border-radius: var(--radius); padding: clamp(24px, 4vw, 42px); box-shadow: var(--shadow-soft); }
.panel:hover { box-shadow: var(--shadow-hover); border-color: rgba(106,63,125,0.18); }
.panel p { margin: 0 0 16px; color: var(--soft-ink); line-height: 1.75; }
.panel p:last-child { margin-bottom: 0; }
.panel h2 { font-size: clamp(24px, 2.6vw, 32px); line-height: 1.2; margin-bottom: 6px; }

.contact-method-list { display: flex; flex-direction: column; margin: 22px 0; }
.contact-method { display: flex; align-items: center; gap: 14px; padding: 14px 4px; border-bottom: 1px solid var(--line); color: inherit; text-decoration: none; transition: transform var(--ease); }
.contact-method:last-child { border-bottom: 0; padding-bottom: 4px; }
.contact-method:first-child { padding-top: 0; }
.contact-method:hover { transform: translateX(3px); }
.contact-method:hover .contact-method-icon { background: var(--blue); color: #fff; }
.contact-method-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); flex: 0 0 auto; transition: background var(--ease), color var(--ease); }
.contact-method-icon svg { width: 19px; height: 19px; }
.contact-method-text { display: flex; flex-direction: column; gap: 2px; }
.contact-method-text b { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.contact-method-text span { font-size: 15.5px; font-weight: 700; color: var(--ink); }
.section-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 24px; }
.section-badge { display: inline-flex; align-items: center; gap: 9px; min-height: 38px; border: 1px solid rgba(106,63,125,0.12); border-radius: 999px; background: var(--blue-soft); color: var(--blue-dark); padding: 0 13px; font-size: 12px; font-weight: 900; }
.section-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(131,216,198,0.18); }
.section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.image-panel { min-height: 390px; border: 1px solid rgba(32,26,40,0.1); border-radius: var(--radius); background: var(--ice) center / cover no-repeat; box-shadow: var(--shadow); }

.category-grid, .product-grid, .trust-grid, .faq-grid, .brand-grid, .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.category-card, .product-card, .trust-card, .faq-card, .brand-card, .blog-card {
  border: 1px solid rgba(32,26,40,0.1);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.category-card:hover, .brand-card:hover, .blog-card:hover, .faq-card:hover, .clinical-card:hover, .shipping-step:hover { transform: translateY(-3px); border-color: rgba(106,63,125,0.18); box-shadow: var(--shadow-hover); }
.category-card, .trust-card, .faq-card, .brand-card, .blog-card { min-height: 220px; padding: 24px; }
.category-card h3, .trust-card h3, .faq-card h3, .brand-card h3, .blog-card h3 { margin: 0 0 10px; color: var(--blue-dark); font-size: 21px; line-height: 1.22; }
.category-card p, .trust-card p, .faq-card p, .product-card p, .brand-card p, .blog-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.category-tag, .product-meta { display: inline-flex; width: fit-content; margin-bottom: 14px; border-radius: 999px; background: var(--blue-soft); color: var(--blue); padding: 8px 12px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; }
.category-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.category-card .category-icon { width: auto; height: auto; margin: 0 0 18px; background: none; border-radius: 0; box-shadow: none; }
.category-card .category-icon img { display: block; width: 84px; height: 84px; }
.category-card p { margin-bottom: 16px; }
.category-card .product-link { margin-top: auto; }
.home-trust-section { padding: 0; background: transparent; }
.home-trust-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -78px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 24px 70px rgba(35,24,48,0.12);
  backdrop-filter: blur(12px);
}
.home-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  min-height: 160px;
  padding: 30px 26px;
  color: var(--blue-dark);
  border-right: 1px solid rgba(32,26,40,0.08);
}
.home-trust-item:last-child { border-right: 0; }
.home-trust-item .home-trust-icon { width: 44px; height: 44px; border-radius: 0; background: transparent; color: var(--blue); }
.home-trust-item .home-trust-icon svg { width: 36px; height: 36px; }
.home-trust-item strong { font-size: 16px; font-weight: 900; color: var(--blue-dark); }
.home-trust-item p { margin: 0; max-width: 230px; color: var(--soft-ink); font-size: 13.5px; font-weight: 500; line-height: 1.55; }
.home-trust-icon, .category-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(106,63,125,0.08);
}
.featured-category-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 26px;
  text-decoration: none;
}
.featured-category-card .category-icon { margin-bottom: 24px; }
.featured-category-card .product-link { margin-top: auto; }
.catalog-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.catalog-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(106,63,125,0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}
.catalog-section { padding: 48px 0; border-top: 1px solid var(--line); }
.catalog-section:first-of-type { border-top: 0; padding-top: 0; }
.catalog-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}
.catalog-section-head h2 { font-size: clamp(28px, 3vw, 40px); }
.catalog-count { color: var(--muted); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.catalog-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.catalog-product-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  border: 1px solid rgba(32,26,40,0.09);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.catalog-product-card:hover { transform: translateY(-3px); border-color: rgba(106,63,125,0.18); box-shadow: var(--shadow-hover); }
.catalog-product-card h3 { margin: 0 0 10px; color: var(--blue-dark); font-size: 20px; line-height: 1.22; }
.catalog-product-card p { margin: 0; color: var(--muted); line-height: 1.58; font-size: 14px; }
.catalog-variants {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.catalog-variants li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(32,26,40,0.07);
  padding-top: 8px;
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.35;
}
.catalog-variants span:last-child {
  flex: 0 0 auto;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}
.catalog-spec {
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wholesale-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}
.wholesale-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(106,63,125,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--blue-dark);
  padding: 0 13px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(35,24,48,0.055);
}
.corporate-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.corporate-card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.corporate-card {
  min-height: 190px;
  border: 1px solid rgba(32,26,40,0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.corporate-card:hover { transform: translateY(-3px); border-color: rgba(106,63,125,0.18); box-shadow: var(--shadow-hover); }
.corporate-card b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 14px;
}
.corporate-card h3 { margin: 0 0 10px; color: var(--blue-dark); font-size: 20px; }
.corporate-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: process; }
.process-step {
  counter-increment: process;
  position: relative;
  min-height: 178px;
  border: 1px solid rgba(32,26,40,0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.process-step::before {
  content: counter(process, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 900;
}
.process-step h3 { margin: 0 0 8px; color: var(--blue-dark); font-size: 18px; }
.process-step p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }
.b2b-note {
  border-left: 4px solid var(--teal);
  background: var(--ice);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  color: var(--soft-ink);
  line-height: 1.65;
}

.product-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: stretch; }
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  border-color: rgba(32,26,40,0.08);
  box-shadow: 0 1px 2px rgba(32,26,40,0.04);
}
.product-media {
  height: 380px;
  min-height: 380px;
  flex: 0 0 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fbfafd, #ffffff);
  border-bottom: 1px solid rgba(32,26,40,0.06);
  padding: 32px;
}
.product-media img {
  width: 100%;
  height: 100%;
  max-width: 440px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 22px rgba(35, 24, 48, 0.12));
}
.product-media--shrink-80 img { transform: scale(0.8); }
.product-media--grow-120 img { transform: scale(1.2); }
.product-media.placeholder, .product-hero-media.placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-media.placeholder::before {
  content: "";
  width: 168px;
  height: 168px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(131,216,198,0.2), rgba(106,63,125,0.14)),
    #fbfafd;
  border: 1px solid rgba(32,26,40,0.08);
  box-shadow: inset 0 0 0 12px rgba(255,255,255,0.74), 0 14px 26px rgba(35, 24, 48, 0.08);
}
.product-media.placeholder { color: transparent; }
.product-body { display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 28px 24px 32px; text-align: center; }
.product-card h3 { margin: 0; color: var(--blue-dark); font-size: 24px; font-weight: 800; line-height: 1.2; }
.product-card .product-meta { margin: 0; }
.product-link { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 16px; border: 1px solid rgba(106,63,125,0.18); border-radius: 999px; color: var(--blue); font-weight: 900; font-size: 12px; width: fit-content; text-transform: uppercase; letter-spacing: 0.04em; }
.product-link:hover { color: #fff; background: var(--brand-action); transform: translateY(-1px); box-shadow: 0 12px 24px rgba(106, 63, 125, 0.16); }

.trust-grid { grid-template-columns: repeat(4, 1fr); }
.blue-band .trust-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
.blue-band .trust-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.11); border-color: rgba(131,216,198,0.4); box-shadow: 0 24px 50px rgba(0,0,0,0.14); }
.blue-band .trust-card h3 { color: #fff; }
.blue-band .trust-card p { color: rgba(255,255,255,0.75); }
.trust-card { position: relative; overflow: hidden; }
.trust-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brand-action), var(--teal)); opacity: 0; transition: opacity var(--ease); }
.trust-card:hover::before { opacity: 1; }
.trust-card b { display: inline-flex; align-items: center; margin-bottom: 20px; padding: 6px 14px; border-radius: 999px; background: linear-gradient(120deg, var(--blue-soft), #fff); color: var(--blue); font-size: 15px; font-weight: 900; letter-spacing: 0.01em; box-shadow: inset 0 0 0 1px rgba(106,63,125,0.12); }
.blue-band .trust-card b { background: linear-gradient(120deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)); color: var(--teal); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14); }
.trust-card:hover { transform: translateY(-4px); border-color: rgba(106,63,125,0.18); box-shadow: var(--shadow-hover); }

.category-section { padding-top: 32px; }
.category-section + .category-section { border-top: 1px solid var(--line); }
.category-title { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 18px; }

.shipping-list { display: grid; gap: 14px; counter-reset: shipping; }
.shipping-step { counter-increment: shipping; display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; border: 1px solid rgba(32,26,40,0.1); background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-soft); }
.shipping-step::before { content: counter(shipping, decimal-leading-zero); display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 900; }
.shipping-step h3 { margin: 0 0 6px; color: var(--blue-dark); font-size: 20px; }
.shipping-step p { margin: 0; color: var(--muted); line-height: 1.65; }

.breadcrumb { margin-bottom: 24px; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--blue); font-weight: 800; }
.product-detail-hero { padding: 74px 0; background: linear-gradient(120deg, #fff 0%, #f7f5f9 54%, #efebf3 100%); border-bottom: 1px solid rgba(32,26,40,0.1); }
.product-detail-hero-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr); gap: clamp(28px, 5vw, 68px); align-items: center; }
.product-hero-media {
  min-height: 340px;
  max-height: 420px;
  border: 1px solid rgba(32,26,40,0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
}
.product-hero-media img {
  width: 100%;
  max-width: 520px;
  max-height: 340px;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.product-detail-image-wrapper {
  height: 420px;
  max-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}
.product-detail-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.detail-section { padding: clamp(48px, 6.5vw, 78px) 0; }
.detail-section.light-band { background: #fff; }
.detail-section .section-head { margin-bottom: 24px; }
.clinical-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.clinical-card { border: 1px solid rgba(32,26,40,0.1); background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-soft); }
.clinical-card h3 { margin: 0 0 10px; color: var(--blue-dark); font-size: 20px; }
.clinical-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.detail-two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }
.detail-card { border: 1px solid rgba(32,26,40,0.1); background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: 0 10px 28px rgba(35, 24, 48, 0.055); }
.detail-card:hover { border-color: rgba(106,63,125,0.16); box-shadow: var(--shadow-soft); }
.detail-card h3 { margin: 0 0 14px; color: var(--blue-dark); }
.detail-card p { margin: 0; color: var(--soft-ink); line-height: 1.75; }
.detail-card ul { margin: 0; padding-left: 18px; color: var(--soft-ink); line-height: 1.75; }
.spec-list { display: grid; gap: 12px; }
.spec-row { display: grid; grid-template-columns: 170px 1fr; gap: 14px; border-bottom: 1px solid var(--line); padding-bottom: 12px; color: var(--soft-ink); }
.spec-row b { color: var(--blue-dark); }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 0 14px; font: inherit; color: var(--ink); transition: border-color var(--ease), box-shadow var(--ease);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.contact-form textarea { min-height: 130px; padding-top: 12px; resize: vertical; }
.contact-form .field.full, .contact-form button, .form-result { grid-column: 1 / -1; }
.panel--form { display: flex; flex-direction: column; }
.panel--form .contact-form { flex: 1; grid-template-rows: auto auto 1fr auto auto; }
.panel--form .contact-form .field.full:has(textarea) { height: 100%; }
.panel--form .contact-form textarea { flex: 1; min-height: 130px; }
.contact-form button { min-height: 48px; border: 0; border-radius: 999px; background: var(--blue); color: #fff; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.form-result { display: none; border: 1px solid var(--line); background: var(--ice); border-radius: 8px; padding: 14px; color: var(--soft-ink); line-height: 1.6; }
.form-result.is-visible { display: block; }
.form-result a { display: inline-flex; margin: 10px 12px 0 0; color: var(--blue); font-weight: 900; }

.cta-band { background: linear-gradient(120deg, var(--brand-primary), var(--brand-action)); color: #fff; }
.cta-box { display: flex; justify-content: center; gap: clamp(24px, 4vw, 48px); align-items: center; }
.cta-box > div:not(.button-row) { max-width: 680px; }
.cta-box h2 { color: #fff; }
.cta-box p { margin: 12px 0 0; color: rgba(255,255,255,0.76); line-height: 1.65; }
.cta-box .button { background: #fff; color: var(--blue-dark); border-color: #fff; }

.footer { background: var(--brand-primary); color: rgba(255,255,255,0.72); }
.footer-inner { display: grid; grid-template-columns: 1.3fr 0.75fr 0.75fr 0.95fr; gap: 24px; padding: 42px clamp(18px, 4vw, 64px); font-size: 14px; line-height: 1.65; }
.footer strong { display: block; margin-bottom: 12px; color: #fff; }
.footer a { display: block; margin-bottom: 7px; }
.footer-contact-list { display: flex; flex-direction: column; }
.footer a.footer-contact-item { display: flex; align-items: center; gap: 12px; padding: 11px 0; margin: 0; color: inherit; text-decoration: none; transition: transform var(--ease); }
.footer-contact-item:first-child { padding-top: 0; }
.footer-contact-item:last-child { padding-bottom: 0; }
.footer-contact-item:hover { transform: translateX(3px); }
.footer-contact-item:hover .footer-contact-icon { background: var(--teal); color: var(--brand-primary); }
.footer-contact-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.12); color: #fff; flex: 0 0 auto; transition: background var(--ease), color var(--ease); }
.footer-contact-icon svg { width: 16px; height: 16px; }
.footer-contact-text { display: flex; flex-direction: column; gap: 2px; }
.footer-contact-text b { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.52); }
.footer-contact-text span { font-size: 13.5px; font-weight: 700; color: #fff; }
.footer-brand { margin-bottom: 18px; }
.footer-brand .brand { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px clamp(18px, 4vw, 64px); color: rgba(255,255,255,0.52); font-size: 13px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none !important; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-wrap.is-open .nav-links { position: absolute; left: 18px; right: 18px; top: 74px; display: grid !important; gap: 0; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); border-radius: 8px; }
  .nav-wrap.is-open .nav-links a { padding: 16px; border-bottom: 1px solid var(--line); }
  .nav-wrap.is-open .nav-item { display: block; }
  .nav-wrap.is-open .nav-caret { display: none; }
  .nav-wrap.is-open .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: var(--paper);
    display: grid;
    gap: 0;
  }
  .nav-wrap.is-open .nav-dropdown a { padding: 14px 16px 14px 32px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; }
}
@media (max-width: 1100px) {
  .hero-grid, .intro-grid, .detail-grid, .contact-grid, .shipping-grid, .section-head, .cta-box { grid-template-columns: 1fr; }
  .hero::before { background-position: 66% 50%; opacity: 1; }
  .hero::after { background: linear-gradient(90deg, rgba(255,255,255,0.99) 0%, rgba(249,247,253,0.96) 46%, rgba(249,247,253,0.36) 60%, rgba(255,255,255,0) 76%); }
  .hero-visual-space { min-height: 220px; }
  .product-detail-hero-grid, .detail-two-col { grid-template-columns: 1fr; }
  .corporate-card-grid { grid-template-columns: repeat(2, 1fr); }
  .corporate-card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .hero { min-height: auto; background: #fff; }
  .hero::before { opacity: 0.28; background-size: cover; background-position: 72% 50%; }
  .hero::after { background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(249,247,253,0.94) 64%, rgba(255,255,255,0.9) 100%); }
  .hero-inner { padding-top: 56px; padding-bottom: 56px; }
  h1 { font-size: clamp(38px, 10vw, 54px); }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-artwork-wrap { min-height: auto; }
  .hero-visual-space {
    min-height: 240px;
    background-image: url("hero-partner-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    margin-top: 12px;
  }
  .home-trust-bar { grid-template-columns: 1fr; margin-top: 0; border-radius: 14px; }
  .home-trust-item, .home-trust-item:nth-child(2) { border-right: 0; border-bottom: 1px solid rgba(32,26,40,0.08); }
  .home-trust-item:last-child { border-bottom: 0; }
  .catalog-product-grid { grid-template-columns: 1fr; }
  .corporate-card-grid, .process-grid { grid-template-columns: 1fr; }
  .catalog-section-head { display: block; }
  .catalog-count { display: block; margin-top: 10px; }
  .product-grid, .category-grid, .trust-grid, .faq-grid, .brand-grid, .blog-grid, .contact-form, .footer-inner { grid-template-columns: 1fr; }
  .clinical-grid { grid-template-columns: 1fr; }
  .product-hero-media { min-height: 280px; max-height: 360px; }
  .product-hero-media img { max-height: 280px; }
  .product-detail-image-wrapper { height: 320px; max-height: 320px; }
  .spec-row { grid-template-columns: 1fr; }
  .brand { width: min(168px, 52vw); }
  .nav-actions { gap: 6px; }
  .lang-switch { padding: 0 10px; }
}