/* ==========================================================================
   MC LINK — 한국 생활 인프라 플랫폼
   Figma: MCLink Design System
   ========================================================================== */

:root {
  /* Brand — MC LINK CI 2025 (Corporate Identity Design Manual) */
  --mint: #61d1d1;        /* MCL_Mint  #61d1d1 */
  --mint-dark: #45c1c1;
  --teal: #1895b1;        /* MCL_Teal  #1895b1 */
  --teal-dark: #12788f;
  --blue: #1a7ec4;        /* 메인 블루 — UI/액션 (main) */
  --blue-dark: #1668a6;
  --teal-soft: #d8f0f1;
  --navy: #1f3a52;
  --navy-deep: #13283a;   /* MCL_Black 계열 */
  --gold: #c9b273;        /* MCL_Gold  C20 M22 Y44 */
  --coral: #1a7ec4;
  --coral-dark: #1668a6;
  --text: #33475a;
  --text-sub: #5f7787;
  --text-faint: #8fa1ab;
  --line: #e3eef0;
  --mint-bg: #eaf7f8;
  --mint-band: #edf8f9;
  --card-bg: #ffffff;
  --page-bg: #ffffff;
  --red: #d64541;

  --cat-transport: #1a7ec4;
  --cat-delivery: #e4573d;
  --cat-shopping: #c08a2e;
  --cat-travel: #4a7fb5;
  --cat-culture: #a04f8a;
  --cat-living: #4c8a62;
  --cat-telecom: #7159c1;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 1px 2px rgba(26, 51, 72, 0.04);
  --shadow-pop: 0 10px 30px rgba(26, 51, 72, 0.1);

  --font: "Pretendard Variable", Pretendard, "Noto Sans KR", -apple-system,
    BlinkMacSystemFont, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease;
}
.btn:active { transform: scale(0.98); }

.btn .dot {
  width: 15px;
  height: 15px;
  border-radius: 5px;
  flex: none;
  background: rgba(255, 255, 255, 0.85);
}
.btn-ico { width: 17px; height: 17px; flex: none; }

.btn-coral { background: var(--blue); color: #fff; }
.btn-coral:hover { background: var(--blue-dark); }

.btn-teal { background: var(--blue); color: #fff; }
.btn-teal:hover { background: var(--blue-dark); }
.btn-teal .dot { background: #fff; }

.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid #d4dde1;
}
.btn-outline:hover { border-color: var(--navy); }
.btn-outline .dot { background: var(--navy); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding: 10px 14px;
  font-weight: 700;
}
.btn-ghost .dot { background: var(--blue); }
.btn-ghost:hover { color: var(--blue); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 236, 236, 0.7);
}

.site-header .inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--teal);
}
.logo svg { flex: none; }
.logo .c-mint,
.wordmark .c-mint,
.footer-logo .c-mint { color: var(--mint); }

.gnb {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.gnb a:hover, .gnb a.active { color: var(--blue); }

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--navy);
}
.menu-toggle:hover { background: var(--mint-bg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 12px 24px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 4px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: none; }

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */
.hero { padding: 64px 0 40px; }

.hero .inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}

.brand-lockup { margin-bottom: 28px; }
.brand-lockup .brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-lockup .wordmark {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--teal);
  line-height: 1;
}
.brand-lockup .slogan {
  font-family: "Caveat", cursive;
  font-size: 26px;
  color: #4d666f;
  margin: 4px 0 0 66px;
  position: relative;
  display: inline-block;
}
.brand-lockup .slogan .wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  color: var(--mint);
}

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero .lead {
  font-size: 17px;
  color: var(--text-sub);
  margin-bottom: 28px;
}

.hero .cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-photo {
  width: 100%;
  aspect-ratio: 355 / 330;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: 56px 0; }

.section-head { margin-bottom: 28px; }
.section-head h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
}

/* --------------------------------------------------------------------------
   Guide cards
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.guide-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop);
}

.guide-card .thumb {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #9fe6e6, #4fc2d1);
}

.guide-card .body { padding: 16px 18px 22px; flex: 1; }

/* 카테고리 라벨 — 통일된 틸 pill (색은 통일, 구분은 텍스트로) */
.cat-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
}

/* 아티클 목록 카드 (이미지 없이 텍스트 중심) */
.guide-card.article-item .body { padding: 18px 20px 20px; }
.guide-card.article-item h3 {
  font-size: 16.5px;
  line-height: 1.36;
  margin-bottom: 3px;
}
.art-en {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-faint);
  line-height: 1.4;
  margin: 0 0 9px;
}
.guide-card.article-item p { font-size: 13.5px; color: var(--text-sub); line-height: 1.55; }

