:root {
  --bg: #f8f9fb;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --text-primary: #1b2430;
  --text-secondary: #475569;
  --brand: #0051ad;
  --brand-strong: #003e85;
  --border: #dce4ec;
  --shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

:root[data-theme="dark"] {
  --bg: #111827;
  --surface: #1f2937;
  --surface-alt: #273447;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --brand: #60a5fa;
  --brand-strong: #93c5fd;
  --border: #334155;
  --shadow: 0 10px 25px rgba(2, 6, 23, 0.55);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-primary);
}

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

.site-header .navbar { background: var(--surface) !important; }

.site-header .navbar-toggler {
  border-color: rgba(27, 36, 48, 0.25);
}

.site-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 81, 173, 0.2);
}

:root[data-theme="dark"] .site-header .navbar-toggler {
  border-color: #475569;
  background: rgba(15, 23, 42, 0.35);
}

:root[data-theme="dark"] .site-header .navbar-toggler-icon {
  filter: invert(1) brightness(1.8);
}

.site-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: 100%;
}

.brand-badge {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  font-weight: 800;
}

.nav-link { color: var(--text-secondary) !important; font-weight: 600; }
.nav-link.active { color: var(--brand) !important; }

.social-quick-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  margin-left: 1.1rem;
  flex-shrink: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  line-height: 1;
  background: var(--surface-alt);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: var(--brand);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.42rem 0.74rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.theme-toggle-btn:hover {
  transform: translateY(-1px);
  border-color: var(--brand);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

.theme-toggle-btn:focus-visible {
  outline: 2px solid rgba(0, 81, 173, 0.35);
  outline-offset: 2px;
}

.social-svg {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
}

main { min-height: calc(100vh - 190px); }

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(150deg, var(--surface) 0%, var(--surface-alt) 100%);
}

.hero-copy h1 {
  color: var(--text-primary);
  font-size: clamp(1.8rem, 3vw + 1rem, 3rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.lead {
  color: var(--text-secondary);
}

.hero-highlights {
  display: grid;
  gap: 0.45rem;
}

.hero-highlights li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
}

.trust-panel-section {
  margin-top: -0.5rem;
}

.trust-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.95rem;
  padding: 1.05rem 1.1rem;
  height: 100%;
  box-shadow: var(--shadow);
}

.trust-panel h3 {
  margin-bottom: 0.5rem;
  font-size: 1.04rem;
  font-weight: 800;
}

.trust-panel p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.55;
  font-size: 0.94rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 800;
}

.products-hero {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08), transparent 52%), radial-gradient(circle at 80% 10%, rgba(14, 116, 144, 0.08), transparent 45%), var(--surface);
}

.products-hero h1 {
  font-size: clamp(1.9rem, 2vw + 1rem, 3.1rem);
  line-height: 1.28;
  margin-bottom: 1rem;
}

.products-hero-lead {
  line-height: 1.8;
}

.trnsys-showcase {
  margin-top: 1.75rem;
}

.trnsys-shell {
  color: #f3f7ff;
  background:
    radial-gradient(circle at 0% 0%, rgba(20, 83, 160, 0.28), transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(14, 55, 115, 0.22), transparent 36%),
    #171b23;
  border: 1px solid #2a3240;
  border-radius: 1.2rem;
  padding: 1.9rem;
  box-shadow: 0 26px 50px rgba(8, 12, 20, 0.34);
}

.trnsys-hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 3vw + 1rem, 3.1rem);
}

.trnsys-hero-tagline {
  color: #f1f4fb;
  font-size: clamp(1rem, 1.2vw + 0.7rem, 1.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.trnsys-hero-copy {
  color: #bdc8dc;
  line-height: 1.74;
  margin-bottom: 1.4rem;
}

.trnsys-btn-outline {
  border: 1px solid #4f5a70;
  background: transparent;
  color: #edf2ff;
}

.trnsys-btn-outline:hover {
  border-color: #7a88a8;
  background: #242d3e;
  color: #ffffff;
}

.trnsys-hero-media {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #303a4e;
  background: #121722;
}

.trnsys-hero-media img,
.trnsys-hero-media iframe {
  width: 100%;
  display: block;
  border: 0;
  aspect-ratio: 16 / 9;
  min-height: 290px;
}

.trnsys-hero-media img {
  height: 100%;
  object-fit: cover;
}

.trnsys-video-button {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: block;
  text-align: left;
}

.trnsys-video-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 22, 0.12), rgba(7, 12, 22, 0.58));
}

.trnsys-video-button:focus-visible {
  outline: 3px solid #93c5fd;
  outline-offset: 4px;
}

.trnsys-video-play,
.trnsys-video-caption {
  position: absolute;
  z-index: 1;
}

