:root {
  --blue-950: #061b32;
  --blue-900: #092744;
  --blue-800: #0b3c78;
  --blue-700: #0e4c96;
  --blue-100: #e9f2fc;
  --green-800: #05642f;
  --green-700: #008b3f;
  --green-600: #00a148;
  --green-100: #eaf7ef;
  --yellow-500: #ffc515;
  --yellow-100: #fff7d7;
  --ink: #142435;
  --muted: #5e6f7e;
  --line: #dce5e8;
  --surface: #ffffff;
  --surface-soft: #f5f8f7;
  --shadow-sm: 0 8px 24px rgba(6, 27, 50, 0.08);
  --shadow-md: 0 18px 50px rgba(6, 27, 50, 0.13);
  --shadow-lg: 0 28px 80px rgba(6, 27, 50, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --container: min(1180px, calc(100% - 40px));
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(255, 197, 21, .35); color: var(--blue-950); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  z-index: 9999;
  background: var(--surface);
  color: var(--blue-900);
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { background: var(--blue-950); color: #fff; }
.section-gradient {
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 161, 72, .13), transparent 35%),
    radial-gradient(circle at 88% 12%, rgba(255, 197, 21, .13), transparent 32%),
    linear-gradient(180deg, #f9fcfb 0%, #f2f8f5 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--green-700);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-600), var(--yellow-500));
}
.section-dark .eyebrow { color: #a8ebc4; }

h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -.035em; color: var(--blue-950); }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.7rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
h4 { font-size: 1.1rem; letter-spacing: -.015em; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
p { margin: 0; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--muted); max-width: 760px; }
.section-dark .lead { color: #c5d1db; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.text-center { text-align: center; }
.text-center .lead { margin-inline: auto; }

.header {
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(220, 229, 232, .72);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.header.scrolled { box-shadow: 0 10px 34px rgba(6, 27, 50, .08); background: rgba(255, 255, 255, .97); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 235px; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { color: var(--blue-800); font-size: 1.12rem; letter-spacing: .08em; }
.brand-copy span { color: var(--green-700); font-size: .72rem; font-weight: 800; letter-spacing: .2em; margin-top: 5px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 11px 13px;
  border-radius: 10px;
  color: #3c5265;
  font-size: .94rem;
  font-weight: 650;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--blue-900); background: var(--blue-100); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 13px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--blue-900);
}
.menu-toggle svg { width: 23px; height: 23px; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: .96rem;
  font-weight: 780;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(255, 197, 21, .65); outline-offset: 3px; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--green-700), var(--green-600)); box-shadow: 0 12px 28px rgba(0, 139, 63, .2); }
.btn-primary:hover { box-shadow: 0 16px 32px rgba(0, 139, 63, .28); }
.btn-blue { color: #fff; background: linear-gradient(135deg, var(--blue-800), var(--blue-700)); box-shadow: 0 12px 28px rgba(11, 60, 120, .22); }
.btn-secondary { color: var(--blue-900); background: #fff; border-color: var(--line); box-shadow: 0 6px 18px rgba(6, 27, 50, .06); }
.btn-secondary:hover { border-color: #b8c8d0; box-shadow: 0 12px 24px rgba(6, 27, 50, .1); }
.btn-ghost { color: #fff; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .18); }
.btn-ghost:hover { background: rgba(255, 255, 255, .14); }
.btn-sm { min-height: 42px; padding: 10px 15px; font-size: .88rem; }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

.hero {
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 75% 10%, rgba(0, 161, 72, .18), transparent 31%),
    radial-gradient(circle at 5% 85%, rgba(255, 197, 21, .13), transparent 27%),
    linear-gradient(135deg, #f7fbf9 0%, #f3f7fb 52%, #f7fbf9 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image: linear-gradient(rgba(9, 39, 68, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(9, 39, 68, .06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 64px; align-items: center; position: relative; z-index: 1; padding: 72px 0; }
.hero-copy h1 { max-width: 760px; }
.hero-copy h1 .accent { color: var(--green-700); }
.hero-copy .lead { margin-top: 25px; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 34px; color: #486071; font-size: .9rem; font-weight: 650; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 18px; height: 18px; color: var(--green-700); }

.hero-visual { position: relative; min-height: 580px; }
.hero-logo-card {
  position: absolute;
  width: min(360px, 72%);
  aspect-ratio: 1;
  top: 5%;
  left: 14%;
  padding: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.hero-logo-card img { width: 100%; height: 100%; object-fit: contain; }
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(220, 229, 232, .9);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
.float-card img { width: 100%; height: 100%; object-fit: cover; }
.float-card.hyajoint { width: 270px; height: 198px; right: -2%; top: 0; transform: rotate(4deg); }
.float-card.nerve { width: 260px; height: 190px; left: -5%; bottom: 3%; transform: rotate(-5deg); animation-delay: -2s; }
.float-card.ortho { width: 270px; height: 198px; right: 1%; bottom: 0; transform: rotate(4deg); animation-delay: -4s; }
.hero-badge {
  position: absolute;
  z-index: 4;
  left: 2%;
  top: 6%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 16px;
  color: #fff;
  background: var(--blue-900);
  box-shadow: var(--shadow-md);
  font-size: .88rem;
  font-weight: 750;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--yellow-500); box-shadow: 0 0 0 5px rgba(255,197,21,.18); }
@keyframes float { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 27px 24px; display: flex; align-items: center; gap: 13px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 43px; height: 43px; border-radius: 13px; display: grid; place-items: center; color: var(--green-700); background: var(--green-100); flex: 0 0 auto; }
.trust-icon svg { width: 22px; height: 22px; }
.trust-item strong { display: block; color: var(--blue-900); font-size: .94rem; }
.trust-item span { display: block; color: var(--muted); font-size: .82rem; margin-top: 2px; }

.section-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 64px; align-items: end; margin-bottom: 52px; }
.section-heading .lead { justify-self: end; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: #c4d5dc; }
.product-media { aspect-ratio: 1.3 / 1; padding: 10px; background: #f7faf8; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; transition: transform .35s ease; }
.product-card:hover .product-media img { transform: scale(1.025); }
.product-body { padding: 26px 27px 28px; display: flex; flex: 1; flex-direction: column; }
.product-kicker { color: var(--green-700); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.product-body h3 { margin-bottom: 12px; }
.product-body p { color: var(--muted); font-size: .95rem; }
.feature-chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 21px 0 24px; }
.feature-chips span { padding: 7px 10px; border-radius: 999px; background: var(--surface-soft); border: 1px solid #e5ebea; color: #405667; font-size: .76rem; font-weight: 750; }
.product-actions { margin-top: auto; display: flex; gap: 10px; }
.product-actions .btn { flex: 1; }

.value-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.value-panel {
  min-height: 560px;
  border-radius: var(--radius-xl);
  padding: 44px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,197,21,.25), transparent 31%),
    linear-gradient(150deg, var(--blue-900), var(--blue-950));
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.value-panel::after { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; border: 55px solid rgba(255,255,255,.05); right: -95px; bottom: -105px; }
.value-panel h2 { color: #fff; max-width: 520px; position: relative; z-index: 1; }
.value-panel p { color: #c8d5df; margin-top: 21px; max-width: 520px; position: relative; z-index: 1; }
.value-stat { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 56px; position: relative; z-index: 1; }
.value-stat div { padding: 22px; border-radius: 20px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.value-stat strong { display: block; color: #fff; font-size: 1.1rem; }
.value-stat span { display: block; color: #afc1cf; font-size: .84rem; margin-top: 5px; }
.value-list { display: grid; gap: 16px; }
.value-item { display: grid; grid-template-columns: 54px 1fr; gap: 17px; padding: 23px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.value-item-icon { width: 54px; height: 54px; border-radius: 17px; display: grid; place-items: center; color: var(--blue-800); background: var(--blue-100); }
.value-item-icon svg { width: 26px; height: 26px; }
.value-item p { color: var(--muted); font-size: .92rem; margin-top: 8px; }

.flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.flow-item { position: relative; padding: 0 28px 0 0; counter-increment: step; }
.flow-item:not(:last-child)::after { content: ""; position: absolute; height: 2px; top: 28px; left: 58px; right: 8px; background: linear-gradient(90deg, var(--green-600), #cce7d5); }
.flow-number { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--green-700); box-shadow: 0 8px 20px rgba(0,139,63,.22); position: relative; z-index: 1; font-weight: 850; }
.flow-number::before { content: counter(step, decimal-leading-zero); }
.flow-item h3 { font-size: 1.15rem; margin-top: 22px; letter-spacing: -.02em; }
.flow-item p { color: var(--muted); font-size: .9rem; margin-top: 9px; }

.audiences-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.audience-card { min-height: 310px; padding: 31px; border-radius: 26px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.06); }
.audience-icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; color: var(--yellow-500); background: rgba(255,197,21,.1); margin-bottom: 26px; }
.audience-icon svg { width: 27px; height: 27px; }
.audience-card p { color: #b8c7d2; margin-top: 12px; font-size: .94rem; }
.audience-card ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.audience-card li { display: flex; gap: 9px; align-items: flex-start; color: #d6e0e7; font-size: .88rem; }
.audience-card li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green-600); margin-top: 8px; flex: 0 0 auto; }

.faq-wrap { max-width: 900px; margin: 48px auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-button { width: 100%; padding: 23px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: transparent; border: 0; text-align: left; color: var(--blue-950); font-weight: 760; }
.faq-button svg { width: 21px; height: 21px; transition: transform .2s ease; flex: 0 0 auto; }
.faq-button[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-panel > div { overflow: hidden; }
.faq-panel p { color: var(--muted); padding: 0 4px 24px; }
.faq-item.open .faq-panel { grid-template-rows: 1fr; }

.contact-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.contact-info { padding: 48px; color: #fff; background: linear-gradient(150deg, var(--green-800), #073a2a); position: relative; overflow: hidden; }
.contact-info::after { content: ""; position: absolute; width: 340px; height: 340px; border: 55px solid rgba(255,255,255,.06); border-radius: 50%; right: -135px; bottom: -120px; }
.contact-info h2 { color: #fff; font-size: clamp(2rem, 3.4vw, 3.1rem); }
.contact-info > p { color: #c4ded0; margin-top: 20px; }
.contact-points { display: grid; gap: 14px; margin-top: 38px; position: relative; z-index: 1; }
.contact-point { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; padding: 15px; border-radius: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.contact-point-icon { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; color: var(--yellow-500); background: rgba(255,197,21,.1); }
.contact-point-icon svg { width: 21px; height: 21px; }
.contact-point strong { display: block; font-size: .9rem; }
.contact-point span, .contact-point a { display: block; color: #c9ddd2; font-size: .84rem; margin-top: 2px; }
.contact-form { padding: 48px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: #344b5d; font-size: .82rem; font-weight: 760; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfcfc;
  border: 1px solid #d6e0e4;
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field textarea { min-height: 126px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(0,161,72,.1); background: #fff; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; }
.form-footer p { color: var(--muted); font-size: .76rem; max-width: 390px; }
.form-status { margin-top: 15px; padding: 13px 15px; border-radius: 12px; display: none; font-size: .88rem; }
.form-status.success { display: block; color: #075b2b; background: #e8f8ee; border: 1px solid #bfe6cd; }
.form-status.warning { display: block; color: #755600; background: #fff8da; border: 1px solid #f0db83; }

.cta-band { padding: 62px 0; background: linear-gradient(120deg, var(--blue-900), var(--blue-950)); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.cta-inner h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.35rem); max-width: 760px; }
.cta-inner p { color: #c2d0dc; margin-top: 14px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 0 auto; }

.footer { padding: 70px 0 26px; background: #041526; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr .8fr; gap: 48px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 58px; height: 58px; }
.footer-brand strong { display: block; font-size: 1.1rem; letter-spacing: .08em; }
.footer-brand span { display: block; color: #75d79d; font-size: .75rem; font-weight: 800; letter-spacing: .18em; margin-top: 4px; }
.footer-about { color: #9fb0bd; max-width: 360px; margin-top: 20px; font-size: .9rem; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 18px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a, .footer-links span { color: #9fb0bd; font-size: .87rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; padding-top: 35px; margin-top: 46px; border-top: 1px solid rgba(255,255,255,.09); color: #8194a3; font-size: .78rem; }
.footer-disclaimer { max-width: 780px; }

.floating-commercial {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 700;
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-700);
  box-shadow: 0 15px 40px rgba(0, 122, 54, .34);
  font-size: .9rem;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-commercial:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(0, 122, 54, .42); }
.floating-commercial svg { width: 21px; height: 21px; }

/* Internal pages */
.page-hero {
  padding: 90px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(0,161,72,.16), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(255,197,21,.12), transparent 30%),
    linear-gradient(135deg, #f7fbf9, #f3f7fb);
}
.page-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: center; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: var(--muted); font-size: .82rem; margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb span { opacity: .55; }
.page-hero h1 { font-size: clamp(2.7rem, 5vw, 5rem); max-width: 740px; }
.page-hero .lead { margin-top: 23px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 31px; }
.product-hero-image { padding: 11px; border-radius: 34px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.product-hero-image img { display:block; width:100%; height:auto; max-height:560px; object-fit:contain; border-radius: 26px; }
.spec-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-item { background: #fff; padding: 28px 25px; text-align: center; }
.spec-item strong { display: block; color: var(--blue-900); font-size: 1.02rem; }
.spec-item span { display: block; color: var(--muted); font-size: .78rem; margin-top: 4px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.detail-copy p { color: var(--muted); margin-top: 18px; }
.detail-card { padding: 32px; border-radius: 27px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.detail-card + .detail-card { margin-top: 17px; }
.detail-card h3 { font-size: 1.32rem; }
.check-list { list-style: none; padding: 0; margin: 21px 0 0; display: grid; gap: 13px; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; color: #3f5464; font-size: .94rem; }
.check-list li::before { content: "✓"; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--green-700); font-size: .75rem; font-weight: 900; margin-top: 2px; }
.info-note { margin-top: 23px; padding: 16px 18px; border-radius: 14px; color: #485d6c; background: #f4f8f6; border-left: 4px solid var(--green-600); font-size: .86rem; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; }
.spec-table { width: 100%; border-collapse: collapse; min-width: 610px; }
.spec-table th, .spec-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .89rem; }
.spec-table th { width: 33%; color: var(--blue-900); background: #f7f9f9; }
.spec-table td { color: #465d6d; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.doc-card { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.doc-card svg { width: 31px; height: 31px; color: var(--green-700); }
.doc-card h3 { font-size: 1.15rem; margin-top: 18px; }
.doc-card p { color: var(--muted); font-size: .88rem; margin-top: 9px; }

.commercial-hero { padding: 96px 0; color: #fff; background: linear-gradient(145deg, var(--blue-950), var(--blue-900)); }
.commercial-hero h1 { color: #fff; max-width: 900px; }
.commercial-hero .lead { color: #c1cfda; margin-top: 23px; }
.commercial-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 45px; }
.commercial-metric { padding: 22px; border-radius: 20px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); }
.commercial-metric strong { display: block; color: #fff; }
.commercial-metric span { display: block; color: #aebfcb; font-size: .84rem; margin-top: 5px; }

.legal-page { max-width: 900px; margin: 0 auto; }
.legal-page h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.legal-page h2 { font-size: 1.65rem; margin-top: 44px; }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page p { margin-top: 14px; }
.legal-page ul { margin-top: 14px; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 21, 38, .68);
  backdrop-filter: blur(5px);
}
.modal.open { display: flex; }
.modal-card { width: min(620px, 100%); max-height: min(760px, calc(100vh - 40px)); overflow: auto; border-radius: 26px; background: #fff; box-shadow: var(--shadow-lg); }
.modal-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 25px; border-bottom: 1px solid var(--line); }
.modal-head h3 { font-size: 1.35rem; }
.modal-close { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; }
.modal-body { padding: 25px; }
.modal-body p { color: var(--muted); }
.request-preview { white-space: pre-wrap; margin-top: 17px; padding: 17px; border-radius: 14px; background: #f4f7f6; border: 1px solid var(--line); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .8rem; color: #294152; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

@media (max-width: 1080px) {
  :root { --container: min(100% - 32px, 1040px); }
  .nav { position: fixed; inset: var(--header-h) 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 18px 16px 26px; background: rgba(255,255,255,.99); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; }
  .menu-toggle { display: inline-flex; }
  .header-actions .btn { display: none; }
  .hero-grid { gap: 30px; }
  .hero-visual { min-height: 520px; }
  .float-card.hyajoint { right: 0; }
  .float-card.nerve { left: 0; }
  .float-card.ortho { right: 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:last-child { grid-column: span 2; max-width: calc(50% - 11px); justify-self: center; }
  .footer-grid { grid-template-columns: 1.3fr .7fr .7fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  :root { --header-h: 74px; }
  .section { padding: 82px 0; }
  .hero { min-height: auto; }
  .hero-grid, .page-hero-grid, .value-grid, .contact-wrap, .detail-grid { grid-template-columns: 1fr; }
  .hero-grid { padding: 70px 0 56px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-visual { min-height: 540px; max-width: 680px; width: 100%; margin-inline: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading .lead { justify-self: start; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .flow-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .flow-item:not(:last-child)::after { display: none; }
  .audiences-grid, .docs-grid { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 38px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .page-hero { padding: 70px 0; }
  .product-hero-image { max-width: 680px; margin-inline: auto; }
  .spec-strip { grid-template-columns: 1fr 1fr; }
  .spec-item:nth-child(2) { border-right: 0; }
  .spec-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .commercial-metrics { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 26px); }
  .brand { min-width: auto; }
  .brand-copy strong { font-size: .98rem; }
  .brand-copy span { font-size: .64rem; }
  .header-inner { gap: 12px; }
  h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-grid { padding-top: 54px; }
  .hero-visual { min-height: 445px; }
  .hero-logo-card { width: 250px; left: calc(50% - 125px); top: 8%; padding: 17px; }
  .float-card.hyajoint { width: 195px; height: 143px; right: -3%; top: 3%; }
  .float-card.nerve { width: 190px; height: 138px; left: -4%; bottom: 0; }
  .float-card.ortho { width: 190px; height: 140px; right: -4%; bottom: -2%; }
  .hero-badge { left: 1%; top: 0; font-size: .75rem; padding: 10px 12px; }
  .trust-grid, .products-grid, .flow-grid, .footer-grid, .form-grid, .value-stat { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .product-card:last-child { grid-column: auto; max-width: none; }
  .value-panel { padding: 32px 27px; min-height: auto; }
  .contact-info, .contact-form { padding: 31px 24px; }
  .form-field.full { grid-column: auto; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .floating-commercial { right: 12px; bottom: 12px; width: 52px; padding: 0; justify-content: center; }
  .floating-commercial span { display: none; }
  .spec-strip { grid-template-columns: 1fr; }
  .spec-item { border-bottom: 1px solid var(--line); }
  .spec-item:last-child { border-bottom: 0; }
  .page-hero { text-align: center; }
  .breadcrumb, .page-hero-actions { justify-content: center; }
  .commercial-hero { padding: 72px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* Brasil Medical OPME — ajustes comerciais 2026-08 */
.footer-domain { color:#75d79d; margin-top:12px; font-size:.84rem; font-weight:700; }
.privacy-check { display:flex; gap:10px; align-items:flex-start; margin-top:20px; color:var(--muted); font-size:.8rem; }
.privacy-check input { margin-top:4px; accent-color:var(--green-700); }
.privacy-check a { color:var(--green-700); text-decoration:underline; }
.illustration-label { display:block; text-align:center; color:var(--muted); font-size:.72rem; padding:8px 10px 4px; }
.source-box { margin-top:38px; padding:26px; border:1px solid var(--line); border-radius:22px; background:rgba(255,255,255,.78); }
.source-box h3 { font-size:1.22rem; }
.source-box > p { color:var(--muted); font-size:.86rem; margin-top:8px; }
.source-links { display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.source-link { display:inline-flex; align-items:center; gap:9px; padding:10px 13px; border:1px solid var(--line); border-radius:12px; background:#fff; color:var(--blue-900); font-size:.82rem; font-weight:750; }
.source-link:hover { border-color:#b8c8d0; box-shadow:var(--shadow-sm); }
.light-cards .audience-card { color:var(--ink); background:#fff; border-color:var(--line); box-shadow:var(--shadow-sm); }
.light-cards .audience-card h3 { color:var(--blue-950); }
.light-cards .audience-card p,.light-cards .audience-card li { color:var(--muted); }
.error-page { max-width:760px; min-height:55vh; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; }
.error-page .lead { margin-top:20px; }
.legal-page a { color:var(--green-700); text-decoration:underline; }
@media (max-width:620px){
  .hero-visual { min-height:390px; }
  .hero-logo-card { width:220px; left:calc(50% - 110px); }
  .float-card.hyajoint { width:165px; height:121px; }
  .float-card.nerve,.float-card.ortho { width:160px; height:118px; }
  .source-links { display:grid; }
}

@media (max-width:620px){
  .hero-copy h1 { font-size: clamp(2.35rem, 11.5vw, 2.8rem); line-height: 1.03; }
  .hero-copy .lead { font-size: 1rem; line-height: 1.55; margin-top: 20px; }
  .hero-grid { padding-top: 42px; padding-bottom: 42px; }
  .hero-visual { display:none; }
  .hero-actions { margin-top: 26px; }
  .hero-actions .btn { width:100%; }
  .hero-meta { display:grid; grid-template-columns:1fr; gap:10px; justify-content:start; text-align:left; margin:26px auto 0; width:max-content; max-width:100%; }
}


/* Agosto/2026 – ajustes comerciais / WhatsApp */
.btn-whatsapp { color:#fff; background:linear-gradient(135deg, #25d366, #18a957); box-shadow:0 12px 28px rgba(37,211,102,.28); }
.btn-whatsapp:hover { box-shadow:0 16px 32px rgba(37,211,102,.34); }
.form-grid-simple { grid-template-columns: 1fr 1fr; }
.form-actions-inline { display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 700;
  min-height: 54px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c4a);
  box-shadow: 0 15px 40px rgba(18, 140, 74, .34);
  font-size: .9rem;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(18, 140, 74, .42); }
.floating-whatsapp svg { width: 21px; height: 21px; }
.product-media { background:#fff; }
.product-media img { object-fit: contain; padding: 10px; }
.float-card { background:#fff; }
.float-card img { width:100%; height:100%; object-fit:contain; padding:10px; }
.product-hero-image { display:flex; flex-direction:column; }
.product-hero-image img { width:100%; height:auto; object-fit:contain; background:#fff; }
@media (max-width: 767px) {
  .form-grid-simple { grid-template-columns: 1fr; }
  .form-footer { align-items:flex-start; }
  .floating-whatsapp { right: 12px; bottom: 12px; width: 54px; padding: 0; justify-content: center; }
  .floating-whatsapp span { display:none; }
}


/* Correções finais – imagens oficiais */
.product-media { display:flex; align-items:center; justify-content:center; background:#fff; }
.product-media img { object-fit: contain; padding: 0; max-height: 250px; }
.float-card img { object-fit: contain; padding: 0; background:#fff; }
.product-hero-image img { background:#fff; }
.catalog-grid {
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.catalog-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius: 26px;
  padding: 16px;
  box-shadow: var(--shadow-md);
}
.catalog-card img {
  width:100%;
  height:auto;
  display:block;
  border-radius:18px;
  background:#fff;
}
.catalog-card figcaption {
  margin-top:12px;
  color: var(--muted);
  font-size:.95rem;
  line-height:1.5;
}
@media (max-width: 900px) {
  .catalog-grid { grid-template-columns: 1fr; }
}


/* Ajustes comerciais finais */
.btn-email {
  color: var(--blue-950);
  background: linear-gradient(135deg, #eef6fb, #ffffff);
  border-color: #c7d9e6;
  box-shadow: 0 10px 24px rgba(9, 39, 68, .08);
}
.btn-email:hover { border-color: #9fb8ca; box-shadow: 0 14px 28px rgba(9, 39, 68, .12); }
.header-actions { flex-wrap: wrap; justify-content: flex-end; }
.header-actions .btn { white-space: nowrap; }
.hero-actions .btn, .page-hero-actions .btn, .cta-actions .btn, .form-actions-inline .btn, .product-inline-actions .btn {
  justify-content: center;
  min-height: 52px;
}
.hero-actions .btn, .page-hero-actions .btn { min-width: 210px; }
.contact-quick-actions, .product-inline-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.contact-quick-actions .btn { flex:1 1 220px; }
.form-actions-inline .btn { flex: 1 1 220px; }
.product-inline-actions .btn { flex:1 1 180px; }
.cta-actions .btn { min-width: 210px; }
.hero-actions { align-items: stretch; }
.page-hero-actions, .cta-actions { align-items: stretch; }
.floating-whatsapp {
  min-width: 246px;
  padding: 10px 18px;
}
.floating-copy { display:flex; flex-direction:column; line-height:1.1; }
.floating-copy small { font-size:.74rem; opacity:.88; margin-top:3px; }
.product-media {
  min-height: 270px;
  padding: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-media img { width:100%; height:100%; object-fit:contain; }
.float-card {
  overflow:hidden;
  padding: 6px;
}
.float-card img { width:100%; height:100%; object-fit:contain; }
.contact-point a { word-break: break-word; }
@media (max-width: 1120px) {
  .header-actions .btn-email { display:none; }
}
@media (max-width: 767px) {
  .header-actions .btn { display:none; }
  .hero-actions .btn, .page-hero-actions .btn, .cta-actions .btn, .form-actions-inline .btn, .contact-quick-actions .btn, .product-inline-actions .btn { width:100%; min-width:0; }
  .floating-whatsapp { min-width: 54px; }
  .floating-copy { display:none; }
}