.guide-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 4px;
}

.guide-card p { font-size: 14px; color: var(--text-faint); }

.saved-flag { color: var(--gold); font-weight: 800; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-band { background: var(--mint-bg); }

.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(230, 236, 236, 0.6);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 17px 18px 17px 22px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
}

.faq-q .toggle-icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease;
}
.faq-item.open .toggle-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--text-sub);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-panel {
  background: var(--mint-band);
  border-radius: var(--radius-lg);
  padding: 52px 40px 40px;
  text-align: center;
}

.cta-panel h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.cta-panel .desc {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 24px;
}
.cta-panel .desc strong { color: var(--navy); }

.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
  text-align: left;
}

.cta-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(230, 236, 236, 0.6);
}

.icon-tile {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
}

.cta-card .txt { flex: 1; }
.cta-card .txt strong {
  display: block;
  font-size: 15px;
  color: var(--navy-deep);
}
.cta-card .txt span { font-size: 13px; color: var(--text-faint); }

.qr-stub {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #dde5e4;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  margin-top: 24px;
}

.site-footer .inner {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--navy-deep);
}

.footer-nav { display: flex; gap: 22px; font-size: 14px; color: var(--text-sub); }
.footer-nav a:hover { color: var(--blue); }

.copyright {
  margin-left: auto;
  font-size: 13px;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   Category hub
   -------------------------------------------------------------------------- */
.hub-hero { padding: 40px 0 0; }

.hub-hero .banner {
  width: 100%;
  aspect-ratio: 950 / 240;
  object-fit: cover;
  border-radius: var(--radius);
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-faint);
  margin: 22px 0 8px;
}

.hub-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.hub-hero .lead { font-size: 16px; color: var(--text-sub); }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 8px;
}

.chip {
  border: 1.5px solid #d8e0e2;
  background: #fff;
  color: var(--text-sub);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* --------------------------------------------------------------------------
   Article
   -------------------------------------------------------------------------- */
.article-hero { padding: 40px 0 0; }
.article-hero .banner {
  width: 100%;
  aspect-ratio: 950 / 300;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-head { margin: 26px 0 8px; }
.article-head h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy-deep);
  margin: 6px 0 10px;
  letter-spacing: -0.01em;
}
.article-meta { font-size: 13.5px; color: var(--text-faint); }

.article-body {
  max-width: 640px;
  margin: 36px auto 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
}

.article-body .intro {
  font-weight: 700;
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 32px;
}

.article-body h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-deep);
  margin: 40px 0 14px;
}

.article-body p { margin-bottom: 18px; }

/* 데이터 기반 아티클(article.html) */
.art-summary {
  background: var(--mint-bg);
  border-left: 4px solid var(--mint);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.6;
}
.art-audience { font-size: 14.5px; color: var(--text-sub); margin-bottom: 26px; }
.art-audience strong { color: var(--teal); }
.article-body .art-ol,
.article-body .art-ul { margin: 0 0 22px; padding-left: 4px; display: flex; flex-direction: column; gap: 11px; }
.article-body .art-ol { counter-reset: art; }
.article-body .art-ol li,
.article-body .art-ul li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
}
.article-body .art-ol li::before {
  counter-increment: art;
  content: counter(art);
  position: absolute; left: 0; top: 1px;
  width: 21px; height: 21px;
  background: var(--blue); color: #fff;
  border-radius: 7px;
  font-size: 12px; font-weight: 800;
  display: grid; place-items: center;
}
.article-body .art-ul li::before {
  content: ""; position: absolute; left: 7px; top: 10px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--mint);
}
.art-faq { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.art-faq-item { background: #f1f7f8; border-radius: 12px; padding: 16px 18px; }
.art-faq-item strong { display: block; color: var(--navy-deep); font-size: 15px; margin-bottom: 6px; }
.art-faq-item p { margin: 0; font-size: 14.5px; color: var(--text-sub); }
.art-sources { margin-top: 30px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; }
.art-sources h3 { font-size: 14px; font-weight: 800; color: var(--teal); margin-bottom: 10px; }
.art-sources ul { display: flex; flex-direction: column; gap: 7px; }
.art-sources li { font-size: 13.5px; color: var(--text-sub); padding-left: 14px; position: relative; }
.art-sources li::before { content: "·"; position: absolute; left: 4px; color: var(--blue); font-weight: 800; }
.art-updated { margin-top: 12px; font-size: 12.5px; color: var(--text-faint); }
.art-notice {
  background: var(--mint-bg); border-radius: 12px; padding: 18px 20px;
  font-size: 14.5px; color: var(--text-sub); margin-top: 8px;
}
.art-notice a { color: var(--blue); font-weight: 700; }

.article-body figure { margin: 28px 0 32px; }
.article-body figure img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.article-body figcaption {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--text-faint);
}

.step-box {
  background: #f1f5f4;
  border-radius: 12px;
  padding: 24px 26px;
  margin: 28px 0 32px;
}
.step-box h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 14px;
}
.step-box ol { display: flex; flex-direction: column; gap: 10px; }
.step-box li {
  display: flex;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
}
.step-box li .num {
  flex: none;
  font-weight: 800;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   Consult page
   -------------------------------------------------------------------------- */
.consult-hero { padding: 56px 0 32px; }
.consult-hero .inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}
.consult-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 14px;
}
.consult-hero .lead {
  font-size: 16.5px;
  color: var(--text-sub);
  margin-bottom: 26px;
}
.consult-hero .photo {
  width: 100%;
  aspect-ratio: 340 / 250;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.channel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-card);
}