.trnsys-video-play {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 18, 31, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.55rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.trnsys-video-caption {
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(12, 18, 31, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

.trnsys-video-button:hover .trnsys-video-play,
.trnsys-video-button:focus-visible .trnsys-video-play {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(14, 116, 144, 0.9);
}

.trnsys-hero-media.is-playing {
  background: #000000;
}

.trnsys-core {
  margin-top: 2.3rem;
}

.trnsys-section-title {
  color: #f2f6ff;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.45rem;
}

.trnsys-solution-card {
  background: #1a202b;
  border: 1px solid #2b3446;
  border-radius: 0.85rem;
  padding: 1.35rem 1.25rem;
  height: 100%;
  text-align: center;
}

.trnsys-solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.7rem;
  border: 1px solid #315182;
  background: rgba(22, 110, 255, 0.16);
  color: #2e8cff;
  margin-bottom: 1rem;
  font-size: 1.22rem;
  font-weight: 700;
}

.trnsys-solution-card h4 {
  color: #f8fbff;
}

.trnsys-solution-card p {
  color: #b7c2da;
  margin: 0;
  line-height: 1.62;
}

.trnsys-why {
  margin-top: 2rem;
}

.trnsys-why-box {
  background: linear-gradient(145deg, #242a35, #1d232f);
  border: 1px solid #2e3748;
  border-radius: 1rem;
  padding: 1.4rem;
}

.trnsys-why-title {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 1rem;
}

.trnsys-reason-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trnsys-reason-item {
  position: relative;
  margin-bottom: 1.15rem;
  padding-left: 2rem;
}

.trnsys-reason-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #37598f;
  background: rgba(33, 116, 255, 0.18);
  color: #40a2ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.trnsys-reason-item h5 {
  margin: 0 0 0.28rem;
  color: #f4f8ff;
  font-weight: 700;
}

.trnsys-reason-item p {
  margin: 0;
  color: #bcc7dc;
  line-height: 1.58;
}

.trnsys-extension-card {
  height: 100%;
  background: #161d29;
  border: 1px solid #2f384b;
  border-radius: 0.9rem;
  padding: 1.25rem;
}

.trnsys-extension-card h3 {
  color: #ffffff;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.trnsys-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.trnsys-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #3b465a;
  background: #212939;
  color: #dbe6fb;
  font-size: 0.82rem;
  font-weight: 600;
}

.trnsys-extension-copy {
  margin: 0;
  color: #bbc8df;
  text-align: center;
  line-height: 1.58;
}

.section-title-wrap {
  margin-bottom: 1.5rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-body {
  display: flex;
  flex-direction: column;
}

.product-card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.product-card-subtitle {
  min-height: 3.1rem;
  line-height: 1.45;
}

.product-card-description {
  min-height: 6.2rem;
}

@media (max-width: 540px) {
  .product-card-subtitle {
    min-height: 2.95rem;
  }

  .product-card-description {
    min-height: 5.3rem;
  }
}

.product-card-actions {
  margin-top: auto;
}

.product-detail-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 0.72rem 1.28rem;
  line-height: 1.3;
  border-radius: 0.7rem;
}

.product-hero-btn-group .product-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11.75rem;
  min-height: 2.85rem;
  padding: 0.72rem 1.28rem;
  font-size: 1rem;
  line-height: 1.25;
  border-radius: 0.72rem;
}

.product-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  font-size: 1.4rem;
  flex: 0 0 auto;
}

.product-points {
  margin: 0;
}

.product-points li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-points li::before {
  content: "•";
  color: var(--brand);
  position: absolute;
  left: 0;
  top: 0;
}

.product-metrics {
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.metric-value {
  margin: 0;
  font-weight: 800;
  color: var(--text-primary);
}

.product-detail-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(150deg, var(--surface) 0%, var(--surface-alt) 100%);
}

.product-side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.detail-feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.25rem 1.4rem;
  height: 100%;
}

.detail-feature-card h4 {
  color: var(--text-primary);
}

.detail-feature-card ul {
  margin: 0;
}

.detail-feature-card li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.detail-feature-card li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
}

.tess-lib-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.65rem;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex: 0 0 auto;
}

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

.product-spec-table {
  background: var(--surface);
  border-color: var(--border);
  margin-bottom: 0;
}

.product-spec-table th {
  width: 34%;
  background: var(--surface-alt);
  color: var(--text-primary);
  font-weight: 700;
}

.product-spec-table th,
.product-spec-table td {
  border-color: var(--border) !important;
  color: var(--text-secondary);
  vertical-align: middle;
  padding: 0.95rem 0.95rem;
}

.product-spec-table tbody tr:nth-child(odd) {
  background: rgba(59, 130, 246, 0.03);
}

:root[data-theme="dark"] .product-spec-table tbody tr:nth-child(odd) {
  background: rgba(147, 197, 253, 0.05);
}

.products-flow {
  padding: 2rem 0 1.25rem;
}

