:root {
  --ink: #15242a;
  --muted: #5f7075;
  --line: #dce7e8;
  --paper: #f8fbfa;
  --white: #ffffff;
  --teal: #0d746f;
  --teal-dark: #07514f;
  --blue: #2f6f9f;
  --coral: #d96f54;
  --sage: #d8e9df;
  --gold: #b88a3c;
  --shadow: 0 22px 70px rgba(17, 47, 52, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
p,
li,
dt,
dd,
strong,
span,
a,
button {
  word-break: keep-all;
}

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

.page-hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 231, 232, 0.85);
  background: rgba(248, 251, 250, 0.92);
  backdrop-filter: blur(14px);
}

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

.brand-textmark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(13, 116, 111, 0.26);
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

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

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: #33484e;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

.nav-dropdown {
  position: relative;
}

.nav-drop-button {
  padding: 8px 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-drop-button::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 158px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(17, 47, 52, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.is-open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  padding: 10px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus {
  background: #eef6f4;
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-action {
  padding: 0 16px;
  color: var(--teal-dark);
  border: 1px solid rgba(13, 116, 111, 0.28);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: clamp(650px, 82vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #dfeceb;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 251, 250, 0.98) 0%, rgba(248, 251, 250, 0.9) 34%, rgba(248, 251, 250, 0.28) 62%, rgba(248, 251, 250, 0.04) 100%),
    linear-gradient(0deg, rgba(21, 36, 42, 0.08), rgba(21, 36, 42, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 96px 0 122px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: 0;
}

.keep-line {
  white-space: nowrap;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 22px;
  color: #31474c;
  font-size: clamp(17px, 2vw, 21px);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 660px;
  margin-bottom: 34px;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(13, 116, 111, 0.18);
  border-radius: 999px;
  color: #23464a;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

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

.primary-button,
.secondary-button {
  padding: 0 22px;
}

.primary-button {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(13, 116, 111, 0.22);
}

.secondary-button {
  color: var(--teal-dark);
  border: 1px solid rgba(13, 116, 111, 0.26);
  background: rgba(255, 255, 255, 0.88);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-strip div {
  min-height: 112px;
  padding: 26px clamp(20px, 4vw, 48px);
  background: var(--white);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  margin-bottom: 7px;
  color: var(--teal-dark);
  font-size: 17px;
}

.quick-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading h2,
.feature-copy h2,
.visit-copy h2,
.proof h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-heading p,
.feature-copy p,
.visit-copy p {
  color: var(--muted);
  font-size: 17px;
}

.section-copy {
  display: grid;
  gap: 6px;
}

.section-copy p {
  margin-bottom: 0;
}

.about-section,
.experts-section {
  background: var(--white);
}

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

.intro-grid article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
}

.intro-highlight {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
  border-radius: 8px;
  background: #173b3d;
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(17, 47, 52, 0.16);
}

.intro-highlight div {
  padding: 22px clamp(20px, 3vw, 32px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.intro-highlight div:last-child {
  border-right: 0;
}

.intro-highlight span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-highlight strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: 0;
}

.intro-card {
  position: relative;
  overflow: hidden;
}

.intro-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--teal);
}

.intro-card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.info-icon {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.intro-grid h3 {
  margin-bottom: 0;
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.2;
}

.intro-grid p {
  margin-bottom: 0;
  color: var(--muted);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.intro-grid ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: #4e6268;
}

.visit-hours,
.visit-guide-grid {
  margin-bottom: 18px;
}

.info-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.info-list dt {
  color: var(--teal-dark);
  font-weight: 900;
}

.info-list dd {
  margin: 0;
  color: #4e6268;
}

.info-list a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.info-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #edf6f4;
  color: var(--teal-dark);
  font-weight: 800;
}

.info-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.info-link:hover {
  background: var(--teal);
  color: var(--white);
}

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

.expert-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.expert-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px dashed rgba(13, 116, 111, 0.35);
  border-radius: 8px;
  color: var(--teal-dark);
  background: linear-gradient(135deg, rgba(13, 116, 111, 0.08), rgba(47, 111, 159, 0.08));
  font-weight: 900;
  object-fit: cover;
  object-position: center top;
}

.expert-card h3 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.18;
}

.expert-card p,
.expert-card li {
  color: #4e6268;
}

.expert-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.expert-details {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  background: var(--white);
}

.expert-details summary {
  cursor: pointer;
  color: var(--teal-dark);
  font-weight: 900;
}

.expert-details div {
  margin-top: 18px;
}

.expert-details strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.expert-summary {
  margin: 0;
  color: var(--muted);
}

.expert-details ul {
  margin-top: 0;
}

.space-section {
  background: #eef6f4;
}

.community-section {
  background: #f8fbfa;
}

.community-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 20px;
  border-radius: 8px;
  background: #173b3d;
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(17, 47, 52, 0.16);
}

.community-summary div {
  padding: 22px clamp(20px, 3vw, 32px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.community-summary div:last-child {
  border-right: 0;
}

.community-summary span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.community-summary strong {
  display: block;
  font-size: clamp(21px, 2.3vw, 29px);
  line-height: 1.2;
}

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

.community-card {
  overflow: hidden;
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
}

.community-photo-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  border-bottom: 1px dashed rgba(13, 116, 111, 0.28);
  background:
    linear-gradient(135deg, rgba(13, 116, 111, 0.1), rgba(192, 129, 65, 0.1)),
    #f8fbfa;
  color: var(--teal-dark);
  font-weight: 900;
}

.community-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(13, 116, 111, 0.14);
  background: #f8fbfa;
}

.community-photo-placeholder span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(13, 116, 111, 0.2);
  border-radius: 8px;
  background: var(--white);
}

.community-card-body {
  padding: 22px;
}

.community-card time {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 8px;
  background: #edf6f4;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.community-card h3 {
  margin-bottom: 10px;
  color: #1d3035;
  font-size: 22px;
  line-height: 1.25;
}

.community-card p {
  margin: 0;
  color: var(--muted);
}

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

.space-grid article {
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
}

.space-photo {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  color: var(--teal-dark);
  background:
    linear-gradient(135deg, rgba(13, 116, 111, 0.08), rgba(47, 111, 159, 0.08)),
    var(--paper);
  font-weight: 900;
  object-fit: cover;
}

img.space-photo {
  display: block;
  height: auto;
  object-position: center;
}

.space-placeholder {
  position: relative;
  border: 1px dashed rgba(13, 116, 111, 0.34);
  background:
    linear-gradient(135deg, rgba(13, 116, 111, 0.1), rgba(192, 129, 65, 0.1)),
    #f8fbfa;
}

.space-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(13, 116, 111, 0.22);
  border-radius: 8px;
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 10px 26px rgba(17, 47, 52, 0.08);
}

.space-grid h3,
.space-grid p {
  padding: 0 22px;
}

.space-grid h3 {
  margin: 22px 0 8px;
  font-size: 22px;
}

.space-grid p {
  margin-bottom: 24px;
  color: var(--muted);
}

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

.brand-panel {
  min-height: 480px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.center-panel {
  border-top: 7px solid var(--blue);
}

.optical-panel {
  border-top: 7px solid var(--teal);
}

.panel-label {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-wordmark {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 2px 14px;
  align-items: center;
  margin-bottom: 26px;
}

.panel-wordmark img {
  grid-row: span 2;
  display: block;
  width: 104px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.optical-wordmark {
  grid-template-columns: 78px 1fr;
}

.optical-wordmark img {
  width: 70px;
  height: 54px;
}

.panel-wordmark strong,
.panel-wordmark small {
  display: block;
}

.panel-wordmark strong {
  font-size: 21px;
  line-height: 1.2;
}

.panel-wordmark small {
  color: var(--muted);
  font-size: 12px;
}

.section-logo {
  display: block;
  width: 86px;
  height: 70px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
}

.brand-panel h3 {
  margin-bottom: 16px;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.18;
}

.brand-panel p,
.brand-panel li {
  color: #4e6268;
  font-size: 16px;
}

.brand-panel ul {
  display: grid;
  gap: 9px;
  margin: 28px 0 30px;
  padding-left: 20px;
}

.brand-panel a {
  color: var(--teal-dark);
  font-weight: 900;
  border-bottom: 2px solid rgba(13, 116, 111, 0.25);
}

.center-guide {
  background: #f8fbfa;
}

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

.training-intro-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 18px;
  margin-bottom: 18px;
}

.training-intro-visual figure {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
}

.training-photo-placeholder {
  border-style: dashed;
  background:
    linear-gradient(135deg, rgba(13, 116, 111, 0.1), rgba(192, 129, 65, 0.1)),
    #f8fbfa;
  color: var(--teal-dark);
  text-align: center;
}

.training-photo-placeholder span {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
}

.training-photo-placeholder small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.training-photo-card,
.evaluation-photo-card,
.rehab-photo-card,
.topic-photo-card {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
}

.training-intro-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.training-photo-card figcaption,
.evaluation-photo-card figcaption,
.rehab-photo-card figcaption,
.topic-photo-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 13px 15px;
  border-radius: 8px;
  background: rgba(23, 59, 61, 0.9);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

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

.training-principles article {
  position: relative;
  min-height: 132px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(13, 116, 111, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
  overflow: hidden;
}

.training-principles article::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -36px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(13, 116, 111, 0.07);
}

.training-principles article:nth-child(1),
.training-principles article:nth-child(4) {
  background: #edf6f4;
}

.training-principles article > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.training-principles strong {
  display: block;
  margin-bottom: 8px;
  color: #173b3d;
  font-size: 21px;
  line-height: 1.2;
}

.training-principles small {
  position: relative;
  z-index: 1;
  display: block;
  color: #52676c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.guide-grid article {
  min-height: 310px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
}

.guide-grid h3 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}

.guide-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: #4e6268;
}

.evaluation-section {
  background: #eef6f4;
}

.evaluation-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.evaluation-flow div {
  position: relative;
  min-height: 178px;
  padding: 24px 22px;
  border: 1px solid rgba(13, 116, 111, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
}

.evaluation-flow div::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -12px;
  width: 12px;
  height: 2px;
  background: rgba(13, 116, 111, 0.28);
}

.evaluation-flow div:last-child::after {
  display: none;
}

.evaluation-flow span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.evaluation-flow strong {
  display: block;
  margin-bottom: 8px;
  color: #1d3035;
  font-size: 20px;
  line-height: 1.25;
}

.evaluation-flow p {
  margin: 0;
  color: var(--muted);
}

.evaluation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 20px;
  align-items: start;
}

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

