/* STUDYCUBE — page.css
   서브페이지 공용 스타일. main.css 뒤에 로드됩니다. */

.page-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fafafb 0%, #ffffff 100%);
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin: 0 0 14px;
}
.link-back {
  display: inline-block;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 18px;
  transition: color .15s;
}
.link-back:hover { color: var(--ink); }
.page-hero p {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0;
  line-height: 1.7;
}

.page-body {
  padding: 80px 0 120px;
  min-height: 40vh;
}

.page-stub {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  background: var(--surface);
}
.page-stub .stub-tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: #fef2f2;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.page-stub h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 24px;
}
.stub-list {
  text-align: left;
  max-width: 420px;
  margin: 0 auto 32px;
  padding: 0;
  list-style: none;
}
.stub-list li {
  font-size: 15.5px;
  color: var(--ink-2);
  padding: 10px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.stub-list li:first-child { border-top: none; }
.stub-list li::before {
  content: "▸";
  color: var(--muted);
  font-size: 13px;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
============================================================ */

.contact-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.contact-section:last-of-type { border-bottom: none; }
.contact-section .eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 14px;
  line-height: 1.2;
}
.section-lead {
  color: var(--ink-2);
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  max-width: 620px;
}

/* ----- MAP CARD ----- */
.map-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}

.map-preview {
  position: relative;
  display: block;
  min-height: 400px;
  background: linear-gradient(135deg, #eef2f6 0%, #e4ecf5 100%);
  overflow: hidden;
  transition: filter .2s;
}
.map-preview:hover { filter: brightness(.97); }

.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-roads {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

.map-pin {
  position: absolute;
  left: 52%; top: 47%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.map-pin .pin-dot {
  width: 20px; height: 20px;
  background: #ef4444;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(239,68,68,.45);
  position: relative;
  z-index: 2;
}
.map-pin .pin-pulse {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: rgba(239,68,68,.3);
  animation: pinpulse 2s infinite ease-out;
}
@keyframes pinpulse {
  0%   { transform: scale(.6); opacity: .7; }
  100% { transform: scale(2.4); opacity: 0; }
}

.map-overlay {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,10,10,.88);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.map-overlay-arrow {
  font-size: 13px;
  opacity: .8;
}

.map-info {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.map-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 22px;
  letter-spacing: -.02em;
}
.info-list {
  margin: 0 0 28px;
  padding: 0;
}
.info-list > div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line-2);
}
.info-list > div:first-child { border-top: none; }
.info-list dt {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .04em;
  margin: 0;
}
.info-list dd {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
}
.info-list dd a {
  color: var(--accent);
  font-weight: 600;
}
.map-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.map-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 130px;
}

/* ----- ROUTE CARDS ----- */
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.route-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 740px;
}
.route-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  transition: border-color .15s, transform .2s;
}
.route-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.route-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 16px;
}
.route-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.route-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
}
.route-card p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0 0 10px;
  line-height: 1.6;
}
.route-card p strong {
  color: var(--ink);
  font-weight: 700;
}
.route-card small {
  font-size: 13px;
  color: var(--muted);
  display: block;
  line-height: 1.5;
}

/* ----- CONTACT FORM SECTION ----- */
.contact-form-section { background: var(--surface); }

.form-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
  background: #fff;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-form > label,
.contact-form > div > label,
.contact-form > div:not(.form-row):not(.checkbox-row) {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 600;
}
.contact-form .req {
  color: var(--red);
  margin-left: 2px;
  font-weight: 700;
}
.field-label {
  display: block;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 15.5px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10,10,10,.05);
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row > label { display: flex; flex-direction: column; gap: 7px; }

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.checkbox-row label {
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500 !important;
  cursor: pointer;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color .15s, background .15s;
}
.checkbox-row label:hover { border-color: var(--ink-3); }
.checkbox-row input[type="checkbox"] {
  width: 15px; height: 15px;
  margin: 0;
  accent-color: var(--ink);
}
.contact-form .agree {
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  font-weight: 500 !important;
  font-size: 14.5px;
  color: var(--ink-2);
}
.contact-form .agree input {
  width: 16px; height: 16px;
  accent-color: var(--ink);
}
.contact-form .agree a { color: var(--accent); }
.contact-form .btn-lg {
  margin-top: 4px;
  justify-content: center;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* ----- CONTACT SIDE PANEL ----- */
.contact-side {
  position: sticky;
  top: 88px;
}
.contact-side h2 { margin-bottom: 6px; }
.contact-side .section-lead { margin-bottom: 18px; }

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 12px;
  transition: border-color .15s, transform .15s, box-shadow .2s;
  color: inherit;
  text-decoration: none;
}
.contact-channel:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(10,10,10,.05);
}
.contact-channel .ch-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-channel .ch-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ----- MAP IFRAME ----- */
.map-iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  background: #eef2f6;
}
.map-iframe-wrap {
  position: relative;
  background: #eef2f6;
}