.products-step-row {
  position: relative;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  height: 100%;
  box-shadow: var(--shadow);
}

.step-badge {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  background: var(--surface-alt);
  color: var(--brand);
  font-weight: 700;
}

.step-card h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefit-inline {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
}

.benefit-inline-text {
  flex: 1;
  min-width: 0;
}

.benefit-inline-icon {
  display: inline-flex;
  width: 1.25rem;
  flex: 0 0 1.25rem;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 540px) {
  .benefit-inline {
    align-items: flex-start;
    gap: 0.45rem;
  }
  .benefit-inline-icon {
    width: 1.1rem;
    flex-basis: 1.1rem;
    margin-top: 0.08rem;
    line-height: 1.4;
  }
}

@media (min-width: 992px) {
  .products-step-row .step-card {
    position: relative;
    margin-right: -1px;
  }
  .products-step-row .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.85rem;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--border);
  }
}

.feature-card, .info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  height: 100%;
}

.feature-card:hover, .info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.15);
}

.home-trnsys-image-frame {
  width: 100%;
  max-width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  background: var(--surface-alt);
}

.home-trnsys-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  display: block;
}

.home-trnsys-pair {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--surface-alt);
  color: var(--brand);
  margin-bottom: 1rem;
}

.btn.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
}

.btn.btn-primary:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.badge {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
}

.text-primary-custom { color: var(--brand) !important; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background: rgba(59, 130, 246, 0.04);
}

.mobile-home {
  display: none;
}

.site-footer {
  margin-top: 5rem;
  background: #0b1220;
  color: #e2e8f0;
}

.site-footer a { color: #cbd5e1; }
.footer-title { color: #fff; font-weight: 700; }

.page-frame {
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}

.location-map-wrap {
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  overflow: hidden;
  background: var(--surface-alt);
}

.location-map-wrap .root_daum_roughmap {
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
}

.location-map-wrap .root_daum_roughmap .wrap_map {
  width: 100% !important;
}

/* Hide Kakao map bottom controller block (logo + directions/roadview area). */
#daumRoughmapContainer1577017371805 .wrap_controllers {
  display: none !important;
}

/* Hide only KakaoMap directions control ("길찾기") in this embedded map. */
#daumRoughmapContainer1577017371805 .wrap_btn_roadview .ico_street,
#daumRoughmapContainer1577017371805 .wrap_btn_roadview a[href*="eName="],
#daumRoughmapContainer1577017371805 .wrap_btn_roadview .txt_bar.hide_text {
  display: none !important;
}

.location-info-panel {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1.05rem 1.1rem;
}