.evaluation-list article,
.evaluation-aside {
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
}

.evaluation-list article {
  position: relative;
  min-height: 178px;
  padding: 26px;
  overflow: hidden;
}

.evaluation-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--teal);
}

.eval-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 0 11px;
  border-radius: 8px;
  background: #edf6f4;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.evaluation-list h3,
.evaluation-aside h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.evaluation-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.visual-skills-card {
  background: #173b3d !important;
  color: var(--white);
}

.visual-skills-card::before {
  background: var(--gold) !important;
}

.visual-skills-card .eval-badge {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.visual-skills-card h3,
.visual-skills-card p {
  color: var(--white);
}

.visual-skills-card p {
  opacity: 0.82;
}

.evaluation-aside {
  padding: 28px;
}

.evaluation-photo-card {
  min-height: 260px;
  margin-bottom: 22px;
}

.evaluation-photo-card img,
.rehab-photo-card img,
.topic-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.evaluation-aside ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: #4e6268;
}

.after-eval {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(13, 116, 111, 0.16);
}

.after-eval strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 18px;
}

.after-eval p {
  margin-bottom: 0;
  color: var(--muted);
}

.visual-skills-detail {
  margin-top: 20px;
  padding: 24px clamp(20px, 3vw, 32px);
  border: 1px solid rgba(13, 116, 111, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
}

.visual-skills-detail summary {
  cursor: pointer;
  color: var(--teal-dark);
  font-size: 20px;
  font-weight: 900;
}

.visual-skills-groups {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.visual-skills-groups article {
  padding: 18px;
  border: 1px solid rgba(13, 116, 111, 0.14);
  border-radius: 8px;
  background: #f8fbfa;
}

.visual-skills-groups h3 {
  margin-bottom: 12px;
  color: #1d3035;
  font-size: 17px;
  line-height: 1.25;
}

.visual-skills-groups ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #4e6268;
  font-size: 14px;
}

.rehab-section,
.learning-section {
  background: var(--white);
}

.perception-section {
  background: #eef6f4;
}

.strabismus-visual {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.strabismus-lead,
.strabismus-check {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
}

.strabismus-lead {
  background: #173b3d;
  color: var(--white);
}

.strabismus-check {
  background: var(--white);
}

.strabismus-lead .panel-label {
  color: #d7b079;
}

.strabismus-lead h3 {
  margin: 10px 0 18px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.strabismus-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.strabismus-check h3 {
  margin: 8px 0 18px;
  color: #1d3035;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}

.strabismus-check ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.strabismus-check li {
  padding: 12px 14px;
  border-left: 4px solid var(--teal);
  border-radius: 6px;
  background: #f8fbfa;
  color: #4e6268;
  font-weight: 800;
}

.strabismus-care-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.strabismus-care-path article {
  padding: 24px;
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
}

.strabismus-care-path article:first-child {
  background: var(--white);
}

.strabismus-care-path span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #edf6f4;
  color: var(--teal-dark);
  font-weight: 900;
}

.strabismus-care-path h3 {
  margin: 0 0 12px;
  color: #1d3035;
  font-size: 22px;
  line-height: 1.22;
}

.strabismus-care-path p {
  margin: 0;
  color: var(--muted);
}

.strabismus-factor-detail {
  margin-bottom: 18px;
  padding: 22px clamp(20px, 3vw, 28px);
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  background: #f8fbfa;
}

.strabismus-factor-detail summary {
  cursor: pointer;
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 900;
}

.strabismus-factor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.strabismus-factor-grid article {
  padding: 22px;
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  background: #f8fbfa;
}

.strabismus-factor-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.strabismus-factor-grid h3 {
  margin-bottom: 10px;
  color: #1d3035;
  font-size: 20px;
  line-height: 1.25;
}

.strabismus-factor-grid p {
  margin: 0;
  color: var(--muted);
}

.amblyopia-visual,
.amblyopia-care-path {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.amblyopia-visual {
  grid-template-columns: minmax(260px, 0.85fr) minmax(260px, 0.78fr) minmax(0, 1fr);
}

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

.amblyopia-lead,
.amblyopia-check,
.amblyopia-care-path article {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
}

.amblyopia-lead {
  background: #173b3d;
  color: var(--white);
}

.amblyopia-lead .panel-label {
  color: #d7b079;
}

.amblyopia-check,
.amblyopia-care-path article {
  background: var(--white);
}

.amblyopia-lead h3,
.amblyopia-check h3 {
  margin: 8px 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.amblyopia-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.amblyopia-check h3 {
  color: #1d3035;
}

.amblyopia-check ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amblyopia-check li {
  padding: 12px 14px;
  border-left: 4px solid var(--teal);
  border-radius: 6px;
  background: #f8fbfa;
  color: #4e6268;
  font-weight: 800;
}

.amblyopia-care-path span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #edf6f4;
  color: var(--teal-dark);
  font-weight: 900;
}

.amblyopia-care-path h3 {
  margin: 0 0 12px;
  color: #1d3035;
  font-size: 22px;
  line-height: 1.22;
}

.amblyopia-care-path p {
  margin: 0;
  color: var(--muted);
}

.perception-hero-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(260px, 0.75fr) minmax(0, 0.85fr);
  gap: 18px;
  margin-bottom: 18px;
}

.perception-hero-panel > article {
  padding: clamp(26px, 3vw, 38px);
  border-radius: 8px;
  background: #173b3d;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(17, 47, 52, 0.18);
}

.perception-hero-panel .panel-label {
  color: #d7b079;
}

.perception-hero-panel h3 {
  margin: 8px 0 18px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.perception-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.perception-skill-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.perception-skill-map article {
  position: relative;
  min-height: 134px;
  padding: 20px;
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
  overflow: hidden;
}

.perception-skill-map article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  background: rgba(13, 116, 111, 0.07);
}

.perception-skill-map article:nth-child(1),
.perception-skill-map article:nth-child(4) {
  background: #edf6f4;
}

.perception-skill-map article > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.perception-skill-map strong {
  display: block;
  margin-bottom: 7px;
  color: #173b3d;
  font-size: 21px;
  line-height: 1.2;
}

.perception-skill-map small {
  position: relative;
  z-index: 1;
  display: block;
  color: #52676c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.learning-hero-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(260px, 0.75fr) minmax(0, 0.85fr);
  gap: 18px;
  margin-bottom: 18px;
}

.learning-hero-panel > article {
  padding: clamp(26px, 3vw, 38px);
  border-radius: 8px;
  background: #173b3d;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(17, 47, 52, 0.18);
}

.learning-hero-panel .panel-label {
  color: #d7b079;
}

.learning-hero-panel h3 {
  margin: 8px 0 18px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.learning-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.learning-skill-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.learning-skill-map article {
  position: relative;
  min-height: 134px;
  padding: 20px;
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
  overflow: hidden;
}

.learning-skill-map article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  background: rgba(13, 116, 111, 0.07);
}

.learning-skill-map article:nth-child(1),
.learning-skill-map article:nth-child(4) {
  background: #edf6f4;
}

.learning-skill-map article > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.learning-skill-map strong {
  display: block;
  margin-bottom: 7px;
  color: #173b3d;
  font-size: 21px;
  line-height: 1.2;
}

.learning-skill-map small {
  position: relative;
  z-index: 1;
  display: block;
  color: #52676c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.rehab-grid,
.detail-grid,
.learning-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-card {
  min-height: 360px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
}

.detail-card h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.2;
}

.detail-card p,
.detail-card li {
  color: #4e6268;
}

.detail-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.lens-section {
  background: #fbf7f1;
}

.myopia-care-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.myopia-lead,
.myopia-photo-card,
.myopia-flow article {
  border: 1px solid rgba(184, 138, 60, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(64, 48, 28, 0.08);
}

.myopia-lead {
  padding: clamp(28px, 4vw, 44px);
  background: #173b3d;
  color: var(--white);
}

.myopia-lead .panel-label {
  color: #d7b079;
}

.myopia-lead h3 {
  margin: 8px 0 18px;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.2;
}

.myopia-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.myopia-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  margin: 0;
  background: #f8fbfa;
}

.myopia-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.myopia-photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(23, 59, 61, 0.9);
  font-weight: 800;
  word-break: keep-all;
}

.myopia-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.myopia-flow article {
  min-height: 164px;
  padding: 22px;
  background: var(--white);
}

.myopia-flow span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #fbf7f1;
  color: var(--gold);
  font-weight: 900;
}

.myopia-flow strong {
  display: block;
  margin-bottom: 8px;
  color: #1d3035;
  font-size: 20px;
  line-height: 1.24;
}

.myopia-flow p {
  margin: 0;
  color: #5e6763;
}

.myopia-brand-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.myopia-brand-strip article {
  position: relative;
  min-height: 128px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(184, 138, 60, 0.22);
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: 0 18px 48px rgba(64, 48, 28, 0.08);
}

.myopia-brand-strip article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(184, 138, 60, 0.12);
}

