:root {
  --ink: #0b0b0d;
  --muted: #666a73;
  --line: #e4e4e7;
  --paper: #f7f7f4;
  --soft: #ffffff;
  --accent: #f05a28;
  --orange: #f05a28;
  --blue: #2457ff;
  --dark: #111114;
}

.consult-page {
  background: var(--paper);
  color: var(--ink);
}

.consult-back {
  position: fixed;
  left: clamp(16px, 4vw, 48px);
  top: clamp(16px, 3vw, 34px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(24, 20, 17, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(247, 247, 244, 0.78);
  box-shadow: 0 12px 36px rgba(24, 20, 17, 0.08);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font: inherit;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.consult-back:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 90, 40, 0.32);
  background: rgba(255, 249, 240, 0.92);
}

.consult-back span {
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}

.consult-back strong {
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.consult-main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(92px, 12vw, 150px) 0 clamp(80px, 10vw, 128px);
}

.consult-hero {
  min-height: 42vh;
  display: grid;
  align-content: end;
  gap: 22px;
  padding-bottom: clamp(36px, 8vw, 84px);
}

.consult-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.consult-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(24, 20, 17, 0.72);
  font-size: clamp(18px, 2.3vw, 28px);
  line-height: 1.5;
}

.consult-form-section {
  border-top: 1px solid rgba(24, 20, 17, 0.16);
  padding-top: clamp(28px, 5vw, 56px);
}

.consult-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 5vw, 54px);
  border-radius: 30px;
  background: #fff9f0;
  box-shadow: 0 22px 80px rgba(24, 20, 17, 0.1);
}

.form-required-note,
.form-wide,
.consult-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-required-note {
  color: rgba(24, 20, 17, 0.58);
  font-size: 14px;
}

.consult-form label {
  display: grid;
  gap: 10px;
  color: rgba(24, 20, 17, 0.7);
  font-size: 14px;
  font-weight: 700;
}

.consult-form label > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.consult-form b {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(237, 109, 43, 0.12);
  color: var(--orange);
  font-size: 11px;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 20, 17, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.consult-form input,
.consult-form select {
  height: 58px;
  padding: 0 18px;
}

.consult-form textarea {
  min-height: 150px;
  resize: vertical;
  padding: 18px;
  line-height: 1.55;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  border-color: rgba(237, 109, 43, 0.72);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(237, 109, 43, 0.12);
}

.form-agree {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 12px !important;
  padding: 16px 0 4px;
}

.form-agree input {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  flex: 0 0 auto;
}

.consult-form button {
  height: 62px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  transition: transform 0.16s ease, filter 0.16s ease;
}

.consult-form button:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
}

.consult-form button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(24, 20, 17, 0.62);
  font-size: 15px;
  font-weight: 700;
}

.form-status[data-type="success"] {
  color: #16794a;
}

.form-status[data-type="error"] {
  color: #c33b20;
}

@media (max-width: 760px) {
  .consult-main {
    width: min(100% - 28px, 1120px);
    padding-top: 92px;
  }

  .consult-hero {
    min-height: 36vh;
  }

  .consult-form {
    grid-template-columns: 1fr;
    gap: 15px;
    border-radius: 24px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(150px, 180px) minmax(0, 1fr);
  height: var(--header-height, 92px);
  min-height: var(--header-height, 92px);
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--header-bg, var(--ink));
  border-bottom: 0;
  backdrop-filter: none;
  overflow: hidden;
  transition: height 0.34s cubic-bezier(0.22, 1, 0.36, 1), min-height 0.34s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease, padding 0.28s ease;
}

.site-header.is-compressed {
  cursor: pointer;
}

.site-header.is-compressed:hover,
.site-header.is-hover-open {
  height: var(--header-full-height, 92px);
  min-height: var(--header-full-height, 92px);
  background: var(--ink);
}

.site-header::after {
  content: none;
}

.brand,
.dw-nav {
  opacity: var(--header-content-opacity, 1);
  scale: var(--header-content-scale, 1);
  transform: translateY(var(--header-content-y, 0));
  transform-origin: center top;
  transition: opacity 0.3s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), scale 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-lines {
  position: absolute;
  left: 50%;
  top: calc(50% + 5px);
  display: block;
  width: min(148px, 34vw);
  padding: 10px 0;
  opacity: var(--header-line-opacity, 0);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.24s ease, top 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-lines span {
  display: block;
  width: 100%;
  height: 5px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 1px 10px rgba(255, 255, 255, 0.24);
  transform: scaleX(var(--header-line-scale, 0));
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-compressed .brand,
.site-header.is-compressed .dw-nav {
  pointer-events: none;
}

.site-header.is-compressed .dw-nav a {
  padding-top: 0;
  padding-bottom: 0;
}

.site-header.is-compressed:hover .brand,
.site-header.is-compressed:hover .dw-nav,
.site-header.is-hover-open .brand,
.site-header.is-hover-open .dw-nav {
  opacity: 1;
  scale: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-header.is-compressed:hover .dw-nav a,
.site-header.is-hover-open .dw-nav a {
  padding-top: 16px;
  padding-bottom: 16px;
}

.site-header.is-compressed:hover .header-lines,
.site-header.is-hover-open .header-lines {
  opacity: 0;
  top: 50%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border-radius: 50%;
}

.dw-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(84px, 1fr));
  gap: 2px;
  min-width: 0;
}

.dw-nav a {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 16px 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, color 0.25s ease;
}

.dw-nav a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.dw-nav a span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.dw-nav a strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dw-nav a:hover,
.dw-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.dw-nav a:hover span,
.dw-nav a.is-active span {
  color: rgba(255, 255, 255, 0.66);
}

@keyframes reviewSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--review-shift));
  }
}