.location-company {
  color: var(--text-primary);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.location-company-en {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

.location-meta-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.55;
}

.location-label {
  min-width: 4.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.location-value {
  color: var(--text-primary);
}

.location-transport-guide {
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
}

.location-transport-guide h6 {
  color: var(--text-primary);
  font-size: 1rem;
}

.location-transport-guide p {
  color: var(--text-primary);
  font-size: 0.98rem;
  line-height: 1.6;
}

.callout {
  background: linear-gradient(120deg, #eff6ff, #eef2ff);
  border: 1px solid #bfdbfe;
  border-radius: 1.2rem;
  padding: 1.75rem;
}

:root[data-theme="dark"] .callout {
  background: linear-gradient(120deg, #1e3a8a, #312e81);
  border-color: rgba(147, 197, 253, 0.35);
}

.theme-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border-radius: 999px;
  padding: .45rem .75rem;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text-secondary);
  font-size: .85rem;
}

@media (min-width: 993px) and (max-width: 1199px) {
  .hero-section .hero-copy {
    flex: 0 0 44%;
    max-width: 44%;
  }
  .hero-section .home-hero-media {
    flex: 0 0 56%;
    max-width: 56%;
  }
  .hero-section .hero-copy h1 {
    font-size: clamp(1.7rem, 1.6vw + 0.9rem, 2.25rem);
  }
  .hero-section .hero-copy .lead {
    font-size: 1.03rem;
  }
  .hero-section .hero-highlights li {
    font-size: 0.94rem;
  }
}

@media (max-width: 992px) {
  .social-quick-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: 0;
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px dashed var(--border);
  }
  .hero-img { display: none !important; }
  .hero-section { padding: 3.25rem 0 2.75rem; }
  .site-footer { margin-top: 3rem; }
}

@media (max-width: 768px) {
  .trust-panel {
    padding: 0.95rem 1rem;
  }
  .section-title { font-size: 1.7rem; }
  .page-frame { margin-top: 1.5rem; margin-bottom: 1.5rem; }
  .feature-card, .info-card { padding: 1.1rem; }
  .home-trnsys-image-frame {
    width: 100%;
  }
  .home-trnsys-image {
    height: auto;
    max-height: none;
  }
  .product-detail-hero { padding: 2.4rem 0 1.4rem; }
  .product-side-card,
  .detail-feature-card { padding: 1rem; }
  .trnsys-shell { padding: 1.2rem; }
  .trnsys-hero-media img,
  .trnsys-hero-media iframe { min-height: 215px; }
  .trnsys-chip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-home { display: block; }
  .location-map-wrap .root_daum_roughmap .wrap_map {
    height: 320px !important;
  }
  .location-meta-list li {
    font-size: 0.95rem;
  }
}

@media (max-width: 540px) {
  .hero-section { padding: 2.5rem 0 2rem; }
  .hero-copy h1 { font-size: 1.9rem; }
  .section-title { margin-bottom: 1rem; }
  .site-logo { height: 30px; }
  .btn { width: 100%; }
  .product-hero-btn-group .product-hero-btn { width: 100%; min-width: 0; }
  .trnsys-btn-group .btn { width: auto; }
  .trnsys-extension-card h3 { font-size: 1.25rem; }
  .trnsys-reason-item { padding-left: 1.75rem; }
  .mobile-home .hero-copy p { margin-bottom: 1rem; }
}

/* ===== Support Page Styles (migrated from inline blocks) ===== */

/* --- migrated from support/index.php --- */
html {
    scroll-behavior: smooth;
  }

  .custom-select-wrap {
    position: relative;
  }
  .custom-select-toggle {
    min-height: 44px;
  }
  .custom-select-toggle .inquiry-type-icon {
    font-size: 1.2rem;
  }
  .custom-select-menu {
    position: absolute;
    inset: 100% 0 auto 0;
    z-index: 20;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    margin-top: 0.35rem;
  }
  .custom-select-option {
    width: 100%;
    border: none;
    border-radius: 0;
    background: #fff;
    text-align: left;
    padding: 0.65rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1e21;
    font-size: 0.96rem;
  }
  .custom-select-option:hover,
  .custom-select-option:focus {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .custom-select-option.active {
    background-color: #e7f1ff;
    font-weight: 700;
  }
  .custom-select-option + .custom-select-option {
    border-top: 1px solid #edf0f4;
  }
  .inquiry-type-icon {
    width: 1.15rem;
    text-align: center;
  }
  :root[data-theme="dark"] .custom-select-toggle {
    background: #1f2937;
    border-color: #374151;
    color: #f8fafc;
  }
  :root[data-theme="dark"] .custom-select-menu,
  :root[data-theme="dark"] .custom-select-option {
    background: #1f2937;
    color: #f8fafc;
  }
  :root[data-theme="dark"] .custom-select-option {
    border-top-color: #374151;
  }
  :root[data-theme="dark"] .custom-select-option + .custom-select-option {
    border-color: #374151;
  }
  :root[data-theme="dark"] .custom-select-option:hover,
  :root[data-theme="dark"] .custom-select-option:focus {
    background-color: #111827;
  }
  :root[data-theme="dark"] .custom-select-option.active {
    background-color: rgba(59,130,246,0.18);
    color: #dbeafe;
  }

  .jump-card {
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    background: var(--bs-white);
    padding: 1.25rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  }

  :root[data-theme="dark"] .jump-card {
    background: #1f2937;
    border-color: #374151;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.45);
  }
  :root[data-theme="dark"] .jump-card p,
  :root[data-theme="dark"] .support-page-heading p,
  :root[data-theme="dark"] .support-page-panel .section-title-wrap p {
    color: #9ca3af !important;
  }
  :root[data-theme="dark"] .support-page-heading h1,
  :root[data-theme="dark"] .support-panel-btn {
    color: #f9fafb;
  }
  :root[data-theme="dark"] .support-panel-btn {
    border-color: #3b82f6;
    color: #93c5fd;
  }
  :root[data-theme="dark"] .support-panel-btn:hover,
  :root[data-theme="dark"] .support-panel-btn:focus-visible {
    background-color: rgba(59, 130, 246, 0.14);
    border-color: #60a5fa;
    color: #f8fafc;
  }

  .support-page-panel {
    margin: 0 0 2rem;
    display: none;
  }

  .support-page-panel.is-visible {
    display: block;
  }

  .support-panel-btn.active,
  .support-panel-btn:focus-visible {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
  }

  :root[data-theme="dark"] .support-page-panel {
    background: transparent;
  }

  .support-page-panel .detail-feature-card {
    height: 100%;
  }

  .support-loaded-page {
    min-height: 260px;
  }

  .support-page-panel .form-note {
    color: var(--text-secondary);
    margin-bottom: 1.1rem;
  }

  .support-page-title {
    font-size: clamp(1.25rem, 1.6vw + 0.8rem, 1.8rem);
    margin-bottom: 1.25rem;
  }

  #section-faq,
  #section-education,
  #section-one-on-one {
    scroll-margin-top: 120px;
  }

  .support-shell {
    padding-top: 1.75rem;
    padding-bottom: 2rem;
  }
  .support-page-heading {
    margin-bottom: 2rem;
  }
  .support-page-heading h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(2rem, 1.7vw + 1.15rem, 2.65rem);
    line-height: 1.2;
  }
  .support-page-heading p {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 840px;
    margin: 0 auto;
  }
  #supportQuickLinks {
    margin-bottom: 2.25rem;
  }
  .jump-card {
    padding: 1.5rem 1.35rem;
    min-height: 224px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  }
  .jump-card h5 {
    font-size: 1.12rem;
  }
  .jump-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.4rem;
  }
  .support-panel-btn {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    min-width: 165px;
  }
  .support-loaded-page {
    min-height: 240px;
  }
  .support-page-panel .section-title-wrap {
    margin-bottom: 1.2rem;
    text-align: center;
  }
  .support-page-panel .section-title-wrap .section-title {
    margin-bottom: 0.5rem;
    font-size: clamp(1.6rem, 1.4vw + 1rem, 2rem);
  }
  .support-page-panel .section-title-wrap p {
    font-size: 0.98rem;
    margin-bottom: 0;
  }
  :root[data-theme="dark"] .support-page-panel .section-title-wrap .section-title {
    color: #f8fafc;
  }
  :root[data-theme="dark"] .support-panel-btn {
    color: #93c5fd;
    background-color: transparent;
    border-color: #3b82f6;
  }
  :root[data-theme="dark"] .support-panel-btn.active {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: #f8fafc;
  }

  @media (max-width: 767px) {
    .support-shell {
      padding-top: 1.2rem;
      padding-bottom: 1.2rem;
    }
    .support-page-heading {
      margin-bottom: 1.3rem;
    }
    .support-page-heading h1 {
      font-size: clamp(1.55rem, 7.8vw, 1.95rem);
      margin-bottom: 0.45rem;
    }
    .support-page-heading p {
      font-size: 0.96rem;
      line-height: 1.6;
    }
    #supportQuickLinks {
      margin-bottom: 1.4rem;
    }
    .jump-card {
      min-height: auto;
      padding: 1.15rem;
    }
    .jump-card h5 {
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }
    .jump-card p {
      font-size: 0.9rem;
      margin-bottom: 0.95rem;
      line-height: 1.5;
    }
    .support-panel-btn {
      width: 100%;
      min-width: 0;
      font-size: 0.92rem;
      padding: 0.55rem 0.75rem;
    }
    #supportQuickLinks .col-lg-4 {
      margin-bottom: 0.25rem;
    }
    .support-page-panel .section-title-wrap .section-title {
      font-size: 1.45rem;
    }
    .support-page-panel .section-title-wrap p {
      font-size: 0.92rem;
    }
    .support-page-panel {
      margin-bottom: 1.4rem;
    }
    .support-loaded-page {
      min-height: 180px;
    }
  }