.myopia-brand-strip span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.myopia-brand-strip strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: #1d3035;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
}

.myopia-brand-strip small {
  position: relative;
  z-index: 1;
  display: block;
  color: #5e6763;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.progressive-care-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  margin-bottom: 18px;
}

.progressive-lead,
.progressive-scenarios article,
.progressive-flow article {
  border: 1px solid rgba(36, 119, 112, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(27, 54, 54, 0.08);
}

.progressive-lead {
  min-height: 100%;
  padding: clamp(30px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(23, 59, 61, 0.95), rgba(45, 124, 116, 0.94)),
    #173b3d;
  color: var(--white);
}

.progressive-lead .panel-label {
  color: #d7b079;
}

.progressive-lead h3 {
  margin: 8px 0 18px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.progressive-lead p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
}

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

.progressive-scenarios article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
}

.progressive-scenarios span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.progressive-scenarios strong {
  display: block;
  margin-bottom: 10px;
  color: #1d3035;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
}

.progressive-scenarios p {
  margin: 0;
  color: #5e6763;
}

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

.progressive-flow article {
  min-height: 178px;
  padding: 22px;
  background: #f6fbf9;
}

.progressive-flow span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #2d7c74;
  color: var(--white);
  font-weight: 900;
}

.progressive-flow strong {
  display: block;
  margin-bottom: 8px;
  color: #1d3035;
  font-size: 20px;
  line-height: 1.24;
}