main {
  overflow: hidden;
}

.hero-section {
  position: relative;
  height: 104vh;
  color: #fff;
  background: var(--ink);
}

.sticky-consult {
  position: fixed;
  left: 50%;
  bottom: max(clamp(18px, 3vw, 34px), env(safe-area-inset-bottom));
  z-index: 60;
  transform: translateX(-50%);
  pointer-events: none;
}

.sticky-consult a {
  pointer-events: auto;
  display: inline-flex;
  min-width: min(320px, calc(100vw - 40px));
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  color: #fff;
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(240, 90, 40, 0.34);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.sticky-consult a:hover {
  transform: translateY(-3px);
  background: #e85f00;
  box-shadow: 0 22px 58px rgba(240, 90, 40, 0.42);
}

.sticky-consult strong {
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1;
  transform: translateY(-1px);
}

.service-panel,
.experience-section,
.trial-section,
.review-section,
.company-section,
.news-section,
.faq-section,
.contact-card {
  position: relative;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-motion-logo {
  position: sticky;
  top: 0;
  display: grid;
  height: 100vh;
  align-content: center;
  overflow: hidden;
}

.hero-motion-line {
  width: max-content;
  margin: -0.06em 0;
  color: rgba(255, 255, 255, var(--hero-line-opacity, 1));
  font-size: clamp(74px, 17vw, 270px);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: -0.09em;
  white-space: nowrap;
  transform: translate3d(var(--hero-line-x, 0px), 0, 0);
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), color 0.18s linear;
  will-change: transform, opacity;
}

.hero-motion-line.from-left {
  margin-left: clamp(16px, 5vw, 92px);
}

.hero-motion-line.from-right {
  justify-self: end;
  margin-right: clamp(16px, 5vw, 92px);
  color: rgba(240, 90, 40, var(--hero-line-opacity, 1));
}

.contact-card a {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-weight: 950;
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-card a:hover {
  transform: translateY(-4px);
  background: var(--accent);
}

.service-stack {
  background: #fff;
  border-top: 1px solid var(--line);
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42vw);
  min-height: 680px;
  border-bottom: 1px solid var(--line);
}

.service-copy {
  display: grid;
  align-content: center;
  padding: clamp(48px, 8vw, 110px) clamp(22px, 7vw, 112px);
}

.service-copy h2,
.section-heading h2,
.contact-card h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 7vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.service-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.7;
}

.service-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
}

.service-copy li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: #303036;
  font-weight: 900;
}

.project-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: clamp(28px, 5vw, 64px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(17, 17, 20, 0.9), rgba(240, 90, 40, 0.72)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.11) 0 14px, transparent 14px 28px);
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  transition: inset 0.35s ease, opacity 0.35s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255,255,255,0.28), transparent 34%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover::before {
  inset: 34px;
  opacity: 0.72;
}

.project-card:hover::after {
  opacity: 1;
}

.project-card.has-photo {
  background: var(--dark);
}

.project-card.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transform: scale(1.02);
  transition: transform 0.55s ease, opacity 0.35s ease;
}

.project-card.has-photo::before {
  z-index: 1;
}

.project-card.has-photo::after {
  z-index: 1;
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.05), rgba(11, 11, 13, 0.84)),
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(240, 90, 40, 0.18), transparent 38%);
}

.project-card.has-photo:hover img {
  opacity: 0.9;
  transform: scale(1.07);
}

.project-card.blue {
  background:
    linear-gradient(145deg, rgba(17, 17, 20, 0.92), rgba(36, 87, 255, 0.72)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0 14px, transparent 14px 28px);
}

.project-card.dark {
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(60, 60, 65, 0.76)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 14px, transparent 14px 28px);
}

.project-card.clay {
  background:
    linear-gradient(145deg, rgba(17, 17, 20, 0.92), rgba(142, 82, 40, 0.76)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0 14px, transparent 14px 28px);
}

.project-card span,
.project-card strong,
.project-card em {
  position: relative;
  z-index: 2;
}

.project-card span {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 950;
}

