:root {
  --ink: #2b2420;
  --ink-soft: #6f6259;
  --ink-faint: #9c9088;
  --cream: #faf6ef;
  --cream-deep: #f1e6d8;
  --card: #ffffff;
  --clay: #c1542c;
  --clay-deep: #9c3f20;
  --clay-tint: #fbe7dc;
  --line: rgba(43, 36, 32, 0.1);
  --line-soft: rgba(43, 36, 32, 0.06);
  --white: #ffffff;
  --shadow-sm: 0 6px 18px rgba(43, 36, 32, 0.07);
  --shadow-md: 0 16px 36px rgba(43, 36, 32, 0.1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max: 1080px;
  --sans: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, p, blockquote {
  margin: 0;
}

.site-shell {
  overflow: hidden;
}

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--clay);
  font-size: 15px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
}

.nav-links a {
  position: relative;
  padding: 6px 1px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--clay);
  transition: right 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--ink);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  right: 0;
}

/* ---------- Shared type ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--clay-deep);
  background: var(--clay-tint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

h1 {
  max-width: 760px;
  font-size: clamp(29px, 5.6vw, 50px);
  line-height: 1.34;
  letter-spacing: -0.015em;
  font-weight: 800;
}

h2 {
  max-width: 660px;
  font-size: clamp(22px, 3.8vw, 33px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-weight: 800;
}

h3 {
  font-size: 17.5px;
  line-height: 1.4;
  font-weight: 800;
}

.lead {
  max-width: 600px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: clamp(14.5px, 1.9vw, 16.5px);
  line-height: 1.85;
  font-weight: 500;
}

/* ---------- Hero ---------- */
.hero {
  width: min(var(--max), calc(100% - 32px));
  margin: clamp(28px, 6vw, 52px) auto 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
}

.hero .lead {
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.btn-primary {
  color: var(--white);
  background: var(--clay);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--clay-deep);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--card);
}

.btn-ghost:hover {
  border-color: var(--clay);
  color: var(--clay-deep);
}

.hero-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(30px, 6vw, 44px);
}

.hero-marks div {
  flex: 1;
  min-width: 108px;
  padding: 14px 12px;
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.hero-marks strong {
  display: block;
  color: var(--clay-deep);
  font-size: 19px;
  font-weight: 800;
}

.hero-marks span {
  display: block;
  margin-top: 4px;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 700;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.hero-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--clay);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.5;
  max-width: 220px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: clamp(28px, 6vw, 52px) auto 0;
  padding: clamp(30px, 6vw, 52px);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-md);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  color: var(--ink-faint);
  font-size: 13px;
  font-weight: 600;
}

.breadcrumb a {
  color: var(--ink-soft);
}

.page-hero .hero-actions {
  justify-content: flex-start;
}

/* ---------- Section shell ---------- */
.section {
  width: min(var(--max), calc(100% - 32px));
  margin: clamp(48px, 8vw, 84px) auto 0;
}

.section-head {
  max-width: 660px;
  margin-bottom: clamp(26px, 5vw, 40px);
}

/* ---------- Concern list ---------- */
.concern-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.concern-item {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.concern-item .mark {
  flex: none;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--clay-tint);
  color: var(--clay-deep);
  font-size: 12px;
  font-weight: 900;
}

.concern-item p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 14.5px;
}

/* ---------- Timeline / flow ---------- */
.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.timeline-num {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--clay);
  font-size: 16px;
  font-weight: 800;
}

.timeline-body h3 {
  margin-bottom: 6px;
}

.timeline-body p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 14.5px;
  max-width: 540px;
}

/* ---------- Split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.split.reverse .frame {
  order: 2;
}

.frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.frame-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 15px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--clay);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ---------- Feature rows ---------- */
.feature-rows {
  display: grid;
  gap: 10px;
}

.feature-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.feature-row span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--clay-tint);
  color: var(--clay-deep);
  font-size: 12.5px;
  font-weight: 800;
}

.feature-row h3 {
  margin-bottom: 5px;
}

.feature-row p {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 14px;
}

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

.info-card {
  padding: 26px 22px;
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.info-card .tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--clay-deep);
  font-size: 19px;
  font-weight: 800;
}

.info-card h3 {
  margin-bottom: 6px;
}

.info-card p {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 13.5px;
}

/* ---------- Quote ---------- */
.quote-section {
  width: min(var(--max), calc(100% - 32px));
  margin: clamp(48px, 8vw, 84px) auto 0;
  padding: clamp(32px, 6vw, 52px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(155deg, var(--clay-deep), var(--clay));
  box-shadow: var(--shadow-md);
}

.quote-section blockquote {
  max-width: 720px;
  font-size: clamp(19px, 3.2vw, 29px);
  line-height: 1.55;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.quote-section .lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
}

.quote-section .section-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quote-section .btn-primary {
  color: var(--clay-deep);
  background: var(--white);
  box-shadow: none;
}

.quote-section .btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 800;
}

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

.faq-item summary::after {
  margin-left: auto;
  flex: none;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--clay-tint);
  color: var(--clay-deep);
  font-size: 15px;
  font-weight: 900;
  content: "+";
}

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

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 14px;
}