.progressive-flow p {
  margin: 0;
  color: #5e6763;
}

.prism-care-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  margin-bottom: 18px;
}

.prism-lead,
.prism-symptom-panel,
.prism-flow article {
  border: 1px solid rgba(45, 124, 116, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(27, 54, 54, 0.08);
}

.prism-lead {
  padding: clamp(30px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(247, 250, 248, 0.98), rgba(232, 244, 241, 0.94)),
    #f7fbf9;
}

.prism-lead h3 {
  margin: 8px 0 18px;
  color: #13272c;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.prism-lead p {
  max-width: 680px;
  color: #54615f;
}

.prism-symptom-panel {
  padding: clamp(28px, 4vw, 42px);
  background: #173b3d;
  color: var(--white);
}

.prism-symptom-panel h4 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.22;
}

.prism-symptom-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.prism-symptom-panel li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
}

.prism-symptom-panel li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d7b079;
  transform: translateY(-50%);
}

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

.prism-flow article {
  min-height: 178px;
  padding: 22px;
  background: var(--white);
}

.prism-flow span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #fbf7f1;
  color: var(--gold);
  font-weight: 900;
}

.prism-flow strong {
  display: block;
  margin-bottom: 8px;
  color: #1d3035;
  font-size: 20px;
  line-height: 1.24;
}