.project-card strong {
  font-size: clamp(36px, 5vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.project-card em {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
  font-weight: 750;
  line-height: 1.55;
}

.experience-section,
.trial-section,
.review-section,
.company-section,
.news-section,
.faq-section,
.contact-section {
  padding: clamp(76px, 11vw, 150px) clamp(18px, 6vw, 92px);
}

.section-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 44px;
}

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

.case-item {
  min-height: 420px;
  display: grid;
  align-content: end;
  padding: 28px;
  color: #fff;
  background: var(--dark);
  border-radius: 0;
  transition: transform 0.35s ease, background 0.35s ease;
}

.case-item:nth-child(even) {
  margin-top: 70px;
  background: #242429;
}

.case-item:hover {
  transform: translateY(-14px);
  background: var(--accent);
}

.case-item span {
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 950;
}

.case-item h3 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.case-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.trial-section {
  position: relative;
  color: #fff;
  background: var(--ink);
}

.trial-section .section-heading h2 {
  color: #fff;
}

.trial-board {
  display: grid;
  gap: 34px;
  max-width: 1060px;
  padding: clamp(30px, 5vw, 62px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trial-board p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

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

.trial-steps span {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 950;
}

.trial-board a {
  display: inline-flex;
  width: fit-content;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  color: var(--ink);
  background: #fff;
  border-radius: 999px;
  font-weight: 950;
  transition: transform 0.24s ease, background 0.24s ease;
}

.trial-board a:hover {
  transform: translateY(-4px);
  background: var(--accent);
}

.review-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.review-window {
  overflow: hidden;
  margin-left: calc(clamp(18px, 6vw, 92px) * -1);
  margin-right: calc(clamp(18px, 6vw, 92px) * -1);
  padding: 0 clamp(18px, 6vw, 92px);
}

.review-track {
  display: flex;
  --review-gap: 18px;
  --review-card-width: min(31vw, 390px);
  --review-shift: calc(-10 * (var(--review-card-width) + var(--review-gap)));
  gap: var(--review-gap);
  width: max-content;
  animation: reviewSlide 64s linear infinite;
}

.review-window:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  flex: 0 0 var(--review-card-width);
  min-height: 252px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  gap: 16px;
  padding: 22px;
  color: #fff;
  background: var(--dark);
}

.review-card:nth-child(3n + 2) {
  background: #26262c;
}

.review-card:nth-child(3n) {
  background: #3a2b24;
}

.review-profile {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 56px;
}

.review-avatar {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.review-card strong {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
  word-break: keep-all;
}

.review-card strong span {
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.review-card strong small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.review-card p {
  margin: 10px 0 0;
  align-self: start;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.18vw, 19px);
  font-weight: 750;
  line-height: 1.58;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

.company-section {
  position: relative;
  background: #fff;
  border-top: 1px solid var(--line);
}

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

.company-card {
  min-height: 330px;
  display: grid;
  align-content: end;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.company-card span {
  margin-bottom: 80px;
  color: var(--accent);
  font-weight: 950;
}

.company-card strong {
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.company-card p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}

.company-photo {
  margin: 18px 0 0;
  overflow: hidden;
  background: var(--ink);
}

.company-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  opacity: 0.92;
}

.news-section,
.faq-section {
  background: #fff;
  border-top: 1px solid var(--line);
}

.news-list,
.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-intro {
  max-width: 760px;
  margin: -18px 0 42px 220px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.news-row {
  display: grid;
  grid-template-columns: 86px minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.25s ease, color 0.25s ease;
}

.news-row:hover {
  padding-left: 18px;
  color: var(--accent);
}

.news-row span,
.news-row em {
  color: var(--muted);
  font-style: normal;
}

.news-row strong {
  font-size: clamp(21px, 2vw, 30px);
}

.faq-list details {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-size: clamp(21px, 2.4vw, 34px);
  font-weight: 950;
  letter-spacing: -0.035em;
}

.faq-list p {
  max-width: 850px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-left: 0;
  padding-right: 0;
  background: var(--ink);
}

.contact-card {
  display: grid;
  min-height: 470px;
  align-content: end;
  padding: clamp(30px, 5vw, 58px);
  color: #fff;
  background: var(--ink);
}

.contact-card.subscribe {
  background: #1e1e24;
}

.contact-card.recruit {
  background: #29292f;
}

.contact-card h2 {
  font-size: clamp(36px, 4.8vw, 72px);
}

.contact-card p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  line-height: 1.65;
}

.contact-card a {
  width: fit-content;
  margin-top: 18px;
  color: var(--ink);
  background: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  padding: 52px clamp(18px, 6vw, 92px) 92px;
  color: #fff;
  background: #050506;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card,
.case-item {
  will-change: transform;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr);
    justify-content: space-between;
    gap: 12px;
  }

  .dw-nav {
    display: none;
  }

  .header-lines {
    left: 50%;
    right: auto;
    width: 116px;
  }

  .service-panel,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .service-panel {
    min-height: auto;
  }

  .project-card {
    min-height: 520px;
  }

  .case-grid,
  .company-grid,
  .contact-section,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .review-card {
    flex-basis: var(--review-card-width);
  }

  .review-track {
    --review-card-width: min(44vw, 360px);
  }

  .news-row {
    grid-template-columns: 64px 1fr;
  }

  .news-row em {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .site-header {
    height: var(--header-height, 76px);
    min-height: var(--header-height, 76px);
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-section {
    height: 58svh;
    min-height: 390px;
  }

  .hero-motion-logo {
    height: 58svh;
    min-height: 390px;
  }

  .hero-motion-line {
    font-size: clamp(62px, 23vw, 112px);
    letter-spacing: -0.085em;
  }

  .service-copy,
  .experience-section,
  .trial-section,
  .review-section,
  .company-section,
  .news-section,
  .faq-section {
    padding: 64px 18px;
  }

  .faq-intro {
    margin: -18px 0 34px;
  }

  .service-copy ul,
  .trial-steps,
  .case-grid,
  .company-grid,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 112px;
  }

  .sticky-consult {
    left: 14px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    transform: none;
  }

  .sticky-consult a {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0 18px;
  }

  .sticky-consult strong {
    font-size: 19px;
  }

  .review-window {
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 18px;
  }

  .review-card {
    flex-basis: var(--review-card-width);
  }

  .review-track {
    --review-card-width: 78vw;
    animation-duration: 72s;
  }

  .project-card {
    min-height: 420px;
    padding: 30px;
  }

  .case-item,
  .case-item:nth-child(even) {
    min-height: 300px;
    margin-top: 0;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .news-row em {
    grid-column: auto;
  }

  .contact-card {
    min-height: 340px;
  }

}

/* A-1 아래 구간 전용: 설득형 랜딩 구조 */
.program-tabs {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  gap: 8px;
  padding: 14px clamp(18px, 6vw, 92px);
  overflow-x: auto;
  background: rgba(247, 247, 244, 0.92);
  border-bottom: 1px solid rgba(11, 11, 13, 0.08);
  backdrop-filter: blur(16px);
}

.program-tabs a {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  color: rgba(11, 11, 13, 0.62);
  background: #fff;
  border: 1px solid rgba(11, 11, 13, 0.08);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.program-tabs a:hover {
  color: #fff;
  background: var(--ink);
  transform: translateY(-2px);
}

.story-section {
  position: relative;
  padding: clamp(86px, 12vw, 172px) clamp(18px, 6vw, 92px);
}

.story-count {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent);
  background: #fff;
  border: 1px solid rgba(240, 90, 40, 0.24);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(11, 11, 13, 0.08);
}

.management-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 122, 26, 0.28), transparent 26%),
    radial-gradient(circle at 12% 84%, rgba(255, 122, 26, 0.13), transparent 30%),
    linear-gradient(135deg, #09090b 0%, #16161b 56%, #232022 100%);
  overflow: hidden;
}

.management-heading {
  position: relative;
  z-index: 1;
}

.management-heading .story-count {
  color: #fff;
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 70px rgba(240, 90, 40, 0.22);
}

.management-heading h2,
.proof-copy h1,
.trial-program-copy h2,
.section-heading h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(46px, 7.6vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.management-heading > p,
.proof-copy p:not(.eyebrow),
.trial-program-copy p,
.faq-intro {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(11, 11, 13, 0.62);
  font-size: clamp(18px, 1.75vw, 24px);
  font-weight: 750;
  line-height: 1.72;
  letter-spacing: -0.02em;
}

.management-heading > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.management-board {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.management-card {
  position: relative;
  min-height: 220px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(210px, 0.68fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.management-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.36);
}

.management-card b,
.management-card strong,
.management-card p {
  position: relative;
  z-index: 1;
  grid-column: 1;
}

.management-card b {
  width: fit-content;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.management-card strong {
  color: var(--ink);
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.management-card p {
  max-width: 480px;
  margin: 0;
  color: rgba(11, 11, 13, 0.62);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.62;
  letter-spacing: -0.02em;
}

.management-card figure {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 3;
  min-height: 156px;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 90, 40, 0.28), transparent 24%),
    linear-gradient(135deg, #15151a, #2c2c33);
  border-radius: 22px;
}

.management-card--routine figure {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px;
}

.management-card--routine figure span {
  position: relative;
  display: flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px 0 44px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.management-card--routine figure span::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #fff;
}

.management-card--routine figure::after {
  content: "WEEKLY PLAN";
  position: absolute;
  right: 16px;
  top: 14px;
  color: rgba(255, 255, 255, 0.26);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.management-card--exam figure::before {
  content: "";
  position: absolute;
  inset: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 100% 33.33%, 33.33% 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.management-card--exam figure span {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.management-card--exam figure span:nth-child(1) {
  left: 24px;
  top: 26px;
  width: 86px;
  height: 86px;
  background: var(--accent);
}

.management-card--exam figure span:nth-child(2) {
  right: 22px;
  top: 34px;
  width: 82px;
  height: 44px;
}

.management-card--exam figure span:nth-child(3) {
  right: 28px;
  bottom: 26px;
  width: 112px;
  height: 50px;
}

.management-card--admission figure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: center;
  padding: 24px;
}

.management-card--admission figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.management-card--admission figure span {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 82px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  font-size: 20px;
  font-weight: 950;
}

.management-flow {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: clamp(18px, 3vw, 42px);
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.management-flow span {
  display: grid;
  min-height: 48px;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.strategy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 11, 13, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #f7f7f4 0%, #fff 100%);
  background-size: 72px 72px, 72px 72px, auto;
  overflow: hidden;
}

.strategy-section::before {
  content: "";
  position: absolute;
  right: clamp(18px, 6vw, 92px);
  top: 88px;
  width: clamp(140px, 18vw, 260px);
  height: clamp(140px, 18vw, 260px);
  background:
    radial-gradient(circle, rgba(240, 90, 40, 0.18) 0 42%, transparent 43%),
    conic-gradient(from 90deg, var(--accent), rgba(240, 90, 40, 0.18), var(--accent));
  border-radius: 50%;
  opacity: 0.88;
  filter: blur(0.2px);
  pointer-events: none;
}

.strategy-heading {
  position: relative;
  z-index: 1;
}

.strategy-heading h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(46px, 7vw, 106px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.strategy-heading > p {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(11, 11, 13, 0.62);
  font-size: clamp(18px, 1.65vw, 23px);
  font-weight: 750;
  line-height: 1.72;
  letter-spacing: -0.02em;
}

.strategy-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.strategy-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.4vw, 42px);
  background: #fff;
  border: 1px solid rgba(11, 11, 13, 0.08);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(11, 11, 13, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.strategy-panel::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -72px;
  width: 190px;
  height: 190px;
  background: rgba(240, 90, 40, 0.11);
  border-radius: 50%;
}

.strategy-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 98px rgba(11, 11, 13, 0.14);
}

.strategy-panel span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  color: var(--accent);
  background: rgba(240, 90, 40, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.strategy-panel h3 {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 22px 0 0;
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.strategy-panel p {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(11, 11, 13, 0.64);
  font-size: 16px;
  font-weight: 730;
  line-height: 1.68;
  letter-spacing: -0.02em;
}

.strategy-panel ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.strategy-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(11, 11, 13, 0.72);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.strategy-panel li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.strategy-panel--dark {
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(240, 90, 40, 0.32), transparent 26%),
    linear-gradient(135deg, #111116, #26262d);
  border-color: rgba(255, 255, 255, 0.08);
}

.strategy-panel--dark h3,
.strategy-panel--dark p,
.strategy-panel--dark li {
  color: inherit;
}

.strategy-panel--dark p,
.strategy-panel--dark li {
  opacity: 0.76;
}

.strategy-roadmap {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(14px, 3vw, 34px);
}

.strategy-roadmap span {
  display: grid;
  min-height: 76px;
  place-items: center;
  text-align: center;
  color: rgba(11, 11, 13, 0.72);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(11, 11, 13, 0.08);
  border-radius: 22px;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 18px 48px rgba(11, 11, 13, 0.06);
}

.strategy-roadmap span:nth-child(even) {
  transform: translateY(14px);
}

.proof-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  min-height: auto;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 18%, rgba(240, 90, 40, 0.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f7f4 100%);
}

.proof-visual {
  position: relative;
  min-height: min(66vh, 620px);
  overflow: hidden;
  background: var(--ink);
  border-radius: 38px;
  box-shadow: 0 38px 95px rgba(11, 11, 13, 0.2);
}

.proof-visual::after,
.trial-program-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 11, 13, 0.48));
  pointer-events: none;
}

.proof-visual img,
.trial-program-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.proof-visual:hover img,
.trial-program-image:hover img {
  transform: scale(1.08);
}

.proof-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.proof-stats article {
  min-height: 220px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(220px, 0.54fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(18px, 2.4vw, 26px);
  background: #fff;
  border: 1px solid rgba(11, 11, 13, 0.08);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(11, 11, 13, 0.07);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.proof-stats article:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(11, 11, 13, 0.13);
}

.proof-card-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.proof-stats b {
  width: fit-content;
  color: var(--accent);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.proof-stats strong {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.proof-stats p {
  max-width: 520px;
  margin: 0;
  color: inherit;
  opacity: 0.68;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.proof-stats figure {
  position: relative;
  min-height: 172px;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 90, 40, 0.32), transparent 26%),
    linear-gradient(135deg, #121216, #24242b);
  border-radius: 24px;
}

.proof-stats figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(11, 11, 13, 0.34));
  pointer-events: none;
}

.proof-graphic {
  display: grid;
  place-items: center;
  padding: 28px;
  color: #fff;
}

.process-line {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(360px, 100%);
  gap: 18px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: rgba(255, 255, 255, 0.22);
}

.process-line span {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  padding-left: 58px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-weight: 900;
}

.process-line span::before {
  content: "";
  position: absolute;
  left: 10px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border: 6px solid #fff;
  border-radius: 50%;
}

.seal-mark,
.expert-badge {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 1;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  color: var(--accent);
  background: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -0.02em;
  transform: rotate(-9deg);
}

.diploma-card {
  position: relative;
  z-index: 1;
  width: min(360px, 92%);
  padding: 34px;
  color: var(--ink);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.diploma-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.diploma-card strong {
  display: block;
  margin: 22px 0 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.diploma-card em {
  color: rgba(11, 11, 13, 0.58);
  font-style: normal;
  font-weight: 850;
}

.cap-icon {
  position: absolute;
  right: 30px;
  top: 28px;
  z-index: 1;
  width: 102px;
  height: 62px;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 30%, 50% 60%, 0 30%);
  transform: rotate(8deg);
}

.cap-icon::after {
  content: "";
  position: absolute;
  left: 46px;
  top: 34px;
  width: 10px;
  height: 48px;
  background: #fff;
  border-radius: 999px;
}

.expert-chart {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(380px, 100%);
  gap: 18px;
}

.expert-chart span {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 0 18px;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  font-weight: 950;
}

.expert-chart span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  background: linear-gradient(90deg, var(--accent), rgba(240, 90, 40, 0.14));
  opacity: 0.88;
}

.expert-chart span {
  isolation: isolate;
}

.expert-chart span::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
}

.verification-section {
  min-height: 100vh;
  color: #fff;
  background: var(--ink);
}

.verification-section .section-heading {
  display: block;
  margin-bottom: clamp(36px, 6vw, 76px);
}

.verification-section .section-heading h2 {
  color: #fff;
}

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

.verify-card {
  min-height: 460px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(24px, 3.3vw, 42px);
  background: #17171b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.34s ease, background 0.2s ease, border-color 0.2s ease;
}

.verify-card:nth-child(even) {
  margin-top: 74px;
}

.verify-card:hover {
  transform: translateY(-18px);
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.18);
}

.verify-card b {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
}

.verify-card figure {
  position: relative;
  min-height: 154px;
  margin: auto 0 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(240, 90, 40, 0.38), transparent 25%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
}

.verify-card figure span {
  position: absolute;
  display: block;
}

.verify-card--level figure span {
  left: 24px;
  right: 24px;
  height: 13px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.verify-card--level figure span::after {
  content: "";
  display: block;
  width: var(--level, 56%);
  height: 100%;
  background: var(--accent);
  border-radius: inherit;
}

.verify-card--level figure span:nth-child(1) {
  top: 42px;
  --level: 42%;
}

.verify-card--level figure span:nth-child(2) {
  top: 72px;
  --level: 68%;
}

.verify-card--level figure span:nth-child(3) {
  top: 102px;
  --level: 52%;
}

.verify-card--habit figure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: end;
  padding: 26px;
}

.verify-card--habit figure span {
  position: static;
  min-height: var(--habit, 64px);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px 999px 16px 16px;
}

.verify-card--habit figure span:nth-child(1) {
  --habit: 58px;
}

.verify-card--habit figure span:nth-child(2) {
  --habit: 88px;
  background: var(--accent);
}

.verify-card--habit figure span:nth-child(3) {
  --habit: 112px;
}

.verify-card--subject figure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-content: center;
  padding: 24px;
}

.verify-card--subject figure span {
  position: static;
  display: grid;
  min-height: 42px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  font-size: 18px;
  font-weight: 950;
}

.verify-card--subject figure span:nth-child(3) {
  background: var(--accent);
}

.verify-card--goal figure::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 74px;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.verify-card--goal figure span {
  top: 56px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.14);
  border: 8px solid #17171b;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.verify-card--goal figure span:nth-child(1) {
  left: 28px;
}

.verify-card--goal figure span:nth-child(2) {
  left: calc(50% - 19px);
  background: var(--accent);
}

.verify-card--goal figure span:nth-child(3) {
  right: 28px;
}

.verify-card:hover figure {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.24), transparent 25%),
    rgba(255, 255, 255, 0.13);
}

.verify-card h3 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.verify-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  line-height: 1.65;
}

