:root {
  --navy: #173b5c;
  --navy-dark: #0d273e;
  --navy-soft: #e8eff5;
  --gray-50: #f6f8f9;
  --gray-100: #eef2f5;
  --gray-200: #d8e0e7;
  --gray-600: #536272;
  --text: #17212b;
  --white: #ffffff;
  --accent: #34765a;
  --shadow: 0 16px 38px rgba(13, 39, 62, 0.11);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Pretendard", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Malgun Gothic", sans-serif;
  background: var(--white);
  line-height: 1.65;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(216, 224, 231, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.logo-symbol {
  position: relative;
  display: block;
  flex: 0 0 62px;
  width: 62px;
  height: 46px;
  overflow: hidden;
  background: var(--white);
  border-radius: 6px;
}

.logo-symbol img {
  position: absolute;
  top: -9px;
  left: -25px;
  width: 112px;
  max-width: none;
  height: auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.2;
}

.brand small {
  margin-top: 3px;
  color: var(--gray-600);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #26394d;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 76px));
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/workshop-sewing.png") center 58% / cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 34, 56, 0.8) 0%, rgba(12, 34, 56, 0.56) 45%, rgba(12, 34, 56, 0.14) 100%),
    linear-gradient(0deg, rgba(12, 34, 56, 0.6), rgba(12, 34, 56, 0.05) 44%);
}

.hero-copy {
  width: min(100%, 920px);
  padding: clamp(64px, 8vw, 96px) clamp(20px, 5vw, 64px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.hero .eyebrow {
  color: #9ed5bd;
  font-size: 18px;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 900px;
  font-size: clamp(40px, 5.3vw, 64px);
  line-height: 1.18;
  font-weight: 800;
  word-break: keep-all;
}

h1 span {
  display: block;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 20px);
  word-break: keep-all;
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin: -6px 0 22px;
  color: var(--white);
  font-size: 17px;
}

.hero-keywords strong {
  font-size: 19px;
}

.hero-keywords span {
  padding-left: 18px;
  color: #b7e4cd;
  font-weight: 800;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(13, 38, 63, 0.16);
}

.button.primary {
  color: var(--white);
  background: var(--navy);
}

.hero .button.primary {
  color: var(--navy-dark);
  background: var(--white);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--gray-200);
}

.hero .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.button.kakao {
  color: #291d00;
  background: #f6d84a;
}

.hero-phone {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 84px 20px;
  scroll-margin-top: 92px;
}

.section.muted {
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: #435364;
  font-size: 17px;
}

.tax-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-left: 8px;
  color: var(--white);
  font-size: 14px;
  vertical-align: middle;
  background: var(--accent);
  border-radius: 6px;
}

h2 {
  margin-bottom: 0;
  color: var(--navy-dark);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.25;
  font-weight: 800;
}

h3 {
  margin-bottom: 18px;
  color: var(--navy-dark);
  font-size: 21px;
  line-height: 1.3;
}

.about-layout,
.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 44px;
  align-items: center;
}

.process-layout {
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
}

.about-text {
  color: #334454;
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}

.about-section .section-heading {
  max-width: none;
  margin-bottom: 26px;
}

.about-section .section-heading h2 {
  font-size: clamp(30px, 3vw, 38px);
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-note {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
}

.about-note strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy-dark);
  font-size: 22px;
}

.about-note p {
  margin-bottom: 0;
  color: var(--gray-600);
}

.photo-block {
  margin-bottom: 0;
  overflow: hidden;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-block img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-block.wide img {
  aspect-ratio: 16 / 9;
}

.photo-block figcaption {
  padding: 14px 16px;
  color: var(--gray-600);
  font-size: 14px;
  background: var(--white);
}

.products-section {
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.products-section .section-heading {
  max-width: 900px;
}

.products-section .section-heading h2 {
  font-size: clamp(30px, 3vw, 38px);
}

.no-break {
  white-space: nowrap;
}

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

.product-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(52, 118, 90, 0.38);
  box-shadow: 0 16px 34px rgba(13, 39, 62, 0.1);
}

.product-card > img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 420px;
  padding: 18px;
  object-fit: contain;
  object-position: center;
  background: var(--gray-50);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card > img:hover {
  z-index: 1;
  transform: scale(1.04);
  box-shadow: 0 14px 30px rgba(12, 34, 56, 0.18);
}

.product-card-media {
  height: 420px;
  padding: 18px;
  background: var(--gray-50);
}

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

.nurse-gallery img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nurse-gallery img:hover,
.nurse-gallery img:focus-visible {
  z-index: 1;
  transform: scale(1.06);
  box-shadow: 0 14px 30px rgba(12, 34, 56, 0.2);
}

.product-card-copy {
  min-height: 178px;
  padding: 26px 28px;
}

.product-card-copy h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.product-card-copy p {
  margin-bottom: 0;
  color: var(--gray-600);
  word-break: keep-all;
}

.card-number {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 800;
  background: var(--navy-soft);
  border-radius: 6px;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 16px;
  margin-top: 8px;
  color: #455361;
}

.product-card li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 12px 10px;
  color: var(--navy-dark);
  font-weight: 800;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}