/* ---------- Footer ---------- */
.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: clamp(56px, 8vw, 90px) auto 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 12.5px;
}

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

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.floating-cta a {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 15px;
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.floating-cta a:last-child {
  color: var(--white);
  background: var(--clay);
}

/* ---------- Badges ---------- */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.badge-row span {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--clay-tint);
  color: var(--clay-deep);
  font-size: 12px;
  font-weight: 700;
}

/* ---------- Media row (local pages: center photo + map) ---------- */
.media-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.media-row .frame {
  margin: 0;
}

.media-row .frame img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
}

/* ---------- Answer list (AEO) ---------- */
.answer-list {
  display: grid;
  gap: 10px;
}

.answer-item {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.answer-item .q {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 800;
}

.answer-item .q::before {
  margin-right: 8px;
  color: var(--clay-deep);
  content: "Q.";
}

.answer-item .a {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 14px;
}

/* ---------- Chip list (target schools) ---------- */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.chip-list span {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--cream-deep);
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 700;
}

/* ---------- Review grid ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.review-card {
  padding: 22px 20px;
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.review-card .stars {
  display: block;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.review-card p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 13.5px;
}

/* ---------- Compare table (desktop 3-col, mobile 2-col card) ---------- */
.compare-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 96px 1fr;
}

.compare-head {
  background: var(--ink);
}

.compare-head > div {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.03em;
}

.compare-head .ours {
  color: var(--white);
}

.compare-row {
  border-top: 1px solid var(--line);
  background: var(--card);
}

.compare-row > div {
  padding: 16px;
  font-size: 13px;
  line-height: 1.6;
}

.compare-row .other {
  color: var(--ink-faint);
}

.compare-row .label {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-deep);
  color: var(--clay-deep);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.compare-row .ours {
  color: var(--ink);
  font-weight: 700;
  background: var(--clay-tint);
}

/* ---------- Fee table ---------- */
.fee-table-wrap {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.fee-caption {
  margin-bottom: 14px;
  color: var(--clay-deep);
  font-size: 12.5px;
  font-weight: 800;
}

.fee-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.fee-table th,
.fee-table td {
  padding: 12px 6px;
  text-align: center;
  font-size: 13px;
  line-height: 1.3;
  word-break: keep-all;
  border-bottom: 1px solid var(--line);
}

.fee-table th:first-child,
.fee-table td:first-child {
  width: 22%;
}

.fee-table thead th {
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
}

.fee-table thead th.highlight {
  background: var(--clay);
}

.fee-table tbody td.highlight {
  background: var(--clay-tint);
  color: var(--clay-deep);
  font-weight: 800;
}

.fee-table tbody tr:last-child td {
  border-bottom: none;
}

.fee-note {
  margin-top: 14px;
  color: var(--ink-faint);
  font-size: 11.5px;
  line-height: 1.7;
}

/* ---------- Link grid (internal links / directory) ---------- */
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.link-grid a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.link-grid a strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.link-grid a small {
  color: var(--ink-faint);
  font-size: 12px;
}

.link-grid a.cross-link {
  background: var(--clay-tint);
}

.link-grid a.cross-link strong,
.link-grid a.cross-link small {
  color: var(--clay-deep);
}

/* ---------- Directory (hub pages) ---------- */
.region-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.region-jump a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--clay-tint);
  color: var(--clay-deep);
  font-size: 12.5px;
  font-weight: 800;
}

.region-block {
  scroll-margin-top: 90px;
  margin-top: 16px;
  padding: 22px clamp(16px, 4vw, 26px);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.region-block:first-of-type {
  margin-top: 0;
}

.region-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.region-title h3 {
  color: var(--ink);
}

.region-title span {
  color: var(--ink-faint);
  font-size: 12.5px;
}

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

.district-title {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 800;
}

.district-title small {
  color: var(--ink-faint);
  font-weight: 600;
  font-size: 11px;
}

.local-button-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.local-button-grid a {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--cream-deep);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.local-button-grid a:hover {
  background: var(--clay-tint);
  color: var(--clay-deep);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.category-grid a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.category-grid a strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.category-grid a small {
  color: var(--ink-faint);
  font-size: 12.5px;
}

/* ---------- Responsive (extra components) ---------- */
@media (max-width: 900px) {
  .review-grid,
  .link-grid,
  .category-grid,
  .district-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .compare-table {
    background: none;
    box-shadow: none;
  }

  .compare-head {
    display: none;
  }

  .compare-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "label label" "other ours";
    gap: 1px;
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 10px;
  }

  .compare-row:last-child {
    margin-bottom: 0;
  }

  .compare-row .label {
    grid-area: label;
  }

  .compare-row .other {
    grid-area: other;
    font-size: 12px;
  }

  .compare-row .ours {
    grid-area: ours;
    font-size: 12px;
  }

  .compare-row .other::before,
  .compare-row .ours::before {
    display: block;
    margin-bottom: 4px;
    font-size: 10.5px;
    font-weight: 800;
  }

  .compare-row .other::before {
    content: "일반 학원";
    color: var(--ink-faint);
  }

  .compare-row .ours::before {
    content: "이곳";
    color: var(--clay-deep);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav {
    min-height: 62px;
  }

  .concern-list {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .frame {
    order: 0;
  }

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

  .frame img,
  .hero-frame img {
    aspect-ratio: 16 / 10;
  }

  body {
    padding-bottom: 58px;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 12.5px;
  }

  .timeline-item {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .timeline-num {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

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