.trial-program {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  min-height: 100vh;
  background:
    linear-gradient(90deg, #fff 0 62%, #f05a28 62% 100%);
}

.trial-program-copy a {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 0 28px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-weight: 950;
  transition: transform 0.22s ease, background 0.22s ease;
}

.trial-program-copy a:hover {
  transform: translateY(-4px);
  background: var(--accent);
}

.trial-program-image {
  position: relative;
  min-height: min(62vh, 590px);
  overflow: hidden;
  border-radius: 38px;
  box-shadow: 0 38px 95px rgba(11, 11, 13, 0.2);
}

.trial-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 28px;
}

.trial-flow span {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(18px, 3vw, 32px);
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(18px, 2.3vw, 30px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.trial-flow span:last-child {
  color: var(--accent);
  border-right: 0;
}

.parent-care {
  min-height: 94vh;
  background: #f7f7f4;
}

.parent-care .section-heading,
.review-section .section-heading,
.faq-section .section-heading {
  display: block;
  margin-bottom: clamp(34px, 5vw, 70px);
}

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

.care-card {
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(24px, 3.2vw, 42px);
  background: #fff;
  border: 1px solid rgba(11, 11, 13, 0.08);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(11, 11, 13, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.care-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 34px 90px rgba(11, 11, 13, 0.12);
}

.care-card span {
  margin-bottom: auto;
  color: var(--accent);
  font-weight: 950;
}

.care-card figure {
  position: relative;
  min-height: 132px;
  margin: auto 0 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 90, 40, 0.22), transparent 26%),
    linear-gradient(135deg, #f2f2ee, #fff);
  border: 1px solid rgba(11, 11, 13, 0.07);
  border-radius: 24px;
}

.care-card figure i {
  position: absolute;
  display: block;
  font-style: normal;
}

.care-card--apply figure i:nth-child(1) {
  left: 28px;
  top: 28px;
  width: 72px;
  height: 78px;
  background: #fff;
  border: 2px solid rgba(11, 11, 13, 0.12);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(11, 11, 13, 0.08);
}

.care-card--apply figure i:nth-child(1)::before,
.care-card--apply figure i:nth-child(1)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  height: 7px;
  background: rgba(11, 11, 13, 0.14);
  border-radius: 999px;
}

.care-card--apply figure i:nth-child(1)::before {
  top: 22px;
}

.care-card--apply figure i:nth-child(1)::after {
  top: 42px;
  right: 28px;
}

.care-card--apply figure i:nth-child(2) {
  right: 30px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
}

.care-card--apply figure i:nth-child(2)::before,
.care-card--apply figure i:nth-child(2)::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 999px;
}