.prism-flow p {
  margin: 0;
  color: #5e6763;
}

.high-care-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.high-lead,
.high-visual-card,
.high-focus-grid article {
  border: 1px solid rgba(184, 138, 60, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(64, 48, 28, 0.08);
}

.high-lead {
  padding: clamp(30px, 4vw, 48px);
  background: #fffaf1;
}

.high-lead h3 {
  margin: 8px 0 18px;
  color: #13272c;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.high-lead p {
  max-width: 700px;
  color: #5e6763;
}

.high-visual-card {
  display: grid;
  align-content: center;
  gap: 22px;
  min-height: 100%;
  padding: clamp(28px, 4vw, 42px);
  background: #173b3d;
  color: var(--white);
}

.lens-balance-visual {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  align-items: center;
  max-width: 360px;
}

.lens-ring {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border: 12px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
}

.lens-ring::after {
  content: "";
  position: absolute;
  inset: 24%;
  border-radius: 999px;
  background: rgba(215, 176, 121, 0.9);
}

.lens-ring.left {
  box-shadow: inset 18px 0 0 rgba(255, 255, 255, 0.22);
}

.lens-ring.right {
  box-shadow: inset -18px 0 0 rgba(255, 255, 255, 0.22);
}

.bridge-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.high-visual-card strong {
  display: block;
  max-width: 520px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.22;
}

.high-visual-card p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
}

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