/* ----- CONSULTATION PAGE ----- */
.consult-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.consult-intro {
  text-align: center;
  margin-bottom: 36px;
}
.consult-intro p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}
.consult-quick {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.consult-quick h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -.015em;
}
.consult-quick p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 18px;
}
.consult-quick .channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 640px) {
  .consult-quick .channels { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT / PHILOSOPHY PAGE
============================================================ */

.philosophy-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.18;
  letter-spacing: -.035em;
  margin-bottom: 18px;
  hanging-punctuation: first;
}
/* eyebrow 의 letter-spacing(.12em) 으로 인한 옵티컬 우측 밀림 보정 */
.philosophy-hero .eyebrow,
.page-hero .eyebrow {
  text-indent: -.06em;
}
.philosophy-hero p {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 600px;
}

.section-thesis { background: var(--surface); }
.thesis-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 56px 40px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.thesis-card .eyebrow { margin-bottom: 16px; }
.thesis-card h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  margin: 0 0 22px;
  letter-spacing: -.025em;
  line-height: 1.3;
}
.thesis-card p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}
.thesis-card strong { color: var(--ink); font-weight: 700; }

.philosophy-heading {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -.025em;
  margin: 0 0 56px;
  line-height: 1.2;
}

.principles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.principle {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  transition: border-color .15s, box-shadow .2s, transform .2s;
}
.principle:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.principle-num {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -.05em;
  color: var(--accent);
  line-height: 0.85;
  font-variant-numeric: tabular-nums;
}
.principle-body h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.022em;
  margin: 0 0 16px;
  line-height: 1.3;
}
.principle-body p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0 0 20px;
}
.principle-body p strong { color: var(--ink); font-weight: 700; }
.principle-body p:last-child { margin-bottom: 0; }

.principle-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 4px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.principle-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 9px 0;
}
.principle-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.principle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.principle-tags .tag {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fef2f2;
  color: #b91c1c;
}
.principle-tags-muted .tag {
  background: var(--surface);
  color: var(--ink-3);
  border: 1px solid var(--line);
}

.principle-sub {
  font-size: 15px !important;
  color: var(--muted) !important;
  line-height: 1.7 !important;
}
.principle-sub strong {
  color: var(--ink-2) !important;
  font-weight: 700;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.quality-item {
  padding: 16px 18px;
  background: var(--surface);
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  line-height: 1.4;
}

/* Closing quote CTA */
.section-philosophy-cta { background: #fff; padding-bottom: 96px; }
.philosophy-quote-cta {
  text-align: center;
  padding: 64px 32px 72px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.philosophy-quote-cta::before {
  content: "";
  position: absolute;
  left: -180px; top: -180px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(220,38,38,0.35), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.philosophy-quote-cta::after {
  content: "";
  position: absolute;
  right: -160px; bottom: -200px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(249,115,22,0.20), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.philosophy-quote-cta .quote-mark {
  font-size: 96px;
  line-height: 0.5;
  color: var(--accent);
  font-family: Georgia, serif;
  font-weight: 700;
  margin: 0 0 10px;
  height: 40px;
  position: relative;
}
.philosophy-quote-cta h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.35;
  margin: 0 0 20px;
  position: relative;
}
.philosophy-quote-cta h2 .accent {
  background: linear-gradient(120deg, #fb7185, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.philosophy-quote-cta p {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  margin: 0 0 32px;
  position: relative;
}
.quote-actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.quote-actions .btn-outline {
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.25);
}
.quote-actions .btn-outline:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 768px) {
  .thesis-card { padding: 40px 24px; }
  .principle {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 32px 24px;
  }
  .principle-num { font-size: 52px; }
  .principle-body h3 { font-size: 20px; }
  .quality-grid { grid-template-columns: 1fr; }
  .philosophy-quote-cta { padding: 48px 24px 52px; }
  .philosophy-quote-cta .quote-mark { font-size: 72px; }
}

/* ============================================================
   FRANCHISE PAGE
============================================================ */

/* ----- Promises (3-up icon row) ----- */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s, transform .2s;
}
.promise-item:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.promise-icon {
  width: 42px;
  height: 42px;
  color: var(--accent);
  flex-shrink: 0;
}
.promise-icon svg { width: 100%; height: 100%; display: block; }
.promise-text { flex: 1; min-width: 0; }
.promise-text h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -.015em;
}
.promise-text p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .promise-grid { grid-template-columns: 1fr; }
}