.care-card--apply figure i:nth-child(2)::before {
  left: 14px;
  top: 23px;
  width: 20px;
  height: 3px;
}

.care-card--apply figure i:nth-child(2)::after {
  left: 23px;
  top: 14px;
  width: 3px;
  height: 20px;
}

.care-card--check figure i {
  left: 24px;
  right: 24px;
  height: 20px;
  background: rgba(11, 11, 13, 0.08);
  border-radius: 999px;
}

.care-card--check figure i::before {
  content: "";
  display: block;
  width: var(--check, 60%);
  height: 100%;
  background: var(--accent);
  border-radius: inherit;
}

.care-card--check figure i:nth-child(1) {
  top: 28px;
  --check: 44%;
}

.care-card--check figure i:nth-child(2) {
  top: 62px;
  --check: 72%;
}

.care-card--check figure i:nth-child(3) {
  top: 96px;
  --check: 56%;
}

.care-card--teacher figure i:nth-child(1),
.care-card--teacher figure i:nth-child(2) {
  top: 34px;
  width: 58px;
  height: 58px;
  background: #fff;
  border: 2px solid rgba(11, 11, 13, 0.08);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(11, 11, 13, 0.08);
}

.care-card--teacher figure i:nth-child(1) {
  left: 28px;
}

.care-card--teacher figure i:nth-child(2) {
  right: 28px;
  background: var(--accent);
}