/* --- migrated from support/FAQ.php --- */
.support-faq-list {
    margin-top: 0.75rem;
  }
  .support-faq-card {
    height: 100%;
    padding: 1.4rem;
  }
  .support-faq-card .benefit-inline {
    gap: 0.85rem;
    align-items: flex-start;
  }
  .support-faq-card .benefit-inline-icon {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    border-radius: 999px;
    background: #eef2ff;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
  }
  :root[data-theme="dark"] .support-faq-card .benefit-inline-icon {
    background: rgba(59, 130, 246, 0.24);
    color: #dbeafe;
  }
  .support-faq-card h4 {
    font-size: 1.05rem;
    line-height: 1.5;
  }
  .support-faq-card p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  :root[data-theme="dark"] .support-faq-card {
    border-color: #2b3650;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  }
  :root[data-theme="dark"] .support-faq-card h4 {
    color: #f8fafc;
  }
  :root[data-theme="dark"] .support-faq-card p {
    color: #cbd5e1 !important;
  }
  :root[data-theme="dark"] .support-faq-list {
    margin-top: 0.75rem;
  }

  @media (max-width: 767px) {
    .support-faq-list {
      margin-top: 0.45rem;
    }
    .support-faq-card {
      padding: 1.15rem;
    }
    .support-faq-card .benefit-inline {
      gap: 0.65rem;
    }
    .support-faq-card .benefit-inline-icon {
      width: 1.8rem;
      height: 1.8rem;
      min-width: 1.8rem;
      margin-top: 0.1rem;
    }
    .support-faq-card h4 {
      font-size: 1rem;
      margin-bottom: 0.45rem;
    }
    .support-faq-card p {
      font-size: 0.9rem;
      line-height: 1.56;
    }
  }


/* --- migrated from support/education.php --- */
.education-submit-btn {
        min-width: 160px;
        width: auto;
        font-size: 0.95rem;
      }

      .education-schedule-container {
        min-height: 210px;
      }

      .education-apply-action {
        margin-top: 1.25rem;
        padding-top: 0.25rem;
      }
      .education-card-title span {
        display: block;
      }
      .education-card-title {
        margin-bottom: 0.65rem;
      }
      .education-card-brand {
        font-size: 1.4rem;
        color: #b8860b;
        letter-spacing: 0.02em;
        font-weight: 800;
        text-transform: uppercase;
      }
      .education-card-level {
        color: #0d6efd;
        font-size: 1.4rem;
        margin-top: 2px;
        font-weight: 800;
        text-transform: uppercase;
      }
      :root[data-theme="dark"] .education-card-brand {
        color: #f59e0b;
      }
      :root[data-theme="dark"] .education-card-level {
        color: #60a5fa;
      }
      :root[data-theme="dark"] .education-contents-stack > .detail-feature-card p {
        color: #cbd5e1;
      }
      .education-contents-stack > .detail-feature-card p {
        line-height: 1.7;
      }
      @media (max-width: 767px) {
        .education-contents-stack {
          gap: 1.1rem;
        }
        .education-card-title {
          margin-bottom: 0.45rem;
        }
        .education-card-brand,
        .education-card-level {
          font-size: 1.25rem;
        }
        .education-contents-stack > .detail-feature-card p {
          font-size: 0.94rem;
          line-height: 1.55;
        }
        .education-schedule-container {
          min-height: 190px;
        }
        .education-submit-btn {
          min-width: 0;
          width: 100%;
          max-width: 320px;
        }
        .education-apply-action {
          margin-top: 1rem;
          padding-top: 0.1rem;
        }
      }
      @media (min-width: 992px) {
        .education-apply-action {
          margin-top: 1.4rem;
          padding-top: 0.35rem;
        }
      }


/* --- migrated from support/education-apply.php --- */
.education-apply-iframe-wrap {
        width: 100%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
      }
      .education-apply-iframe {
        width: 640px;
        max-width: 100%;
        height: 962px;
        border: 0;
        display: block;
      }
      @media (max-width: 768px) {
        .education-apply-iframe-wrap {
          border: 1px solid var(--bs-border-color);
          border-radius: 0.75rem;
        }
        .education-apply-iframe {
          width: 640px;
          height: 960px;
        }
      }


/* --- migrated from support/one-on-one.php --- */
.support-submit-btn {
    min-width: 170px;
    width: auto;
    font-size: 0.95rem;
  }
  .support-form-grid .form-label {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
  }
  .support-form-grid .form-control {
    min-height: 44px;
    border-radius: 0.8rem;
    padding: 0.65rem 0.9rem;
  }
  .support-oneon-card .form-note {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 1.1rem;
  }
  .support-oneon-card {
    padding: 1.5rem;
  }
  .privacy-consent-box {
    border: 1px solid #dee2e6;
    border-radius: 0.8rem;
    padding: 0.9rem 1rem;
    background: #f8fafc;
  }
  .privacy-consent-box .form-check-label {
    font-size: 0.94rem;
    line-height: 1.55;
  }
  .privacy-consent-note {
    margin: 0.55rem 0 0;
    font-size: 0.86rem;
    color: #6b7280;
    line-height: 1.5;
  }
  .support-turnstile-wrap {
    min-height: 66px;
  }
  :root[data-theme="dark"] .support-form-grid .form-label {
    color: #f3f4f6;
  }
  :root[data-theme="dark"] .support-form-grid .form-control {
    background: #1f2937;
    color: #e5e7eb;
    border-color: #374151;
  }
  :root[data-theme="dark"] .support-form-grid .form-control:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.24);
    background: #1f2937;
    color: #f8fafc;
  }
  :root[data-theme="dark"] .support-form-grid .form-control::placeholder {
    color: #94a3b8;
  }
  :root[data-theme="dark"] .support-form-grid textarea.form-control {
    background: #1f2937;
  }
  :root[data-theme="dark"] .support-oneon-card .form-note {
    color: #cbd5e1;
  }
  :root[data-theme="dark"] .privacy-consent-box {
    background: #111827;
    border-color: #374151;
  }
  :root[data-theme="dark"] .privacy-consent-box .form-check-label {
    color: #e5e7eb;
  }
  :root[data-theme="dark"] .privacy-consent-note {
    color: #9ca3af;
  }
  :root[data-theme="dark"] .support-turnstile-wrap {
    background: #111827;
    border-color: #374151;
  }

  @media (max-width: 767px) {
    .support-oneon-card {
      padding: 1.1rem;
    }
    .support-oneon-card .form-note {
      font-size: 0.9rem;
      margin-bottom: 0.9rem;
      line-height: 1.55;
    }
    .support-form-grid .form-label {
      margin-bottom: 0.25rem;
      font-size: 0.9rem;
    }
    .support-form-grid .form-control {
      min-height: 42px;
      border-radius: 0.7rem;
      padding: 0.6rem 0.8rem;
      font-size: 0.95rem;
    }
    .support-submit-btn {
      width: 100%;
      max-width: 320px;
      min-width: 0;
    }
    .support-turnstile-wrap {
      min-height: 62px;
    }
  }