.high-focus-grid article {
  min-height: 178px;
  padding: 22px;
  background: var(--white);
}

.high-focus-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #fbf7f1;
  color: var(--gold);
  font-weight: 900;
}

.high-focus-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #1d3035;
  font-size: 20px;
  line-height: 1.24;
}

.high-focus-grid p {
  margin: 0;
  color: #5e6763;
}

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

.lens-grid article {
  min-height: 340px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(184, 138, 60, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(64, 48, 28, 0.08);
}

.lens-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
}

.lens-grid p,
.lens-grid li {
  color: #5e6763;
}

.lens-grid ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.brand-list-card {
  grid-column: 1 / -1;
}

.optical-brand-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.optical-brand-groups div {
  padding: 20px;
  border: 1px solid rgba(184, 138, 60, 0.18);
  border-radius: 8px;
  background: #fbf7f1;
}

.optical-brand-groups strong {
  display: block;
  margin-bottom: 12px;
  color: #1d3035;
  font-size: 18px;
}

.optical-brand-groups ul {
  margin-top: 0;
}

.programs {
  background: var(--white);
}

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

.program-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.icon-dot {
  display: block;
  width: 18px;
  height: 18px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 16px 0 0 var(--sage), 32px 0 0 var(--blue);
}

.program-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.program-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  color: var(--white);
  background: #173b3d;
}

.proof .eyebrow {
  color: #98ddd5;
}

.proof-copy {
  display: grid;
  gap: 20px;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-grid p {
  margin: 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.proof-photo {
  align-self: stretch;
  display: grid;
  place-items: end center;
  overflow: hidden;
  min-height: 420px;
  margin: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 244, 0.96));
}

.proof-photo img {
  display: block;
  width: min(100%, 520px);
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.credentials {
  position: relative;
  overflow: hidden;
  background: #f8fbfa;
}

.credentials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 251, 250, 0.98) 0%, rgba(248, 251, 250, 0.92) 44%, rgba(248, 251, 250, 0.72) 72%, rgba(248, 251, 250, 0.94) 100%),
    url("assets/lecture-kim-ryunyung.jpg") right 8% top 34px / min(44vw, 640px) auto no-repeat;
  opacity: 0.8;
  pointer-events: none;
}

.credentials > * {
  position: relative;
  z-index: 1;
}

.credentials-hero {
  margin-bottom: 34px;
}

.credentials-bg {
  display: none;
}

.credentials-hero .section-heading {
  margin-bottom: 0;
}

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

.credential-grid article {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
}

.credential-grid h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.credential-grid ul,
.research-list ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: #4e6268;
}

.activity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

.activity-grid article {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 47, 52, 0.08);
}

.activity-head {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.activity-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.activity-head h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.activity-grid p {
  margin: 0 0 20px;
  color: var(--muted);
}

.timeline-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  position: relative;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  padding: 16px 0 16px 24px;
  border-top: 1px solid var(--line);
}