/* ----- 9-step grid (dark cards) ----- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease;
}
.step-card:hover { transform: translateY(-3px); }
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220,38,38,0.0) 60%, rgba(220,38,38,0.15) 100%);
  pointer-events: none;
}
.step-card-final::before {
  background: linear-gradient(135deg, rgba(220,38,38,0.10), rgba(249,115,22,0.18));
}
.step-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
}
.step-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: -.015em;
  line-height: 1.3;
}
.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.step-list li {
  font-size: 13.5px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}
.step-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; padding: 26px 22px; }
}

/* ----- Franchise inquiry form ----- */
.franchise-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.franchise-form-head {
  text-align: center;
  margin-bottom: 36px;
}
.franchise-form-head .eyebrow { margin-bottom: 12px; }
.franchise-form-head h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: -.025em;
  margin: 0 0 14px;
}
.franchise-form-head p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.franchise-form {
  background: #fff;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.franchise-form .field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.franchise-form .field-label {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
}
.franchise-form input[type="email"] {
  font-family: inherit;
  font-size: 15px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
  width: 100%;
  box-sizing: border-box;
}
.franchise-form input[type="email"]::placeholder { color: #a1a1aa; }
.franchise-form input[type="email"]:focus { border-color: var(--ink); }
.franchise-form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
  width: 100%;
  box-sizing: border-box;
  min-height: 120px;
  resize: vertical;
}
.franchise-form textarea::placeholder { color: #a1a1aa; }
.franchise-form textarea:focus { border-color: var(--ink); }

/* Radio pill buttons */
.radio-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-3);
  transition: all .12s;
}
.radio-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-pill:hover { border-color: var(--ink-3); color: var(--ink); }
.radio-pill:has(input:checked) {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

@media (max-width: 600px) {
  .franchise-form { padding: 24px; }
  .radio-row { flex-direction: column; }
  .radio-pill { width: 100%; justify-content: center; }
}

/* ============================================================
   CONSULTATION BOOKING FORM (multi-step pill + calendar)
============================================================ */

.booking-hero { padding: 80px 0 48px; }
.booking-hero h1 { line-height: 1.18; }

.booking-section {
  padding: 24px 0 100px;
  background: #fff;
}
.booking-wrap {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 20px;
}

.booking-step {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.booking-step:first-child { padding-top: 16px; }
.booking-step:last-child { border-bottom: none; }

.step-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.015em;
  margin: 0 0 20px;
  color: var(--ink);
}

/* ----- Pill buttons ----- */
.pill-group {
  display: grid;
  gap: 10px;
}
.pill-group-2 { grid-template-columns: repeat(2, 1fr); }

.pill {
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 18px 22px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink-3);
  cursor: pointer;
  transition: border-color .12s, background .12s, color .12s;
  text-align: center;
  letter-spacing: -.01em;
}
.pill:hover:not(:disabled):not(.is-selected) {
  border-color: var(--ink-3);
  color: var(--ink);
}
.pill.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.pill:disabled {
  color: #c4c4c4;
  background: #f4f4f5;
  border-color: var(--line-2);
  cursor: not-allowed;
}