.care-card--teacher figure i:nth-child(3) {
  left: 50%;
  top: 58px;
  width: 54px;
  height: 2px;
  background: rgba(11, 11, 13, 0.18);
  transform: translateX(-50%);
}

.care-card--decide figure::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 30px;
  width: 76px;
  height: 76px;
  background: var(--accent);
  border-radius: 24px;
  transform: rotate(-8deg);
}

.care-card--decide figure i:nth-child(1) {
  left: 50px;
  top: 58px;
  width: 34px;
  height: 18px;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff;
  transform: rotate(-45deg);
}

.care-card--decide figure i:nth-child(2),
.care-card--decide figure i:nth-child(3) {
  right: 26px;
  width: 72px;
  height: 12px;
  background: rgba(11, 11, 13, 0.12);
  border-radius: 999px;
}

.care-card--decide figure i:nth-child(2) {
  top: 44px;
}

.care-card--decide figure i:nth-child(3) {
  top: 76px;
  width: 52px;
}

.care-card strong {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.care-card p {
  margin: 0;
  color: rgba(11, 11, 13, 0.62);
  font-weight: 750;
  line-height: 1.65;
}

.review-section {
  color: #fff;
  background: var(--ink);
}

.review-section .section-heading h2 {
  color: #fff;
}

.review-disclaimer {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-align: right;
}

.review-section .story-count {
  background: #17171b;
  border-color: rgba(255, 255, 255, 0.12);
}

.review-card {
  border-radius: 26px;
  background:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(240, 90, 40, 0.34), transparent 38%),
    #18181d;
}