.timeline-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(13, 116, 111, 0.12);
}

.timeline-list time {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.timeline-list strong {
  color: #24383d;
  font-size: 16px;
  line-height: 1.5;
}

.timeline-placeholder {
  opacity: 0.72;
}

.timeline-placeholder::before {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(192, 129, 65, 0.14);
}

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

.education-seminar-photo {
  position: relative;
  overflow: hidden;
  margin: 4px 0 22px;
  border: 1px solid rgba(13, 116, 111, 0.14);
  border-radius: 8px;
  background: #e8f1ef;
  box-shadow: 0 18px 42px rgba(17, 47, 52, 0.12);
}

.education-seminar-photo img {
  display: block;
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
  object-position: center;
}

.education-seminar-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(17, 47, 52, 0), rgba(17, 47, 52, 0.78));
  pointer-events: none;
}

.education-seminar-photo figcaption {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 28px);
  z-index: 1;
  display: grid;
  gap: 6px;
  color: #ffffff;
}

.education-seminar-photo strong {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.25;
  word-break: keep-all;
}

.education-seminar-photo span {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  line-height: 1.65;
  word-break: keep-all;
}

.seminar-group {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(13, 116, 111, 0.14);
  border-radius: 8px;
  background: #f8fbfa;
}

.seminar-group-featured {
  border-top: 5px solid var(--teal);
  background: linear-gradient(180deg, #ffffff 0%, #f5faf9 100%);
}

.seminar-group-compact {
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.38fr) 1fr;
  align-items: start;
}

.seminar-group-head {
  display: grid;
  gap: 8px;
}

.seminar-group-head span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 8px;
  background: #edf6f4;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.seminar-group h4 {
  margin: 0;
  color: #1d3035;
  font-size: 24px;
  line-height: 1.25;
  word-break: keep-all;
}

.seminar-group ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seminar-group li {
  display: grid;
  gap: 5px;
  padding-top: 14px;
  border-top: 1px solid rgba(13, 116, 111, 0.12);
}

.seminar-group li:first-child {
  padding-top: 0;
  border-top: 0;
}

.seminar-group strong {
  color: #20363b;
  font-size: 18px;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.seminar-group p {
  margin: 0;
  color: #52666c;
  font-size: 14px;
  line-height: 1.5;
}

.seminar-group small {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.research-list {
  margin-top: 20px;
  padding: 24px clamp(20px, 3vw, 32px);
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  background: #eef6f4;
}

.research-list summary {
  cursor: pointer;
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 900;
}

.research-list ul {
  margin-top: 18px;
}

.visit-copy {
  max-width: 740px;
  margin-bottom: 34px;
}

.booking-notice {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(13, 116, 111, 0.22);
  border-left: 6px solid var(--teal);
  border-radius: 8px;
  background: #edf6f4;
  color: var(--teal-dark);
  box-shadow: 0 12px 30px rgba(17, 47, 52, 0.08);
}

.booking-notice strong {
  font-size: 20px;
  line-height: 1.25;
}

.booking-notice span {
  color: #4e6268;
  font-weight: 700;
}

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

.place-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(17, 47, 52, 0.1);
}

.place-card h3 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}

.place-info {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.place-info div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(13, 116, 111, 0.16);
}

.place-info dt {
  color: var(--teal-dark);
  font-weight: 900;
}

.place-info dd {
  margin: 0;
  color: #4e6268;
}

.place-card .visit-actions {
  margin-top: 26px;
}

.unified-place {
  max-width: 1060px;
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 18px;
  align-items: start;
}

.reservation-card,
.location-card {
  height: 100%;
}

.reservation-card-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.reservation-card-head h3 {
  margin: 8px 0 10px;
}

.reservation-card-head p {
  margin: 0;
  color: var(--muted);
}

.visit-side {
  display: grid;
  gap: 16px;
}

.compact-info {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
}

.compact-info div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(13, 116, 111, 0.14);
}

.compact-info dt {
  color: var(--teal-dark);
  font-weight: 900;
}

.compact-info dd {
  margin: 0;
  color: #4e6268;
}

.reservation-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.reservation-panels article {
  padding: 24px;
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  background: #f8fbfa;
}

.reservation-panels h4 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.reservation-panels p {
  margin-bottom: 18px;
  color: var(--muted);
}

.reservation-panels .visit-actions {
  margin-top: 0;
}