/* --- migrated from support/schedule.php --- */
.education-month-table {
    table-layout: fixed;
    width: 100%;
    --course-name-ratio: 24%;
    font-size: 0.92rem;
  }
  .education-month-table .course-name-col {
    width: var(--course-name-ratio);
    vertical-align: middle;
    text-align: center;
  }
  .education-month-table th,
  .education-month-table td {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .education-month-table .month-col {
    width: calc((100% - var(--course-name-ratio)) / 12);
    border-right: 1px solid #d8dde6;
    border-top: 1px solid #e9edf4;
    border-bottom: 1px solid #e9edf4;
    min-width: 56px;
    max-width: 56px;
    white-space: nowrap;
  }
  .education-month-table th.month-col {
    font-size: 0.84rem;
    letter-spacing: 0.01em;
    text-wrap: nowrap;
    white-space: nowrap;
    overflow: visible;
  }
  .education-month-table .month-prefix {
    font-variant-numeric: tabular-nums;
  }
  .education-month-table th.month-col .month-suffix {
    font-size: 0.72rem;
    color: #7b8799;
    margin-left: 1px;
    vertical-align: baseline;
  }
  .education-month-table .course-name-col {
    border-top: 1px solid #e9edf4;
    border-bottom: 1px solid #e9edf4;
  }
  .education-month-table .month-col.month-quarter-sep {
    border-right: 2px solid #b6c2d6;
  }
  .education-month-table .month-col:last-child {
    border-right: none;
  }
  .education-month-table .course-name-col,
  .education-month-table th {
    border-bottom: 1px solid #d8dde6;
    font-weight: 600;
  }
  .education-month-table .month-col,
  .education-month-table .course-name-col,
  .education-month-table .month-col .text-nowrap {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
  }
  .education-month-table .month-col.empty-col {
    background: #fafbff;
  }
  .education-table-brand {
    display: block;
    font-weight: 800;
    font-size: 1.08rem;
    color: #b8860b;
    text-transform: uppercase;
  }
  .education-table-level {
    display: block;
    color: #0d6efd;
    font-weight: 800;
    font-size: 1.08rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
  }
  .education-table-price {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    letter-spacing: 0;
  }
  .education-table-scroll-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
  }
  .education-table-scroll-wrap .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .education-table-scroll-wrap::before,
  .education-table-scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 24px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.45;
  }
  .education-table-scroll-wrap::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  }
  .education-table-scroll-wrap::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  }
  .education-mobile-list {
    display: none;
  }
  .education-mobile-card {
    border: 1px solid #d8dde6;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    padding: 0.95rem 1rem;
  }
  .education-mobile-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    border-bottom: 1px solid #e9edf4;
    padding-bottom: 0.58rem;
    margin-bottom: 0.62rem;
  }
  .education-mobile-title .education-table-brand,
  .education-mobile-title .education-table-level {
    font-size: 0.98rem;
  }
  .education-mobile-dates {
    display: grid;
    gap: 0.42rem;
  }
  .education-mobile-date-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    background: #f8fafd;
    border: 1px solid #e6ebf2;
    padding: 0.42rem 0.56rem;
    line-height: 1.2;
  }
  .education-mobile-month {
    color: #334155;
    font-weight: 700;
    font-size: 0.84rem;
    font-variant-numeric: tabular-nums;
  }
  .education-mobile-day {
    color: #0d6efd;
    font-weight: 800;
    font-size: 0.92rem;
    font-variant-numeric: tabular-nums;
  }
  .education-mobile-empty {
    color: #64748b;
    font-size: 0.82rem;
    margin: 0;
  }
  .education-mobile-price {
    margin: -0.14rem 0 0.56rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #334155;
    letter-spacing: 0;
  }
  .education-month-table td .text-nowrap {
    padding-top: 0.16rem;
    padding-bottom: 0.16rem;
    font-weight: 600;
  }
  :root[data-theme="dark"] .education-table-scroll-wrap {
    background: #111827;
    border: 1px solid #374151;
    border-radius: 12px;
  }
  :root[data-theme="dark"] .education-month-table,
  :root[data-theme="dark"] .education-month-table th,
  :root[data-theme="dark"] .education-month-table td,
  :root[data-theme="dark"] .education-table-scroll-wrap .table-wrap {
    background: transparent;
    color: #e5e7eb;
  }
  :root[data-theme="dark"] .education-month-table th,
  :root[data-theme="dark"] .education-month-table td,
  :root[data-theme="dark"] .education-month-table .course-name-col,
  :root[data-theme="dark"] .education-month-table .course-name-col,
  :root[data-theme="dark"] .education-month-table .month-col.empty-col {
    border-color: #2d3748;
  }
  :root[data-theme="dark"] .education-month-table .month-col.empty-col {
    background: #141e2e;
  }
  :root[data-theme="dark"] .education-table-brand {
    color: #facc15;
  }
  :root[data-theme="dark"] .education-table-level {
    color: #60a5fa;
  }
  :root[data-theme="dark"] .education-table-price {
    color: #cbd5e1;
  }
  :root[data-theme="dark"] .education-month-table th.month-col .month-suffix {
    color: #94a3b8;
  }
  :root[data-theme="dark"] .education-month-table .month-col.month-quarter-sep {
    border-right: 2px solid #334155;
  }
  :root[data-theme="dark"] .education-month-table th,
  :root[data-theme="dark"] .education-month-table td {
    border-color: #263447;
  }
  :root[data-theme="dark"] .education-table-scroll-wrap::before {
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0));
  }
  :root[data-theme="dark"] .education-table-scroll-wrap::after {
    background: linear-gradient(270deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0));
  }
  :root[data-theme="dark"] .education-mobile-card {
    background: #111827;
    border-color: #334155;
    box-shadow: none;
  }
  :root[data-theme="dark"] .education-mobile-title {
    border-color: #243242;
  }
  :root[data-theme="dark"] .education-mobile-date-row {
    background: #182334;
    border-color: #273548;
  }
  :root[data-theme="dark"] .education-mobile-month {
    color: #cbd5e1;
  }
  :root[data-theme="dark"] .education-mobile-day {
    color: #93c5fd;
  }
  :root[data-theme="dark"] .education-mobile-empty {
    color: #94a3b8;
  }
  :root[data-theme="dark"] .education-mobile-price {
    color: #cbd5e1;
  }
  @media (min-width: 992px) {
    .education-table-scroll-wrap::before,
    .education-table-scroll-wrap::after {
      display: none;
    }
  }
  @media (max-width: 991px) {
    .education-table-brand,
    .education-table-level {
      font-size: 1rem;
    }
    .education-month-table th,
    .education-month-table td {
      padding-top: 0.82rem;
      padding-bottom: 0.82rem;
    }
    .education-month-table th.month-col {
      font-size: 0.74rem;
      white-space: normal;
      line-height: 1.15;
    }
    .education-month-table th.month-col .month-prefix,
    .education-month-table th.month-col .month-suffix {
      display: block;
      margin-left: 0;
      line-height: 1.05;
    }
    .education-month-table th.month-col .month-suffix {
      font-size: 0.68rem;
    }
  }
  @media (max-width: 767px) {
    .education-table-scroll-wrap {
      display: none;
    }
    .education-mobile-list {
      display: grid;
      gap: 0.82rem;
    }
    .education-month-table {
      --course-name-ratio: 28%;
      font-size: 0.76rem;
    }
    .education-month-table th,
    .education-month-table td {
      padding-top: 0.64rem;
      padding-bottom: 0.64rem;
    }
    .education-table-scroll-wrap::before,
    .education-table-scroll-wrap::after {
      width: 18px;
    }
    .education-table-brand,
    .education-table-level {
      font-size: 0.9rem;
    }
    .education-month-table th.month-col {
      font-size: 0.67rem;
    }
    .education-month-table th.month-col .month-suffix {
      font-size: 0.64rem;
      margin-left: 0;
    }
    .education-mobile-title .education-table-brand,
    .education-mobile-title .education-table-level {
      font-size: 0.92rem;
    }
    .education-mobile-price {
      font-size: 0.78rem;
    }
  }
  @media (max-width: 390px) {
    .education-month-table {
      --course-name-ratio: 32%;
      font-size: 0.72rem;
    }
    .education-month-table th,
    .education-month-table td {
      padding-top: 0.56rem;
      padding-bottom: 0.56rem;
    }
    .education-table-scroll-wrap::before,
    .education-table-scroll-wrap::after {
      width: 14px;
    }
    .education-table-brand,
    .education-table-level {
      font-size: 0.82rem;
    }
    .education-month-table th.month-col {
      font-size: 0.62rem;
    }
    .education-month-table th.month-col .month-suffix {
      font-size: 0.59rem;
      margin-left: 0;
    }
    .education-mobile-card {
      padding: 0.82rem 0.86rem;
    }
    .education-mobile-month {
      font-size: 0.8rem;
    }
    .education-mobile-day {
      font-size: 0.88rem;
    }
    .education-month-table td .text-nowrap {
      font-size: 0.68rem;
    }
    .education-month-table .month-col.empty-col {
      background: #fafbff;
    }
    :root[data-theme="dark"] .education-month-table .month-col.empty-col {
      background: #141e2e;
    }
  }