.review-card:nth-child(3n + 2),
.review-card:nth-child(3n) {
  background:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(240, 90, 40, 0.28), transparent 38%),
    #18181d;
}

.faq-section {
  min-height: 90vh;
  background: #fff;
}

.faq-section .section-heading {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.faq-intro {
  max-width: 1120px;
  margin: -36px auto 46px;
}

.faq-list {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  border-top: 2px solid var(--ink);
}

.faq-list details {
  padding: 34px 0;
}

.faq-list summary {
  list-style: none;
  transition: color 0.18s ease, padding-left 0.18s ease;
}

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

.faq-list summary:hover {
  padding-left: 14px;
  color: var(--accent);
}

.faq-cta {
  max-width: 1120px;
  margin: clamp(28px, 5vw, 56px) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(11, 11, 13, 0.1);
  border-radius: 28px;
  background: #fbfaf8;
}

.faq-cta p {
  margin: 0;
  color: rgba(11, 11, 13, 0.72);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
  letter-spacing: -0.03em;
}

.faq-cta a {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 950;
  transition: transform 0.18s ease, background 0.18s ease;
}

.faq-cta a:hover {
  transform: translateY(-3px);
  background: #e85f00;
}

@media (max-width: 1120px) {
  .management-section,
  .strategy-section,
  .proof-hero,
  .trial-program {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .management-card {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.64fr);
  }

  .proof-visual,
  .trial-program-image {
    min-height: 520px;
  }

  .verification-grid,
  .care-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-stats article {
    grid-template-columns: 1fr;
  }

  .verify-card:nth-child(even) {
    margin-top: 0;
  }

  .trial-program {
    background: #fff;
  }

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

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

  .strategy-roadmap span:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 720px) {
  .program-tabs {
    top: 0;
    padding: 10px 14px;
  }

  .program-tabs a {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .story-section {
    padding: 58px 16px;
  }

  .story-count {
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
  }

  .management-heading h2,
  .proof-copy h1,
  .trial-program-copy h2,
  .section-heading h2 {
    font-size: clamp(36px, 13vw, 58px);
  }

  .management-heading > p,
  .proof-copy p:not(.eyebrow),
  .trial-program-copy p,
  .faq-intro {
    font-size: 16px;
  }

  .management-section {
    gap: 28px;
  }

  .strategy-section {
    gap: 28px;
  }

  .strategy-heading h2 {
    font-size: clamp(36px, 13vw, 58px);
  }

  .strategy-heading > p {
    font-size: 16px;
  }

  .strategy-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .strategy-panel h3 {
    font-size: clamp(27px, 9vw, 38px);
  }

  .strategy-panel p,
  .strategy-panel li {
    font-size: 15px;
  }

  .strategy-roadmap {
    grid-template-columns: 1fr;
  }

  .strategy-roadmap span {
    min-height: 54px;
    border-radius: 18px;
  }

  .management-card {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 24px;
  }

  .management-card b,
  .management-card strong,
  .management-card p,
  .management-card figure {
    grid-column: auto;
    grid-row: auto;
  }

  .management-card figure {
    min-height: 160px;
    border-radius: 18px;
  }

  .management-flow {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .management-flow span {
    min-height: 42px;
  }

  .proof-visual,
  .trial-program-image {
    min-height: 300px;
    border-radius: 24px;
  }

  .verification-grid,
  .care-grid,
  .trial-flow {
    grid-template-columns: 1fr;
  }

  .trial-flow span {
    min-height: 76px;
    padding: 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    justify-content: center;
    text-align: center;
    font-size: 17px;
  }

  .trial-flow span:last-child {
    border-bottom: 0;
  }

  .proof-stats article {
    min-height: auto;
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
  }

  .proof-stats strong {
    font-size: clamp(34px, 11vw, 52px);
  }

  .proof-stats figure {
    min-height: 224px;
    border-radius: 18px;
  }

  .proof-stats p {
    font-size: 16px;
  }

  .proof-graphic {
    padding: 18px;
  }

  .process-line {
    gap: 12px;
  }

  .process-line span {
    min-height: 48px;
    padding-left: 50px;
    font-size: 14px;
  }

  .seal-mark,
  .expert-badge {
    right: 18px;
    bottom: 18px;
    width: 68px;
    height: 68px;
    font-size: 12px;
  }

  .diploma-card {
    width: min(300px, 100%);
    padding: 24px;
  }

  .cap-icon {
    right: 20px;
    top: 20px;
    width: 76px;
    height: 46px;
  }

  .expert-chart {
    gap: 12px;
  }

  .expert-chart span {
    min-height: 48px;
    border-radius: 14px;
    font-size: 14px;
  }

  .verify-card,
  .care-card {
    min-height: 240px;
    border-radius: 24px;
  }

  .verify-card figure,
  .care-card figure {
    min-height: 118px;
    border-radius: 18px;
  }

  .verification-section,
  .parent-care,
  .faq-section {
    min-height: auto;
  }

  .review-card {
    min-height: 236px;
    border-radius: 22px;
  }

  .review-profile {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .review-avatar {
    width: 42px;
    height: 42px;
  }

  .review-card p {
    font-size: 15px;
    line-height: 1.52;
  }

  .faq-list {
    margin-left: 0;
  }

  .faq-list details {
    padding: 24px 0;
  }

  .faq-list summary {
    font-size: clamp(20px, 7vw, 28px);
  }

  .faq-list p {
    font-size: 16px;
  }

  .faq-cta {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 22px;
  }

  .faq-cta a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .consult-main {
    width: min(100% - 24px, 1120px);
    padding-top: 84px;
  }

  .consult-back {
    left: 12px;
    top: 12px;
    min-height: 38px;
    padding: 0 12px;
  }

  .consult-back strong {
    font-size: 13px;
  }

  .consult-hero {
    min-height: 32vh;
    gap: 14px;
    padding-bottom: 34px;
  }

  .consult-hero h1 {
    font-size: clamp(38px, 13vw, 58px);
    line-height: 1;
  }

  .consult-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.58;
  }

  .consult-form {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  .consult-form input,
  .consult-form select {
    height: 54px;
  }

  .consult-form input,
  .consult-form select,
  .consult-form textarea {
    border-radius: 15px;
    font-size: 16px;
  }

  .consult-form textarea {
    min-height: 132px;
  }

  .consult-form button {
    height: 56px;
    font-size: 17px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero-section,
  .hero-motion-logo {
    height: 52svh;
    min-height: 340px;
  }

  .hero-motion-line {
    font-size: clamp(52px, 21vw, 92px);
    line-height: 0.9;
  }

  .story-section {
    padding: 54px 14px;
  }

  .management-heading h2,
  .strategy-heading h2,
  .proof-copy h1,
  .trial-program-copy h2,
  .section-heading h2 {
    font-size: clamp(34px, 12vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.06em;
  }

  .management-heading > p,
  .strategy-heading > p,
  .proof-copy p:not(.eyebrow),
  .trial-program-copy p,
  .section-heading p,
  .faq-intro {
    font-size: 15px;
    line-height: 1.6;
  }

  .management-card,
  .strategy-panel,
  .proof-stats article,
  .verify-card,
  .care-card,
  .review-card {
    border-radius: 20px;
  }

  .management-card figure,
  .proof-stats figure,
  .verify-card figure,
  .care-card figure {
    min-height: 150px;
  }

  .strategy-panel h3,
  .proof-stats strong,
  .faq-list summary {
    font-size: clamp(24px, 8vw, 34px);
  }

  .review-track {
    --review-card-width: 86vw;
  }

  .review-card {
    min-height: 220px;
    padding: 20px;
  }

  .sticky-consult {
    right: 10px;
    left: 10px;
  }

  .sticky-consult a {
    min-height: 54px;
    padding: 0 16px;
  }

  .sticky-consult strong {
    font-size: 17px;
  }

  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }
}