.phone-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 8px;
  color: var(--white);
  background: #173b3d;
}

.phone-strip span {
  color: rgba(255, 255, 255, 0.82);
  word-break: keep-all;
}

.phone-strip a {
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.map-preview {
  position: relative;
  display: block;
  min-height: 230px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(13, 116, 111, 0.18);
  border-radius: 8px;
  background: #eef4f1;
  box-shadow: 0 18px 42px rgba(17, 47, 52, 0.1);
}

.map-preview iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  filter: saturate(0.92) contrast(0.98);
}

.map-card-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(17, 47, 52, 0.16);
  backdrop-filter: blur(10px);
}

.map-card-label strong {
  font-size: 18px;
}

.map-card-label small {
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: #10292b;
}

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

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

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-submenu {
    left: 0;
    transform: translate(0, -6px);
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu,
  .nav-dropdown.is-open .nav-submenu {
    transform: translate(0, 0);
  }

  .hero {
    min-height: 720px;
  }

  .seminar-group-compact {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(248, 251, 250, 0.98) 0%, rgba(248, 251, 250, 0.86) 55%, rgba(248, 251, 250, 0.4) 100%);
  }

  .quick-strip,
  .brand-grid,
  .program-grid,
  .proof,
  .place-grid,
  .lens-grid,
  .credential-grid,
  .credentials-hero,
  .activity-grid,
  .seminar-list,
  .visit-layout,
  .expert-grid,
  .community-summary,
  .community-timeline,
  .space-grid,
  .guide-grid,
  .myopia-care-panel,
  .progressive-care-panel,
  .prism-care-panel,
  .high-care-panel,
  .evaluation-flow,
  .evaluation-layout,
  .evaluation-list,
  .rehab-grid,
  .detail-grid,
  .learning-layout,
  .perception-hero-panel,
  .learning-hero-panel,
  .strabismus-visual,
  .training-intro-visual,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-highlight {
    grid-template-columns: 1fr;
  }

  .intro-highlight div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .intro-highlight div:last-child {
    border-bottom: 0;
  }

  .proof-photo {
    min-height: 340px;
  }

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

  .evaluation-flow div::after {
    display: none;
  }

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

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

  .strabismus-points {
    grid-template-columns: 1fr;
  }

  .strabismus-care-path {
    grid-template-columns: 1fr;
  }

  .amblyopia-visual,
  .amblyopia-care-path {
    grid-template-columns: 1fr;
  }

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

  .optical-brand-groups {
    grid-template-columns: 1fr;
  }

  .myopia-flow,
  .myopia-brand-strip,
  .progressive-scenarios,
  .progressive-flow,
  .prism-flow,
  .high-focus-grid {
    grid-template-columns: 1fr;
  }

  .community-summary div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .community-summary div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 0;
  }

  .brand {
    min-width: 0;
  }

  .header-action {
    width: 100%;
  }

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

  .hero-image {
    object-position: 66% center;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(248, 251, 250, 0.98) 0%, rgba(248, 251, 250, 0.92) 58%, rgba(248, 251, 250, 0.12) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 290px 0 56px;
  }

  h1 {
    font-size: 38px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .section {
    padding: 64px 16px;
  }

  .brand-panel {
    min-height: 0;
  }

  .expert-card {
    grid-template-columns: 1fr;
  }

  .expert-photo {
    max-width: 220px;
  }

  .intro-card-head {
    gap: 12px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .training-principles {
    grid-template-columns: 1fr;
  }

  .training-principles article {
    min-height: 0;
  }

  .evaluation-flow {
    grid-template-columns: 1fr;
  }

  .visual-skills-groups {
    grid-template-columns: 1fr;
  }

  .learning-skill-map {
    grid-template-columns: 1fr;
  }

  .learning-skill-map article {
    min-height: 0;
  }

  .perception-skill-map {
    grid-template-columns: 1fr;
  }

  .perception-skill-map article {
    min-height: 0;
  }

  .strabismus-factor-grid {
    grid-template-columns: 1fr;
  }

  .timeline-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .site-footer {
    display: block;
  }

  .place-info div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .reservation-panels {
    grid-template-columns: 1fr;
  }

  .map-preview {
    min-height: 260px;
  }

  .map-preview iframe {
    height: 280px;
  }

  .map-card-label {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px 16px;
  }

  .visit-actions {
    margin-top: 24px;
  }

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

  .site-footer div + div {
    margin-top: 18px;
  }
}