/* ----- Time slot grid ----- */
.time-block { margin-top: 18px; }
.time-block:first-child { margin-top: 0; }
.time-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.time-grid { grid-template-columns: repeat(4, 1fr); }
.pill-sm {
  padding: 13px 0;
  font-size: 14px;
  border-radius: 10px;
  font-variant-numeric: tabular-nums;
}
.time-legend {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.legend-item .dot {
  width: 12px; height: 12px;
  border-radius: 3px;
  display: inline-block;
}
.dot-selected { background: var(--accent); }
.dot-disabled { background: #f4f4f5; border: 1.5px solid var(--line); }

/* ----- Calendar ----- */
.calendar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px 22px;
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0 14px;
}
.cal-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ink);
}
.cal-nav {
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0;
  font-size: 22px;
  cursor: pointer;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .12s, color .12s;
}
.cal-nav:hover:not(:disabled) {
  background: var(--surface);
  color: var(--ink);
}
.cal-nav:disabled {
  color: var(--line);
  cursor: not-allowed;
}
.cal-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  border-bottom: 1px solid var(--line-2);
}
.cal-week .sun { color: #ef4444; }
.cal-week .sat { color: #6b7280; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding-top: 10px;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background .12s;
  padding: 0;
}
.cal-cell.sun { color: #ef4444; }
.cal-cell.sat { color: #6b7280; }
.cal-cell.muted {
  cursor: default;
  pointer-events: none;
}
.cal-cell:hover:not(:disabled):not(.is-selected):not(.muted) {
  background: var(--surface);
}
.cal-cell:disabled {
  color: #d4d4d8;
  cursor: not-allowed;
}
.cal-cell.is-selected {
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
}

/* ----- Booking form fields ----- */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form select {
  font-family: inherit;
  font-size: 15px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
  width: 100%;
  box-sizing: border-box;
}
.booking-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23737380' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
  cursor: pointer;
}
.booking-form select:invalid { color: #a1a1aa; }
.booking-form input::placeholder { color: #a1a1aa; }
.booking-form input:focus,
.booking-form select:focus { border-color: var(--ink); }

.form-pair {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px;
}
@media (max-width: 480px) {
  .form-pair { grid-template-columns: 1fr; }
}
.phone-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.btn-verify {
  padding: 14px 20px;
  font-size: 14px;
  white-space: nowrap;
  border-radius: 10px;
  background: var(--ink-2);
  color: #fff;
  border-color: var(--ink-2);
}
.btn-verify:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.btn-submit {
  margin-top: 20px;
  justify-content: center;
  padding: 20px;
  font-size: 16px;
  border-radius: 12px;
}
.booking-form .form-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* ----- ANNUAL PLAN (12개월 시즌 타임라인) ----- */
.year-plan {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 28px 24px 32px;
  margin-top: 8px;
}
.year-months {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.year-months span {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  letter-spacing: -.01em;
}
.year-bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
}
.year-bar {
  padding: 22px 12px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  min-height: 84px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.year-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10,10,10,.12);
}
.year-bar strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.year-bar small {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 6px;
  letter-spacing: -.005em;
}

/* Color variants */
.year-bar-winter    { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.year-bar-summer    { background: linear-gradient(135deg, #f59e0b, #d97706); }
.year-bar-regular   { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.year-bar-prewinter { background: linear-gradient(135deg, #7c3aed, #6d28d9); }

/* Column spans */
.year-span-1-2  { grid-column: 1 / span 2; }
.year-span-3-6  { grid-column: 3 / span 4; }
.year-span-7-8  { grid-column: 7 / span 2; }
.year-span-9-11 { grid-column: 9 / span 3; }
.year-span-12   { grid-column: 12 / span 1; }

@media (max-width: 720px) {
  .year-plan { padding: 22px 18px; }
  .year-months { display: none; }
  .year-bars {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .year-bar {
    grid-column: 1 / -1 !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 16px 20px;
    min-height: auto;
  }
  .year-bar small {
    margin-top: 0;
    margin-left: 12px;
    white-space: nowrap;
  }
}

/* ----- DAILY SCHEDULE TABLE (일과 시간표) ----- */
.day-schedule-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  margin-top: 8px;
}
.day-schedule {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  font-variant-numeric: tabular-nums;
}
.day-schedule thead {
  background: var(--ink);
  color: #fff;
}
.day-schedule th {
  padding: 16px 14px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -.005em;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.day-schedule th:last-child { border-right: none; }
.day-schedule td {
  padding: 14px 12px;
  text-align: center;
  border-top: 1px solid var(--line-2);
  border-right: 1px solid var(--line-2);
  background: #fff;
  vertical-align: middle;
  line-height: 1.4;
}
.day-schedule td:last-child { border-right: none; }
.day-schedule tbody tr:first-child td { border-top: none; }

.cell-period {
  font-weight: 700;
  color: var(--ink);
  background: var(--surface) !important;
  width: 76px;
}
.cell-time {
  color: var(--ink-2);
  font-weight: 500;
  white-space: nowrap;
  width: 150px;
}
.cell-study {
  background: #fef2f2 !important;
  color: #b91c1c;
  font-weight: 700;
  letter-spacing: -.005em;
}
.cell-free {
  background: #f4f4f5 !important;
  color: var(--ink-2);
  font-weight: 600;
}
.cell-break {
  background: #fffbeb !important;
  color: #b45309;
  font-weight: 600;
}

.schedule-legend {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.schedule-legend .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.schedule-legend .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.dot-study { background: #fef2f2; border: 1px solid #fecaca; }
.dot-free  { background: #f4f4f5; border: 1px solid #e4e4e7; }
.dot-break { background: #fffbeb; border: 1px solid #fde68a; }

@media (max-width: 640px) {
  .day-schedule-wrap { overflow-x: auto; }
  .day-schedule { font-size: 13px; min-width: 540px; }
  .day-schedule th, .day-schedule td { padding: 12px 10px; }
  .cell-period { width: 56px; }
  .cell-time { width: 120px; }
}

/* ----- SCHEDULE PAGE (모의고사 시간표) ----- */
.exam-notice {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: flex-start;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 32px;
}
.exam-notice-icon {
  width: 28px;
  height: 28px;
  color: #b45309;
  margin-top: 2px;
}
.exam-notice-icon svg { width: 100%; height: 100%; display: block; }
.exam-notice h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #92400e;
}
.exam-notice p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.6;
}

.exam-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .exam-grid { grid-template-columns: 1fr; }
}

.exam-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-top: 4px solid var(--accent);
  transition: border-color .15s, transform .2s, box-shadow .2s;
}
.exam-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.exam-card-blue   { border-top-color: #2563eb; }
.exam-card-red    { border-top-color: #dc2626; }
.exam-card-purple { border-top-color: #7c3aed; }
.exam-card-orange { border-top-color: #f59e0b; }

.exam-head {
  padding: 24px 26px 18px;
  border-bottom: 1px solid var(--line-2);
}
.exam-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.tag-blue   { background: #eff6ff; color: #1d4ed8; }
.tag-red    { background: #fef2f2; color: #b91c1c; }
.tag-purple { background: #f5f3ff; color: #6d28d9; }
.tag-orange { background: #fffbeb; color: #b45309; }

.exam-head h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -.02em;
}
.exam-meta {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.exam-list {
  margin: 0;
  padding: 4px 0;
  list-style: none;
}
.exam-list > li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 26px;
  border-top: 1px solid var(--line-2);
}
.exam-list > li:first-child { border-top: none; }

.exam-round {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
  text-align: center;
  background: var(--surface);
  border-radius: 8px;
  padding: 8px 0;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.exam-card-blue   .exam-round { background: #eff6ff; color: #1d4ed8; }
.exam-card-red    .exam-round { background: #fef2f2; color: #b91c1c; }
.exam-card-purple .exam-round { background: #f5f3ff; color: #6d28d9; }
.exam-card-orange .exam-round { background: #fffbeb; color: #b45309; }

.exam-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.exam-detail strong {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.01em;
}
.exam-detail small {
  font-size: 12.5px;
  color: var(--muted);
}
.exam-date {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.exam-list-pending .exam-date {
  color: var(--muted);
  font-weight: 500;
  font-style: italic;
}

@media (max-width: 480px) {
  .exam-list > li {
    grid-template-columns: 48px 1fr;
    padding: 14px 18px;
  }
  .exam-date {
    grid-column: 2;
    font-size: 12.5px;
    white-space: normal;
  }
  .exam-head { padding: 20px 18px 14px; }
}

/* ----- BRANCHES PAGE ----- */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 18px;
}
.branch-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  transition: border-color .15s, transform .2s, box-shadow .2s;
}
.branch-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.branch-thumb {
  background: linear-gradient(135deg, #fafafb 0%, #ececef 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.branch-thumb-mark {
  width: 110px;
  height: 110px;
  background: url('../img/cube.png') no-repeat center / contain;
  opacity: 0.6;
}
.branch-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  letter-spacing: .04em;
}
.branch-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.branch-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -.02em;
}
.branch-details {
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.branch-details > div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px 14px;
  padding: 9px 0;
  border-top: 1px solid var(--line-2);
}
.branch-details > div:first-child { border-top: none; padding-top: 0; }
.branch-details dt {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .04em;
  margin: 0;
}
.branch-details dd {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
}
.branch-details dd a {
  color: var(--accent);
  font-weight: 600;
}
.branch-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .branch-card { grid-template-columns: 1fr; }
  .branch-thumb { min-height: 180px; }
  .branch-info { padding: 24px; }
}

/* ----- SCHEMATIC (illustrated) MAP ----- */
.section-schematic { background: var(--surface); }
.schematic-map-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fbf8f1;
  box-shadow: var(--shadow-sm);
}
.schematic-map {
  width: 100%;
  height: auto;
  display: block;
}

/* ----- CONSULT CTA CARD (contact page) ----- */
.consult-cta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.consult-cta-body { flex: 1; min-width: 240px; }
.consult-cta-body .eyebrow { margin-bottom: 10px; }
.consult-cta-body h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -.02em;
}
.consult-cta-body p {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.6;
}
.consult-cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .consult-cta { padding: 28px 24px; }
  .consult-cta-actions { width: 100%; flex-direction: column; }
  .consult-cta-actions .btn { width: 100%; justify-content: center; }
}
.contact-channel .ch-body { flex: 1; min-width: 0; }
.contact-channel h4 {
  font-size: 13.5px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-channel p {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.contact-channel small {
  font-size: 13px;
  color: var(--muted);
  display: block;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1024px) {
  .map-card { grid-template-columns: 1fr; }
  .map-preview { min-height: 320px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-side { position: static; }
}

@media (max-width: 768px) {
  .page-hero { padding: 56px 0 40px; }
  .page-body { padding: 56px 0 80px; }
  .page-stub { padding: 40px 24px; }
  .contact-section { padding: 56px 0; }
  .map-info { padding: 28px 24px; }
  .map-preview { min-height: 240px; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .route-grid, .route-grid.cols-2 { grid-template-columns: 1fr; }
  .map-actions { flex-direction: column; }
  .map-actions .btn { width: 100%; }
}

/* ===== ABOUT 히어로 — 홈과 동일한 스타일 ===== */
.about-hero { padding: 64px 0 52px; }

/* ===== SCHOLARSHIP / CONTENTS / SUPPORT SHARED ===== */

/* Section alternating background */
.section-alt { background: var(--surface); }

/* Centered section header */
.section-header { text-align: center; max-width: 640px; margin: 0 auto; }
.section-header .eyebrow { margin-bottom: 10px; }
.section-header h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.03em;
  margin: 0 0 12px;
  line-height: 1.2;
}
.section-header p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}

/* 3-col feature cards (콘텐츠 page) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.feature-icon { margin-bottom: 16px; }
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 10px;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* Timeline process steps (장학 apply steps) */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 2.5rem auto 0;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--line);
}
.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 32px;
  position: relative;
}
.step-item:last-child { padding-bottom: 0; }
.step-item .step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px #fff;
}
.step-body h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 10px 0 6px;
  letter-spacing: -.02em;
}
.step-body p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 600px) {
  .process-steps::before { left: 19px; }
  .step-item .step-num { width: 40px; height: 40px; font-size: 15px; }
}