.channel-card .lang-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 15px;
}
.channel-card .lang-row strong { font-size: 17px; color: var(--navy-deep); font-weight: 800; }
.channel-card .lang-row span { font-size: 13.5px; color: var(--text-faint); }

.channel-card .ch-row { display: flex; gap: 12px; align-items: center; }
.channel-card .ch-info { font-size: 12.5px; color: var(--text-faint); line-height: 1.5; }
.channel-card .ch-info strong {
  display: block;
  font-size: 13.5px;
  color: var(--navy);
}
.channel-card .ch-info .handle { color: var(--blue); font-weight: 700; }

.qr-thumb {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #edf1f1;
  display: grid;
  place-items: center;
  color: #b6c3c6;
}

/* How it works */
.how-band { background: var(--mint-band); }

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px 26px;
  border: 1px solid rgba(230, 236, 236, 0.6);
}
.step-card .num {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}
.step-card strong {
  display: block;
  font-size: 16px;
  color: var(--navy-deep);
  margin-bottom: 4px;
}
.step-card span { font-size: 13.5px; color: var(--text-faint); }

.notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--mint-bg);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-sub);
  margin-top: 26px;
}
.notice strong { color: var(--navy); }
.notice svg { flex: none; margin-top: 2px; color: var(--blue); }

/* --------------------------------------------------------------------------
   Account
   -------------------------------------------------------------------------- */
.account-top { padding: 48px 0 8px; }
.account-top .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--blue);
  font-weight: 800;
  font-size: 22px;
  display: grid;
  place-items: center;
  letter-spacing: 0.02em;
}

.settings-band { background: #f0f5f4; }

.settings-band h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.settings-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 19px 4px;
  border-bottom: 1px solid #dde7e5;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
}
.settings-list li:last-child { border-bottom: none; }
.settings-list .value {
  margin-left: auto;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-faint);
}
.settings-list li.danger { color: var(--red); }
.settings-list li a {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.settings-list .icon-tile { width: 34px; height: 34px; border-radius: 9px; }

/* --------------------------------------------------------------------------
   Modal
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(26, 51, 72, 0.45);
  display: none;
  place-items: center;
  padding: 24px;
}
.modal-backdrop.open { display: grid; }

.modal {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 30px 28px;
  box-shadow: var(--shadow-pop);
}
.modal h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 20px;
}
.modal .field { margin-bottom: 14px; }
.modal .field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.modal .field input,
.modal .field select {
  width: 100%;
  border: 1.5px solid #d8e0e2;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  background: #fff;
}
.modal .field input:focus,
.modal .field select:focus { border-color: var(--blue); }
.modal .actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero .inner,
  .consult-hero .inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo, .consult-hero .photo { order: -1; }
  .card-grid, .channel-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 36px; }
}

@media (max-width: 640px) {
  .gnb, .header-actions .btn-ghost, .header-actions .btn-outline { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .header-actions .btn-teal { padding: 10px 18px; font-size: 14px; }

  .hero { padding: 40px 0 24px; }
  .hero h1 { font-size: 30px; }
  .brand-lockup .wordmark { font-size: 34px; }
  .brand-lockup .slogan { margin-left: 48px; font-size: 21px; }

  .card-grid, .channel-grid, .cta-cards { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }

  .section { padding: 40px 0; }
  .section-head h2 { font-size: 24px; }

  .hub-hero h1 { font-size: 30px; }
  .article-head h1 { font-size: 27px; }
  .consult-hero h1 { font-size: 30px; }

  .cta-panel { padding: 36px 22px 28px; }
  .cta-panel h2 { font-size: 22px; }

  .site-footer .inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .copyright { margin-left: 0; }

  .account-top .inner { flex-direction: column; align-items: flex-start; }
}