.process-description {
  max-width: 820px;
  margin: 24px auto 0;
  color: #3f4d5a;
  font-size: 18px;
  text-align: center;
}

.strengths-section {
  max-width: 1180px;
}

.strengths-section > .section-heading {
  max-width: 900px;
}

.strengths-section > .section-heading h2 {
  font-size: clamp(30px, 3vw, 38px);
  white-space: nowrap;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 28px;
  background: var(--navy-soft);
  border-top: 1px solid #cedbe6;
  border-bottom: 1px solid #cedbe6;
}

.spec-grid div {
  min-height: 104px;
  padding: 20px 16px;
  background: transparent;
  border-right: 1px solid #cedbe6;
}

.spec-grid div:last-child {
  border-right: 0;
}

.spec-grid strong,
.spec-grid span {
  display: block;
}

.spec-grid strong {
  color: var(--navy-dark);
  font-size: 20px;
  line-height: 1.2;
}

.spec-grid span {
  margin-top: 8px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 700;
}

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

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

.strength-item {
  min-height: 300px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.strength-item:hover,
.strength-item:focus-within {
  transform: translateY(-4px);
  border-color: rgba(57, 117, 92, 0.35);
  box-shadow: 0 12px 28px rgba(12, 34, 56, 0.08);
}

.strength-number,
.strength-item strong,
.strength-item em,
.strength-item p {
  display: block;
}

.strength-number {
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.strength-item strong {
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-size: 24px;
  line-height: 1.25;
}

.strength-item em {
  margin-bottom: 18px;
  color: #2f4254;
  font-style: normal;
  font-weight: 800;
}

.strength-item p {
  margin-bottom: 0;
  color: var(--gray-600);
}

.strength-detail-list {
  display: grid;
  gap: 24px;
  margin-top: 64px;
}

.strength-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
  border-radius: 6px;
}

.strength-feature.reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.strength-feature.reverse figure {
  grid-column: 2;
}

.strength-feature.reverse .strength-feature-copy {
  grid-row: 1;
  grid-column: 1;
  padding-right: 0;
  padding-left: 56px;
}

.strength-feature figure {
  height: 480px;
  margin: 0;
}

.strength-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strength-feature:last-child img {
  object-position: center 38%;
}

.strength-feature-copy {
  max-width: 620px;
  padding: 52px 56px 52px 0;
}

.strength-feature h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 30px;
  line-height: 1.38;
  font-weight: 800;
  word-break: keep-all;
}

.strength-feature-copy > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  word-break: keep-all;
}

.section.social-proof-section {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
  background: #f1f7f3;
  border-color: #dce9e1;
}

.social-proof-logo {
  width: 190px;
  margin: 0;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}

.social-proof-logo img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.social-proof-copy {
  max-width: 650px;
}

.social-proof-copy h2 {
  margin-bottom: 22px;
}

.social-proof-copy > p:last-child {
  margin-bottom: 0;
  color: #3d4d5d;
  font-size: 18px;
  word-break: keep-all;
}

.price-section {
  overflow: hidden;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: none;
}

.price-table .category-row th {
  padding: 12px 18px;
  color: var(--accent);
  font-size: 14px;
  text-align: left;
  background: #eef6f1;
  border-bottom: 1px solid var(--gray-200);
}

.price-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: 15px;
}

.price-table th,
.price-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.price-table th {
  color: var(--white);
  font-weight: 800;
  background: var(--navy);
}

.price-table td:nth-child(3) {
  color: var(--navy-dark);
  font-weight: 800;
  white-space: nowrap;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.mobile-price-list {
  display: none;
}

.quote-note {
  max-width: 900px;
  padding: 22px 24px;
  margin: 22px auto 0;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}

.quote-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-size: 18px;
}

.quote-note p {
  margin-bottom: 6px;
  color: var(--gray-600);
}

.quote-note p:last-child {
  margin-bottom: 0;
}

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

.cases-section {
  max-width: 1180px;
}

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

.hospital-grid li {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 16px 18px;
  color: var(--navy-dark);
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  word-break: keep-all;
}

.case-disclaimer {
  margin: 20px 0 0;
  color: var(--gray-600);
  font-size: 14px;
  text-align: right;
}

.faq-section {
  max-width: 920px;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-item[open] {
  border-color: rgba(57, 117, 92, 0.45);
  box-shadow: 0 12px 28px rgba(12, 34, 56, 0.08);
}

.faq-item summary {
  position: relative;
  padding: 22px 64px 22px 24px;
  color: var(--navy-dark);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  word-break: keep-all;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  margin-right: 8px;
  color: var(--accent);
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 28px;
  height: 28px;
  color: var(--accent);
  font-size: 24px;
  line-height: 26px;
  text-align: center;
  content: "+";
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 64px 24px;
  color: var(--gray-600);
}

.faq-answer p {
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: #2f4254;
}

.case-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
  padding: clamp(30px, 5vw, 48px);
  color: var(--white);
  background: var(--navy-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-panel .eyebrow,
.case-panel h2 {
  color: var(--white);
}

.case-text p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  font-weight: 700;
}

.case-text small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: center;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(20px, calc((100vw - var(--max-width)) / 2));
  background: #edf3f7;
  border-top: 1px solid #dbe5ed;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: #3e4b59;
  font-size: 18px;
}

.contact-panel {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}

dl {
  margin: 0 0 28px;
}

dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-200);
}

dt {
  color: var(--navy);
  font-weight: 800;
}

dd {
  margin: 0;
  color: #3c4b59;
}

.site-footer {
  display: grid;
  gap: 10px;
  padding: 28px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-dark);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.footer-brand .logo-symbol {
  flex-basis: 72px;
  width: 72px;
  height: 54px;
}

.footer-brand .logo-symbol img {
  top: -10px;
  left: -29px;
  width: 130px;
}

.footer-brand > div {
  text-align: center;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.site-footer address {
  margin: 0;
  font-style: normal;
  line-height: 1.7;
}

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

@media (max-width: 980px) {
  .brand {
    min-width: 200px;
  }

  .site-nav {
    gap: 14px;
    font-size: 14px;
  }

  .about-layout,
  .process-layout,
  .social-proof-section,
  .strengths-section,
  .contact-section,
  .case-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
  }

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

  .spec-grid,
  .strength-grid.compact,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spec-grid div {
    border-bottom: 1px solid #cedbe6;
  }

  .spec-grid div:nth-child(2n) {
    border-right: 0;
  }

  .spec-grid div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .strength-feature,
  .strength-feature.reverse {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  }

  .strength-feature-copy,
  .strength-feature.reverse .strength-feature-copy {
    padding: 40px 36px 40px 0;
  }

  .strength-feature.reverse figure {
    grid-row: 1;
    grid-column: 1;
  }

  .strength-feature.reverse .strength-feature-copy {
    grid-row: 1;
    grid-column: 2;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 620px;
    align-items: end;
  }

  .hero-media {
    background-position: 56% center;
  }

  .hero-copy {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.28;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .product-grid,
  .spec-grid,
  .strength-grid,
  .strength-grid.compact,
  .gallery-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .spec-grid div,
  .spec-grid div:nth-child(2n) {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid #cedbe6;
  }

  .spec-grid div:last-child {
    border-bottom: 0;
  }

  .social-proof-section,
  .hospital-grid {
    grid-template-columns: 1fr;
  }

  .social-proof-logo {
    width: min(100%, 200px);
    margin: 0 auto;
  }

  .hero-keywords {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-keywords span {
    padding-left: 0;
    border-left: 0;
  }

  .strengths-section > .section-heading h2 {
    white-space: normal;
  }

  .strength-detail-list {
    gap: 16px;
    margin-top: 40px;
  }

  .strength-feature,
  .strength-feature.reverse {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .strength-feature figure,
  .strength-feature.reverse figure {
    grid-row: auto;
    grid-column: auto;
    height: 420px;
  }

  .strength-feature-copy,
  .strength-feature.reverse .strength-feature-copy {
    grid-row: auto;
    grid-column: auto;
    max-width: none;
    padding: 30px 24px 34px;
  }

  .strength-feature h3 {
    font-size: 26px;
  }

  .tax-badge {
    margin-top: 10px;
    margin-left: 0;
  }

  .table-wrap {
    display: none;
  }

  .mobile-price-list {
    display: grid;
    gap: 12px;
  }

  .mobile-price-list article {
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
  }

  .mobile-price-list span,
  .mobile-price-list strong,
  .mobile-price-list small {
    display: block;
  }

  .mobile-price-list span {
    color: var(--navy-dark);
    font-weight: 800;
  }

  .mobile-price-list strong {
    margin-top: 8px;
    color: var(--accent);
    font-size: 24px;
    line-height: 1.2;
  }

  .mobile-price-list small {
    margin-top: 8px;
    color: var(--gray-600);
    font-size: 14px;
  }

  .price-actions {
    margin-bottom: 4px;
  }

  .process-list li {
    min-height: 62px;
  }

  .contact-panel,
  .case-panel {
    padding: 24px;
  }

  .faq-item summary {
    padding: 19px 52px 19px 18px;
    font-size: 16px;
  }

  .faq-item summary::after {
    right: 16px;
  }

  .faq-answer {
    padding: 0 18px 20px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .button {
    width: 100%;
  }

  body {
    padding-bottom: 64px;
  }

  .mobile-sticky-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 58px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -10px 24px rgba(12, 34, 56, 0.12);
  }

  .mobile-sticky-actions a {
    display: grid;
    place-items: center;
    color: var(--navy-dark);
    font-weight: 800;
  }

  .mobile-sticky-actions a + a {
    color: #291d00;
    background: #f6d84a;
  }
}
